blob: c049c7b3aa87a51d48e4d5afe6231c87bee1a910 [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 Frenchd4cfbf02019-10-08 00:27:14 -0500172 /* Some very old servers like DOS and OS/2 used 2 second granularity */
173 if ((tcon->ses->server->vals->protocol_id == SMB10_PROT_ID) &&
174 ((tcon->ses->capabilities &
175 tcon->ses->server->vals->cap_nt_find) == 0) &&
176 !tcon->unix_ext) {
177 sb->s_time_gran = 1000000000; /* 1 second is max allowed gran */
178 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MIN), 0, 0);
179 sb->s_time_min = ts.tv_sec;
180 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MAX),
181 cpu_to_le16(SMB_TIME_MAX), 0);
182 sb->s_time_max = ts.tv_sec;
183 } else {
184 /*
185 * Almost every server, including all SMB2+, uses DCE TIME
186 * ie 100 nanosecond units, since 1601. See MS-DTYP and MS-FSCC
187 */
188 sb->s_time_gran = 100;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700189 ts = cifs_NTtimeToUnix(0);
190 sb->s_time_min = ts.tv_sec;
191 ts = cifs_NTtimeToUnix(cpu_to_le64(S64_MAX));
192 sb->s_time_max = ts.tv_sec;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700193 }
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 sb->s_magic = CIFS_MAGIC_NUMBER;
196 sb->s_op = &cifs_super_ops;
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +0200197 sb->s_xattr = cifs_xattr_handlers;
Jan Kara851ea082017-04-12 12:24:34 +0200198 rc = super_setup_bdi(sb);
199 if (rc)
200 goto out_no_root;
201 /* tune readahead according to rsize */
202 sb->s_bdi->ra_pages = cifs_sb->rsize / PAGE_SIZE;
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 sb->s_blocksize = CIFS_MAX_MSGSIZE;
205 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
Shirish Pargaonkar9b6763e2011-02-21 23:56:59 -0600206 inode = cifs_root_iget(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
David Howellsce634ab2008-02-07 00:15:33 -0800208 if (IS_ERR(inode)) {
209 rc = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 goto out_no_root;
211 }
212
Jan Klos2f6c9472013-10-06 21:08:20 +0200213 if (tcon->nocase)
Jeff Layton66ffd112013-07-30 11:38:44 -0400214 sb->s_d_op = &cifs_ci_dentry_ops;
215 else
216 sb->s_d_op = &cifs_dentry_ops;
217
Al Viro48fde702012-01-08 22:15:13 -0500218 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (!sb->s_root) {
220 rc = -ENOMEM;
221 goto out_no_root;
222 }
Steve French50c2f752007-07-13 00:33:32 +0000223
Paul Bollef3a6a602011-10-12 14:14:04 +0200224#ifdef CONFIG_CIFS_NFSD_EXPORT
Steve French7521a3c2007-07-11 18:30:34 +0000225 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500226 cifs_dbg(FYI, "export ops supported\n");
Steve French7521a3c2007-07-11 18:30:34 +0000227 sb->s_export_op = &cifs_export_ops;
228 }
Paul Bollef3a6a602011-10-12 14:14:04 +0200229#endif /* CONFIG_CIFS_NFSD_EXPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 return 0;
232
233out_no_root:
Joe Perchesf96637b2013-05-04 22:12:25 -0500234 cifs_dbg(VFS, "%s: get root inode failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return rc;
236}
237
Al Viro6d686172011-06-17 08:34:57 -0400238static void cifs_kill_sb(struct super_block *sb)
239{
240 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
241 kill_anon_super(sb);
Al Viro98ab4942011-06-17 09:32:10 -0400242 cifs_umount(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245static int
David Howells726c3342006-06-23 02:02:58 -0700246cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
David Howells726c3342006-06-23 02:02:58 -0700248 struct super_block *sb = dentry->d_sb;
Steve French39da9842008-04-28 04:04:34 +0000249 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000250 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700251 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400252 unsigned int xid;
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700253 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400255 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Steve French21ba3842018-06-24 23:18:52 -0500257 if (le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength) > 0)
258 buf->f_namelen =
259 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
260 else
261 buf->f_namelen = PATH_MAX;
262
263 buf->f_fsid.val[0] = tcon->vol_serial_number;
264 /* are using part of create time for more randomness, see man statfs */
265 buf->f_fsid.val[1] = (int)le64_to_cpu(tcon->vol_create_time);
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 buf->f_files = 0; /* undefined */
268 buf->f_ffree = 0; /* unlimited */
269
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700270 if (server->ops->queryfs)
271 rc = server->ops->queryfs(xid, tcon, buf);
Steve French39da9842008-04-28 04:04:34 +0000272
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400273 free_xid(xid);
Steve French39da9842008-04-28 04:04:34 +0000274 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Steve French31742c52014-08-17 08:38:47 -0500277static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len)
278{
Al Viro7119e222014-10-22 00:25:12 -0400279 struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file);
Steve French31742c52014-08-17 08:38:47 -0500280 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
281 struct TCP_Server_Info *server = tcon->ses->server;
282
283 if (server->ops->fallocate)
284 return server->ops->fallocate(file, tcon, mode, off, len);
285
286 return -EOPNOTSUPP;
287}
288
Al Viro10556cb22011-06-20 19:28:19 -0400289static int cifs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct cifs_sb_info *cifs_sb;
292
293 cifs_sb = CIFS_SB(inode->i_sb);
294
Miklos Szeredif696a362008-07-31 13:41:58 +0200295 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
296 if ((mask & MAY_EXEC) && !execute_ok(inode))
297 return -EACCES;
298 else
299 return 0;
300 } else /* file mode might have been restricted at mount time
Steve French50c2f752007-07-13 00:33:32 +0000301 on the client (above and beyond ACL on servers) for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 servers which do not support setting and viewing mode bits,
Steve French50c2f752007-07-13 00:33:32 +0000303 so allowing client to check permissions is useful */
Al Viro2830ba72011-06-20 19:16:29 -0400304 return generic_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Christoph Lametere18b8902006-12-06 20:33:20 -0800307static struct kmem_cache *cifs_inode_cachep;
308static struct kmem_cache *cifs_req_cachep;
309static struct kmem_cache *cifs_mid_cachep;
Christoph Lametere18b8902006-12-06 20:33:20 -0800310static struct kmem_cache *cifs_sm_req_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311mempool_t *cifs_sm_req_poolp;
312mempool_t *cifs_req_poolp;
313mempool_t *cifs_mid_poolp;
314
315static struct inode *
316cifs_alloc_inode(struct super_block *sb)
317{
318 struct cifsInodeInfo *cifs_inode;
Christoph Lametere94b1762006-12-06 20:33:17 -0800319 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (!cifs_inode)
321 return NULL;
322 cifs_inode->cifsAttrs = 0x20; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 cifs_inode->time = 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700324 /*
325 * Until the file is open and we have gotten oplock info back from the
326 * server, can not assume caching of file data or metadata.
327 */
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300328 cifs_set_oplock_level(cifs_inode, 0);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400329 cifs_inode->flags = 0;
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000330 spin_lock_init(&cifs_inode->writers_lock);
331 cifs_inode->writers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400333 cifs_inode->server_eof = 0;
Jeff Layton20054bd2011-01-07 11:30:27 -0500334 cifs_inode->uniqueid = 0;
335 cifs_inode->createtime = 0;
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400336 cifs_inode->epoch = 0;
Ronnie Sahlberg487317c2019-06-05 10:38:38 +1000337 spin_lock_init(&cifs_inode->open_file_lock);
Steve Frenchfa70b872016-09-22 00:39:34 -0500338 generate_random_uuid(cifs_inode->lease_key);
Steve French2a38e122017-07-08 18:48:15 -0500339
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700340 /*
341 * Can not set i_flags here - they get immediately overwritten to zero
342 * by the VFS.
343 */
344 /* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 INIT_LIST_HEAD(&cifs_inode->openFileList);
Pavel Shilovskyf45d3412012-09-19 06:22:43 -0700346 INIT_LIST_HEAD(&cifs_inode->llist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return &cifs_inode->vfs_inode;
348}
349
350static void
Al Viroc2e68022019-04-14 23:18:35 -0400351cifs_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
Al Viroc2e68022019-04-14 23:18:35 -0400353 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Jeff Layton61f98ff2009-06-11 10:27:32 -0400356static void
Al Virob57922d2010-06-07 14:34:48 -0400357cifs_evict_inode(struct inode *inode)
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530358{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700359 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200360 clear_inode(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530361 cifs_fscache_release_inode_cookie(inode);
362}
363
364static void
Jeff Layton61f98ff2009-06-11 10:27:32 -0400365cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server)
366{
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300367 struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr;
368 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr;
369
Fabian Frederick571d5972014-05-13 18:04:17 +0200370 seq_puts(s, ",addr=");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400371
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300372 switch (server->dstaddr.ss_family) {
Jeff Layton61f98ff2009-06-11 10:27:32 -0400373 case AF_INET:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300374 seq_printf(s, "%pI4", &sa->sin_addr.s_addr);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400375 break;
376 case AF_INET6:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300377 seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr);
378 if (sa6->sin6_scope_id)
379 seq_printf(s, "%%%u", sa6->sin6_scope_id);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400380 break;
381 default:
Fabian Frederick571d5972014-05-13 18:04:17 +0200382 seq_puts(s, "(unknown)");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400383 }
Long Li8339dd32017-11-07 01:54:55 -0700384 if (server->rdma)
385 seq_puts(s, ",rdma");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400386}
387
Jeff Layton3e715512011-06-13 11:50:41 -0400388static void
Jeff Layton28e11bd2013-05-26 07:01:00 -0400389cifs_show_security(struct seq_file *s, struct cifs_ses *ses)
Jeff Layton3e715512011-06-13 11:50:41 -0400390{
Steve Frencheda21162015-09-11 19:24:19 -0500391 if (ses->sectype == Unspecified) {
392 if (ses->user_name == NULL)
393 seq_puts(s, ",sec=none");
Jeff Layton28e11bd2013-05-26 07:01:00 -0400394 return;
Steve Frencheda21162015-09-11 19:24:19 -0500395 }
Jeff Layton28e11bd2013-05-26 07:01:00 -0400396
Fabian Frederick571d5972014-05-13 18:04:17 +0200397 seq_puts(s, ",sec=");
Jeff Layton3e715512011-06-13 11:50:41 -0400398
Jeff Layton28e11bd2013-05-26 07:01:00 -0400399 switch (ses->sectype) {
Jeff Layton3e715512011-06-13 11:50:41 -0400400 case LANMAN:
Fabian Frederick571d5972014-05-13 18:04:17 +0200401 seq_puts(s, "lanman");
Jeff Layton3e715512011-06-13 11:50:41 -0400402 break;
403 case NTLMv2:
Fabian Frederick571d5972014-05-13 18:04:17 +0200404 seq_puts(s, "ntlmv2");
Jeff Layton3e715512011-06-13 11:50:41 -0400405 break;
406 case NTLM:
Fabian Frederick571d5972014-05-13 18:04:17 +0200407 seq_puts(s, "ntlm");
Jeff Layton3e715512011-06-13 11:50:41 -0400408 break;
409 case Kerberos:
Steve French96281b92019-03-02 06:56:54 -0600410 seq_printf(s, "krb5,cruid=%u", from_kuid_munged(&init_user_ns,ses->cred_uid));
Jeff Layton3e715512011-06-13 11:50:41 -0400411 break;
412 case RawNTLMSSP:
Fabian Frederick571d5972014-05-13 18:04:17 +0200413 seq_puts(s, "ntlmssp");
Jeff Layton3e715512011-06-13 11:50:41 -0400414 break;
415 default:
416 /* shouldn't ever happen */
Fabian Frederick571d5972014-05-13 18:04:17 +0200417 seq_puts(s, "unknown");
Jeff Layton3e715512011-06-13 11:50:41 -0400418 break;
419 }
420
Jeff Layton28e11bd2013-05-26 07:01:00 -0400421 if (ses->sign)
Fabian Frederick571d5972014-05-13 18:04:17 +0200422 seq_puts(s, "i");
Jeff Layton3e715512011-06-13 11:50:41 -0400423}
424
Jeff Laytond06b5052012-05-16 07:53:01 -0400425static void
426cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb)
427{
Fabian Frederick571d5972014-05-13 18:04:17 +0200428 seq_puts(s, ",cache=");
Jeff Laytond06b5052012-05-16 07:53:01 -0400429
430 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200431 seq_puts(s, "strict");
Jeff Laytond06b5052012-05-16 07:53:01 -0400432 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200433 seq_puts(s, "none");
Steve French41e033f2019-08-30 02:12:41 -0500434 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
435 seq_puts(s, "singleclient"); /* assume only one client access */
Steve French83bbfa72019-08-27 23:58:54 -0500436 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE)
437 seq_puts(s, "ro"); /* read only caching assumed */
Jeff Laytond06b5052012-05-16 07:53:01 -0400438 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200439 seq_puts(s, "loose");
Jeff Laytond06b5052012-05-16 07:53:01 -0400440}
441
Jeff Layton3ae35cd2013-07-30 13:34:40 -0400442static void
443cifs_show_nls(struct seq_file *s, struct nls_table *cur)
444{
445 struct nls_table *def;
446
447 /* Display iocharset= option if it's not default charset */
448 def = load_nls_default();
449 if (def != cur)
450 seq_printf(s, ",iocharset=%s", cur->charset);
451 unload_nls(def);
452}
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454/*
455 * cifs_show_options() is for displaying mount options in /proc/mounts.
456 * Not all settable options are displayed but most of the important
457 * ones are.
458 */
459static int
Al Viro34c80b12011-12-08 21:32:45 -0500460cifs_show_options(struct seq_file *s, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Al Viro34c80b12011-12-08 21:32:45 -0500462 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +0000463 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Ben Greear3eb9a882010-09-01 17:06:02 -0700464 struct sockaddr *srcaddr;
465 srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Kees Cooka068acf2015-09-04 15:44:57 -0700467 seq_show_option(s, "vers", tcon->ses->server->vals->version_string);
Jeff Layton28e11bd2013-05-26 07:01:00 -0400468 cifs_show_security(s, tcon->ses);
Jeff Laytond06b5052012-05-16 07:53:01 -0400469 cifs_show_cache_flavor(s, cifs_sb);
Jeff Layton3e715512011-06-13 11:50:41 -0400470
Steve French3e7a02d2019-09-11 21:46:20 -0500471 if (tcon->no_lease)
472 seq_puts(s, ",nolease");
Jeff Layton29e07c82010-09-29 19:51:12 -0400473 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MULTIUSER)
Fabian Frederick571d5972014-05-13 18:04:17 +0200474 seq_puts(s, ",multiuser");
Steve French8727c8a2011-02-25 01:11:56 -0600475 else if (tcon->ses->user_name)
Kees Cooka068acf2015-09-04 15:44:57 -0700476 seq_show_option(s, "username", tcon->ses->user_name);
Jeff Layton29e07c82010-09-29 19:51:12 -0400477
Ronnie Sahlberge55954a2018-08-10 11:31:10 +1000478 if (tcon->ses->domainName && tcon->ses->domainName[0] != 0)
Kees Cooka068acf2015-09-04 15:44:57 -0700479 seq_show_option(s, "domain", tcon->ses->domainName);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400480
Ben Greear3eb9a882010-09-01 17:06:02 -0700481 if (srcaddr->sa_family != AF_UNSPEC) {
482 struct sockaddr_in *saddr4;
483 struct sockaddr_in6 *saddr6;
484 saddr4 = (struct sockaddr_in *)srcaddr;
485 saddr6 = (struct sockaddr_in6 *)srcaddr;
486 if (srcaddr->sa_family == AF_INET6)
487 seq_printf(s, ",srcaddr=%pI6c",
488 &saddr6->sin6_addr);
489 else if (srcaddr->sa_family == AF_INET)
490 seq_printf(s, ",srcaddr=%pI4",
491 &saddr4->sin_addr.s_addr);
492 else
493 seq_printf(s, ",srcaddr=BAD-AF:%i",
494 (int)(srcaddr->sa_family));
495 }
496
Eric W. Biederman1f682332013-02-06 01:20:20 -0800497 seq_printf(s, ",uid=%u",
498 from_kuid_munged(&init_user_ns, cifs_sb->mnt_uid));
Jeff Layton340481a32009-06-11 10:27:29 -0400499 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200500 seq_puts(s, ",forceuid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400501 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200502 seq_puts(s, ",noforceuid");
Jeff Layton340481a32009-06-11 10:27:29 -0400503
Eric W. Biederman1f682332013-02-06 01:20:20 -0800504 seq_printf(s, ",gid=%u",
505 from_kgid_munged(&init_user_ns, cifs_sb->mnt_gid));
Jeff Layton340481a32009-06-11 10:27:29 -0400506 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200507 seq_puts(s, ",forcegid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400508 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200509 seq_puts(s, ",noforcegid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400510
Jeff Layton61f98ff2009-06-11 10:27:32 -0400511 cifs_show_address(s, tcon->ses->server);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400512
513 if (!tcon->unix_ext)
Al Viro5206efd2011-07-26 03:22:14 -0400514 seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho",
Steve French2b280fa2008-05-17 03:12:45 +0000515 cifs_sb->mnt_file_mode,
516 cifs_sb->mnt_dir_mode);
Jeff Layton3ae35cd2013-07-30 13:34:40 -0400517
518 cifs_show_nls(s, cifs_sb->local_nls);
519
Jeff Layton8616e0f2009-06-11 10:27:28 -0400520 if (tcon->seal)
Fabian Frederick571d5972014-05-13 18:04:17 +0200521 seq_puts(s, ",seal");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400522 if (tcon->nocase)
Fabian Frederick571d5972014-05-13 18:04:17 +0200523 seq_puts(s, ",nocase");
Kenneth D'souzac8b6ac12019-01-21 11:51:59 +1000524 if (tcon->local_lease)
525 seq_puts(s, ",locallease");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400526 if (tcon->retry)
Fabian Frederick571d5972014-05-13 18:04:17 +0200527 seq_puts(s, ",hard");
Ronnie Sahlberg6e82e922017-09-20 13:09:23 +1000528 else
529 seq_puts(s, ",soft");
Steve Frenchf16dfa72015-09-30 21:07:59 -0500530 if (tcon->use_persistent)
531 seq_puts(s, ",persistenthandles");
Steve French592fafe2015-11-03 10:08:53 -0600532 else if (tcon->use_resilient)
533 seq_puts(s, ",resilienthandles");
Steve Frenchb3266142018-05-20 23:41:10 -0500534 if (tcon->posix_extensions)
535 seq_puts(s, ",posix");
536 else if (tcon->unix_ext)
537 seq_puts(s, ",unix");
538 else
539 seq_puts(s, ",nounix");
Aurelien Aptel83930722018-09-20 18:10:25 -0700540 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
541 seq_puts(s, ",nodfs");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400542 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200543 seq_puts(s, ",posixpaths");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400544 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200545 seq_puts(s, ",setuids");
Steve French95932652016-09-23 01:36:34 -0500546 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
547 seq_puts(s, ",idsfromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400548 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200549 seq_puts(s, ",serverino");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000550 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
Fabian Frederick571d5972014-05-13 18:04:17 +0200551 seq_puts(s, ",rwpidforward");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000552 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200553 seq_puts(s, ",forcemand");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400554 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200555 seq_puts(s, ",nouser_xattr");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400556 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200557 seq_puts(s, ",mapchars");
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +0900558 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
559 seq_puts(s, ",mapposix");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400560 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200561 seq_puts(s, ",sfu");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400562 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200563 seq_puts(s, ",nobrl");
Steve French3d4ef9a2018-04-25 22:19:09 -0500564 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE)
565 seq_puts(s, ",nohandlecache");
Steve French412094a2019-06-24 02:01:42 -0500566 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)
567 seq_puts(s, ",modefromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400568 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200569 seq_puts(s, ",cifsacl");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400570 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200571 seq_puts(s, ",dynperm");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800572 if (root->d_sb->s_flags & SB_POSIXACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200573 seq_puts(s, ",acl");
Stefan Metzmacher736a33202010-07-30 14:56:00 +0200574 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200575 seq_puts(s, ",mfsymlinks");
Suresh Jayaraman476428f2010-11-24 17:49:07 +0530576 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
Fabian Frederick571d5972014-05-13 18:04:17 +0200577 seq_puts(s, ",fsc");
Steve French71c424b2011-10-19 20:44:48 -0500578 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)
Fabian Frederick571d5972014-05-13 18:04:17 +0200579 seq_puts(s, ",nostrictsync");
Steve French71c424b2011-10-19 20:44:48 -0500580 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200581 seq_puts(s, ",noperm");
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100582 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800583 seq_printf(s, ",backupuid=%u",
584 from_kuid_munged(&init_user_ns,
585 cifs_sb->mnt_backupuid));
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100586 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800587 seq_printf(s, ",backupgid=%u",
588 from_kgid_munged(&init_user_ns,
589 cifs_sb->mnt_backupgid));
Steve French2b280fa2008-05-17 03:12:45 +0000590
Sachin Prabhu28f88812012-04-24 15:28:30 +0100591 seq_printf(s, ",rsize=%u", cifs_sb->rsize);
592 seq_printf(s, ",wsize=%u", cifs_sb->wsize);
Steve Frenche8506d22019-02-28 21:32:15 -0600593 seq_printf(s, ",bsize=%u", cifs_sb->bsize);
Steve French563317e2019-09-08 23:22:02 -0500594 if (tcon->ses->server->min_offload)
595 seq_printf(s, ",esize=%u", tcon->ses->server->min_offload);
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600596 seq_printf(s, ",echo_interval=%lu",
597 tcon->ses->server->echo_interval / HZ);
Steve Frenchdc179262019-06-17 17:34:57 -0500598
599 /* Only display max_credits if it was overridden on mount */
600 if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
601 seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);
602
Steve French8a69e962018-06-29 16:06:15 -0500603 if (tcon->snapshot_time)
604 seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);
Steve Frenchca567eb2019-03-29 16:31:07 -0500605 if (tcon->handle_timeout)
606 seq_printf(s, ",handletimeout=%u", tcon->handle_timeout);
Suresh Jayaraman6d20e842010-12-01 14:42:28 +0530607 /* convert actimeo and display it in seconds */
Sachin Prabhu156d1792012-04-25 12:10:14 +0100608 seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return 0;
611}
612
Al Viro42faad92008-04-24 07:21:56 -0400613static void cifs_umount_begin(struct super_block *sb)
Steve French68058e72005-10-10 10:34:22 -0700614{
Al Viro42faad92008-04-24 07:21:56 -0400615 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000616 struct cifs_tcon *tcon;
Steve French68058e72005-10-10 10:34:22 -0700617
Steve French4523cc32007-04-30 20:13:06 +0000618 if (cifs_sb == NULL)
Steve French9e2e85f2005-10-10 14:28:38 -0700619 return;
620
Jeff Layton0d424ad2010-09-20 16:01:35 -0700621 tcon = cifs_sb_master_tcon(cifs_sb);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500622
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530623 spin_lock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000624 if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) {
625 /* we have other mounts to same share or we have
626 already tried to force umount this and woken up
627 all waiting network requests, nothing to do */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530628 spin_unlock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000629 return;
630 } else if (tcon->tc_count == 1)
Steve French5e1253b2005-10-10 14:06:37 -0700631 tcon->tidStatus = CifsExiting;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530632 spin_unlock(&cifs_tcp_ses_lock);
Steve French5e1253b2005-10-10 14:06:37 -0700633
Steve French3a5ff612006-07-14 22:37:11 +0000634 /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
Steve French7b7abfe2005-11-09 15:21:09 -0800635 /* cancel_notify_requests(tcon); */
Steve French50c2f752007-07-13 00:33:32 +0000636 if (tcon->ses && tcon->ses->server) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500637 cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n");
Steve French9e2e85f2005-10-10 14:28:38 -0700638 wake_up_all(&tcon->ses->server->request_q);
Steve French6ab16d22005-11-29 20:55:11 -0800639 wake_up_all(&tcon->ses->server->response_q);
640 msleep(1); /* yield */
641 /* we have to kick the requests once more */
642 wake_up_all(&tcon->ses->server->response_q);
643 msleep(1);
Steve French5e1253b2005-10-10 14:06:37 -0700644 }
Steve French68058e72005-10-10 10:34:22 -0700645
646 return;
647}
Steve French68058e72005-10-10 10:34:22 -0700648
Steve Frenchbf97d282006-09-28 21:34:06 +0000649#ifdef CONFIG_CIFS_STATS2
Al Viro64132372011-12-08 20:51:13 -0500650static int cifs_show_stats(struct seq_file *s, struct dentry *root)
Steve Frenchbf97d282006-09-28 21:34:06 +0000651{
652 /* BB FIXME */
653 return 0;
654}
655#endif
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657static int cifs_remount(struct super_block *sb, int *flags, char *data)
658{
Theodore Ts'o02b99842014-03-13 10:14:33 -0400659 sync_filesystem(sb);
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800660 *flags |= SB_NODIRATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return 0;
662}
663
Al Viro45321ac2010-06-07 13:43:19 -0400664static int cifs_drop_inode(struct inode *inode)
Jeff Layton12420ac2010-06-01 14:47:40 -0400665{
666 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
667
Al Viro45321ac2010-06-07 13:43:19 -0400668 /* no serverino => unconditional eviction */
669 return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) ||
670 generic_drop_inode(inode);
Jeff Layton12420ac2010-06-01 14:47:40 -0400671}
672
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800673static const struct super_operations cifs_super_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 .statfs = cifs_statfs,
675 .alloc_inode = cifs_alloc_inode,
Al Viroc2e68022019-04-14 23:18:35 -0400676 .free_inode = cifs_free_inode,
Jeff Layton12420ac2010-06-01 14:47:40 -0400677 .drop_inode = cifs_drop_inode,
Al Virob57922d2010-06-07 14:34:48 -0400678 .evict_inode = cifs_evict_inode,
Jeff Layton12420ac2010-06-01 14:47:40 -0400679/* .delete_inode = cifs_delete_inode, */ /* Do not need above
680 function unless later we add lazy close of inodes or unless the
Steve French50c2f752007-07-13 00:33:32 +0000681 kernel forgets to call us with the same number of releases (closes)
682 as opens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 .show_options = cifs_show_options,
Steve French7b7abfe2005-11-09 15:21:09 -0800684 .umount_begin = cifs_umount_begin,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 .remount_fs = cifs_remount,
Steve Frenchbf97d282006-09-28 21:34:06 +0000686#ifdef CONFIG_CIFS_STATS2
Steve Frenchf46d3e12006-09-30 01:08:55 +0000687 .show_stats = cifs_show_stats,
Steve Frenchbf97d282006-09-28 21:34:06 +0000688#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689};
690
Steve Frenchf87d39d2011-05-27 03:50:55 +0000691/*
692 * Get root dentry from superblock according to prefix path mount option.
693 * Return dentry with refcount + 1 on success and NULL otherwise.
694 */
695static struct dentry *
696cifs_get_root(struct smb_vol *vol, struct super_block *sb)
697{
Al Virofec11dd2011-07-18 13:50:40 -0400698 struct dentry *dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000699 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Al Virofec11dd2011-07-18 13:50:40 -0400700 char *full_path = NULL;
701 char *s, *p;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000702 char sep;
703
Sachin Prabhu348c1bf2016-07-29 22:38:21 +0100704 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
705 return dget(sb->s_root);
706
Steve French6d3ea7e2012-11-28 22:34:41 -0600707 full_path = cifs_build_path_to_root(vol, cifs_sb,
Sachin Prabhu374402a2016-12-15 12:31:19 +0530708 cifs_sb_master_tcon(cifs_sb), 0);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000709 if (full_path == NULL)
Al Viro9403c9c2011-06-17 10:02:59 -0400710 return ERR_PTR(-ENOMEM);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000711
Joe Perchesf96637b2013-05-04 22:12:25 -0500712 cifs_dbg(FYI, "Get root dentry for %s\n", full_path);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000713
Steve Frenchf87d39d2011-05-27 03:50:55 +0000714 sep = CIFS_DIR_SEP(cifs_sb);
Al Virofec11dd2011-07-18 13:50:40 -0400715 dentry = dget(sb->s_root);
716 p = s = full_path;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000717
Al Virofec11dd2011-07-18 13:50:40 -0400718 do {
David Howells2b0143b2015-03-17 22:25:59 +0000719 struct inode *dir = d_inode(dentry);
Al Virofec11dd2011-07-18 13:50:40 -0400720 struct dentry *child;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000721
Pavel Shilovsky5b980b02011-08-21 19:30:15 +0400722 if (!dir) {
723 dput(dentry);
724 dentry = ERR_PTR(-ENOENT);
725 break;
726 }
Jeff Laytonce2ac522013-02-01 15:11:01 -0500727 if (!S_ISDIR(dir->i_mode)) {
728 dput(dentry);
729 dentry = ERR_PTR(-ENOTDIR);
730 break;
731 }
Pavel Shilovsky5b980b02011-08-21 19:30:15 +0400732
Al Virofec11dd2011-07-18 13:50:40 -0400733 /* skip separators */
734 while (*s == sep)
735 s++;
736 if (!*s)
737 break;
738 p = s++;
739 /* next separator */
740 while (*s && *s != sep)
741 s++;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000742
Al Viro85f40482016-03-07 23:20:44 -0500743 child = lookup_one_len_unlocked(p, dentry, s - p);
Al Virofec11dd2011-07-18 13:50:40 -0400744 dput(dentry);
745 dentry = child;
746 } while (!IS_ERR(dentry));
Steve Frenchf87d39d2011-05-27 03:50:55 +0000747 kfree(full_path);
Al Virofec11dd2011-07-18 13:50:40 -0400748 return dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000749}
750
Al Viroee01a142011-06-17 09:47:23 -0400751static int cifs_set_super(struct super_block *sb, void *data)
752{
753 struct cifs_mnt_data *mnt_data = data;
754 sb->s_fs_info = mnt_data->cifs_sb;
755 return set_anon_super(sb, NULL);
756}
757
Al Virod753ed92010-07-26 12:52:33 +0400758static struct dentry *
Steve Frenchc7c137b2018-06-06 17:59:29 -0500759cifs_smb3_do_mount(struct file_system_type *fs_type,
760 int flags, const char *dev_name, void *data, bool is_smb3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 int rc;
Jan Blunckdb719222010-08-15 22:51:10 +0200763 struct super_block *sb;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000764 struct cifs_sb_info *cifs_sb;
765 struct smb_vol *volume_info;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400766 struct cifs_mnt_data mnt_data;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000767 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Steve French8c1beb92018-10-07 13:52:18 -0500769 /*
770 * Prints in Kernel / CIFS log the attempted mount operation
771 * If CIFS_DEBUG && cifs_FYI
772 */
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300773 if (cifsFYI)
774 cifs_dbg(FYI, "Devname: %s flags: %d\n", dev_name, flags);
775 else
776 cifs_info("Attempting to mount %s\n", dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Steve Frenchc7c137b2018-06-06 17:59:29 -0500778 volume_info = cifs_get_volume_info((char *)data, dev_name, is_smb3);
Jeff Layton04db79b2011-07-06 08:10:38 -0400779 if (IS_ERR(volume_info))
780 return ERR_CAST(volume_info);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000781
782 cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
783 if (cifs_sb == NULL) {
784 root = ERR_PTR(-ENOMEM);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400785 goto out_nls;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000786 }
787
Al Viro5d3bc602011-06-17 09:17:28 -0400788 cifs_sb->mountdata = kstrndup(data, PAGE_SIZE, GFP_KERNEL);
789 if (cifs_sb->mountdata == NULL) {
790 root = ERR_PTR(-ENOMEM);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100791 goto out_free;
Al Viro5d3bc602011-06-17 09:17:28 -0400792 }
793
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100794 rc = cifs_setup_cifs_sb(volume_info, cifs_sb);
795 if (rc) {
796 root = ERR_PTR(rc);
797 goto out_free;
Aurelien Aptela6b50582016-05-25 19:59:09 +0200798 }
799
Al Viro97d11522011-06-17 09:29:57 -0400800 rc = cifs_mount(cifs_sb, volume_info);
801 if (rc) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800802 if (!(flags & SB_SILENT))
Joe Perchesf96637b2013-05-04 22:12:25 -0500803 cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n",
804 rc);
Al Viro97d11522011-06-17 09:29:57 -0400805 root = ERR_PTR(rc);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100806 goto out_free;
Al Viro97d11522011-06-17 09:29:57 -0400807 }
808
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400809 mnt_data.vol = volume_info;
810 mnt_data.cifs_sb = cifs_sb;
811 mnt_data.flags = flags;
812
David Howells9249e172012-06-25 12:55:37 +0100813 /* BB should we make this contingent on mount parm? */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800814 flags |= SB_NODIRATIME | SB_NOATIME;
David Howells9249e172012-06-25 12:55:37 +0100815
816 sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000817 if (IS_ERR(sb)) {
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000818 root = ERR_CAST(sb);
Al Viro97d11522011-06-17 09:29:57 -0400819 cifs_umount(cifs_sb);
Al Virod757d712011-06-17 09:42:43 -0400820 goto out;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Al Viroee01a142011-06-17 09:47:23 -0400823 if (sb->s_root) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500824 cifs_dbg(FYI, "Use existing superblock\n");
Al Viro97d11522011-06-17 09:29:57 -0400825 cifs_umount(cifs_sb);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400826 } else {
Al Viro5c4f1ad2011-06-17 09:56:55 -0400827 rc = cifs_read_super(sb);
828 if (rc) {
829 root = ERR_PTR(rc);
830 goto out_super;
831 }
832
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800833 sb->s_flags |= SB_ACTIVE;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400834 }
835
Sachin Prabhu348c1bf2016-07-29 22:38:21 +0100836 root = cifs_get_root(volume_info, sb);
Al Viro9403c9c2011-06-17 10:02:59 -0400837 if (IS_ERR(root))
Al Virofa18f1b2011-06-17 09:50:44 -0400838 goto out_super;
Al Virofa18f1b2011-06-17 09:50:44 -0400839
Joe Perchesf96637b2013-05-04 22:12:25 -0500840 cifs_dbg(FYI, "dentry root is: %p\n", root);
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400841 goto out;
842
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400843out_super:
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400844 deactivate_locked_super(sb);
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400845out:
Jeff Laytonf9e59bc2011-07-06 08:10:37 -0400846 cifs_cleanup_volume_info(volume_info);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000847 return root;
Al Viro5c4f1ad2011-06-17 09:56:55 -0400848
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100849out_free:
850 kfree(cifs_sb->prepath);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400851 kfree(cifs_sb->mountdata);
Al Viro5c4f1ad2011-06-17 09:56:55 -0400852 kfree(cifs_sb);
853out_nls:
854 unload_nls(volume_info->local_nls);
855 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Steve Frenchc7c137b2018-06-06 17:59:29 -0500858static struct dentry *
859smb3_do_mount(struct file_system_type *fs_type,
860 int flags, const char *dev_name, void *data)
861{
862 return cifs_smb3_do_mount(fs_type, flags, dev_name, data, true);
863}
864
865static struct dentry *
866cifs_do_mount(struct file_system_type *fs_type,
867 int flags, const char *dev_name, void *data)
868{
869 return cifs_smb3_do_mount(fs_type, flags, dev_name, data, false);
870}
871
Jeff Layton08bc0352014-05-23 06:50:21 -0400872static ssize_t
873cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter)
874{
875 ssize_t rc;
876 struct inode *inode = file_inode(iocb->ki_filp);
877
Ross Lagerwall882137c2015-12-02 14:46:07 +0000878 if (iocb->ki_filp->f_flags & O_DIRECT)
879 return cifs_user_readv(iocb, iter);
880
Jeff Layton08bc0352014-05-23 06:50:21 -0400881 rc = cifs_revalidate_mapping(inode);
882 if (rc)
883 return rc;
884
885 return generic_file_read_iter(iocb, iter);
886}
887
Al Viro3dae8752014-04-03 12:05:17 -0400888static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Steve French87c89dd2005-11-17 17:03:00 -0800889{
Al Viro496ad9a2013-01-23 17:07:38 -0500890 struct inode *inode = file_inode(iocb->ki_filp);
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000891 struct cifsInodeInfo *cinode = CIFS_I(inode);
Steve French87c89dd2005-11-17 17:03:00 -0800892 ssize_t written;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500893 int rc;
Steve French87c89dd2005-11-17 17:03:00 -0800894
Ross Lagerwall882137c2015-12-02 14:46:07 +0000895 if (iocb->ki_filp->f_flags & O_DIRECT) {
896 written = cifs_user_writev(iocb, from);
897 if (written > 0 && CIFS_CACHE_READ(cinode)) {
898 cifs_zap_mapping(inode);
899 cifs_dbg(FYI,
900 "Set no oplock for inode=%p after a write operation\n",
901 inode);
902 cinode->oplock = 0;
903 }
904 return written;
905 }
906
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000907 written = cifs_get_writer(cinode);
908 if (written)
909 return written;
910
Al Viro3dae8752014-04-03 12:05:17 -0400911 written = generic_file_write_iter(iocb, from);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500912
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400913 if (CIFS_CACHE_WRITE(CIFS_I(inode)))
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000914 goto out;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500915
916 rc = filemap_fdatawrite(inode->i_mapping);
917 if (rc)
Al Viro3dae8752014-04-03 12:05:17 -0400918 cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500919 rc, inode);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500920
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000921out:
922 cifs_put_writer(cinode);
Steve French87c89dd2005-11-17 17:03:00 -0800923 return written;
924}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Andrew Morton965c8e52012-12-17 15:59:39 -0800926static loff_t cifs_llseek(struct file *file, loff_t offset, int whence)
Steve Frenchc32a0b62006-01-12 14:41:28 -0800927{
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000928 struct cifsFileInfo *cfile = file->private_data;
929 struct cifs_tcon *tcon;
930
Josef Bacik06222e42011-07-18 13:21:38 -0400931 /*
Andrew Morton965c8e52012-12-17 15:59:39 -0800932 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
Josef Bacik06222e42011-07-18 13:21:38 -0400933 * the cached file length
934 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800935 if (whence != SEEK_SET && whence != SEEK_CUR) {
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400936 int rc;
Al Viro496ad9a2013-01-23 17:07:38 -0500937 struct inode *inode = file_inode(file);
Steve French030e9d82007-02-01 04:27:59 +0000938
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400939 /*
940 * We need to be sure that all dirty pages are written and the
941 * server has the newest file length.
942 */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400943 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400944 inode->i_mapping->nrpages != 0) {
945 rc = filemap_fdatawait(inode->i_mapping);
Steve French156ecb22011-05-20 17:00:01 +0000946 if (rc) {
947 mapping_set_error(inode->i_mapping, rc);
948 return rc;
949 }
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400950 }
951 /*
952 * Some applications poll for the file length in this strange
953 * way so we must seek to end on non-oplocked files by
954 * setting the revalidate time to zero.
955 */
956 CIFS_I(inode)->time = 0;
Steve French030e9d82007-02-01 04:27:59 +0000957
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400958 rc = cifs_revalidate_file_attr(file);
959 if (rc < 0)
960 return (loff_t)rc;
Steve Frenchc32a0b62006-01-12 14:41:28 -0800961 }
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000962 if (cfile && cfile->tlink) {
963 tcon = tlink_tcon(cfile->tlink);
964 if (tcon->ses->server->ops->llseek)
965 return tcon->ses->server->ops->llseek(file, tcon,
966 offset, whence);
967 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800968 return generic_file_llseek(file, offset, whence);
Steve Frenchc32a0b62006-01-12 14:41:28 -0800969}
970
Jeff Laytone6f5c782014-08-22 10:40:25 -0400971static int
972cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv)
Steve French84210e92008-10-23 04:42:37 +0000973{
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400974 /*
975 * Note that this is called by vfs setlease with i_lock held to
976 * protect *lease from going away.
977 */
Al Viro496ad9a2013-01-23 17:07:38 -0500978 struct inode *inode = file_inode(file);
Jeff Laytonba00ba642010-09-20 16:01:31 -0700979 struct cifsFileInfo *cfile = file->private_data;
Steve French84210e92008-10-23 04:42:37 +0000980
981 if (!(S_ISREG(inode->i_mode)))
982 return -EINVAL;
983
Jeff Layton02440802014-08-09 10:16:44 -0400984 /* Check if file is oplocked if this is request for new lease */
985 if (arg == F_UNLCK ||
986 ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) ||
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400987 ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
Jeff Laytone6f5c782014-08-22 10:40:25 -0400988 return generic_setlease(file, arg, lease, priv);
Jeff Layton13cfb732010-09-29 19:51:11 -0400989 else if (tlink_tcon(cfile->tlink)->local_lease &&
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400990 !CIFS_CACHE_READ(CIFS_I(inode)))
991 /*
992 * If the server claims to support oplock on this file, then we
993 * still need to check oplock even if the local_lease mount
994 * option is set, but there are servers which do not support
995 * oplock for which this mount option may be useful if the user
996 * knows that the file won't be changed on the server by anyone
997 * else.
998 */
Jeff Laytone6f5c782014-08-22 10:40:25 -0400999 return generic_setlease(file, arg, lease, priv);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001000 else
Steve French84210e92008-10-23 04:42:37 +00001001 return -EAGAIN;
1002}
Steve French84210e92008-10-23 04:42:37 +00001003
Igor Mammedove6ab1582008-01-11 01:49:48 +00001004struct file_system_type cifs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 .owner = THIS_MODULE,
1006 .name = "cifs",
Al Virod753ed92010-07-26 12:52:33 +04001007 .mount = cifs_do_mount,
Al Viro6d686172011-06-17 08:34:57 -04001008 .kill_sb = cifs_kill_sb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /* .fs_flags */
1010};
Eric W. Biederman3e64fe52013-03-11 07:05:42 -07001011MODULE_ALIAS_FS("cifs");
Steve French49218b42018-05-23 21:44:53 -05001012
1013static struct file_system_type smb3_fs_type = {
1014 .owner = THIS_MODULE,
1015 .name = "smb3",
Steve Frenchc7c137b2018-06-06 17:59:29 -05001016 .mount = smb3_do_mount,
Steve French49218b42018-05-23 21:44:53 -05001017 .kill_sb = cifs_kill_sb,
1018 /* .fs_flags */
1019};
1020MODULE_ALIAS_FS("smb3");
1021MODULE_ALIAS("smb3");
1022
Arjan van de Ven754661f2007-02-12 00:55:38 -08001023const struct inode_operations cifs_dir_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 .create = cifs_create,
Miklos Szeredid2c12712012-06-05 15:10:23 +02001025 .atomic_open = cifs_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 .lookup = cifs_lookup,
1027 .getattr = cifs_getattr,
1028 .unlink = cifs_unlink,
1029 .link = cifs_hardlink,
1030 .mkdir = cifs_mkdir,
1031 .rmdir = cifs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02001032 .rename = cifs_rename2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 .setattr = cifs_setattr,
1035 .symlink = cifs_symlink,
1036 .mknod = cifs_mknod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038};
1039
Arjan van de Ven754661f2007-02-12 00:55:38 -08001040const struct inode_operations cifs_file_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 .setattr = cifs_setattr,
Steve French48a77aa2016-05-18 20:48:32 -05001042 .getattr = cifs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 .listxattr = cifs_listxattr,
Ronnie Sahlberg2f3ebab2019-04-25 16:45:29 +10001045 .fiemap = cifs_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046};
1047
Arjan van de Ven754661f2007-02-12 00:55:38 -08001048const struct inode_operations cifs_symlink_inode_ops = {
Al Viro6b255392015-11-17 10:20:54 -05001049 .get_link = cifs_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052};
1053
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001054static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
1055 struct file *dst_file, loff_t destoff, loff_t len,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001056 unsigned int remap_flags)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001057{
1058 struct inode *src_inode = file_inode(src_file);
1059 struct inode *target_inode = file_inode(dst_file);
1060 struct cifsFileInfo *smb_file_src = src_file->private_data;
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001061 struct cifsFileInfo *smb_file_target;
1062 struct cifs_tcon *target_tcon;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001063 unsigned int xid;
1064 int rc;
1065
Xiaoli Fengb073a082019-03-16 12:11:54 +08001066 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001067 return -EINVAL;
1068
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001069 cifs_dbg(FYI, "clone range\n");
1070
1071 xid = get_xid();
1072
1073 if (!src_file->private_data || !dst_file->private_data) {
1074 rc = -EBADF;
1075 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1076 goto out;
1077 }
1078
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001079 smb_file_target = dst_file->private_data;
1080 target_tcon = tlink_tcon(smb_file_target->tlink);
1081
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001082 /*
1083 * Note: cifs case is easier than btrfs since server responsible for
1084 * checks for proper open modes and file type and if it wants
1085 * server could even support copy of range where source = target
1086 */
1087 lock_two_nondirectories(target_inode, src_inode);
1088
1089 if (len == 0)
1090 len = src_inode->i_size - off;
1091
1092 cifs_dbg(FYI, "about to flush pages\n");
1093 /* should we flush first and last page first */
1094 truncate_inode_pages_range(&target_inode->i_data, destoff,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001095 PAGE_ALIGN(destoff + len)-1);
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001096
1097 if (target_tcon->ses->server->ops->duplicate_extents)
1098 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
1099 smb_file_src, smb_file_target, off, len, destoff);
1100 else
1101 rc = -EOPNOTSUPP;
1102
1103 /* force revalidate of size and timestamps of target file now
1104 that target is updated on the server */
1105 CIFS_I(target_inode)->time = 0;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001106 /* although unlocking in the reverse order from locking is not
1107 strictly necessary here it is a little cleaner to be consistent */
1108 unlock_two_nondirectories(src_inode, target_inode);
1109out:
1110 free_xid(xid);
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001111 return rc < 0 ? rc : len;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001112}
1113
Sachin Prabhu620d8742017-02-10 16:03:51 +05301114ssize_t cifs_file_copychunk_range(unsigned int xid,
1115 struct file *src_file, loff_t off,
1116 struct file *dst_file, loff_t destoff,
1117 size_t len, unsigned int flags)
1118{
1119 struct inode *src_inode = file_inode(src_file);
1120 struct inode *target_inode = file_inode(dst_file);
1121 struct cifsFileInfo *smb_file_src;
1122 struct cifsFileInfo *smb_file_target;
1123 struct cifs_tcon *src_tcon;
1124 struct cifs_tcon *target_tcon;
1125 ssize_t rc;
1126
1127 cifs_dbg(FYI, "copychunk range\n");
1128
Sachin Prabhu620d8742017-02-10 16:03:51 +05301129 if (!src_file->private_data || !dst_file->private_data) {
1130 rc = -EBADF;
1131 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1132 goto out;
1133 }
1134
1135 rc = -EXDEV;
1136 smb_file_target = dst_file->private_data;
1137 smb_file_src = src_file->private_data;
1138 src_tcon = tlink_tcon(smb_file_src->tlink);
1139 target_tcon = tlink_tcon(smb_file_target->tlink);
1140
1141 if (src_tcon->ses != target_tcon->ses) {
1142 cifs_dbg(VFS, "source and target of copy not on same server\n");
1143 goto out;
1144 }
1145
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001146 rc = -EOPNOTSUPP;
1147 if (!target_tcon->ses->server->ops->copychunk_range)
1148 goto out;
1149
Sachin Prabhu620d8742017-02-10 16:03:51 +05301150 /*
1151 * Note: cifs case is easier than btrfs since server responsible for
1152 * checks for proper open modes and file type and if it wants
1153 * server could even support copy of range where source = target
1154 */
1155 lock_two_nondirectories(target_inode, src_inode);
1156
1157 cifs_dbg(FYI, "about to flush pages\n");
1158 /* should we flush first and last page first */
1159 truncate_inode_pages(&target_inode->i_data, 0);
1160
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001161 rc = file_modified(dst_file);
1162 if (!rc)
Sachin Prabhu620d8742017-02-10 16:03:51 +05301163 rc = target_tcon->ses->server->ops->copychunk_range(xid,
1164 smb_file_src, smb_file_target, off, len, destoff);
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001165
1166 file_accessed(src_file);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301167
1168 /* force revalidate of size and timestamps of target file now
1169 * that target is updated on the server
1170 */
1171 CIFS_I(target_inode)->time = 0;
1172 /* although unlocking in the reverse order from locking is not
1173 * strictly necessary here it is a little cleaner to be consistent
1174 */
1175 unlock_two_nondirectories(src_inode, target_inode);
1176
1177out:
1178 return rc;
1179}
1180
Steve French6e70c262018-05-10 10:59:37 -05001181/*
1182 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync()
1183 * is a dummy operation.
1184 */
1185static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1186{
1187 cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n",
1188 file, datasync);
1189
1190 return 0;
1191}
1192
Sachin Prabhu620d8742017-02-10 16:03:51 +05301193static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off,
1194 struct file *dst_file, loff_t destoff,
1195 size_t len, unsigned int flags)
1196{
1197 unsigned int xid = get_xid();
1198 ssize_t rc;
1199
1200 rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff,
1201 len, flags);
1202 free_xid(xid);
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001203
Amir Goldstein5dae2222019-06-05 08:04:50 -07001204 if (rc == -EOPNOTSUPP || rc == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001205 rc = generic_copy_file_range(src_file, off, dst_file,
1206 destoff, len, flags);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301207 return rc;
1208}
1209
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001210const struct file_operations cifs_file_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001211 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001212 .write_iter = cifs_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 .open = cifs_open,
1214 .release = cifs_close,
1215 .lock = cifs_lock,
1216 .fsync = cifs_fsync,
1217 .flush = cifs_flush,
1218 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001219 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001220 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001221 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001222 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301223 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001224 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001225 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001226 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227};
1228
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001229const struct file_operations cifs_file_strict_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001230 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001231 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001232 .open = cifs_open,
1233 .release = cifs_close,
1234 .lock = cifs_lock,
1235 .fsync = cifs_strict_fsync,
1236 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001237 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001238 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001239 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001240 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001241 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301242 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001243 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001244 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001245 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001246};
1247
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001248const struct file_operations cifs_file_direct_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001249 .read_iter = cifs_direct_readv,
1250 .write_iter = cifs_direct_writev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 .open = cifs_open,
1252 .release = cifs_close,
1253 .lock = cifs_lock,
1254 .fsync = cifs_fsync,
1255 .flush = cifs_flush,
Steve Frencha994b8f2009-12-07 05:44:46 +00001256 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001257 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001258 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001259 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301260 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001261 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001262 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001263 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001264 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265};
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001266
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001267const struct file_operations cifs_file_nobrl_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001268 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001269 .write_iter = cifs_file_write_iter,
Steve French87c89dd2005-11-17 17:03:00 -08001270 .open = cifs_open,
1271 .release = cifs_close,
1272 .fsync = cifs_fsync,
1273 .flush = cifs_flush,
1274 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001275 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001276 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001277 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001278 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301279 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001280 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001281 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001282 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001283};
1284
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001285const struct file_operations cifs_file_strict_nobrl_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001286 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001287 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001288 .open = cifs_open,
1289 .release = cifs_close,
1290 .fsync = cifs_strict_fsync,
1291 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001292 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001293 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001294 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001295 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001296 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301297 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001298 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001299 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001300 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001301};
1302
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001303const struct file_operations cifs_file_direct_nobrl_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001304 .read_iter = cifs_direct_readv,
1305 .write_iter = cifs_direct_writev,
Steve French87c89dd2005-11-17 17:03:00 -08001306 .open = cifs_open,
1307 .release = cifs_close,
1308 .fsync = cifs_fsync,
1309 .flush = cifs_flush,
Pavel Shilovsky810627a02010-03-27 02:00:49 +00001310 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001311 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001312 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001313 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301314 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001315 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001316 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001317 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001318 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001319};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001321const struct file_operations cifs_dir_ops = {
Al Viro3125d262016-04-20 17:40:47 -04001322 .iterate_shared = cifs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 .release = cifs_closedir,
1324 .read = generic_read_dir,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001325 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301326 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001327 .remap_file_range = cifs_remap_file_range,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +02001328 .llseek = generic_file_llseek,
Steve French6e70c262018-05-10 10:59:37 -05001329 .fsync = cifs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330};
1331
1332static void
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001333cifs_init_once(void *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 struct cifsInodeInfo *cifsi = inode;
1336
Christoph Lametera35afb82007-05-16 22:10:57 -07001337 inode_init_once(&cifsi->vfs_inode);
Pavel Shilovsky1b4b55a2012-09-19 06:22:44 -07001338 init_rwsem(&cifsi->lock_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Fabian Frederick9ee108b2014-04-03 14:46:30 -07001341static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342cifs_init_inodecache(void)
1343{
1344 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
Steve French26f57362007-08-30 22:09:15 +00001345 sizeof(struct cifsInodeInfo),
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001346 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -08001347 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +09001348 cifs_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (cifs_inode_cachep == NULL)
1350 return -ENOMEM;
1351
1352 return 0;
1353}
1354
1355static void
1356cifs_destroy_inodecache(void)
1357{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001358 /*
1359 * Make sure all delayed rcu free inodes are flushed before we
1360 * destroy cache.
1361 */
1362 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001363 kmem_cache_destroy(cifs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364}
1365
1366static int
1367cifs_init_request_bufs(void)
1368{
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001369 /*
1370 * SMB2 maximum header size is bigger than CIFS one - no problems to
1371 * allocate some more bytes for CIFS.
1372 */
Steve French2a38e122017-07-08 18:48:15 -05001373 size_t max_hdr_size = MAX_SMB2_HDR_SIZE;
1374
Steve French4523cc32007-04-30 20:13:06 +00001375 if (CIFSMaxBufSize < 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
1377 Unicode path name has to fit in any SMB/CIFS path based frames */
1378 CIFSMaxBufSize = 8192;
1379 } else if (CIFSMaxBufSize > 1024*127) {
1380 CIFSMaxBufSize = 1024 * 127;
1381 } else {
1382 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1383 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001384/*
1385 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1386 CIFSMaxBufSize, CIFSMaxBufSize);
1387*/
David Windsorde046442017-06-10 22:50:33 -04001388 cifs_req_cachep = kmem_cache_create_usercopy("cifs_request",
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001389 CIFSMaxBufSize + max_hdr_size, 0,
David Windsorde046442017-06-10 22:50:33 -04001390 SLAB_HWCACHE_ALIGN, 0,
1391 CIFSMaxBufSize + max_hdr_size,
1392 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 if (cifs_req_cachep == NULL)
1394 return -ENOMEM;
1395
Steve French4523cc32007-04-30 20:13:06 +00001396 if (cifs_min_rcv < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 cifs_min_rcv = 1;
1398 else if (cifs_min_rcv > 64) {
1399 cifs_min_rcv = 64;
Joe Perchesf96637b2013-05-04 22:12:25 -05001400 cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402
Matthew Dobson93d23412006-03-26 01:37:50 -08001403 cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
1404 cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Steve French4523cc32007-04-30 20:13:06 +00001406 if (cifs_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 kmem_cache_destroy(cifs_req_cachep);
1408 return -ENOMEM;
1409 }
Steve Frenchec637e32005-12-12 20:53:18 -08001410 /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 almost all handle based requests (but not write response, nor is it
1412 sufficient for path based requests). A smaller size would have
Steve French50c2f752007-07-13 00:33:32 +00001413 been more efficient (compacting multiple slab items on one 4k page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 for the case in which debug was on, but this larger size allows
1415 more SMBs to use small buffer alloc and is still much more
Steve French6dc0f872007-07-06 23:13:06 +00001416 efficient to alloc 1 per page off the slab compared to 17K (5page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 alloc of large cifs buffers even when page debugging is on */
David Windsorde046442017-06-10 22:50:33 -04001418 cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq",
Steve French6dc0f872007-07-06 23:13:06 +00001419 MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
David Windsorde046442017-06-10 22:50:33 -04001420 0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (cifs_sm_req_cachep == NULL) {
1422 mempool_destroy(cifs_req_poolp);
1423 kmem_cache_destroy(cifs_req_cachep);
Steve French6dc0f872007-07-06 23:13:06 +00001424 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426
Steve French4523cc32007-04-30 20:13:06 +00001427 if (cifs_min_small < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 cifs_min_small = 2;
1429 else if (cifs_min_small > 256) {
1430 cifs_min_small = 256;
Joe Perchesf96637b2013-05-04 22:12:25 -05001431 cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433
Matthew Dobson93d23412006-03-26 01:37:50 -08001434 cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
1435 cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Steve French4523cc32007-04-30 20:13:06 +00001437 if (cifs_sm_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 mempool_destroy(cifs_req_poolp);
1439 kmem_cache_destroy(cifs_req_cachep);
1440 kmem_cache_destroy(cifs_sm_req_cachep);
1441 return -ENOMEM;
1442 }
1443
1444 return 0;
1445}
1446
1447static void
1448cifs_destroy_request_bufs(void)
1449{
1450 mempool_destroy(cifs_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001451 kmem_cache_destroy(cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 mempool_destroy(cifs_sm_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001453 kmem_cache_destroy(cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455
1456static int
1457cifs_init_mids(void)
1458{
1459 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
Steve French26f57362007-08-30 22:09:15 +00001460 sizeof(struct mid_q_entry), 0,
1461 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 if (cifs_mid_cachep == NULL)
1463 return -ENOMEM;
1464
Matthew Dobson93d23412006-03-26 01:37:50 -08001465 /* 3 is a reasonable minimum number of simultaneous operations */
1466 cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
Steve French4523cc32007-04-30 20:13:06 +00001467 if (cifs_mid_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 kmem_cache_destroy(cifs_mid_cachep);
1469 return -ENOMEM;
1470 }
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 return 0;
1473}
1474
1475static void
1476cifs_destroy_mids(void)
1477{
1478 mempool_destroy(cifs_mid_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001479 kmem_cache_destroy(cifs_mid_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482static int __init
1483init_cifs(void)
1484{
1485 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 cifs_proc_init();
Jeff Laytone7ddee92008-11-14 13:44:38 -05001487 INIT_LIST_HEAD(&cifs_tcp_ses_list);
Steve French0eff0e22011-02-24 05:39:23 +00001488#ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* unused temporarily */
Steve French4ca9c192005-10-10 19:52:13 -07001489 INIT_LIST_HEAD(&GlobalDnotifyReqList);
1490 INIT_LIST_HEAD(&GlobalDnotifyRsp_Q);
Steve French0eff0e22011-02-24 05:39:23 +00001491#endif /* was needed for dnotify, and will be needed for inotify when VFS fix */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492/*
1493 * Initialize Global counters
1494 */
1495 atomic_set(&sesInfoAllocCount, 0);
1496 atomic_set(&tconInfoAllocCount, 0);
Steve French6dc0f872007-07-06 23:13:06 +00001497 atomic_set(&tcpSesAllocCount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 atomic_set(&tcpSesReconnectCount, 0);
1499 atomic_set(&tconInfoReconnectCount, 0);
1500
1501 atomic_set(&bufAllocCount, 0);
Steve French4498eed52005-12-03 13:58:57 -08001502 atomic_set(&smBufAllocCount, 0);
1503#ifdef CONFIG_CIFS_STATS2
1504 atomic_set(&totBufAllocCount, 0);
1505 atomic_set(&totSmBufAllocCount, 0);
Steve French00778e22018-09-18 14:05:18 -05001506 if (slow_rsp_threshold < 1)
1507 cifs_dbg(FYI, "slow_response_threshold msgs disabled\n");
1508 else if (slow_rsp_threshold > 32767)
1509 cifs_dbg(VFS,
1510 "slow response threshold set higher than recommended (0 to 32767)\n");
Steve French4498eed52005-12-03 13:58:57 -08001511#endif /* CONFIG_CIFS_STATS2 */
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 atomic_set(&midCount, 0);
1514 GlobalCurrentXid = 0;
1515 GlobalTotalActiveXid = 0;
1516 GlobalMaxActiveXid = 0;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301517 spin_lock_init(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 spin_lock_init(&GlobalMid_Lock);
1519
Jason A. Donenfeld51b08172017-06-07 20:42:50 -04001520 cifs_lock_secret = get_random_u32();
Jeff Layton3d224622016-05-24 06:27:44 -04001521
Steve French4523cc32007-04-30 20:13:06 +00001522 if (cifs_max_pending < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 cifs_max_pending = 2;
Joe Perchesf96637b2013-05-04 22:12:25 -05001524 cifs_dbg(FYI, "cifs_max_pending set to min of 2\n");
Pavel Shilovsky10b9b982012-03-20 12:55:09 +03001525 } else if (cifs_max_pending > CIFS_MAX_REQ) {
1526 cifs_max_pending = CIFS_MAX_REQ;
Joe Perchesf96637b2013-05-04 22:12:25 -05001527 cifs_dbg(FYI, "cifs_max_pending set to max of %u\n",
1528 CIFS_MAX_REQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530
Jeff Laytonda472fc2012-03-23 14:40:53 -04001531 cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1532 if (!cifsiod_wq) {
1533 rc = -ENOMEM;
1534 goto out_clean_proc;
1535 }
1536
Steve French35cf94a2019-09-07 01:09:49 -05001537 /*
Steve French10328c42019-09-09 13:30:15 -05001538 * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3)
1539 * so that we don't launch too many worker threads but
1540 * Documentation/workqueue.txt recommends setting it to 0
Steve French35cf94a2019-09-07 01:09:49 -05001541 */
Steve French10328c42019-09-09 13:30:15 -05001542
1543 /* WQ_UNBOUND allows decrypt tasks to run on any CPU */
Steve French35cf94a2019-09-07 01:09:49 -05001544 decrypt_wq = alloc_workqueue("smb3decryptd",
Steve French10328c42019-09-09 13:30:15 -05001545 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
Steve French35cf94a2019-09-07 01:09:49 -05001546 if (!decrypt_wq) {
1547 rc = -ENOMEM;
1548 goto out_destroy_cifsiod_wq;
1549 }
1550
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001551 cifsoplockd_wq = alloc_workqueue("cifsoplockd",
1552 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1553 if (!cifsoplockd_wq) {
1554 rc = -ENOMEM;
Steve French35cf94a2019-09-07 01:09:49 -05001555 goto out_destroy_decrypt_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001556 }
1557
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301558 rc = cifs_fscache_register();
1559 if (rc)
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001560 goto out_destroy_cifsoplockd_wq;
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 rc = cifs_init_inodecache();
Steve French45af7a02006-04-21 22:52:25 +00001563 if (rc)
Steve Frenchd3bf5222010-09-22 19:15:36 +00001564 goto out_unreg_fscache;
Steve French45af7a02006-04-21 22:52:25 +00001565
1566 rc = cifs_init_mids();
1567 if (rc)
1568 goto out_destroy_inodecache;
1569
1570 rc = cifs_init_request_bufs();
1571 if (rc)
1572 goto out_destroy_mids;
1573
Paulo Alcantara1c780222018-11-14 16:24:03 -02001574#ifdef CONFIG_CIFS_DFS_UPCALL
1575 rc = dfs_cache_init();
1576 if (rc)
1577 goto out_destroy_request_bufs;
1578#endif /* CONFIG_CIFS_DFS_UPCALL */
Jeff Layton84a15b92007-11-03 05:02:24 +00001579#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001580 rc = init_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001581 if (rc)
Paulo Alcantara1c780222018-11-14 16:24:03 -02001582 goto out_destroy_dfs_cache;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001583#endif /* CONFIG_CIFS_UPCALL */
1584
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001585 rc = init_cifs_idmap();
1586 if (rc)
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001587 goto out_register_key_type;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001588
1589 rc = register_filesystem(&cifs_fs_type);
1590 if (rc)
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001591 goto out_init_cifs_idmap;
Steve French45af7a02006-04-21 22:52:25 +00001592
Steve French49218b42018-05-23 21:44:53 -05001593 rc = register_filesystem(&smb3_fs_type);
1594 if (rc) {
1595 unregister_filesystem(&cifs_fs_type);
1596 goto out_init_cifs_idmap;
1597 }
1598
Steve French45af7a02006-04-21 22:52:25 +00001599 return 0;
1600
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001601out_init_cifs_idmap:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001602 exit_cifs_idmap();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001603out_register_key_type:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001604#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001605 exit_cifs_spnego();
Paulo Alcantara1c780222018-11-14 16:24:03 -02001606out_destroy_dfs_cache:
1607#endif
1608#ifdef CONFIG_CIFS_DFS_UPCALL
1609 dfs_cache_destroy();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001610out_destroy_request_bufs:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001611#endif
Steve French45af7a02006-04-21 22:52:25 +00001612 cifs_destroy_request_bufs();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001613out_destroy_mids:
Steve French45af7a02006-04-21 22:52:25 +00001614 cifs_destroy_mids();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001615out_destroy_inodecache:
Steve French45af7a02006-04-21 22:52:25 +00001616 cifs_destroy_inodecache();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001617out_unreg_fscache:
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301618 cifs_fscache_unregister();
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001619out_destroy_cifsoplockd_wq:
1620 destroy_workqueue(cifsoplockd_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001621out_destroy_decrypt_wq:
1622 destroy_workqueue(decrypt_wq);
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001623out_destroy_cifsiod_wq:
Jeff Laytonda472fc2012-03-23 14:40:53 -04001624 destroy_workqueue(cifsiod_wq);
Steve Frenchd3bf5222010-09-22 19:15:36 +00001625out_clean_proc:
1626 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return rc;
1628}
1629
1630static void __exit
1631exit_cifs(void)
1632{
Steve French49218b42018-05-23 21:44:53 -05001633 cifs_dbg(NOISY, "exit_smb3\n");
Jeff Layton3dd93302012-03-21 06:27:55 -04001634 unregister_filesystem(&cifs_fs_type);
Steve French49218b42018-05-23 21:44:53 -05001635 unregister_filesystem(&smb3_fs_type);
Igor Mammedov78d31a32008-04-24 12:56:07 +04001636 cifs_dfs_release_automount_timer();
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001637 exit_cifs_idmap();
Jeff Layton84a15b92007-11-03 05:02:24 +00001638#ifdef CONFIG_CIFS_UPCALL
Shu Wang94183332017-09-07 16:03:27 +08001639 exit_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001640#endif
Paulo Alcantara1c780222018-11-14 16:24:03 -02001641#ifdef CONFIG_CIFS_DFS_UPCALL
1642 dfs_cache_destroy();
1643#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 cifs_destroy_request_bufs();
Jeff Layton3dd93302012-03-21 06:27:55 -04001645 cifs_destroy_mids();
1646 cifs_destroy_inodecache();
1647 cifs_fscache_unregister();
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001648 destroy_workqueue(cifsoplockd_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001649 destroy_workqueue(decrypt_wq);
Jeff Laytonda472fc2012-03-23 14:40:53 -04001650 destroy_workqueue(cifsiod_wq);
Jeff Layton3dd93302012-03-21 06:27:55 -04001651 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
Steve French1c3a13a2018-09-18 04:07:45 -05001654MODULE_AUTHOR("Steve French");
Steve French6dc0f872007-07-06 23:13:06 +00001655MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656MODULE_DESCRIPTION
Steve French1c3a13a2018-09-18 04:07:45 -05001657 ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
1658 "also older servers complying with the SNIA CIFS Specification)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659MODULE_VERSION(CIFS_VERSION);
Jean Delvareb9be76d2017-01-25 16:09:10 +01001660MODULE_SOFTDEP("pre: ecb");
1661MODULE_SOFTDEP("pre: hmac");
1662MODULE_SOFTDEP("pre: md4");
1663MODULE_SOFTDEP("pre: md5");
1664MODULE_SOFTDEP("pre: nls");
Jean Delvareb9be76d2017-01-25 16:09:10 +01001665MODULE_SOFTDEP("pre: aes");
1666MODULE_SOFTDEP("pre: cmac");
1667MODULE_SOFTDEP("pre: sha256");
Aurelien Aptel5fcd7f32018-02-16 19:19:28 +01001668MODULE_SOFTDEP("pre: sha512");
Pavel Shilovsky026e93d2016-11-03 16:47:37 -07001669MODULE_SOFTDEP("pre: aead2");
1670MODULE_SOFTDEP("pre: ccm");
Aurelien Aptel5fc36812019-06-14 21:46:35 +02001671MODULE_SOFTDEP("pre: gcm");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672module_init(init_cifs)
1673module_exit(exit_cifs)