blob: 9fa930dfd78d60acb2f384124eb973657b016f78 [file] [log] [blame]
Steve French929be902021-06-18 00:31:49 -05001// SPDX-License-Identifier: LGPL-2.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11/* Note that BB means BUGBUG (ie something to fix eventually) */
12
13#include <linux/module.h>
14#include <linux/fs.h>
15#include <linux/mount.h>
16#include <linux/slab.h>
17#include <linux/init.h>
18#include <linux/list.h>
19#include <linux/seq_file.h>
20#include <linux/vfs.h>
21#include <linux/mempool.h>
Steve French6ab16d22005-11-29 20:55:11 -080022#include <linux/delay.h>
Steve French45af7a02006-04-21 22:52:25 +000023#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080024#include <linux/freezer.h>
Al Virofec11dd2011-07-18 13:50:40 -040025#include <linux/namei.h>
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -070026#include <linux/random.h>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020027#include <linux/uuid.h>
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +020028#include <linux/xattr.h>
Ben Greear3eb9a882010-09-01 17:06:02 -070029#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "cifsfs.h"
31#include "cifspdu.h"
32#define DECLARE_GLOBALS_HERE
33#include "cifsglob.h"
34#include "cifsproto.h"
35#include "cifs_debug.h"
36#include "cifs_fs_sb.h"
37#include <linux/mm.h>
Jeff Layton84a15b92007-11-03 05:02:24 +000038#include <linux/key-type.h>
Jeff Laytone5459372007-11-03 05:11:06 +000039#include "cifs_spnego.h"
Suresh Jayaramanf579cf32010-07-05 18:11:50 +053040#include "fscache.h"
Pavel Shilovsky3792c172012-01-12 22:40:50 +040041#include "smb2pdu.h"
Paulo Alcantara1c780222018-11-14 16:24:03 -020042#ifdef CONFIG_CIFS_DFS_UPCALL
43#include "dfs_cache.h"
44#endif
Samuel Cabrero06f08da2020-11-30 19:02:49 +010045#ifdef CONFIG_CIFS_SWN_UPCALL
46#include "netlink.h"
47#endif
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -060048#include "fs_context.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -070050/*
51 * DOS dates from 1980/1/1 through 2107/12/31
52 * Protocol specifications indicate the range should be to 119, which
53 * limits maximum year to 2099. But this range has not been checked.
54 */
55#define SMB_DATE_MAX (127<<9 | 12<<5 | 31)
56#define SMB_DATE_MIN (0<<9 | 1<<5 | 1)
57#define SMB_TIME_MAX (23<<11 | 59<<5 | 29)
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059int cifsFYI = 0;
Kees Cook14042972016-03-17 14:22:54 -070060bool traceSMB;
Steve Frenche7504732011-10-12 17:47:03 -050061bool enable_oplocks = true;
Kees Cook14042972016-03-17 14:22:54 -070062bool linuxExtEnabled = true;
63bool lookupCacheEnabled = true;
Steve Frenchf92a7202018-05-24 04:11:07 -050064bool disable_legacy_dialects; /* false by default */
Steve Frenchfee742b2021-04-27 23:07:19 -050065bool enable_gcm_256 = true;
Steve Frenchfbfd0b42020-09-11 16:19:28 -050066bool require_gcm_256; /* false by default */
Steve French53d31a32021-07-05 15:05:39 -050067bool enable_negotiate_signing; /* false by default */
Jeff Layton04912d62010-04-24 07:57:45 -040068unsigned int global_secflags = CIFSSEC_DEF;
Steve French39798772006-05-31 22:40:51 +000069/* unsigned int ntlmv2_support = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070unsigned int sign_CIFS_PDUs = 1;
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080071static const struct super_operations cifs_super_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
Germano Percossicb978ac2016-09-30 21:25:24 -050073module_param(CIFSMaxBufSize, uint, 0444);
Steve French11911b92018-05-24 02:09:20 -050074MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
75 "for CIFS requests. "
Steve French63135e02007-07-17 17:34:02 +000076 "Default: 16384 Range: 8192 to 130048");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
Germano Percossicb978ac2016-09-30 21:25:24 -050078module_param(cifs_min_rcv, uint, 0444);
Steve French63135e02007-07-17 17:34:02 +000079MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: "
80 "1 to 64");
Linus Torvalds1da177e2005-04-16 15:20:36 -070081unsigned int cifs_min_small = 30;
Germano Percossicb978ac2016-09-30 21:25:24 -050082module_param(cifs_min_small, uint, 0444);
Steve French63135e02007-07-17 17:34:02 +000083MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 "
84 "Range: 2 to 256");
Linus Torvalds1da177e2005-04-16 15:20:36 -070085unsigned int cifs_max_pending = CIFS_MAX_REQ;
Jeff Layton60654ce2012-11-25 08:00:34 -050086module_param(cifs_max_pending, uint, 0444);
Steve French11911b92018-05-24 02:09:20 -050087MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server for "
88 "CIFS/SMB1 dialect (N/A for SMB3) "
Pavel Shilovsky10b9b982012-03-20 12:55:09 +030089 "Default: 32767 Range: 2 to 32767.");
Steve French00778e22018-09-18 14:05:18 -050090#ifdef CONFIG_CIFS_STATS2
91unsigned int slow_rsp_threshold = 1;
92module_param(slow_rsp_threshold, uint, 0644);
93MODULE_PARM_DESC(slow_rsp_threshold, "Amount of time (in seconds) to wait "
94 "before logging that a response is delayed. "
95 "Default: 1 (if set to 0 disables msg).");
96#endif /* STATS2 */
97
Steve Frenche7504732011-10-12 17:47:03 -050098module_param(enable_oplocks, bool, 0644);
Jeff Layton60654ce2012-11-25 08:00:34 -050099MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1");
Steve Frenche7504732011-10-12 17:47:03 -0500100
Steve French29e27922020-10-14 20:24:09 -0500101module_param(enable_gcm_256, bool, 0644);
102MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: n/N/0");
103
Steve Frenchfbfd0b42020-09-11 16:19:28 -0500104module_param(require_gcm_256, bool, 0644);
105MODULE_PARM_DESC(require_gcm_256, "Require strongest (256 bit) GCM encryption. Default: n/N/0");
106
Steve French53d31a32021-07-05 15:05:39 -0500107module_param(enable_negotiate_signing, bool, 0644);
108MODULE_PARM_DESC(enable_negotiate_signing, "Enable negotiating packet signing algorithm with server. Default: n/N/0");
109
Steve Frenchf92a7202018-05-24 04:11:07 -0500110module_param(disable_legacy_dialects, bool, 0644);
111MODULE_PARM_DESC(disable_legacy_dialects, "To improve security it may be "
112 "helpful to restrict the ability to "
113 "override the default dialects (SMB2.1, "
114 "SMB3 and SMB3.02) on mount with old "
115 "dialects (CIFS/SMB1 and SMB2) since "
116 "vers=1.0 (CIFS/SMB1) and vers=2.0 are weaker"
117 " and less secure. Default: n/N/0");
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119extern mempool_t *cifs_sm_req_poolp;
120extern mempool_t *cifs_req_poolp;
121extern mempool_t *cifs_mid_poolp;
122
Jeff Laytonda472fc2012-03-23 14:40:53 -0400123struct workqueue_struct *cifsiod_wq;
Steve French35cf94a2019-09-07 01:09:49 -0500124struct workqueue_struct *decrypt_wq;
Ronnie Sahlberg32546a92019-11-03 13:06:37 +1000125struct workqueue_struct *fileinfo_put_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +0200126struct workqueue_struct *cifsoplockd_wq;
Rohith Surabattula860b69a2021-05-05 10:56:47 +0000127struct workqueue_struct *deferredclose_wq;
Jeff Layton3d224622016-05-24 06:27:44 -0400128__u32 cifs_lock_secret;
Jeff Laytonda472fc2012-03-23 14:40:53 -0400129
Mateusz Guzik24261fc2013-03-08 16:30:03 +0100130/*
131 * Bumps refcount for cifs super block.
132 * Note that it should be only called if a referece to VFS super block is
133 * already held, e.g. in open-type syscalls context. Otherwise it can race with
134 * atomic_dec_and_test in deactivate_locked_super.
135 */
136void
137cifs_sb_active(struct super_block *sb)
138{
139 struct cifs_sb_info *server = CIFS_SB(sb);
140
141 if (atomic_inc_return(&server->active) == 1)
142 atomic_inc(&sb->s_active);
143}
144
145void
146cifs_sb_deactive(struct super_block *sb)
147{
148 struct cifs_sb_info *server = CIFS_SB(sb);
149
150 if (atomic_dec_and_test(&server->active))
151 deactivate_super(sb);
152}
153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int
Al Viro97d11522011-06-17 09:29:57 -0400155cifs_read_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 struct inode *inode;
Pavel Shilovskyb2e5cd32011-05-25 13:35:34 +0400158 struct cifs_sb_info *cifs_sb;
Jan Klos2f6c9472013-10-06 21:08:20 +0200159 struct cifs_tcon *tcon;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700160 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 int rc = 0;
Steve French50c2f752007-07-13 00:33:32 +0000162
Pavel Shilovskyb2e5cd32011-05-25 13:35:34 +0400163 cifs_sb = CIFS_SB(sb);
Jan Klos2f6c9472013-10-06 21:08:20 +0200164 tcon = cifs_sb_master_tcon(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Al Viro2c6292a2011-06-17 09:05:48 -0400166 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIXACL)
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800167 sb->s_flags |= SB_POSIXACL;
Al Viro2c6292a2011-06-17 09:05:48 -0400168
Steve French8a69e962018-06-29 16:06:15 -0500169 if (tcon->snapshot_time)
170 sb->s_flags |= SB_RDONLY;
171
Jan Klos2f6c9472013-10-06 21:08:20 +0200172 if (tcon->ses->capabilities & tcon->ses->server->vals->cap_large_files)
Al Viro2c6292a2011-06-17 09:05:48 -0400173 sb->s_maxbytes = MAX_LFS_FILESIZE;
174 else
175 sb->s_maxbytes = MAX_NON_LFS;
176
Steve French553292a2019-10-11 17:36:13 -0700177 /*
178 * Some very old servers like DOS and OS/2 used 2 second granularity
179 * (while all current servers use 100ns granularity - see MS-DTYP)
180 * but 1 second is the maximum allowed granularity for the VFS
181 * so for old servers set time granularity to 1 second while for
182 * everything else (current servers) set it to 100ns.
183 */
Steve Frenchd4cfbf02019-10-08 00:27:14 -0500184 if ((tcon->ses->server->vals->protocol_id == SMB10_PROT_ID) &&
185 ((tcon->ses->capabilities &
186 tcon->ses->server->vals->cap_nt_find) == 0) &&
187 !tcon->unix_ext) {
188 sb->s_time_gran = 1000000000; /* 1 second is max allowed gran */
189 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MIN), 0, 0);
190 sb->s_time_min = ts.tv_sec;
191 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MAX),
192 cpu_to_le16(SMB_TIME_MAX), 0);
193 sb->s_time_max = ts.tv_sec;
194 } else {
195 /*
196 * Almost every server, including all SMB2+, uses DCE TIME
197 * ie 100 nanosecond units, since 1601. See MS-DTYP and MS-FSCC
198 */
199 sb->s_time_gran = 100;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700200 ts = cifs_NTtimeToUnix(0);
201 sb->s_time_min = ts.tv_sec;
202 ts = cifs_NTtimeToUnix(cpu_to_le64(S64_MAX));
203 sb->s_time_max = ts.tv_sec;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700204 }
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 sb->s_magic = CIFS_MAGIC_NUMBER;
207 sb->s_op = &cifs_super_ops;
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +0200208 sb->s_xattr = cifs_xattr_handlers;
Jan Kara851ea082017-04-12 12:24:34 +0200209 rc = super_setup_bdi(sb);
210 if (rc)
211 goto out_no_root;
Steve Frenchb8d64f82021-04-24 21:46:23 -0500212 /* tune readahead according to rsize if readahead size not set on mount */
213 if (cifs_sb->ctx->rasize)
214 sb->s_bdi->ra_pages = cifs_sb->ctx->rasize / PAGE_SIZE;
215 else
216 sb->s_bdi->ra_pages = cifs_sb->ctx->rsize / PAGE_SIZE;
Jan Kara851ea082017-04-12 12:24:34 +0200217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 sb->s_blocksize = CIFS_MAX_MSGSIZE;
219 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
Shirish Pargaonkar9b6763e2011-02-21 23:56:59 -0600220 inode = cifs_root_iget(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
David Howellsce634ab2008-02-07 00:15:33 -0800222 if (IS_ERR(inode)) {
223 rc = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 goto out_no_root;
225 }
226
Jan Klos2f6c9472013-10-06 21:08:20 +0200227 if (tcon->nocase)
Jeff Layton66ffd112013-07-30 11:38:44 -0400228 sb->s_d_op = &cifs_ci_dentry_ops;
229 else
230 sb->s_d_op = &cifs_dentry_ops;
231
Al Viro48fde702012-01-08 22:15:13 -0500232 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (!sb->s_root) {
234 rc = -ENOMEM;
235 goto out_no_root;
236 }
Steve French50c2f752007-07-13 00:33:32 +0000237
Paul Bollef3a6a602011-10-12 14:14:04 +0200238#ifdef CONFIG_CIFS_NFSD_EXPORT
Steve French7521a3c2007-07-11 18:30:34 +0000239 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500240 cifs_dbg(FYI, "export ops supported\n");
Steve French7521a3c2007-07-11 18:30:34 +0000241 sb->s_export_op = &cifs_export_ops;
242 }
Paul Bollef3a6a602011-10-12 14:14:04 +0200243#endif /* CONFIG_CIFS_NFSD_EXPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 return 0;
246
247out_no_root:
Joe Perchesf96637b2013-05-04 22:12:25 -0500248 cifs_dbg(VFS, "%s: get root inode failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return rc;
250}
251
Al Viro6d686172011-06-17 08:34:57 -0400252static void cifs_kill_sb(struct super_block *sb)
253{
254 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Ronnie Sahlberg5e9c89d2021-03-09 09:07:31 +1000255 struct cifs_tcon *tcon;
256 struct cached_fid *cfid;
Ronnie Sahlberg269f67e2021-03-09 09:07:30 +1000257
Ronnie Sahlberg5e9c89d2021-03-09 09:07:31 +1000258 /*
259 * We ned to release all dentries for the cached directories
260 * before we kill the sb.
261 */
Ronnie Sahlberg269f67e2021-03-09 09:07:30 +1000262 if (cifs_sb->root) {
263 dput(cifs_sb->root);
264 cifs_sb->root = NULL;
265 }
Ronnie Sahlberg5e9c89d2021-03-09 09:07:31 +1000266 tcon = cifs_sb_master_tcon(cifs_sb);
267 if (tcon) {
268 cfid = &tcon->crfid;
269 mutex_lock(&cfid->fid_mutex);
270 if (cfid->dentry) {
271
272 dput(cfid->dentry);
273 cfid->dentry = NULL;
274 }
275 mutex_unlock(&cfid->fid_mutex);
276 }
Ronnie Sahlberg269f67e2021-03-09 09:07:30 +1000277
Al Viro6d686172011-06-17 08:34:57 -0400278 kill_anon_super(sb);
Al Viro98ab4942011-06-17 09:32:10 -0400279 cifs_umount(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
282static int
David Howells726c3342006-06-23 02:02:58 -0700283cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
David Howells726c3342006-06-23 02:02:58 -0700285 struct super_block *sb = dentry->d_sb;
Steve French39da9842008-04-28 04:04:34 +0000286 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000287 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700288 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400289 unsigned int xid;
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700290 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400292 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Steve French21ba3842018-06-24 23:18:52 -0500294 if (le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength) > 0)
295 buf->f_namelen =
296 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
297 else
298 buf->f_namelen = PATH_MAX;
299
300 buf->f_fsid.val[0] = tcon->vol_serial_number;
301 /* are using part of create time for more randomness, see man statfs */
302 buf->f_fsid.val[1] = (int)le64_to_cpu(tcon->vol_create_time);
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 buf->f_files = 0; /* undefined */
305 buf->f_ffree = 0; /* unlimited */
306
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700307 if (server->ops->queryfs)
Amir Goldstein0f060932020-02-03 21:46:43 +0200308 rc = server->ops->queryfs(xid, tcon, cifs_sb, buf);
Steve French39da9842008-04-28 04:04:34 +0000309
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400310 free_xid(xid);
Paulo Alcantara14302ee2021-03-08 12:00:49 -0300311 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Steve French31742c52014-08-17 08:38:47 -0500314static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len)
315{
Al Viro7119e222014-10-22 00:25:12 -0400316 struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file);
Steve French31742c52014-08-17 08:38:47 -0500317 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
318 struct TCP_Server_Info *server = tcon->ses->server;
319
320 if (server->ops->fallocate)
321 return server->ops->fallocate(file, tcon, mode, off, len);
322
323 return -EOPNOTSUPP;
324}
325
Christian Brauner549c7292021-01-21 14:19:43 +0100326static int cifs_permission(struct user_namespace *mnt_userns,
327 struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct cifs_sb_info *cifs_sb;
330
331 cifs_sb = CIFS_SB(inode->i_sb);
332
Miklos Szeredif696a362008-07-31 13:41:58 +0200333 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
334 if ((mask & MAY_EXEC) && !execute_ok(inode))
335 return -EACCES;
336 else
337 return 0;
338 } else /* file mode might have been restricted at mount time
Steve French50c2f752007-07-13 00:33:32 +0000339 on the client (above and beyond ACL on servers) for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 servers which do not support setting and viewing mode bits,
Steve French50c2f752007-07-13 00:33:32 +0000341 so allowing client to check permissions is useful */
Christian Brauner47291ba2021-01-21 14:19:24 +0100342 return generic_permission(&init_user_ns, inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
Christoph Lametere18b8902006-12-06 20:33:20 -0800345static struct kmem_cache *cifs_inode_cachep;
346static struct kmem_cache *cifs_req_cachep;
347static struct kmem_cache *cifs_mid_cachep;
Christoph Lametere18b8902006-12-06 20:33:20 -0800348static struct kmem_cache *cifs_sm_req_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349mempool_t *cifs_sm_req_poolp;
350mempool_t *cifs_req_poolp;
351mempool_t *cifs_mid_poolp;
352
353static struct inode *
354cifs_alloc_inode(struct super_block *sb)
355{
356 struct cifsInodeInfo *cifs_inode;
Christoph Lametere94b1762006-12-06 20:33:17 -0800357 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!cifs_inode)
359 return NULL;
360 cifs_inode->cifsAttrs = 0x20; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 cifs_inode->time = 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700362 /*
363 * Until the file is open and we have gotten oplock info back from the
364 * server, can not assume caching of file data or metadata.
365 */
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300366 cifs_set_oplock_level(cifs_inode, 0);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400367 cifs_inode->flags = 0;
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000368 spin_lock_init(&cifs_inode->writers_lock);
369 cifs_inode->writers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400371 cifs_inode->server_eof = 0;
Jeff Layton20054bd2011-01-07 11:30:27 -0500372 cifs_inode->uniqueid = 0;
373 cifs_inode->createtime = 0;
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400374 cifs_inode->epoch = 0;
Ronnie Sahlberg487317c2019-06-05 10:38:38 +1000375 spin_lock_init(&cifs_inode->open_file_lock);
Steve Frenchfa70b872016-09-22 00:39:34 -0500376 generate_random_uuid(cifs_inode->lease_key);
Steve French2a38e122017-07-08 18:48:15 -0500377
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700378 /*
379 * Can not set i_flags here - they get immediately overwritten to zero
380 * by the VFS.
381 */
382 /* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 INIT_LIST_HEAD(&cifs_inode->openFileList);
Pavel Shilovskyf45d3412012-09-19 06:22:43 -0700384 INIT_LIST_HEAD(&cifs_inode->llist);
Rohith Surabattulac3f207ab2021-04-13 00:26:42 -0500385 INIT_LIST_HEAD(&cifs_inode->deferred_closes);
386 spin_lock_init(&cifs_inode->deferred_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return &cifs_inode->vfs_inode;
388}
389
390static void
Al Viroc2e68022019-04-14 23:18:35 -0400391cifs_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
Al Viroc2e68022019-04-14 23:18:35 -0400393 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
Jeff Layton61f98ff2009-06-11 10:27:32 -0400396static void
Al Virob57922d2010-06-07 14:34:48 -0400397cifs_evict_inode(struct inode *inode)
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530398{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700399 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200400 clear_inode(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530401}
402
403static void
Jeff Layton61f98ff2009-06-11 10:27:32 -0400404cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server)
405{
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300406 struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr;
407 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr;
408
Fabian Frederick571d5972014-05-13 18:04:17 +0200409 seq_puts(s, ",addr=");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400410
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300411 switch (server->dstaddr.ss_family) {
Jeff Layton61f98ff2009-06-11 10:27:32 -0400412 case AF_INET:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300413 seq_printf(s, "%pI4", &sa->sin_addr.s_addr);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400414 break;
415 case AF_INET6:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300416 seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr);
417 if (sa6->sin6_scope_id)
418 seq_printf(s, "%%%u", sa6->sin6_scope_id);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400419 break;
420 default:
Fabian Frederick571d5972014-05-13 18:04:17 +0200421 seq_puts(s, "(unknown)");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400422 }
Long Li8339dd32017-11-07 01:54:55 -0700423 if (server->rdma)
424 seq_puts(s, ",rdma");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400425}
426
Jeff Layton3e715512011-06-13 11:50:41 -0400427static void
Jeff Layton28e11bd2013-05-26 07:01:00 -0400428cifs_show_security(struct seq_file *s, struct cifs_ses *ses)
Jeff Layton3e715512011-06-13 11:50:41 -0400429{
Steve Frencheda21162015-09-11 19:24:19 -0500430 if (ses->sectype == Unspecified) {
431 if (ses->user_name == NULL)
432 seq_puts(s, ",sec=none");
Jeff Layton28e11bd2013-05-26 07:01:00 -0400433 return;
Steve Frencheda21162015-09-11 19:24:19 -0500434 }
Jeff Layton28e11bd2013-05-26 07:01:00 -0400435
Fabian Frederick571d5972014-05-13 18:04:17 +0200436 seq_puts(s, ",sec=");
Jeff Layton3e715512011-06-13 11:50:41 -0400437
Jeff Layton28e11bd2013-05-26 07:01:00 -0400438 switch (ses->sectype) {
Jeff Layton3e715512011-06-13 11:50:41 -0400439 case NTLMv2:
Fabian Frederick571d5972014-05-13 18:04:17 +0200440 seq_puts(s, "ntlmv2");
Jeff Layton3e715512011-06-13 11:50:41 -0400441 break;
Jeff Layton3e715512011-06-13 11:50:41 -0400442 case Kerberos:
Petr Pavlu3f6166a2020-02-10 10:38:14 +0100443 seq_puts(s, "krb5");
Jeff Layton3e715512011-06-13 11:50:41 -0400444 break;
445 case RawNTLMSSP:
Fabian Frederick571d5972014-05-13 18:04:17 +0200446 seq_puts(s, "ntlmssp");
Jeff Layton3e715512011-06-13 11:50:41 -0400447 break;
448 default:
449 /* shouldn't ever happen */
Fabian Frederick571d5972014-05-13 18:04:17 +0200450 seq_puts(s, "unknown");
Jeff Layton3e715512011-06-13 11:50:41 -0400451 break;
452 }
453
Jeff Layton28e11bd2013-05-26 07:01:00 -0400454 if (ses->sign)
Fabian Frederick571d5972014-05-13 18:04:17 +0200455 seq_puts(s, "i");
Petr Pavlu3f6166a2020-02-10 10:38:14 +0100456
457 if (ses->sectype == Kerberos)
458 seq_printf(s, ",cruid=%u",
459 from_kuid_munged(&init_user_ns, ses->cred_uid));
Jeff Layton3e715512011-06-13 11:50:41 -0400460}
461
Jeff Laytond06b5052012-05-16 07:53:01 -0400462static void
463cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb)
464{
Fabian Frederick571d5972014-05-13 18:04:17 +0200465 seq_puts(s, ",cache=");
Jeff Laytond06b5052012-05-16 07:53:01 -0400466
467 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200468 seq_puts(s, "strict");
Jeff Laytond06b5052012-05-16 07:53:01 -0400469 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200470 seq_puts(s, "none");
Steve French41e033f2019-08-30 02:12:41 -0500471 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
472 seq_puts(s, "singleclient"); /* assume only one client access */
Steve French83bbfa72019-08-27 23:58:54 -0500473 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE)
474 seq_puts(s, "ro"); /* read only caching assumed */
Jeff Laytond06b5052012-05-16 07:53:01 -0400475 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200476 seq_puts(s, "loose");
Jeff Laytond06b5052012-05-16 07:53:01 -0400477}
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
Steve French653a5ef2020-12-14 20:08:10 -0600480 * cifs_show_devname() is used so we show the mount device name with correct
481 * format (e.g. forward slashes vs. back slashes) in /proc/mounts
482 */
483static int cifs_show_devname(struct seq_file *m, struct dentry *root)
484{
485 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
Ronnie Sahlbergaf1a3d22021-02-11 16:06:16 +1000486 char *devname = kstrdup(cifs_sb->ctx->source, GFP_KERNEL);
Steve French653a5ef2020-12-14 20:08:10 -0600487
488 if (devname == NULL)
489 seq_puts(m, "none");
490 else {
491 convert_delimiter(devname, '/');
Maciek Borzecki0fc93222021-04-06 17:02:29 +0200492 /* escape all spaces in share names */
493 seq_escape(m, devname, " \t");
Steve French653a5ef2020-12-14 20:08:10 -0600494 kfree(devname);
495 }
496 return 0;
497}
498
499/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * cifs_show_options() is for displaying mount options in /proc/mounts.
501 * Not all settable options are displayed but most of the important
502 * ones are.
503 */
504static int
Al Viro34c80b12011-12-08 21:32:45 -0500505cifs_show_options(struct seq_file *s, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Al Viro34c80b12011-12-08 21:32:45 -0500507 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +0000508 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Ben Greear3eb9a882010-09-01 17:06:02 -0700509 struct sockaddr *srcaddr;
510 srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Kees Cooka068acf2015-09-04 15:44:57 -0700512 seq_show_option(s, "vers", tcon->ses->server->vals->version_string);
Jeff Layton28e11bd2013-05-26 07:01:00 -0400513 cifs_show_security(s, tcon->ses);
Jeff Laytond06b5052012-05-16 07:53:01 -0400514 cifs_show_cache_flavor(s, cifs_sb);
Jeff Layton3e715512011-06-13 11:50:41 -0400515
Steve French3e7a02d2019-09-11 21:46:20 -0500516 if (tcon->no_lease)
517 seq_puts(s, ",nolease");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000518 if (cifs_sb->ctx->multiuser)
Fabian Frederick571d5972014-05-13 18:04:17 +0200519 seq_puts(s, ",multiuser");
Steve French8727c8a2011-02-25 01:11:56 -0600520 else if (tcon->ses->user_name)
Kees Cooka068acf2015-09-04 15:44:57 -0700521 seq_show_option(s, "username", tcon->ses->user_name);
Jeff Layton29e07c82010-09-29 19:51:12 -0400522
Ronnie Sahlberge55954a2018-08-10 11:31:10 +1000523 if (tcon->ses->domainName && tcon->ses->domainName[0] != 0)
Kees Cooka068acf2015-09-04 15:44:57 -0700524 seq_show_option(s, "domain", tcon->ses->domainName);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400525
Ben Greear3eb9a882010-09-01 17:06:02 -0700526 if (srcaddr->sa_family != AF_UNSPEC) {
527 struct sockaddr_in *saddr4;
528 struct sockaddr_in6 *saddr6;
529 saddr4 = (struct sockaddr_in *)srcaddr;
530 saddr6 = (struct sockaddr_in6 *)srcaddr;
531 if (srcaddr->sa_family == AF_INET6)
532 seq_printf(s, ",srcaddr=%pI6c",
533 &saddr6->sin6_addr);
534 else if (srcaddr->sa_family == AF_INET)
535 seq_printf(s, ",srcaddr=%pI4",
536 &saddr4->sin_addr.s_addr);
537 else
538 seq_printf(s, ",srcaddr=BAD-AF:%i",
539 (int)(srcaddr->sa_family));
540 }
541
Eric W. Biederman1f682332013-02-06 01:20:20 -0800542 seq_printf(s, ",uid=%u",
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600543 from_kuid_munged(&init_user_ns, cifs_sb->ctx->linux_uid));
Jeff Layton340481a32009-06-11 10:27:29 -0400544 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200545 seq_puts(s, ",forceuid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400546 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200547 seq_puts(s, ",noforceuid");
Jeff Layton340481a32009-06-11 10:27:29 -0400548
Eric W. Biederman1f682332013-02-06 01:20:20 -0800549 seq_printf(s, ",gid=%u",
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600550 from_kgid_munged(&init_user_ns, cifs_sb->ctx->linux_gid));
Jeff Layton340481a32009-06-11 10:27:29 -0400551 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200552 seq_puts(s, ",forcegid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400553 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200554 seq_puts(s, ",noforcegid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400555
Jeff Layton61f98ff2009-06-11 10:27:32 -0400556 cifs_show_address(s, tcon->ses->server);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400557
558 if (!tcon->unix_ext)
Al Viro5206efd2011-07-26 03:22:14 -0400559 seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho",
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600560 cifs_sb->ctx->file_mode,
561 cifs_sb->ctx->dir_mode);
Ronnie Sahlberg7c7ee622020-12-14 16:40:22 +1000562 if (cifs_sb->ctx->iocharset)
563 seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400564 if (tcon->seal)
Fabian Frederick571d5972014-05-13 18:04:17 +0200565 seq_puts(s, ",seal");
Steve Frenchec570102020-02-19 23:59:32 -0600566 else if (tcon->ses->server->ignore_signature)
567 seq_puts(s, ",signloosely");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400568 if (tcon->nocase)
Fabian Frederick571d5972014-05-13 18:04:17 +0200569 seq_puts(s, ",nocase");
Steve French82e93672020-05-19 03:06:57 -0500570 if (tcon->nodelete)
571 seq_puts(s, ",nodelete");
Kenneth D'souzac8b6ac12019-01-21 11:51:59 +1000572 if (tcon->local_lease)
573 seq_puts(s, ",locallease");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400574 if (tcon->retry)
Fabian Frederick571d5972014-05-13 18:04:17 +0200575 seq_puts(s, ",hard");
Ronnie Sahlberg6e82e922017-09-20 13:09:23 +1000576 else
577 seq_puts(s, ",soft");
Steve Frenchf16dfa72015-09-30 21:07:59 -0500578 if (tcon->use_persistent)
579 seq_puts(s, ",persistenthandles");
Steve French592fafe2015-11-03 10:08:53 -0600580 else if (tcon->use_resilient)
581 seq_puts(s, ",resilienthandles");
Steve Frenchb3266142018-05-20 23:41:10 -0500582 if (tcon->posix_extensions)
583 seq_puts(s, ",posix");
584 else if (tcon->unix_ext)
585 seq_puts(s, ",unix");
586 else
587 seq_puts(s, ",nounix");
Aurelien Aptel83930722018-09-20 18:10:25 -0700588 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
589 seq_puts(s, ",nodfs");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400590 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200591 seq_puts(s, ",posixpaths");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400592 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200593 seq_puts(s, ",setuids");
Steve French95932652016-09-23 01:36:34 -0500594 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
595 seq_puts(s, ",idsfromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400596 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200597 seq_puts(s, ",serverino");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000598 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
Fabian Frederick571d5972014-05-13 18:04:17 +0200599 seq_puts(s, ",rwpidforward");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000600 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200601 seq_puts(s, ",forcemand");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400602 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200603 seq_puts(s, ",nouser_xattr");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400604 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200605 seq_puts(s, ",mapchars");
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +0900606 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
607 seq_puts(s, ",mapposix");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400608 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200609 seq_puts(s, ",sfu");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400610 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200611 seq_puts(s, ",nobrl");
Steve French3d4ef9a12018-04-25 22:19:09 -0500612 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE)
613 seq_puts(s, ",nohandlecache");
Steve French412094a2019-06-24 02:01:42 -0500614 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)
615 seq_puts(s, ",modefromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400616 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200617 seq_puts(s, ",cifsacl");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400618 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200619 seq_puts(s, ",dynperm");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800620 if (root->d_sb->s_flags & SB_POSIXACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200621 seq_puts(s, ",acl");
Stefan Metzmacher736a33202010-07-30 14:56:00 +0200622 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200623 seq_puts(s, ",mfsymlinks");
Suresh Jayaraman476428f2010-11-24 17:49:07 +0530624 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
Fabian Frederick571d5972014-05-13 18:04:17 +0200625 seq_puts(s, ",fsc");
Steve French71c424b2011-10-19 20:44:48 -0500626 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)
Fabian Frederick571d5972014-05-13 18:04:17 +0200627 seq_puts(s, ",nostrictsync");
Steve French71c424b2011-10-19 20:44:48 -0500628 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200629 seq_puts(s, ",noperm");
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100630 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800631 seq_printf(s, ",backupuid=%u",
632 from_kuid_munged(&init_user_ns,
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600633 cifs_sb->ctx->backupuid));
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100634 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800635 seq_printf(s, ",backupgid=%u",
636 from_kgid_munged(&init_user_ns,
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600637 cifs_sb->ctx->backupgid));
Steve French2b280fa2008-05-17 03:12:45 +0000638
Steve French0c2b5f72020-12-15 13:28:50 -0600639 seq_printf(s, ",rsize=%u", cifs_sb->ctx->rsize);
640 seq_printf(s, ",wsize=%u", cifs_sb->ctx->wsize);
641 seq_printf(s, ",bsize=%u", cifs_sb->ctx->bsize);
Steve Frenchb8d64f82021-04-24 21:46:23 -0500642 if (cifs_sb->ctx->rasize)
643 seq_printf(s, ",rasize=%u", cifs_sb->ctx->rasize);
Steve French563317e2019-09-08 23:22:02 -0500644 if (tcon->ses->server->min_offload)
645 seq_printf(s, ",esize=%u", tcon->ses->server->min_offload);
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600646 seq_printf(s, ",echo_interval=%lu",
647 tcon->ses->server->echo_interval / HZ);
Steve Frenchdc179262019-06-17 17:34:57 -0500648
649 /* Only display max_credits if it was overridden on mount */
650 if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
651 seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);
652
Steve French8a69e962018-06-29 16:06:15 -0500653 if (tcon->snapshot_time)
654 seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);
Steve Frenchca567eb2019-03-29 16:31:07 -0500655 if (tcon->handle_timeout)
656 seq_printf(s, ",handletimeout=%u", tcon->handle_timeout);
Steve French57804642021-02-24 12:12:53 -0600657
658 /*
659 * Display file and directory attribute timeout in seconds.
660 * If file and directory attribute timeout the same then actimeo
661 * was likely specified on mount
662 */
663 if (cifs_sb->ctx->acdirmax == cifs_sb->ctx->acregmax)
664 seq_printf(s, ",actimeo=%lu", cifs_sb->ctx->acregmax / HZ);
665 else {
666 seq_printf(s, ",acdirmax=%lu", cifs_sb->ctx->acdirmax / HZ);
667 seq_printf(s, ",acregmax=%lu", cifs_sb->ctx->acregmax / HZ);
668 }
Jeff Layton8616e0f2009-06-11 10:27:28 -0400669
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200670 if (tcon->ses->chan_max > 1)
Steve French7866c172020-06-09 19:50:40 -0500671 seq_printf(s, ",multichannel,max_channels=%zu",
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200672 tcon->ses->chan_max);
673
Samuel Cabrero0ac4e292020-12-11 22:59:29 -0600674 if (tcon->use_witness)
675 seq_puts(s, ",witness");
Samuel Cabrero0ac4e292020-12-11 22:59:29 -0600676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return 0;
678}
679
Al Viro42faad92008-04-24 07:21:56 -0400680static void cifs_umount_begin(struct super_block *sb)
Steve French68058e72005-10-10 10:34:22 -0700681{
Al Viro42faad92008-04-24 07:21:56 -0400682 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000683 struct cifs_tcon *tcon;
Steve French68058e72005-10-10 10:34:22 -0700684
Steve French4523cc32007-04-30 20:13:06 +0000685 if (cifs_sb == NULL)
Steve French9e2e85f2005-10-10 14:28:38 -0700686 return;
687
Jeff Layton0d424ad2010-09-20 16:01:35 -0700688 tcon = cifs_sb_master_tcon(cifs_sb);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500689
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530690 spin_lock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000691 if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) {
692 /* we have other mounts to same share or we have
693 already tried to force umount this and woken up
694 all waiting network requests, nothing to do */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530695 spin_unlock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000696 return;
697 } else if (tcon->tc_count == 1)
Steve French5e1253b2005-10-10 14:06:37 -0700698 tcon->tidStatus = CifsExiting;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530699 spin_unlock(&cifs_tcp_ses_lock);
Steve French5e1253b2005-10-10 14:06:37 -0700700
Steve French3a5ff612006-07-14 22:37:11 +0000701 /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
Steve French7b7abfe2005-11-09 15:21:09 -0800702 /* cancel_notify_requests(tcon); */
Steve French50c2f752007-07-13 00:33:32 +0000703 if (tcon->ses && tcon->ses->server) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500704 cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n");
Steve French9e2e85f2005-10-10 14:28:38 -0700705 wake_up_all(&tcon->ses->server->request_q);
Steve French6ab16d22005-11-29 20:55:11 -0800706 wake_up_all(&tcon->ses->server->response_q);
707 msleep(1); /* yield */
708 /* we have to kick the requests once more */
709 wake_up_all(&tcon->ses->server->response_q);
710 msleep(1);
Steve French5e1253b2005-10-10 14:06:37 -0700711 }
Steve French68058e72005-10-10 10:34:22 -0700712
713 return;
714}
Steve French68058e72005-10-10 10:34:22 -0700715
Steve Frenchbf97d282006-09-28 21:34:06 +0000716#ifdef CONFIG_CIFS_STATS2
Al Viro64132372011-12-08 20:51:13 -0500717static int cifs_show_stats(struct seq_file *s, struct dentry *root)
Steve Frenchbf97d282006-09-28 21:34:06 +0000718{
719 /* BB FIXME */
720 return 0;
721}
722#endif
723
Al Viro45321ac2010-06-07 13:43:19 -0400724static int cifs_drop_inode(struct inode *inode)
Jeff Layton12420ac2010-06-01 14:47:40 -0400725{
726 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
727
Al Viro45321ac2010-06-07 13:43:19 -0400728 /* no serverino => unconditional eviction */
729 return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) ||
730 generic_drop_inode(inode);
Jeff Layton12420ac2010-06-01 14:47:40 -0400731}
732
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800733static const struct super_operations cifs_super_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 .statfs = cifs_statfs,
735 .alloc_inode = cifs_alloc_inode,
Al Viroc2e68022019-04-14 23:18:35 -0400736 .free_inode = cifs_free_inode,
Jeff Layton12420ac2010-06-01 14:47:40 -0400737 .drop_inode = cifs_drop_inode,
Al Virob57922d2010-06-07 14:34:48 -0400738 .evict_inode = cifs_evict_inode,
Steve French653a5ef2020-12-14 20:08:10 -0600739/* .show_path = cifs_show_path, */ /* Would we ever need show path? */
740 .show_devname = cifs_show_devname,
Jeff Layton12420ac2010-06-01 14:47:40 -0400741/* .delete_inode = cifs_delete_inode, */ /* Do not need above
742 function unless later we add lazy close of inodes or unless the
Steve French50c2f752007-07-13 00:33:32 +0000743 kernel forgets to call us with the same number of releases (closes)
744 as opens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 .show_options = cifs_show_options,
Steve French7b7abfe2005-11-09 15:21:09 -0800746 .umount_begin = cifs_umount_begin,
Steve Frenchbf97d282006-09-28 21:34:06 +0000747#ifdef CONFIG_CIFS_STATS2
Steve Frenchf46d3e12006-09-30 01:08:55 +0000748 .show_stats = cifs_show_stats,
Steve Frenchbf97d282006-09-28 21:34:06 +0000749#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750};
751
Steve Frenchf87d39d2011-05-27 03:50:55 +0000752/*
753 * Get root dentry from superblock according to prefix path mount option.
754 * Return dentry with refcount + 1 on success and NULL otherwise.
755 */
756static struct dentry *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600757cifs_get_root(struct smb3_fs_context *ctx, struct super_block *sb)
Steve Frenchf87d39d2011-05-27 03:50:55 +0000758{
Al Virofec11dd2011-07-18 13:50:40 -0400759 struct dentry *dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000760 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Al Virofec11dd2011-07-18 13:50:40 -0400761 char *full_path = NULL;
762 char *s, *p;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000763 char sep;
764
Sachin Prabhu348c1bf2016-07-29 22:38:21 +0100765 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
766 return dget(sb->s_root);
767
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600768 full_path = cifs_build_path_to_root(ctx, cifs_sb,
Sachin Prabhu374402a2016-12-15 12:31:19 +0530769 cifs_sb_master_tcon(cifs_sb), 0);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000770 if (full_path == NULL)
Al Viro9403c9c2011-06-17 10:02:59 -0400771 return ERR_PTR(-ENOMEM);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000772
Joe Perchesf96637b2013-05-04 22:12:25 -0500773 cifs_dbg(FYI, "Get root dentry for %s\n", full_path);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000774
Steve Frenchf87d39d2011-05-27 03:50:55 +0000775 sep = CIFS_DIR_SEP(cifs_sb);
Al Virofec11dd2011-07-18 13:50:40 -0400776 dentry = dget(sb->s_root);
777 p = s = full_path;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000778
Al Virofec11dd2011-07-18 13:50:40 -0400779 do {
David Howells2b0143b2015-03-17 22:25:59 +0000780 struct inode *dir = d_inode(dentry);
Al Virofec11dd2011-07-18 13:50:40 -0400781 struct dentry *child;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000782
Jeff Laytonce2ac522013-02-01 15:11:01 -0500783 if (!S_ISDIR(dir->i_mode)) {
784 dput(dentry);
785 dentry = ERR_PTR(-ENOTDIR);
786 break;
787 }
Pavel Shilovsky5b980b02011-08-21 19:30:15 +0400788
Al Virofec11dd2011-07-18 13:50:40 -0400789 /* skip separators */
790 while (*s == sep)
791 s++;
792 if (!*s)
793 break;
794 p = s++;
795 /* next separator */
796 while (*s && *s != sep)
797 s++;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000798
Al Viro6c2d47982019-10-31 01:21:58 -0400799 child = lookup_positive_unlocked(p, dentry, s - p);
Al Virofec11dd2011-07-18 13:50:40 -0400800 dput(dentry);
801 dentry = child;
802 } while (!IS_ERR(dentry));
Steve Frenchf87d39d2011-05-27 03:50:55 +0000803 kfree(full_path);
Al Virofec11dd2011-07-18 13:50:40 -0400804 return dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000805}
806
Al Viroee01a142011-06-17 09:47:23 -0400807static int cifs_set_super(struct super_block *sb, void *data)
808{
809 struct cifs_mnt_data *mnt_data = data;
810 sb->s_fs_info = mnt_data->cifs_sb;
811 return set_anon_super(sb, NULL);
812}
813
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600814struct dentry *
Steve Frenchc7c137b2018-06-06 17:59:29 -0500815cifs_smb3_do_mount(struct file_system_type *fs_type,
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600816 int flags, struct smb3_fs_context *old_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 int rc;
Jan Blunckdb719222010-08-15 22:51:10 +0200819 struct super_block *sb;
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000820 struct cifs_sb_info *cifs_sb = NULL;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400821 struct cifs_mnt_data mnt_data;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000822 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
Steve French8c1beb92018-10-07 13:52:18 -0500824 /*
825 * Prints in Kernel / CIFS log the attempted mount operation
826 * If CIFS_DEBUG && cifs_FYI
827 */
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300828 if (cifsFYI)
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600829 cifs_dbg(FYI, "Devname: %s flags: %d\n", old_ctx->UNC, flags);
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300830 else
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600831 cifs_info("Attempting to mount %s\n", old_ctx->UNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000833 cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
834 if (cifs_sb == NULL) {
835 root = ERR_PTR(-ENOMEM);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000836 goto out;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000837 }
838
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000839 cifs_sb->ctx = kzalloc(sizeof(struct smb3_fs_context), GFP_KERNEL);
840 if (!cifs_sb->ctx) {
Al Viro5d3bc602011-06-17 09:17:28 -0400841 root = ERR_PTR(-ENOMEM);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000842 goto out;
Al Viro5d3bc602011-06-17 09:17:28 -0400843 }
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000844 rc = smb3_fs_context_dup(cifs_sb->ctx, old_ctx);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100845 if (rc) {
846 root = ERR_PTR(rc);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000847 goto out;
Aurelien Aptela6b50582016-05-25 19:59:09 +0200848 }
849
Paulo Alcantara5c1acf32021-05-03 11:55:26 -0300850 rc = cifs_setup_volume_info(cifs_sb->ctx, NULL, NULL);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000851 if (rc) {
852 root = ERR_PTR(rc);
853 goto out;
854 }
855
Ronnie Sahlberg51acd202020-12-14 16:40:24 +1000856 rc = cifs_setup_cifs_sb(cifs_sb);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000857 if (rc) {
858 root = ERR_PTR(rc);
859 goto out;
860 }
861
862 rc = cifs_mount(cifs_sb, cifs_sb->ctx);
Al Viro97d11522011-06-17 09:29:57 -0400863 if (rc) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800864 if (!(flags & SB_SILENT))
Joe Perchesf96637b2013-05-04 22:12:25 -0500865 cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n",
866 rc);
Al Viro97d11522011-06-17 09:29:57 -0400867 root = ERR_PTR(rc);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000868 goto out;
Al Viro97d11522011-06-17 09:29:57 -0400869 }
870
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000871 mnt_data.ctx = cifs_sb->ctx;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400872 mnt_data.cifs_sb = cifs_sb;
873 mnt_data.flags = flags;
874
David Howells9249e172012-06-25 12:55:37 +0100875 /* BB should we make this contingent on mount parm? */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800876 flags |= SB_NODIRATIME | SB_NOATIME;
David Howells9249e172012-06-25 12:55:37 +0100877
878 sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000879 if (IS_ERR(sb)) {
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000880 root = ERR_CAST(sb);
Al Viro97d11522011-06-17 09:29:57 -0400881 cifs_umount(cifs_sb);
Ronnie Sahlberg6cf5abb2020-12-16 08:51:33 +1000882 cifs_sb = NULL;
Al Virod757d712011-06-17 09:42:43 -0400883 goto out;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Al Viroee01a142011-06-17 09:47:23 -0400886 if (sb->s_root) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500887 cifs_dbg(FYI, "Use existing superblock\n");
Al Viro97d11522011-06-17 09:29:57 -0400888 cifs_umount(cifs_sb);
Ronnie Sahlberg6cf5abb2020-12-16 08:51:33 +1000889 cifs_sb = NULL;
Al Viro5c4f1ad2011-06-17 09:56:55 -0400890 } else {
Al Viro5c4f1ad2011-06-17 09:56:55 -0400891 rc = cifs_read_super(sb);
892 if (rc) {
893 root = ERR_PTR(rc);
894 goto out_super;
895 }
896
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800897 sb->s_flags |= SB_ACTIVE;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400898 }
899
Ronnie Sahlberg6cf5abb2020-12-16 08:51:33 +1000900 root = cifs_get_root(cifs_sb ? cifs_sb->ctx : old_ctx, sb);
Al Viro9403c9c2011-06-17 10:02:59 -0400901 if (IS_ERR(root))
Al Virofa18f1b2011-06-17 09:50:44 -0400902 goto out_super;
Al Virofa18f1b2011-06-17 09:50:44 -0400903
Ronnie Sahlberg269f67e2021-03-09 09:07:30 +1000904 if (cifs_sb)
905 cifs_sb->root = dget(root);
906
Joe Perchesf96637b2013-05-04 22:12:25 -0500907 cifs_dbg(FYI, "dentry root is: %p\n", root);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000908 return root;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400909
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400910out_super:
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400911 deactivate_locked_super(sb);
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400912out:
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000913 if (cifs_sb) {
914 kfree(cifs_sb->prepath);
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +1000915 smb3_cleanup_fs_context(cifs_sb->ctx);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000916 kfree(cifs_sb);
917 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000918 return root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
Steve Frenchc7c137b2018-06-06 17:59:29 -0500921
Jeff Layton08bc0352014-05-23 06:50:21 -0400922static ssize_t
923cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter)
924{
925 ssize_t rc;
926 struct inode *inode = file_inode(iocb->ki_filp);
927
Ross Lagerwall882137c2015-12-02 14:46:07 +0000928 if (iocb->ki_filp->f_flags & O_DIRECT)
929 return cifs_user_readv(iocb, iter);
930
Jeff Layton08bc0352014-05-23 06:50:21 -0400931 rc = cifs_revalidate_mapping(inode);
932 if (rc)
933 return rc;
934
935 return generic_file_read_iter(iocb, iter);
936}
937
Al Viro3dae8752014-04-03 12:05:17 -0400938static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Steve French87c89dd2005-11-17 17:03:00 -0800939{
Al Viro496ad9a2013-01-23 17:07:38 -0500940 struct inode *inode = file_inode(iocb->ki_filp);
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000941 struct cifsInodeInfo *cinode = CIFS_I(inode);
Steve French87c89dd2005-11-17 17:03:00 -0800942 ssize_t written;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500943 int rc;
Steve French87c89dd2005-11-17 17:03:00 -0800944
Ross Lagerwall882137c2015-12-02 14:46:07 +0000945 if (iocb->ki_filp->f_flags & O_DIRECT) {
946 written = cifs_user_writev(iocb, from);
947 if (written > 0 && CIFS_CACHE_READ(cinode)) {
948 cifs_zap_mapping(inode);
949 cifs_dbg(FYI,
950 "Set no oplock for inode=%p after a write operation\n",
951 inode);
952 cinode->oplock = 0;
953 }
954 return written;
955 }
956
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000957 written = cifs_get_writer(cinode);
958 if (written)
959 return written;
960
Al Viro3dae8752014-04-03 12:05:17 -0400961 written = generic_file_write_iter(iocb, from);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500962
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400963 if (CIFS_CACHE_WRITE(CIFS_I(inode)))
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000964 goto out;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500965
966 rc = filemap_fdatawrite(inode->i_mapping);
967 if (rc)
Al Viro3dae8752014-04-03 12:05:17 -0400968 cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500969 rc, inode);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500970
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000971out:
972 cifs_put_writer(cinode);
Steve French87c89dd2005-11-17 17:03:00 -0800973 return written;
974}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Andrew Morton965c8e52012-12-17 15:59:39 -0800976static loff_t cifs_llseek(struct file *file, loff_t offset, int whence)
Steve Frenchc32a0b62006-01-12 14:41:28 -0800977{
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000978 struct cifsFileInfo *cfile = file->private_data;
979 struct cifs_tcon *tcon;
980
Josef Bacik06222e42011-07-18 13:21:38 -0400981 /*
Andrew Morton965c8e52012-12-17 15:59:39 -0800982 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
Josef Bacik06222e42011-07-18 13:21:38 -0400983 * the cached file length
984 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800985 if (whence != SEEK_SET && whence != SEEK_CUR) {
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400986 int rc;
Al Viro496ad9a2013-01-23 17:07:38 -0500987 struct inode *inode = file_inode(file);
Steve French030e9d82007-02-01 04:27:59 +0000988
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400989 /*
990 * We need to be sure that all dirty pages are written and the
991 * server has the newest file length.
992 */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400993 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400994 inode->i_mapping->nrpages != 0) {
995 rc = filemap_fdatawait(inode->i_mapping);
Steve French156ecb22011-05-20 17:00:01 +0000996 if (rc) {
997 mapping_set_error(inode->i_mapping, rc);
998 return rc;
999 }
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001000 }
1001 /*
1002 * Some applications poll for the file length in this strange
1003 * way so we must seek to end on non-oplocked files by
1004 * setting the revalidate time to zero.
1005 */
1006 CIFS_I(inode)->time = 0;
Steve French030e9d82007-02-01 04:27:59 +00001007
Pavel Shilovsky6feb9892011-04-07 18:18:11 +04001008 rc = cifs_revalidate_file_attr(file);
1009 if (rc < 0)
1010 return (loff_t)rc;
Steve Frenchc32a0b62006-01-12 14:41:28 -08001011 }
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +10001012 if (cfile && cfile->tlink) {
1013 tcon = tlink_tcon(cfile->tlink);
1014 if (tcon->ses->server->ops->llseek)
1015 return tcon->ses->server->ops->llseek(file, tcon,
1016 offset, whence);
1017 }
Andrew Morton965c8e52012-12-17 15:59:39 -08001018 return generic_file_llseek(file, offset, whence);
Steve Frenchc32a0b62006-01-12 14:41:28 -08001019}
1020
Jeff Laytone6f5c782014-08-22 10:40:25 -04001021static int
1022cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv)
Steve French84210e92008-10-23 04:42:37 +00001023{
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001024 /*
1025 * Note that this is called by vfs setlease with i_lock held to
1026 * protect *lease from going away.
1027 */
Al Viro496ad9a2013-01-23 17:07:38 -05001028 struct inode *inode = file_inode(file);
Jeff Laytonba00ba642010-09-20 16:01:31 -07001029 struct cifsFileInfo *cfile = file->private_data;
Steve French84210e92008-10-23 04:42:37 +00001030
1031 if (!(S_ISREG(inode->i_mode)))
1032 return -EINVAL;
1033
Jeff Layton02440802014-08-09 10:16:44 -04001034 /* Check if file is oplocked if this is request for new lease */
1035 if (arg == F_UNLCK ||
1036 ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) ||
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001037 ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
Jeff Laytone6f5c782014-08-22 10:40:25 -04001038 return generic_setlease(file, arg, lease, priv);
Jeff Layton13cfb732010-09-29 19:51:11 -04001039 else if (tlink_tcon(cfile->tlink)->local_lease &&
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001040 !CIFS_CACHE_READ(CIFS_I(inode)))
1041 /*
1042 * If the server claims to support oplock on this file, then we
1043 * still need to check oplock even if the local_lease mount
1044 * option is set, but there are servers which do not support
1045 * oplock for which this mount option may be useful if the user
1046 * knows that the file won't be changed on the server by anyone
1047 * else.
1048 */
Jeff Laytone6f5c782014-08-22 10:40:25 -04001049 return generic_setlease(file, arg, lease, priv);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001050 else
Steve French84210e92008-10-23 04:42:37 +00001051 return -EAGAIN;
1052}
Steve French84210e92008-10-23 04:42:37 +00001053
Igor Mammedove6ab1582008-01-11 01:49:48 +00001054struct file_system_type cifs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 .owner = THIS_MODULE,
1056 .name = "cifs",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001057 .init_fs_context = smb3_init_fs_context,
1058 .parameters = smb3_fs_parameters,
Al Viro6d686172011-06-17 08:34:57 -04001059 .kill_sb = cifs_kill_sb,
Steve Frenchc7e9f782020-02-25 18:08:54 -06001060 .fs_flags = FS_RENAME_DOES_D_MOVE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061};
Eric W. Biederman3e64fe52013-03-11 07:05:42 -07001062MODULE_ALIAS_FS("cifs");
Steve French49218b42018-05-23 21:44:53 -05001063
1064static struct file_system_type smb3_fs_type = {
1065 .owner = THIS_MODULE,
1066 .name = "smb3",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001067 .init_fs_context = smb3_init_fs_context,
1068 .parameters = smb3_fs_parameters,
Steve French49218b42018-05-23 21:44:53 -05001069 .kill_sb = cifs_kill_sb,
Steve Frenchc7e9f782020-02-25 18:08:54 -06001070 .fs_flags = FS_RENAME_DOES_D_MOVE,
Steve French49218b42018-05-23 21:44:53 -05001071};
1072MODULE_ALIAS_FS("smb3");
1073MODULE_ALIAS("smb3");
1074
Arjan van de Ven754661f2007-02-12 00:55:38 -08001075const struct inode_operations cifs_dir_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 .create = cifs_create,
Miklos Szeredid2c12712012-06-05 15:10:23 +02001077 .atomic_open = cifs_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 .lookup = cifs_lookup,
1079 .getattr = cifs_getattr,
1080 .unlink = cifs_unlink,
1081 .link = cifs_hardlink,
1082 .mkdir = cifs_mkdir,
1083 .rmdir = cifs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02001084 .rename = cifs_rename2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 .setattr = cifs_setattr,
1087 .symlink = cifs_symlink,
1088 .mknod = cifs_mknod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090};
1091
Arjan van de Ven754661f2007-02-12 00:55:38 -08001092const struct inode_operations cifs_file_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 .setattr = cifs_setattr,
Steve French48a77aa2016-05-18 20:48:32 -05001094 .getattr = cifs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 .listxattr = cifs_listxattr,
Ronnie Sahlberg2f3ebab2019-04-25 16:45:29 +10001097 .fiemap = cifs_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098};
1099
Arjan van de Ven754661f2007-02-12 00:55:38 -08001100const struct inode_operations cifs_symlink_inode_ops = {
Al Viro6b255392015-11-17 10:20:54 -05001101 .get_link = cifs_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104};
1105
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001106static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
1107 struct file *dst_file, loff_t destoff, loff_t len,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001108 unsigned int remap_flags)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001109{
1110 struct inode *src_inode = file_inode(src_file);
1111 struct inode *target_inode = file_inode(dst_file);
1112 struct cifsFileInfo *smb_file_src = src_file->private_data;
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001113 struct cifsFileInfo *smb_file_target;
1114 struct cifs_tcon *target_tcon;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001115 unsigned int xid;
1116 int rc;
1117
Xiaoli Fengb073a082019-03-16 12:11:54 +08001118 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001119 return -EINVAL;
1120
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001121 cifs_dbg(FYI, "clone range\n");
1122
1123 xid = get_xid();
1124
1125 if (!src_file->private_data || !dst_file->private_data) {
1126 rc = -EBADF;
1127 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1128 goto out;
1129 }
1130
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001131 smb_file_target = dst_file->private_data;
1132 target_tcon = tlink_tcon(smb_file_target->tlink);
1133
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001134 /*
1135 * Note: cifs case is easier than btrfs since server responsible for
1136 * checks for proper open modes and file type and if it wants
1137 * server could even support copy of range where source = target
1138 */
1139 lock_two_nondirectories(target_inode, src_inode);
1140
1141 if (len == 0)
1142 len = src_inode->i_size - off;
1143
1144 cifs_dbg(FYI, "about to flush pages\n");
1145 /* should we flush first and last page first */
1146 truncate_inode_pages_range(&target_inode->i_data, destoff,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001147 PAGE_ALIGN(destoff + len)-1);
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001148
1149 if (target_tcon->ses->server->ops->duplicate_extents)
1150 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
1151 smb_file_src, smb_file_target, off, len, destoff);
1152 else
1153 rc = -EOPNOTSUPP;
1154
1155 /* force revalidate of size and timestamps of target file now
1156 that target is updated on the server */
1157 CIFS_I(target_inode)->time = 0;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001158 /* although unlocking in the reverse order from locking is not
1159 strictly necessary here it is a little cleaner to be consistent */
1160 unlock_two_nondirectories(src_inode, target_inode);
1161out:
1162 free_xid(xid);
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001163 return rc < 0 ? rc : len;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001164}
1165
Sachin Prabhu620d8742017-02-10 16:03:51 +05301166ssize_t cifs_file_copychunk_range(unsigned int xid,
1167 struct file *src_file, loff_t off,
1168 struct file *dst_file, loff_t destoff,
1169 size_t len, unsigned int flags)
1170{
1171 struct inode *src_inode = file_inode(src_file);
1172 struct inode *target_inode = file_inode(dst_file);
1173 struct cifsFileInfo *smb_file_src;
1174 struct cifsFileInfo *smb_file_target;
1175 struct cifs_tcon *src_tcon;
1176 struct cifs_tcon *target_tcon;
1177 ssize_t rc;
1178
1179 cifs_dbg(FYI, "copychunk range\n");
1180
Sachin Prabhu620d8742017-02-10 16:03:51 +05301181 if (!src_file->private_data || !dst_file->private_data) {
1182 rc = -EBADF;
1183 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1184 goto out;
1185 }
1186
1187 rc = -EXDEV;
1188 smb_file_target = dst_file->private_data;
1189 smb_file_src = src_file->private_data;
1190 src_tcon = tlink_tcon(smb_file_src->tlink);
1191 target_tcon = tlink_tcon(smb_file_target->tlink);
1192
1193 if (src_tcon->ses != target_tcon->ses) {
1194 cifs_dbg(VFS, "source and target of copy not on same server\n");
1195 goto out;
1196 }
1197
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001198 rc = -EOPNOTSUPP;
1199 if (!target_tcon->ses->server->ops->copychunk_range)
1200 goto out;
1201
Sachin Prabhu620d8742017-02-10 16:03:51 +05301202 /*
1203 * Note: cifs case is easier than btrfs since server responsible for
1204 * checks for proper open modes and file type and if it wants
1205 * server could even support copy of range where source = target
1206 */
1207 lock_two_nondirectories(target_inode, src_inode);
1208
1209 cifs_dbg(FYI, "about to flush pages\n");
1210 /* should we flush first and last page first */
1211 truncate_inode_pages(&target_inode->i_data, 0);
1212
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001213 rc = file_modified(dst_file);
1214 if (!rc)
Sachin Prabhu620d8742017-02-10 16:03:51 +05301215 rc = target_tcon->ses->server->ops->copychunk_range(xid,
1216 smb_file_src, smb_file_target, off, len, destoff);
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001217
1218 file_accessed(src_file);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301219
1220 /* force revalidate of size and timestamps of target file now
1221 * that target is updated on the server
1222 */
1223 CIFS_I(target_inode)->time = 0;
1224 /* although unlocking in the reverse order from locking is not
1225 * strictly necessary here it is a little cleaner to be consistent
1226 */
1227 unlock_two_nondirectories(src_inode, target_inode);
1228
1229out:
1230 return rc;
1231}
1232
Steve French6e70c262018-05-10 10:59:37 -05001233/*
1234 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync()
1235 * is a dummy operation.
1236 */
1237static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1238{
1239 cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n",
1240 file, datasync);
1241
1242 return 0;
1243}
1244
Sachin Prabhu620d8742017-02-10 16:03:51 +05301245static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off,
1246 struct file *dst_file, loff_t destoff,
1247 size_t len, unsigned int flags)
1248{
1249 unsigned int xid = get_xid();
1250 ssize_t rc;
Steve French4e8aea32020-04-09 21:42:18 -05001251 struct cifsFileInfo *cfile = dst_file->private_data;
1252
1253 if (cfile->swapfile)
1254 return -EOPNOTSUPP;
Sachin Prabhu620d8742017-02-10 16:03:51 +05301255
1256 rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff,
1257 len, flags);
1258 free_xid(xid);
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001259
Amir Goldstein5dae2222019-06-05 08:04:50 -07001260 if (rc == -EOPNOTSUPP || rc == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001261 rc = generic_copy_file_range(src_file, off, dst_file,
1262 destoff, len, flags);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301263 return rc;
1264}
1265
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001266const struct file_operations cifs_file_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001267 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001268 .write_iter = cifs_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 .open = cifs_open,
1270 .release = cifs_close,
1271 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001272 .flock = cifs_flock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 .fsync = cifs_fsync,
1274 .flush = cifs_flush,
1275 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001276 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001277 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001278 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001279 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301280 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001281 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001282 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001283 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284};
1285
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001286const struct file_operations cifs_file_strict_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001287 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001288 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001289 .open = cifs_open,
1290 .release = cifs_close,
1291 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001292 .flock = cifs_flock,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001293 .fsync = cifs_strict_fsync,
1294 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001295 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001296 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001297 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001298 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001299 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301300 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001301 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001302 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001303 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001304};
1305
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001306const struct file_operations cifs_file_direct_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001307 .read_iter = cifs_direct_readv,
1308 .write_iter = cifs_direct_writev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 .open = cifs_open,
1310 .release = cifs_close,
1311 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001312 .flock = cifs_flock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 .fsync = cifs_fsync,
1314 .flush = cifs_flush,
Steve Frencha994b8f2009-12-07 05:44:46 +00001315 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001316 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001317 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001318 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301319 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001320 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001321 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001322 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001323 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324};
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001325
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001326const struct file_operations cifs_file_nobrl_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001327 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001328 .write_iter = cifs_file_write_iter,
Steve French87c89dd2005-11-17 17:03:00 -08001329 .open = cifs_open,
1330 .release = cifs_close,
1331 .fsync = cifs_fsync,
1332 .flush = cifs_flush,
1333 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001334 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001335 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001336 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001337 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301338 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001339 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001340 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001341 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001342};
1343
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001344const struct file_operations cifs_file_strict_nobrl_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001345 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001346 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001347 .open = cifs_open,
1348 .release = cifs_close,
1349 .fsync = cifs_strict_fsync,
1350 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001351 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001352 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001353 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001354 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001355 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301356 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001357 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001358 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001359 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001360};
1361
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001362const struct file_operations cifs_file_direct_nobrl_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001363 .read_iter = cifs_direct_readv,
1364 .write_iter = cifs_direct_writev,
Steve French87c89dd2005-11-17 17:03:00 -08001365 .open = cifs_open,
1366 .release = cifs_close,
1367 .fsync = cifs_fsync,
1368 .flush = cifs_flush,
Pavel Shilovsky810627a02010-03-27 02:00:49 +00001369 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001370 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001371 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001372 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301373 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001374 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001375 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001376 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001377 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001378};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001380const struct file_operations cifs_dir_ops = {
Al Viro3125d262016-04-20 17:40:47 -04001381 .iterate_shared = cifs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 .release = cifs_closedir,
1383 .read = generic_read_dir,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001384 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301385 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001386 .remap_file_range = cifs_remap_file_range,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +02001387 .llseek = generic_file_llseek,
Steve French6e70c262018-05-10 10:59:37 -05001388 .fsync = cifs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389};
1390
1391static void
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001392cifs_init_once(void *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct cifsInodeInfo *cifsi = inode;
1395
Christoph Lametera35afb82007-05-16 22:10:57 -07001396 inode_init_once(&cifsi->vfs_inode);
Pavel Shilovsky1b4b55a2012-09-19 06:22:44 -07001397 init_rwsem(&cifsi->lock_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398}
1399
Fabian Frederick9ee108b2014-04-03 14:46:30 -07001400static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401cifs_init_inodecache(void)
1402{
1403 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
Steve French26f57362007-08-30 22:09:15 +00001404 sizeof(struct cifsInodeInfo),
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001405 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -08001406 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +09001407 cifs_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 if (cifs_inode_cachep == NULL)
1409 return -ENOMEM;
1410
1411 return 0;
1412}
1413
1414static void
1415cifs_destroy_inodecache(void)
1416{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001417 /*
1418 * Make sure all delayed rcu free inodes are flushed before we
1419 * destroy cache.
1420 */
1421 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001422 kmem_cache_destroy(cifs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423}
1424
1425static int
1426cifs_init_request_bufs(void)
1427{
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001428 /*
1429 * SMB2 maximum header size is bigger than CIFS one - no problems to
1430 * allocate some more bytes for CIFS.
1431 */
Steve French2a38e122017-07-08 18:48:15 -05001432 size_t max_hdr_size = MAX_SMB2_HDR_SIZE;
1433
Steve French4523cc32007-04-30 20:13:06 +00001434 if (CIFSMaxBufSize < 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
1436 Unicode path name has to fit in any SMB/CIFS path based frames */
1437 CIFSMaxBufSize = 8192;
1438 } else if (CIFSMaxBufSize > 1024*127) {
1439 CIFSMaxBufSize = 1024 * 127;
1440 } else {
1441 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1442 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001443/*
1444 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1445 CIFSMaxBufSize, CIFSMaxBufSize);
1446*/
David Windsorde046442017-06-10 22:50:33 -04001447 cifs_req_cachep = kmem_cache_create_usercopy("cifs_request",
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001448 CIFSMaxBufSize + max_hdr_size, 0,
David Windsorde046442017-06-10 22:50:33 -04001449 SLAB_HWCACHE_ALIGN, 0,
1450 CIFSMaxBufSize + max_hdr_size,
1451 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (cifs_req_cachep == NULL)
1453 return -ENOMEM;
1454
Steve French4523cc32007-04-30 20:13:06 +00001455 if (cifs_min_rcv < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 cifs_min_rcv = 1;
1457 else if (cifs_min_rcv > 64) {
1458 cifs_min_rcv = 64;
Joe Perchesf96637b2013-05-04 22:12:25 -05001459 cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 }
1461
Matthew Dobson93d23412006-03-26 01:37:50 -08001462 cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
1463 cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Steve French4523cc32007-04-30 20:13:06 +00001465 if (cifs_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 kmem_cache_destroy(cifs_req_cachep);
1467 return -ENOMEM;
1468 }
Steve Frenchec637e32005-12-12 20:53:18 -08001469 /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 almost all handle based requests (but not write response, nor is it
1471 sufficient for path based requests). A smaller size would have
Steve French50c2f752007-07-13 00:33:32 +00001472 been more efficient (compacting multiple slab items on one 4k page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 for the case in which debug was on, but this larger size allows
1474 more SMBs to use small buffer alloc and is still much more
Steve French6dc0f872007-07-06 23:13:06 +00001475 efficient to alloc 1 per page off the slab compared to 17K (5page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 alloc of large cifs buffers even when page debugging is on */
David Windsorde046442017-06-10 22:50:33 -04001477 cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq",
Steve French6dc0f872007-07-06 23:13:06 +00001478 MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
David Windsorde046442017-06-10 22:50:33 -04001479 0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (cifs_sm_req_cachep == NULL) {
1481 mempool_destroy(cifs_req_poolp);
1482 kmem_cache_destroy(cifs_req_cachep);
Steve French6dc0f872007-07-06 23:13:06 +00001483 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485
Steve French4523cc32007-04-30 20:13:06 +00001486 if (cifs_min_small < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 cifs_min_small = 2;
1488 else if (cifs_min_small > 256) {
1489 cifs_min_small = 256;
Joe Perchesf96637b2013-05-04 22:12:25 -05001490 cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
1492
Matthew Dobson93d23412006-03-26 01:37:50 -08001493 cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
1494 cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Steve French4523cc32007-04-30 20:13:06 +00001496 if (cifs_sm_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 mempool_destroy(cifs_req_poolp);
1498 kmem_cache_destroy(cifs_req_cachep);
1499 kmem_cache_destroy(cifs_sm_req_cachep);
1500 return -ENOMEM;
1501 }
1502
1503 return 0;
1504}
1505
1506static void
1507cifs_destroy_request_bufs(void)
1508{
1509 mempool_destroy(cifs_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001510 kmem_cache_destroy(cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 mempool_destroy(cifs_sm_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001512 kmem_cache_destroy(cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
1515static int
1516cifs_init_mids(void)
1517{
1518 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
Steve French26f57362007-08-30 22:09:15 +00001519 sizeof(struct mid_q_entry), 0,
1520 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (cifs_mid_cachep == NULL)
1522 return -ENOMEM;
1523
Matthew Dobson93d23412006-03-26 01:37:50 -08001524 /* 3 is a reasonable minimum number of simultaneous operations */
1525 cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
Steve French4523cc32007-04-30 20:13:06 +00001526 if (cifs_mid_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 kmem_cache_destroy(cifs_mid_cachep);
1528 return -ENOMEM;
1529 }
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return 0;
1532}
1533
1534static void
1535cifs_destroy_mids(void)
1536{
1537 mempool_destroy(cifs_mid_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001538 kmem_cache_destroy(cifs_mid_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539}
1540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541static int __init
1542init_cifs(void)
1543{
1544 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 cifs_proc_init();
Jeff Laytone7ddee92008-11-14 13:44:38 -05001546 INIT_LIST_HEAD(&cifs_tcp_ses_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547/*
1548 * Initialize Global counters
1549 */
1550 atomic_set(&sesInfoAllocCount, 0);
1551 atomic_set(&tconInfoAllocCount, 0);
Shyam Prasad N6d82c272021-02-03 23:20:46 -08001552 atomic_set(&tcpSesNextId, 0);
Steve French6dc0f872007-07-06 23:13:06 +00001553 atomic_set(&tcpSesAllocCount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 atomic_set(&tcpSesReconnectCount, 0);
1555 atomic_set(&tconInfoReconnectCount, 0);
1556
1557 atomic_set(&bufAllocCount, 0);
Steve French4498eed52005-12-03 13:58:57 -08001558 atomic_set(&smBufAllocCount, 0);
1559#ifdef CONFIG_CIFS_STATS2
1560 atomic_set(&totBufAllocCount, 0);
1561 atomic_set(&totSmBufAllocCount, 0);
Steve French00778e22018-09-18 14:05:18 -05001562 if (slow_rsp_threshold < 1)
1563 cifs_dbg(FYI, "slow_response_threshold msgs disabled\n");
1564 else if (slow_rsp_threshold > 32767)
1565 cifs_dbg(VFS,
1566 "slow response threshold set higher than recommended (0 to 32767)\n");
Steve French4498eed52005-12-03 13:58:57 -08001567#endif /* CONFIG_CIFS_STATS2 */
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 atomic_set(&midCount, 0);
1570 GlobalCurrentXid = 0;
1571 GlobalTotalActiveXid = 0;
1572 GlobalMaxActiveXid = 0;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301573 spin_lock_init(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 spin_lock_init(&GlobalMid_Lock);
1575
Jason A. Donenfeld51b08172017-06-07 20:42:50 -04001576 cifs_lock_secret = get_random_u32();
Jeff Layton3d224622016-05-24 06:27:44 -04001577
Steve French4523cc32007-04-30 20:13:06 +00001578 if (cifs_max_pending < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 cifs_max_pending = 2;
Joe Perchesf96637b2013-05-04 22:12:25 -05001580 cifs_dbg(FYI, "cifs_max_pending set to min of 2\n");
Pavel Shilovsky10b9b982012-03-20 12:55:09 +03001581 } else if (cifs_max_pending > CIFS_MAX_REQ) {
1582 cifs_max_pending = CIFS_MAX_REQ;
Joe Perchesf96637b2013-05-04 22:12:25 -05001583 cifs_dbg(FYI, "cifs_max_pending set to max of %u\n",
1584 CIFS_MAX_REQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
Jeff Laytonda472fc2012-03-23 14:40:53 -04001587 cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1588 if (!cifsiod_wq) {
1589 rc = -ENOMEM;
1590 goto out_clean_proc;
1591 }
1592
Steve French35cf94a2019-09-07 01:09:49 -05001593 /*
Steve French10328c42019-09-09 13:30:15 -05001594 * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3)
1595 * so that we don't launch too many worker threads but
Mauro Carvalho Chehab0ac624f2019-09-24 10:01:28 -03001596 * Documentation/core-api/workqueue.rst recommends setting it to 0
Steve French35cf94a2019-09-07 01:09:49 -05001597 */
Steve French10328c42019-09-09 13:30:15 -05001598
1599 /* WQ_UNBOUND allows decrypt tasks to run on any CPU */
Steve French35cf94a2019-09-07 01:09:49 -05001600 decrypt_wq = alloc_workqueue("smb3decryptd",
Steve French10328c42019-09-09 13:30:15 -05001601 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
Steve French35cf94a2019-09-07 01:09:49 -05001602 if (!decrypt_wq) {
1603 rc = -ENOMEM;
1604 goto out_destroy_cifsiod_wq;
1605 }
1606
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001607 fileinfo_put_wq = alloc_workqueue("cifsfileinfoput",
1608 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1609 if (!fileinfo_put_wq) {
1610 rc = -ENOMEM;
1611 goto out_destroy_decrypt_wq;
1612 }
1613
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001614 cifsoplockd_wq = alloc_workqueue("cifsoplockd",
1615 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1616 if (!cifsoplockd_wq) {
1617 rc = -ENOMEM;
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001618 goto out_destroy_fileinfo_put_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001619 }
1620
Rohith Surabattulac3f207ab2021-04-13 00:26:42 -05001621 deferredclose_wq = alloc_workqueue("deferredclose",
1622 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1623 if (!deferredclose_wq) {
1624 rc = -ENOMEM;
1625 goto out_destroy_cifsoplockd_wq;
1626 }
1627
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301628 rc = cifs_fscache_register();
1629 if (rc)
Rohith Surabattulac3f207ab2021-04-13 00:26:42 -05001630 goto out_destroy_deferredclose_wq;
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 rc = cifs_init_inodecache();
Steve French45af7a02006-04-21 22:52:25 +00001633 if (rc)
Steve Frenchd3bf5222010-09-22 19:15:36 +00001634 goto out_unreg_fscache;
Steve French45af7a02006-04-21 22:52:25 +00001635
1636 rc = cifs_init_mids();
1637 if (rc)
1638 goto out_destroy_inodecache;
1639
1640 rc = cifs_init_request_bufs();
1641 if (rc)
1642 goto out_destroy_mids;
1643
Paulo Alcantara1c780222018-11-14 16:24:03 -02001644#ifdef CONFIG_CIFS_DFS_UPCALL
1645 rc = dfs_cache_init();
1646 if (rc)
1647 goto out_destroy_request_bufs;
1648#endif /* CONFIG_CIFS_DFS_UPCALL */
Jeff Layton84a15b92007-11-03 05:02:24 +00001649#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001650 rc = init_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001651 if (rc)
Paulo Alcantara1c780222018-11-14 16:24:03 -02001652 goto out_destroy_dfs_cache;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001653#endif /* CONFIG_CIFS_UPCALL */
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001654#ifdef CONFIG_CIFS_SWN_UPCALL
1655 rc = cifs_genl_init();
1656 if (rc)
1657 goto out_register_key_type;
1658#endif /* CONFIG_CIFS_SWN_UPCALL */
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001659
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001660 rc = init_cifs_idmap();
1661 if (rc)
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001662 goto out_cifs_swn_init;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001663
1664 rc = register_filesystem(&cifs_fs_type);
1665 if (rc)
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001666 goto out_init_cifs_idmap;
Steve French45af7a02006-04-21 22:52:25 +00001667
Steve French49218b42018-05-23 21:44:53 -05001668 rc = register_filesystem(&smb3_fs_type);
1669 if (rc) {
1670 unregister_filesystem(&cifs_fs_type);
1671 goto out_init_cifs_idmap;
1672 }
1673
Steve French45af7a02006-04-21 22:52:25 +00001674 return 0;
1675
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001676out_init_cifs_idmap:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001677 exit_cifs_idmap();
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001678out_cifs_swn_init:
1679#ifdef CONFIG_CIFS_SWN_UPCALL
1680 cifs_genl_exit();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001681out_register_key_type:
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001682#endif
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001683#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001684 exit_cifs_spnego();
Paulo Alcantara1c780222018-11-14 16:24:03 -02001685out_destroy_dfs_cache:
1686#endif
1687#ifdef CONFIG_CIFS_DFS_UPCALL
1688 dfs_cache_destroy();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001689out_destroy_request_bufs:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001690#endif
Steve French45af7a02006-04-21 22:52:25 +00001691 cifs_destroy_request_bufs();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001692out_destroy_mids:
Steve French45af7a02006-04-21 22:52:25 +00001693 cifs_destroy_mids();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001694out_destroy_inodecache:
Steve French45af7a02006-04-21 22:52:25 +00001695 cifs_destroy_inodecache();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001696out_unreg_fscache:
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301697 cifs_fscache_unregister();
Rohith Surabattulac3f207ab2021-04-13 00:26:42 -05001698out_destroy_deferredclose_wq:
1699 destroy_workqueue(deferredclose_wq);
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001700out_destroy_cifsoplockd_wq:
1701 destroy_workqueue(cifsoplockd_wq);
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001702out_destroy_fileinfo_put_wq:
1703 destroy_workqueue(fileinfo_put_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001704out_destroy_decrypt_wq:
1705 destroy_workqueue(decrypt_wq);
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001706out_destroy_cifsiod_wq:
Jeff Laytonda472fc2012-03-23 14:40:53 -04001707 destroy_workqueue(cifsiod_wq);
Steve Frenchd3bf5222010-09-22 19:15:36 +00001708out_clean_proc:
1709 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return rc;
1711}
1712
1713static void __exit
1714exit_cifs(void)
1715{
Steve French49218b42018-05-23 21:44:53 -05001716 cifs_dbg(NOISY, "exit_smb3\n");
Jeff Layton3dd93302012-03-21 06:27:55 -04001717 unregister_filesystem(&cifs_fs_type);
Steve French49218b42018-05-23 21:44:53 -05001718 unregister_filesystem(&smb3_fs_type);
Igor Mammedov78d31a32008-04-24 12:56:07 +04001719 cifs_dfs_release_automount_timer();
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001720 exit_cifs_idmap();
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001721#ifdef CONFIG_CIFS_SWN_UPCALL
1722 cifs_genl_exit();
1723#endif
Jeff Layton84a15b92007-11-03 05:02:24 +00001724#ifdef CONFIG_CIFS_UPCALL
Shu Wang94183332017-09-07 16:03:27 +08001725 exit_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001726#endif
Paulo Alcantara1c780222018-11-14 16:24:03 -02001727#ifdef CONFIG_CIFS_DFS_UPCALL
1728 dfs_cache_destroy();
1729#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 cifs_destroy_request_bufs();
Jeff Layton3dd93302012-03-21 06:27:55 -04001731 cifs_destroy_mids();
1732 cifs_destroy_inodecache();
1733 cifs_fscache_unregister();
Rohith Surabattulac3f207ab2021-04-13 00:26:42 -05001734 destroy_workqueue(deferredclose_wq);
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001735 destroy_workqueue(cifsoplockd_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001736 destroy_workqueue(decrypt_wq);
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001737 destroy_workqueue(fileinfo_put_wq);
Jeff Laytonda472fc2012-03-23 14:40:53 -04001738 destroy_workqueue(cifsiod_wq);
Jeff Layton3dd93302012-03-21 06:27:55 -04001739 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741
Steve French1c3a13a2018-09-18 04:07:45 -05001742MODULE_AUTHOR("Steve French");
Steve French6dc0f872007-07-06 23:13:06 +00001743MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744MODULE_DESCRIPTION
Steve French1c3a13a2018-09-18 04:07:45 -05001745 ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
1746 "also older servers complying with the SNIA CIFS Specification)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747MODULE_VERSION(CIFS_VERSION);
Ronnie Sahlberg3591bb82019-10-31 13:55:14 +10001748MODULE_SOFTDEP("ecb");
1749MODULE_SOFTDEP("hmac");
Ronnie Sahlberg3591bb82019-10-31 13:55:14 +10001750MODULE_SOFTDEP("md5");
1751MODULE_SOFTDEP("nls");
1752MODULE_SOFTDEP("aes");
1753MODULE_SOFTDEP("cmac");
1754MODULE_SOFTDEP("sha256");
1755MODULE_SOFTDEP("sha512");
1756MODULE_SOFTDEP("aead2");
1757MODULE_SOFTDEP("ccm");
1758MODULE_SOFTDEP("gcm");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759module_init(init_cifs)
1760module_exit(exit_cifs)