blob: ce14e6f8adb64380be6a6754610590678c9551d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * fs/cifs/cifsfs.c
3 *
Steve French2b280fa2008-05-17 03:12:45 +00004 * Copyright (C) International Business Machines Corp., 2002,2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Author(s): Steve French (sfrench@us.ibm.com)
6 *
7 * Common Internet FileSystem (CIFS) client
8 *
9 * This library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published
11 * by the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
17 * the GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24/* Note that BB means BUGBUG (ie something to fix eventually) */
25
26#include <linux/module.h>
27#include <linux/fs.h>
28#include <linux/mount.h>
29#include <linux/slab.h>
30#include <linux/init.h>
31#include <linux/list.h>
32#include <linux/seq_file.h>
33#include <linux/vfs.h>
34#include <linux/mempool.h>
Steve French6ab16d22005-11-29 20:55:11 -080035#include <linux/delay.h>
Steve French45af7a02006-04-21 22:52:25 +000036#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080037#include <linux/freezer.h>
Al Virofec11dd2011-07-18 13:50:40 -040038#include <linux/namei.h>
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -070039#include <linux/random.h>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020040#include <linux/uuid.h>
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +020041#include <linux/xattr.h>
Ben Greear3eb9a882010-09-01 17:06:02 -070042#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "cifsfs.h"
44#include "cifspdu.h"
45#define DECLARE_GLOBALS_HERE
46#include "cifsglob.h"
47#include "cifsproto.h"
48#include "cifs_debug.h"
49#include "cifs_fs_sb.h"
50#include <linux/mm.h>
Jeff Layton84a15b92007-11-03 05:02:24 +000051#include <linux/key-type.h>
Jeff Laytone5459372007-11-03 05:11:06 +000052#include "cifs_spnego.h"
Suresh Jayaramanf579cf32010-07-05 18:11:50 +053053#include "fscache.h"
Pavel Shilovsky3792c172012-01-12 22:40:50 +040054#include "smb2pdu.h"
Paulo Alcantara1c780222018-11-14 16:24:03 -020055#ifdef CONFIG_CIFS_DFS_UPCALL
56#include "dfs_cache.h"
57#endif
Samuel Cabrero06f08da2020-11-30 19:02:49 +010058#ifdef CONFIG_CIFS_SWN_UPCALL
59#include "netlink.h"
60#endif
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -060061#include "fs_context.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -070063/*
64 * DOS dates from 1980/1/1 through 2107/12/31
65 * Protocol specifications indicate the range should be to 119, which
66 * limits maximum year to 2099. But this range has not been checked.
67 */
68#define SMB_DATE_MAX (127<<9 | 12<<5 | 31)
69#define SMB_DATE_MIN (0<<9 | 1<<5 | 1)
70#define SMB_TIME_MAX (23<<11 | 59<<5 | 29)
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072int cifsFYI = 0;
Kees Cook14042972016-03-17 14:22:54 -070073bool traceSMB;
Steve Frenche7504732011-10-12 17:47:03 -050074bool enable_oplocks = true;
Kees Cook14042972016-03-17 14:22:54 -070075bool linuxExtEnabled = true;
76bool lookupCacheEnabled = true;
Steve Frenchf92a7202018-05-24 04:11:07 -050077bool disable_legacy_dialects; /* false by default */
Steve French29e27922020-10-14 20:24:09 -050078bool enable_gcm_256; /* false by default, change when more servers support it */
Steve Frenchfbfd0b42020-09-11 16:19:28 -050079bool require_gcm_256; /* false by default */
Jeff Layton04912d62010-04-24 07:57:45 -040080unsigned int global_secflags = CIFSSEC_DEF;
Steve French39798772006-05-31 22:40:51 +000081/* unsigned int ntlmv2_support = 0; */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082unsigned int sign_CIFS_PDUs = 1;
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -080083static const struct super_operations cifs_super_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE;
Germano Percossicb978ac2016-09-30 21:25:24 -050085module_param(CIFSMaxBufSize, uint, 0444);
Steve French11911b92018-05-24 02:09:20 -050086MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) "
87 "for CIFS requests. "
Steve French63135e02007-07-17 17:34:02 +000088 "Default: 16384 Range: 8192 to 130048");
Linus Torvalds1da177e2005-04-16 15:20:36 -070089unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL;
Germano Percossicb978ac2016-09-30 21:25:24 -050090module_param(cifs_min_rcv, uint, 0444);
Steve French63135e02007-07-17 17:34:02 +000091MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: "
92 "1 to 64");
Linus Torvalds1da177e2005-04-16 15:20:36 -070093unsigned int cifs_min_small = 30;
Germano Percossicb978ac2016-09-30 21:25:24 -050094module_param(cifs_min_small, uint, 0444);
Steve French63135e02007-07-17 17:34:02 +000095MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 "
96 "Range: 2 to 256");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097unsigned int cifs_max_pending = CIFS_MAX_REQ;
Jeff Layton60654ce2012-11-25 08:00:34 -050098module_param(cifs_max_pending, uint, 0444);
Steve French11911b92018-05-24 02:09:20 -050099MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server for "
100 "CIFS/SMB1 dialect (N/A for SMB3) "
Pavel Shilovsky10b9b982012-03-20 12:55:09 +0300101 "Default: 32767 Range: 2 to 32767.");
Steve French00778e22018-09-18 14:05:18 -0500102#ifdef CONFIG_CIFS_STATS2
103unsigned int slow_rsp_threshold = 1;
104module_param(slow_rsp_threshold, uint, 0644);
105MODULE_PARM_DESC(slow_rsp_threshold, "Amount of time (in seconds) to wait "
106 "before logging that a response is delayed. "
107 "Default: 1 (if set to 0 disables msg).");
108#endif /* STATS2 */
109
Steve Frenche7504732011-10-12 17:47:03 -0500110module_param(enable_oplocks, bool, 0644);
Jeff Layton60654ce2012-11-25 08:00:34 -0500111MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1");
Steve Frenche7504732011-10-12 17:47:03 -0500112
Steve French29e27922020-10-14 20:24:09 -0500113module_param(enable_gcm_256, bool, 0644);
114MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: n/N/0");
115
Steve Frenchfbfd0b42020-09-11 16:19:28 -0500116module_param(require_gcm_256, bool, 0644);
117MODULE_PARM_DESC(require_gcm_256, "Require strongest (256 bit) GCM encryption. Default: n/N/0");
118
Steve Frenchf92a7202018-05-24 04:11:07 -0500119module_param(disable_legacy_dialects, bool, 0644);
120MODULE_PARM_DESC(disable_legacy_dialects, "To improve security it may be "
121 "helpful to restrict the ability to "
122 "override the default dialects (SMB2.1, "
123 "SMB3 and SMB3.02) on mount with old "
124 "dialects (CIFS/SMB1 and SMB2) since "
125 "vers=1.0 (CIFS/SMB1) and vers=2.0 are weaker"
126 " and less secure. Default: n/N/0");
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128extern mempool_t *cifs_sm_req_poolp;
129extern mempool_t *cifs_req_poolp;
130extern mempool_t *cifs_mid_poolp;
131
Jeff Laytonda472fc2012-03-23 14:40:53 -0400132struct workqueue_struct *cifsiod_wq;
Steve French35cf94a2019-09-07 01:09:49 -0500133struct workqueue_struct *decrypt_wq;
Ronnie Sahlberg32546a92019-11-03 13:06:37 +1000134struct workqueue_struct *fileinfo_put_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +0200135struct workqueue_struct *cifsoplockd_wq;
Jeff Layton3d224622016-05-24 06:27:44 -0400136__u32 cifs_lock_secret;
Jeff Laytonda472fc2012-03-23 14:40:53 -0400137
Mateusz Guzik24261fc2013-03-08 16:30:03 +0100138/*
139 * Bumps refcount for cifs super block.
140 * Note that it should be only called if a referece to VFS super block is
141 * already held, e.g. in open-type syscalls context. Otherwise it can race with
142 * atomic_dec_and_test in deactivate_locked_super.
143 */
144void
145cifs_sb_active(struct super_block *sb)
146{
147 struct cifs_sb_info *server = CIFS_SB(sb);
148
149 if (atomic_inc_return(&server->active) == 1)
150 atomic_inc(&sb->s_active);
151}
152
153void
154cifs_sb_deactive(struct super_block *sb)
155{
156 struct cifs_sb_info *server = CIFS_SB(sb);
157
158 if (atomic_dec_and_test(&server->active))
159 deactivate_super(sb);
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static int
Al Viro97d11522011-06-17 09:29:57 -0400163cifs_read_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
165 struct inode *inode;
Pavel Shilovskyb2e5cd32011-05-25 13:35:34 +0400166 struct cifs_sb_info *cifs_sb;
Jan Klos2f6c9472013-10-06 21:08:20 +0200167 struct cifs_tcon *tcon;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700168 struct timespec64 ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int rc = 0;
Steve French50c2f752007-07-13 00:33:32 +0000170
Pavel Shilovskyb2e5cd32011-05-25 13:35:34 +0400171 cifs_sb = CIFS_SB(sb);
Jan Klos2f6c9472013-10-06 21:08:20 +0200172 tcon = cifs_sb_master_tcon(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Al Viro2c6292a2011-06-17 09:05:48 -0400174 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIXACL)
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800175 sb->s_flags |= SB_POSIXACL;
Al Viro2c6292a2011-06-17 09:05:48 -0400176
Steve French8a69e962018-06-29 16:06:15 -0500177 if (tcon->snapshot_time)
178 sb->s_flags |= SB_RDONLY;
179
Jan Klos2f6c9472013-10-06 21:08:20 +0200180 if (tcon->ses->capabilities & tcon->ses->server->vals->cap_large_files)
Al Viro2c6292a2011-06-17 09:05:48 -0400181 sb->s_maxbytes = MAX_LFS_FILESIZE;
182 else
183 sb->s_maxbytes = MAX_NON_LFS;
184
Steve French553292a2019-10-11 17:36:13 -0700185 /*
186 * Some very old servers like DOS and OS/2 used 2 second granularity
187 * (while all current servers use 100ns granularity - see MS-DTYP)
188 * but 1 second is the maximum allowed granularity for the VFS
189 * so for old servers set time granularity to 1 second while for
190 * everything else (current servers) set it to 100ns.
191 */
Steve Frenchd4cfbf02019-10-08 00:27:14 -0500192 if ((tcon->ses->server->vals->protocol_id == SMB10_PROT_ID) &&
193 ((tcon->ses->capabilities &
194 tcon->ses->server->vals->cap_nt_find) == 0) &&
195 !tcon->unix_ext) {
196 sb->s_time_gran = 1000000000; /* 1 second is max allowed gran */
197 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MIN), 0, 0);
198 sb->s_time_min = ts.tv_sec;
199 ts = cnvrtDosUnixTm(cpu_to_le16(SMB_DATE_MAX),
200 cpu_to_le16(SMB_TIME_MAX), 0);
201 sb->s_time_max = ts.tv_sec;
202 } else {
203 /*
204 * Almost every server, including all SMB2+, uses DCE TIME
205 * ie 100 nanosecond units, since 1601. See MS-DTYP and MS-FSCC
206 */
207 sb->s_time_gran = 100;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700208 ts = cifs_NTtimeToUnix(0);
209 sb->s_time_min = ts.tv_sec;
210 ts = cifs_NTtimeToUnix(cpu_to_le64(S64_MAX));
211 sb->s_time_max = ts.tv_sec;
Deepa Dinamanicb7a69e2019-03-22 14:32:35 -0700212 }
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 sb->s_magic = CIFS_MAGIC_NUMBER;
215 sb->s_op = &cifs_super_ops;
Andreas Gruenbachera9ae0082016-04-22 12:11:38 +0200216 sb->s_xattr = cifs_xattr_handlers;
Jan Kara851ea082017-04-12 12:24:34 +0200217 rc = super_setup_bdi(sb);
218 if (rc)
219 goto out_no_root;
220 /* tune readahead according to rsize */
Ronnie Sahlberg522aa3b2020-12-14 16:40:17 +1000221 sb->s_bdi->ra_pages = cifs_sb->ctx->rsize / PAGE_SIZE;
Jan Kara851ea082017-04-12 12:24:34 +0200222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 sb->s_blocksize = CIFS_MAX_MSGSIZE;
224 sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */
Shirish Pargaonkar9b6763e2011-02-21 23:56:59 -0600225 inode = cifs_root_iget(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
David Howellsce634ab2008-02-07 00:15:33 -0800227 if (IS_ERR(inode)) {
228 rc = PTR_ERR(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 goto out_no_root;
230 }
231
Jan Klos2f6c9472013-10-06 21:08:20 +0200232 if (tcon->nocase)
Jeff Layton66ffd112013-07-30 11:38:44 -0400233 sb->s_d_op = &cifs_ci_dentry_ops;
234 else
235 sb->s_d_op = &cifs_dentry_ops;
236
Al Viro48fde702012-01-08 22:15:13 -0500237 sb->s_root = d_make_root(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (!sb->s_root) {
239 rc = -ENOMEM;
240 goto out_no_root;
241 }
Steve French50c2f752007-07-13 00:33:32 +0000242
Paul Bollef3a6a602011-10-12 14:14:04 +0200243#ifdef CONFIG_CIFS_NFSD_EXPORT
Steve French7521a3c2007-07-11 18:30:34 +0000244 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500245 cifs_dbg(FYI, "export ops supported\n");
Steve French7521a3c2007-07-11 18:30:34 +0000246 sb->s_export_op = &cifs_export_ops;
247 }
Paul Bollef3a6a602011-10-12 14:14:04 +0200248#endif /* CONFIG_CIFS_NFSD_EXPORT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 return 0;
251
252out_no_root:
Joe Perchesf96637b2013-05-04 22:12:25 -0500253 cifs_dbg(VFS, "%s: get root inode failed\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return rc;
255}
256
Al Viro6d686172011-06-17 08:34:57 -0400257static void cifs_kill_sb(struct super_block *sb)
258{
259 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
260 kill_anon_super(sb);
Al Viro98ab4942011-06-17 09:32:10 -0400261 cifs_umount(cifs_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
264static int
David Howells726c3342006-06-23 02:02:58 -0700265cifs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
David Howells726c3342006-06-23 02:02:58 -0700267 struct super_block *sb = dentry->d_sb;
Steve French39da9842008-04-28 04:04:34 +0000268 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000269 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700270 struct TCP_Server_Info *server = tcon->ses->server;
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400271 unsigned int xid;
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700272 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400274 xid = get_xid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Steve French21ba3842018-06-24 23:18:52 -0500276 if (le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength) > 0)
277 buf->f_namelen =
278 le32_to_cpu(tcon->fsAttrInfo.MaxPathNameComponentLength);
279 else
280 buf->f_namelen = PATH_MAX;
281
282 buf->f_fsid.val[0] = tcon->vol_serial_number;
283 /* are using part of create time for more randomness, see man statfs */
284 buf->f_fsid.val[1] = (int)le64_to_cpu(tcon->vol_create_time);
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 buf->f_files = 0; /* undefined */
287 buf->f_ffree = 0; /* unlimited */
288
Pavel Shilovsky76ec5e32012-09-18 16:20:33 -0700289 if (server->ops->queryfs)
Amir Goldstein0f060932020-02-03 21:46:43 +0200290 rc = server->ops->queryfs(xid, tcon, cifs_sb, buf);
Steve French39da9842008-04-28 04:04:34 +0000291
Pavel Shilovsky6d5786a2012-06-20 11:21:16 +0400292 free_xid(xid);
Steve French39da9842008-04-28 04:04:34 +0000293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Steve French31742c52014-08-17 08:38:47 -0500296static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len)
297{
Al Viro7119e222014-10-22 00:25:12 -0400298 struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file);
Steve French31742c52014-08-17 08:38:47 -0500299 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
300 struct TCP_Server_Info *server = tcon->ses->server;
301
302 if (server->ops->fallocate)
303 return server->ops->fallocate(file, tcon, mode, off, len);
304
305 return -EOPNOTSUPP;
306}
307
Al Viro10556cb22011-06-20 19:28:19 -0400308static int cifs_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 struct cifs_sb_info *cifs_sb;
311
312 cifs_sb = CIFS_SB(inode->i_sb);
313
Miklos Szeredif696a362008-07-31 13:41:58 +0200314 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) {
315 if ((mask & MAY_EXEC) && !execute_ok(inode))
316 return -EACCES;
317 else
318 return 0;
319 } else /* file mode might have been restricted at mount time
Steve French50c2f752007-07-13 00:33:32 +0000320 on the client (above and beyond ACL on servers) for
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 servers which do not support setting and viewing mode bits,
Steve French50c2f752007-07-13 00:33:32 +0000322 so allowing client to check permissions is useful */
Christian Brauner47291ba2021-01-21 14:19:24 +0100323 return generic_permission(&init_user_ns, inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Christoph Lametere18b8902006-12-06 20:33:20 -0800326static struct kmem_cache *cifs_inode_cachep;
327static struct kmem_cache *cifs_req_cachep;
328static struct kmem_cache *cifs_mid_cachep;
Christoph Lametere18b8902006-12-06 20:33:20 -0800329static struct kmem_cache *cifs_sm_req_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330mempool_t *cifs_sm_req_poolp;
331mempool_t *cifs_req_poolp;
332mempool_t *cifs_mid_poolp;
333
334static struct inode *
335cifs_alloc_inode(struct super_block *sb)
336{
337 struct cifsInodeInfo *cifs_inode;
Christoph Lametere94b1762006-12-06 20:33:17 -0800338 cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (!cifs_inode)
340 return NULL;
341 cifs_inode->cifsAttrs = 0x20; /* default */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 cifs_inode->time = 0;
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700343 /*
344 * Until the file is open and we have gotten oplock info back from the
345 * server, can not assume caching of file data or metadata.
346 */
Pavel Shilovskyc6723622010-11-03 10:58:57 +0300347 cifs_set_oplock_level(cifs_inode, 0);
Jeff Laytonaff8d5c2014-04-30 09:31:45 -0400348 cifs_inode->flags = 0;
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000349 spin_lock_init(&cifs_inode->writers_lock);
350 cifs_inode->writers = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */
Jeff Laytonfbec9ab2009-04-03 13:44:00 -0400352 cifs_inode->server_eof = 0;
Jeff Layton20054bd2011-01-07 11:30:27 -0500353 cifs_inode->uniqueid = 0;
354 cifs_inode->createtime = 0;
Pavel Shilovsky42873b02013-09-05 21:30:16 +0400355 cifs_inode->epoch = 0;
Ronnie Sahlberg487317c2019-06-05 10:38:38 +1000356 spin_lock_init(&cifs_inode->open_file_lock);
Steve Frenchfa70b872016-09-22 00:39:34 -0500357 generate_random_uuid(cifs_inode->lease_key);
Steve French2a38e122017-07-08 18:48:15 -0500358
Pavel Shilovskyb8c32db2012-09-19 06:22:44 -0700359 /*
360 * Can not set i_flags here - they get immediately overwritten to zero
361 * by the VFS.
362 */
363 /* cifs_inode->vfs_inode.i_flags = S_NOATIME | S_NOCMTIME; */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 INIT_LIST_HEAD(&cifs_inode->openFileList);
Pavel Shilovskyf45d3412012-09-19 06:22:43 -0700365 INIT_LIST_HEAD(&cifs_inode->llist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return &cifs_inode->vfs_inode;
367}
368
369static void
Al Viroc2e68022019-04-14 23:18:35 -0400370cifs_free_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Al Viroc2e68022019-04-14 23:18:35 -0400372 kmem_cache_free(cifs_inode_cachep, CIFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Jeff Layton61f98ff2009-06-11 10:27:32 -0400375static void
Al Virob57922d2010-06-07 14:34:48 -0400376cifs_evict_inode(struct inode *inode)
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530377{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700378 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200379 clear_inode(inode);
Suresh Jayaraman9451a9a2010-07-05 18:12:45 +0530380 cifs_fscache_release_inode_cookie(inode);
381}
382
383static void
Jeff Layton61f98ff2009-06-11 10:27:32 -0400384cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server)
385{
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300386 struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr;
387 struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr;
388
Fabian Frederick571d5972014-05-13 18:04:17 +0200389 seq_puts(s, ",addr=");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400390
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300391 switch (server->dstaddr.ss_family) {
Jeff Layton61f98ff2009-06-11 10:27:32 -0400392 case AF_INET:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300393 seq_printf(s, "%pI4", &sa->sin_addr.s_addr);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400394 break;
395 case AF_INET6:
Pavel Shilovskya9f1b852010-12-13 19:08:35 +0300396 seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr);
397 if (sa6->sin6_scope_id)
398 seq_printf(s, "%%%u", sa6->sin6_scope_id);
Jeff Layton61f98ff2009-06-11 10:27:32 -0400399 break;
400 default:
Fabian Frederick571d5972014-05-13 18:04:17 +0200401 seq_puts(s, "(unknown)");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400402 }
Long Li8339dd32017-11-07 01:54:55 -0700403 if (server->rdma)
404 seq_puts(s, ",rdma");
Jeff Layton61f98ff2009-06-11 10:27:32 -0400405}
406
Jeff Layton3e715512011-06-13 11:50:41 -0400407static void
Jeff Layton28e11bd2013-05-26 07:01:00 -0400408cifs_show_security(struct seq_file *s, struct cifs_ses *ses)
Jeff Layton3e715512011-06-13 11:50:41 -0400409{
Steve Frencheda21162015-09-11 19:24:19 -0500410 if (ses->sectype == Unspecified) {
411 if (ses->user_name == NULL)
412 seq_puts(s, ",sec=none");
Jeff Layton28e11bd2013-05-26 07:01:00 -0400413 return;
Steve Frencheda21162015-09-11 19:24:19 -0500414 }
Jeff Layton28e11bd2013-05-26 07:01:00 -0400415
Fabian Frederick571d5972014-05-13 18:04:17 +0200416 seq_puts(s, ",sec=");
Jeff Layton3e715512011-06-13 11:50:41 -0400417
Jeff Layton28e11bd2013-05-26 07:01:00 -0400418 switch (ses->sectype) {
Jeff Layton3e715512011-06-13 11:50:41 -0400419 case LANMAN:
Fabian Frederick571d5972014-05-13 18:04:17 +0200420 seq_puts(s, "lanman");
Jeff Layton3e715512011-06-13 11:50:41 -0400421 break;
422 case NTLMv2:
Fabian Frederick571d5972014-05-13 18:04:17 +0200423 seq_puts(s, "ntlmv2");
Jeff Layton3e715512011-06-13 11:50:41 -0400424 break;
425 case NTLM:
Fabian Frederick571d5972014-05-13 18:04:17 +0200426 seq_puts(s, "ntlm");
Jeff Layton3e715512011-06-13 11:50:41 -0400427 break;
428 case Kerberos:
Petr Pavlu3f6166a2020-02-10 10:38:14 +0100429 seq_puts(s, "krb5");
Jeff Layton3e715512011-06-13 11:50:41 -0400430 break;
431 case RawNTLMSSP:
Fabian Frederick571d5972014-05-13 18:04:17 +0200432 seq_puts(s, "ntlmssp");
Jeff Layton3e715512011-06-13 11:50:41 -0400433 break;
434 default:
435 /* shouldn't ever happen */
Fabian Frederick571d5972014-05-13 18:04:17 +0200436 seq_puts(s, "unknown");
Jeff Layton3e715512011-06-13 11:50:41 -0400437 break;
438 }
439
Jeff Layton28e11bd2013-05-26 07:01:00 -0400440 if (ses->sign)
Fabian Frederick571d5972014-05-13 18:04:17 +0200441 seq_puts(s, "i");
Petr Pavlu3f6166a2020-02-10 10:38:14 +0100442
443 if (ses->sectype == Kerberos)
444 seq_printf(s, ",cruid=%u",
445 from_kuid_munged(&init_user_ns, ses->cred_uid));
Jeff Layton3e715512011-06-13 11:50:41 -0400446}
447
Jeff Laytond06b5052012-05-16 07:53:01 -0400448static void
449cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb)
450{
Fabian Frederick571d5972014-05-13 18:04:17 +0200451 seq_puts(s, ",cache=");
Jeff Laytond06b5052012-05-16 07:53:01 -0400452
453 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200454 seq_puts(s, "strict");
Jeff Laytond06b5052012-05-16 07:53:01 -0400455 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO)
Fabian Frederick571d5972014-05-13 18:04:17 +0200456 seq_puts(s, "none");
Steve French41e033f2019-08-30 02:12:41 -0500457 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE)
458 seq_puts(s, "singleclient"); /* assume only one client access */
Steve French83bbfa72019-08-27 23:58:54 -0500459 else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE)
460 seq_puts(s, "ro"); /* read only caching assumed */
Jeff Laytond06b5052012-05-16 07:53:01 -0400461 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200462 seq_puts(s, "loose");
Jeff Laytond06b5052012-05-16 07:53:01 -0400463}
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*
Steve French653a5ef2020-12-14 20:08:10 -0600466 * cifs_show_devname() is used so we show the mount device name with correct
467 * format (e.g. forward slashes vs. back slashes) in /proc/mounts
468 */
469static int cifs_show_devname(struct seq_file *m, struct dentry *root)
470{
471 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
472 char *devname = kstrdup(cifs_sb->ctx->UNC, GFP_KERNEL);
473
474 if (devname == NULL)
475 seq_puts(m, "none");
476 else {
477 convert_delimiter(devname, '/');
478 seq_puts(m, devname);
479 kfree(devname);
480 }
481 return 0;
482}
483
484/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * cifs_show_options() is for displaying mount options in /proc/mounts.
486 * Not all settable options are displayed but most of the important
487 * ones are.
488 */
489static int
Al Viro34c80b12011-12-08 21:32:45 -0500490cifs_show_options(struct seq_file *s, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Al Viro34c80b12011-12-08 21:32:45 -0500492 struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb);
Steve French96daf2b2011-05-27 04:34:02 +0000493 struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb);
Ben Greear3eb9a882010-09-01 17:06:02 -0700494 struct sockaddr *srcaddr;
495 srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Kees Cooka068acf2015-09-04 15:44:57 -0700497 seq_show_option(s, "vers", tcon->ses->server->vals->version_string);
Jeff Layton28e11bd2013-05-26 07:01:00 -0400498 cifs_show_security(s, tcon->ses);
Jeff Laytond06b5052012-05-16 07:53:01 -0400499 cifs_show_cache_flavor(s, cifs_sb);
Jeff Layton3e715512011-06-13 11:50:41 -0400500
Steve French3e7a02d2019-09-11 21:46:20 -0500501 if (tcon->no_lease)
502 seq_puts(s, ",nolease");
Ronnie Sahlberg9ccecae2020-12-14 16:40:19 +1000503 if (cifs_sb->ctx->multiuser)
Fabian Frederick571d5972014-05-13 18:04:17 +0200504 seq_puts(s, ",multiuser");
Steve French8727c8a2011-02-25 01:11:56 -0600505 else if (tcon->ses->user_name)
Kees Cooka068acf2015-09-04 15:44:57 -0700506 seq_show_option(s, "username", tcon->ses->user_name);
Jeff Layton29e07c82010-09-29 19:51:12 -0400507
Ronnie Sahlberge55954a2018-08-10 11:31:10 +1000508 if (tcon->ses->domainName && tcon->ses->domainName[0] != 0)
Kees Cooka068acf2015-09-04 15:44:57 -0700509 seq_show_option(s, "domain", tcon->ses->domainName);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400510
Ben Greear3eb9a882010-09-01 17:06:02 -0700511 if (srcaddr->sa_family != AF_UNSPEC) {
512 struct sockaddr_in *saddr4;
513 struct sockaddr_in6 *saddr6;
514 saddr4 = (struct sockaddr_in *)srcaddr;
515 saddr6 = (struct sockaddr_in6 *)srcaddr;
516 if (srcaddr->sa_family == AF_INET6)
517 seq_printf(s, ",srcaddr=%pI6c",
518 &saddr6->sin6_addr);
519 else if (srcaddr->sa_family == AF_INET)
520 seq_printf(s, ",srcaddr=%pI4",
521 &saddr4->sin_addr.s_addr);
522 else
523 seq_printf(s, ",srcaddr=BAD-AF:%i",
524 (int)(srcaddr->sa_family));
525 }
526
Eric W. Biederman1f682332013-02-06 01:20:20 -0800527 seq_printf(s, ",uid=%u",
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600528 from_kuid_munged(&init_user_ns, cifs_sb->ctx->linux_uid));
Jeff Layton340481a32009-06-11 10:27:29 -0400529 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200530 seq_puts(s, ",forceuid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400531 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200532 seq_puts(s, ",noforceuid");
Jeff Layton340481a32009-06-11 10:27:29 -0400533
Eric W. Biederman1f682332013-02-06 01:20:20 -0800534 seq_printf(s, ",gid=%u",
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600535 from_kgid_munged(&init_user_ns, cifs_sb->ctx->linux_gid));
Jeff Layton340481a32009-06-11 10:27:29 -0400536 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200537 seq_puts(s, ",forcegid");
Jeff Layton4486d6e2009-08-03 12:45:10 -0400538 else
Fabian Frederick571d5972014-05-13 18:04:17 +0200539 seq_puts(s, ",noforcegid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400540
Jeff Layton61f98ff2009-06-11 10:27:32 -0400541 cifs_show_address(s, tcon->ses->server);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400542
543 if (!tcon->unix_ext)
Al Viro5206efd2011-07-26 03:22:14 -0400544 seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho",
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600545 cifs_sb->ctx->file_mode,
546 cifs_sb->ctx->dir_mode);
Ronnie Sahlberg7c7ee622020-12-14 16:40:22 +1000547 if (cifs_sb->ctx->iocharset)
548 seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400549 if (tcon->seal)
Fabian Frederick571d5972014-05-13 18:04:17 +0200550 seq_puts(s, ",seal");
Steve Frenchec570102020-02-19 23:59:32 -0600551 else if (tcon->ses->server->ignore_signature)
552 seq_puts(s, ",signloosely");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400553 if (tcon->nocase)
Fabian Frederick571d5972014-05-13 18:04:17 +0200554 seq_puts(s, ",nocase");
Steve French82e93672020-05-19 03:06:57 -0500555 if (tcon->nodelete)
556 seq_puts(s, ",nodelete");
Kenneth D'souzac8b6ac12019-01-21 11:51:59 +1000557 if (tcon->local_lease)
558 seq_puts(s, ",locallease");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400559 if (tcon->retry)
Fabian Frederick571d5972014-05-13 18:04:17 +0200560 seq_puts(s, ",hard");
Ronnie Sahlberg6e82e922017-09-20 13:09:23 +1000561 else
562 seq_puts(s, ",soft");
Steve Frenchf16dfa72015-09-30 21:07:59 -0500563 if (tcon->use_persistent)
564 seq_puts(s, ",persistenthandles");
Steve French592fafe2015-11-03 10:08:53 -0600565 else if (tcon->use_resilient)
566 seq_puts(s, ",resilienthandles");
Steve Frenchb3266142018-05-20 23:41:10 -0500567 if (tcon->posix_extensions)
568 seq_puts(s, ",posix");
569 else if (tcon->unix_ext)
570 seq_puts(s, ",unix");
571 else
572 seq_puts(s, ",nounix");
Aurelien Aptel83930722018-09-20 18:10:25 -0700573 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS)
574 seq_puts(s, ",nodfs");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400575 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200576 seq_puts(s, ",posixpaths");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400577 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID)
Fabian Frederick571d5972014-05-13 18:04:17 +0200578 seq_puts(s, ",setuids");
Steve French95932652016-09-23 01:36:34 -0500579 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL)
580 seq_puts(s, ",idsfromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400581 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200582 seq_puts(s, ",serverino");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000583 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD)
Fabian Frederick571d5972014-05-13 18:04:17 +0200584 seq_puts(s, ",rwpidforward");
Pavel Shilovskyd4ffff12011-05-26 06:02:00 +0000585 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200586 seq_puts(s, ",forcemand");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400587 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200588 seq_puts(s, ",nouser_xattr");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400589 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR)
Fabian Frederick571d5972014-05-13 18:04:17 +0200590 seq_puts(s, ",mapchars");
Nakajima Akirabc8ebdc42015-02-13 15:35:58 +0900591 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR)
592 seq_puts(s, ",mapposix");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400593 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200594 seq_puts(s, ",sfu");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400595 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200596 seq_puts(s, ",nobrl");
Steve French3d4ef9a2018-04-25 22:19:09 -0500597 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE)
598 seq_puts(s, ",nohandlecache");
Steve French412094a2019-06-24 02:01:42 -0500599 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID)
600 seq_puts(s, ",modefromsid");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400601 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200602 seq_puts(s, ",cifsacl");
Jeff Layton8616e0f2009-06-11 10:27:28 -0400603 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200604 seq_puts(s, ",dynperm");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800605 if (root->d_sb->s_flags & SB_POSIXACL)
Fabian Frederick571d5972014-05-13 18:04:17 +0200606 seq_puts(s, ",acl");
Stefan Metzmacher736a33202010-07-30 14:56:00 +0200607 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS)
Fabian Frederick571d5972014-05-13 18:04:17 +0200608 seq_puts(s, ",mfsymlinks");
Suresh Jayaraman476428f2010-11-24 17:49:07 +0530609 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
Fabian Frederick571d5972014-05-13 18:04:17 +0200610 seq_puts(s, ",fsc");
Steve French71c424b2011-10-19 20:44:48 -0500611 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC)
Fabian Frederick571d5972014-05-13 18:04:17 +0200612 seq_puts(s, ",nostrictsync");
Steve French71c424b2011-10-19 20:44:48 -0500613 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM)
Fabian Frederick571d5972014-05-13 18:04:17 +0200614 seq_puts(s, ",noperm");
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100615 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800616 seq_printf(s, ",backupuid=%u",
617 from_kuid_munged(&init_user_ns,
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600618 cifs_sb->ctx->backupuid));
Sachin Prabhu3c7c87f2012-04-24 15:28:14 +0100619 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID)
Eric W. Biederman1f682332013-02-06 01:20:20 -0800620 seq_printf(s, ",backupgid=%u",
621 from_kgid_munged(&init_user_ns,
Ronnie Sahlberg8401e932020-12-12 13:40:50 -0600622 cifs_sb->ctx->backupgid));
Steve French2b280fa2008-05-17 03:12:45 +0000623
Steve French0c2b5f72020-12-15 13:28:50 -0600624 seq_printf(s, ",rsize=%u", cifs_sb->ctx->rsize);
625 seq_printf(s, ",wsize=%u", cifs_sb->ctx->wsize);
626 seq_printf(s, ",bsize=%u", cifs_sb->ctx->bsize);
Steve French563317e2019-09-08 23:22:02 -0500627 if (tcon->ses->server->min_offload)
628 seq_printf(s, ",esize=%u", tcon->ses->server->min_offload);
Steve Frenchadfeb3e2015-12-18 12:31:36 -0600629 seq_printf(s, ",echo_interval=%lu",
630 tcon->ses->server->echo_interval / HZ);
Steve Frenchdc179262019-06-17 17:34:57 -0500631
632 /* Only display max_credits if it was overridden on mount */
633 if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE)
634 seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits);
635
Steve French8a69e962018-06-29 16:06:15 -0500636 if (tcon->snapshot_time)
637 seq_printf(s, ",snapshot=%llu", tcon->snapshot_time);
Steve Frenchca567eb2019-03-29 16:31:07 -0500638 if (tcon->handle_timeout)
639 seq_printf(s, ",handletimeout=%u", tcon->handle_timeout);
Suresh Jayaraman6d20e842010-12-01 14:42:28 +0530640 /* convert actimeo and display it in seconds */
Ronnie Sahlbergaf1e40d2020-11-10 12:34:48 +1000641 seq_printf(s, ",actimeo=%lu", cifs_sb->ctx->actimeo / HZ);
Jeff Layton8616e0f2009-06-11 10:27:28 -0400642
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200643 if (tcon->ses->chan_max > 1)
Steve French7866c172020-06-09 19:50:40 -0500644 seq_printf(s, ",multichannel,max_channels=%zu",
Aurelien Aptelbcc88802019-09-20 04:32:20 +0200645 tcon->ses->chan_max);
646
Samuel Cabrero0ac4e292020-12-11 22:59:29 -0600647#ifdef CONFIG_CIFS_SWN_UPCALL
648 if (tcon->use_witness)
649 seq_puts(s, ",witness");
650#endif
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return 0;
653}
654
Al Viro42faad92008-04-24 07:21:56 -0400655static void cifs_umount_begin(struct super_block *sb)
Steve French68058e72005-10-10 10:34:22 -0700656{
Al Viro42faad92008-04-24 07:21:56 -0400657 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Steve French96daf2b2011-05-27 04:34:02 +0000658 struct cifs_tcon *tcon;
Steve French68058e72005-10-10 10:34:22 -0700659
Steve French4523cc32007-04-30 20:13:06 +0000660 if (cifs_sb == NULL)
Steve French9e2e85f2005-10-10 14:28:38 -0700661 return;
662
Jeff Layton0d424ad2010-09-20 16:01:35 -0700663 tcon = cifs_sb_master_tcon(cifs_sb);
Jeff Laytonf1987b42008-11-15 11:12:47 -0500664
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530665 spin_lock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000666 if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) {
667 /* we have other mounts to same share or we have
668 already tried to force umount this and woken up
669 all waiting network requests, nothing to do */
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530670 spin_unlock(&cifs_tcp_ses_lock);
Steve Frenchad8034f2009-06-26 03:25:49 +0000671 return;
672 } else if (tcon->tc_count == 1)
Steve French5e1253b2005-10-10 14:06:37 -0700673 tcon->tidStatus = CifsExiting;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +0530674 spin_unlock(&cifs_tcp_ses_lock);
Steve French5e1253b2005-10-10 14:06:37 -0700675
Steve French3a5ff612006-07-14 22:37:11 +0000676 /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */
Steve French7b7abfe2005-11-09 15:21:09 -0800677 /* cancel_notify_requests(tcon); */
Steve French50c2f752007-07-13 00:33:32 +0000678 if (tcon->ses && tcon->ses->server) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500679 cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n");
Steve French9e2e85f2005-10-10 14:28:38 -0700680 wake_up_all(&tcon->ses->server->request_q);
Steve French6ab16d22005-11-29 20:55:11 -0800681 wake_up_all(&tcon->ses->server->response_q);
682 msleep(1); /* yield */
683 /* we have to kick the requests once more */
684 wake_up_all(&tcon->ses->server->response_q);
685 msleep(1);
Steve French5e1253b2005-10-10 14:06:37 -0700686 }
Steve French68058e72005-10-10 10:34:22 -0700687
688 return;
689}
Steve French68058e72005-10-10 10:34:22 -0700690
Steve Frenchbf97d282006-09-28 21:34:06 +0000691#ifdef CONFIG_CIFS_STATS2
Al Viro64132372011-12-08 20:51:13 -0500692static int cifs_show_stats(struct seq_file *s, struct dentry *root)
Steve Frenchbf97d282006-09-28 21:34:06 +0000693{
694 /* BB FIXME */
695 return 0;
696}
697#endif
698
Al Viro45321ac2010-06-07 13:43:19 -0400699static int cifs_drop_inode(struct inode *inode)
Jeff Layton12420ac2010-06-01 14:47:40 -0400700{
701 struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb);
702
Al Viro45321ac2010-06-07 13:43:19 -0400703 /* no serverino => unconditional eviction */
704 return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) ||
705 generic_drop_inode(inode);
Jeff Layton12420ac2010-06-01 14:47:40 -0400706}
707
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800708static const struct super_operations cifs_super_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .statfs = cifs_statfs,
710 .alloc_inode = cifs_alloc_inode,
Al Viroc2e68022019-04-14 23:18:35 -0400711 .free_inode = cifs_free_inode,
Jeff Layton12420ac2010-06-01 14:47:40 -0400712 .drop_inode = cifs_drop_inode,
Al Virob57922d2010-06-07 14:34:48 -0400713 .evict_inode = cifs_evict_inode,
Steve French653a5ef2020-12-14 20:08:10 -0600714/* .show_path = cifs_show_path, */ /* Would we ever need show path? */
715 .show_devname = cifs_show_devname,
Jeff Layton12420ac2010-06-01 14:47:40 -0400716/* .delete_inode = cifs_delete_inode, */ /* Do not need above
717 function unless later we add lazy close of inodes or unless the
Steve French50c2f752007-07-13 00:33:32 +0000718 kernel forgets to call us with the same number of releases (closes)
719 as opens */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 .show_options = cifs_show_options,
Steve French7b7abfe2005-11-09 15:21:09 -0800721 .umount_begin = cifs_umount_begin,
Steve Frenchbf97d282006-09-28 21:34:06 +0000722#ifdef CONFIG_CIFS_STATS2
Steve Frenchf46d3e12006-09-30 01:08:55 +0000723 .show_stats = cifs_show_stats,
Steve Frenchbf97d282006-09-28 21:34:06 +0000724#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725};
726
Steve Frenchf87d39d2011-05-27 03:50:55 +0000727/*
728 * Get root dentry from superblock according to prefix path mount option.
729 * Return dentry with refcount + 1 on success and NULL otherwise.
730 */
731static struct dentry *
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600732cifs_get_root(struct smb3_fs_context *ctx, struct super_block *sb)
Steve Frenchf87d39d2011-05-27 03:50:55 +0000733{
Al Virofec11dd2011-07-18 13:50:40 -0400734 struct dentry *dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000735 struct cifs_sb_info *cifs_sb = CIFS_SB(sb);
Al Virofec11dd2011-07-18 13:50:40 -0400736 char *full_path = NULL;
737 char *s, *p;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000738 char sep;
739
Sachin Prabhu348c1bf2016-07-29 22:38:21 +0100740 if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH)
741 return dget(sb->s_root);
742
Ronnie Sahlberg3fa1c6d2020-12-09 23:07:12 -0600743 full_path = cifs_build_path_to_root(ctx, cifs_sb,
Sachin Prabhu374402a2016-12-15 12:31:19 +0530744 cifs_sb_master_tcon(cifs_sb), 0);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000745 if (full_path == NULL)
Al Viro9403c9c2011-06-17 10:02:59 -0400746 return ERR_PTR(-ENOMEM);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000747
Joe Perchesf96637b2013-05-04 22:12:25 -0500748 cifs_dbg(FYI, "Get root dentry for %s\n", full_path);
Steve Frenchf87d39d2011-05-27 03:50:55 +0000749
Steve Frenchf87d39d2011-05-27 03:50:55 +0000750 sep = CIFS_DIR_SEP(cifs_sb);
Al Virofec11dd2011-07-18 13:50:40 -0400751 dentry = dget(sb->s_root);
752 p = s = full_path;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000753
Al Virofec11dd2011-07-18 13:50:40 -0400754 do {
David Howells2b0143b2015-03-17 22:25:59 +0000755 struct inode *dir = d_inode(dentry);
Al Virofec11dd2011-07-18 13:50:40 -0400756 struct dentry *child;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000757
Jeff Laytonce2ac522013-02-01 15:11:01 -0500758 if (!S_ISDIR(dir->i_mode)) {
759 dput(dentry);
760 dentry = ERR_PTR(-ENOTDIR);
761 break;
762 }
Pavel Shilovsky5b980b02011-08-21 19:30:15 +0400763
Al Virofec11dd2011-07-18 13:50:40 -0400764 /* skip separators */
765 while (*s == sep)
766 s++;
767 if (!*s)
768 break;
769 p = s++;
770 /* next separator */
771 while (*s && *s != sep)
772 s++;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000773
Al Viro6c2d47982019-10-31 01:21:58 -0400774 child = lookup_positive_unlocked(p, dentry, s - p);
Al Virofec11dd2011-07-18 13:50:40 -0400775 dput(dentry);
776 dentry = child;
777 } while (!IS_ERR(dentry));
Steve Frenchf87d39d2011-05-27 03:50:55 +0000778 kfree(full_path);
Al Virofec11dd2011-07-18 13:50:40 -0400779 return dentry;
Steve Frenchf87d39d2011-05-27 03:50:55 +0000780}
781
Al Viroee01a142011-06-17 09:47:23 -0400782static int cifs_set_super(struct super_block *sb, void *data)
783{
784 struct cifs_mnt_data *mnt_data = data;
785 sb->s_fs_info = mnt_data->cifs_sb;
786 return set_anon_super(sb, NULL);
787}
788
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600789struct dentry *
Steve Frenchc7c137b2018-06-06 17:59:29 -0500790cifs_smb3_do_mount(struct file_system_type *fs_type,
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600791 int flags, struct smb3_fs_context *old_ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 int rc;
Jan Blunckdb719222010-08-15 22:51:10 +0200794 struct super_block *sb;
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000795 struct cifs_sb_info *cifs_sb = NULL;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400796 struct cifs_mnt_data mnt_data;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000797 struct dentry *root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Steve French8c1beb92018-10-07 13:52:18 -0500799 /*
800 * Prints in Kernel / CIFS log the attempted mount operation
801 * If CIFS_DEBUG && cifs_FYI
802 */
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300803 if (cifsFYI)
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600804 cifs_dbg(FYI, "Devname: %s flags: %d\n", old_ctx->UNC, flags);
Rodrigo Freiref80eaed2018-10-07 12:21:26 -0300805 else
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -0600806 cifs_info("Attempting to mount %s\n", old_ctx->UNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000808 cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL);
809 if (cifs_sb == NULL) {
810 root = ERR_PTR(-ENOMEM);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000811 goto out;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000812 }
813
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000814 cifs_sb->ctx = kzalloc(sizeof(struct smb3_fs_context), GFP_KERNEL);
815 if (!cifs_sb->ctx) {
Al Viro5d3bc602011-06-17 09:17:28 -0400816 root = ERR_PTR(-ENOMEM);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000817 goto out;
Al Viro5d3bc602011-06-17 09:17:28 -0400818 }
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000819 rc = smb3_fs_context_dup(cifs_sb->ctx, old_ctx);
Sachin Prabhu4214ebf2016-07-29 22:38:19 +0100820 if (rc) {
821 root = ERR_PTR(rc);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000822 goto out;
Aurelien Aptela6b50582016-05-25 19:59:09 +0200823 }
824
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000825 rc = cifs_setup_volume_info(cifs_sb->ctx);
826 if (rc) {
827 root = ERR_PTR(rc);
828 goto out;
829 }
830
Ronnie Sahlberg51acd202020-12-14 16:40:24 +1000831 rc = cifs_setup_cifs_sb(cifs_sb);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000832 if (rc) {
833 root = ERR_PTR(rc);
834 goto out;
835 }
836
837 rc = cifs_mount(cifs_sb, cifs_sb->ctx);
Al Viro97d11522011-06-17 09:29:57 -0400838 if (rc) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800839 if (!(flags & SB_SILENT))
Joe Perchesf96637b2013-05-04 22:12:25 -0500840 cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n",
841 rc);
Al Viro97d11522011-06-17 09:29:57 -0400842 root = ERR_PTR(rc);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000843 goto out;
Al Viro97d11522011-06-17 09:29:57 -0400844 }
845
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000846 mnt_data.ctx = cifs_sb->ctx;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400847 mnt_data.cifs_sb = cifs_sb;
848 mnt_data.flags = flags;
849
David Howells9249e172012-06-25 12:55:37 +0100850 /* BB should we make this contingent on mount parm? */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800851 flags |= SB_NODIRATIME | SB_NOATIME;
David Howells9249e172012-06-25 12:55:37 +0100852
853 sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data);
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000854 if (IS_ERR(sb)) {
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000855 root = ERR_CAST(sb);
Al Viro97d11522011-06-17 09:29:57 -0400856 cifs_umount(cifs_sb);
Ronnie Sahlberg6cf5abb2020-12-16 08:51:33 +1000857 cifs_sb = NULL;
Al Virod757d712011-06-17 09:42:43 -0400858 goto out;
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Al Viroee01a142011-06-17 09:47:23 -0400861 if (sb->s_root) {
Joe Perchesf96637b2013-05-04 22:12:25 -0500862 cifs_dbg(FYI, "Use existing superblock\n");
Al Viro97d11522011-06-17 09:29:57 -0400863 cifs_umount(cifs_sb);
Ronnie Sahlberg6cf5abb2020-12-16 08:51:33 +1000864 cifs_sb = NULL;
Al Viro5c4f1ad2011-06-17 09:56:55 -0400865 } else {
Al Viro5c4f1ad2011-06-17 09:56:55 -0400866 rc = cifs_read_super(sb);
867 if (rc) {
868 root = ERR_PTR(rc);
869 goto out_super;
870 }
871
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800872 sb->s_flags |= SB_ACTIVE;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400873 }
874
Ronnie Sahlberg6cf5abb2020-12-16 08:51:33 +1000875 root = cifs_get_root(cifs_sb ? cifs_sb->ctx : old_ctx, sb);
Al Viro9403c9c2011-06-17 10:02:59 -0400876 if (IS_ERR(root))
Al Virofa18f1b2011-06-17 09:50:44 -0400877 goto out_super;
Al Virofa18f1b2011-06-17 09:50:44 -0400878
Joe Perchesf96637b2013-05-04 22:12:25 -0500879 cifs_dbg(FYI, "dentry root is: %p\n", root);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000880 return root;
Pavel Shilovsky25c7f412011-05-26 23:35:47 +0400881
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400882out_super:
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400883 deactivate_locked_super(sb);
Pavel Shilovsky641a58d2011-05-26 00:02:16 +0400884out:
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000885 if (cifs_sb) {
886 kfree(cifs_sb->prepath);
Ronnie Sahlbergc741cba2020-12-14 16:40:16 +1000887 smb3_cleanup_fs_context(cifs_sb->ctx);
Ronnie Sahlbergd17abdf72020-11-10 08:59:26 +1000888 kfree(cifs_sb);
889 }
Pavel Shilovsky724d9f12011-05-05 09:55:12 +0000890 return root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
Steve Frenchc7c137b2018-06-06 17:59:29 -0500893
Jeff Layton08bc0352014-05-23 06:50:21 -0400894static ssize_t
895cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter)
896{
897 ssize_t rc;
898 struct inode *inode = file_inode(iocb->ki_filp);
899
Ross Lagerwall882137c2015-12-02 14:46:07 +0000900 if (iocb->ki_filp->f_flags & O_DIRECT)
901 return cifs_user_readv(iocb, iter);
902
Jeff Layton08bc0352014-05-23 06:50:21 -0400903 rc = cifs_revalidate_mapping(inode);
904 if (rc)
905 return rc;
906
907 return generic_file_read_iter(iocb, iter);
908}
909
Al Viro3dae8752014-04-03 12:05:17 -0400910static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Steve French87c89dd2005-11-17 17:03:00 -0800911{
Al Viro496ad9a2013-01-23 17:07:38 -0500912 struct inode *inode = file_inode(iocb->ki_filp);
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000913 struct cifsInodeInfo *cinode = CIFS_I(inode);
Steve French87c89dd2005-11-17 17:03:00 -0800914 ssize_t written;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500915 int rc;
Steve French87c89dd2005-11-17 17:03:00 -0800916
Ross Lagerwall882137c2015-12-02 14:46:07 +0000917 if (iocb->ki_filp->f_flags & O_DIRECT) {
918 written = cifs_user_writev(iocb, from);
919 if (written > 0 && CIFS_CACHE_READ(cinode)) {
920 cifs_zap_mapping(inode);
921 cifs_dbg(FYI,
922 "Set no oplock for inode=%p after a write operation\n",
923 inode);
924 cinode->oplock = 0;
925 }
926 return written;
927 }
928
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000929 written = cifs_get_writer(cinode);
930 if (written)
931 return written;
932
Al Viro3dae8752014-04-03 12:05:17 -0400933 written = generic_file_write_iter(iocb, from);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500934
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400935 if (CIFS_CACHE_WRITE(CIFS_I(inode)))
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000936 goto out;
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500937
938 rc = filemap_fdatawrite(inode->i_mapping);
939 if (rc)
Al Viro3dae8752014-04-03 12:05:17 -0400940 cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n",
Joe Perchesf96637b2013-05-04 22:12:25 -0500941 rc, inode);
Pavel Shilovsky72432ff2011-01-24 14:16:35 -0500942
Sachin Prabhuc11f1df2014-03-11 16:11:47 +0000943out:
944 cifs_put_writer(cinode);
Steve French87c89dd2005-11-17 17:03:00 -0800945 return written;
946}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Andrew Morton965c8e52012-12-17 15:59:39 -0800948static loff_t cifs_llseek(struct file *file, loff_t offset, int whence)
Steve Frenchc32a0b62006-01-12 14:41:28 -0800949{
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000950 struct cifsFileInfo *cfile = file->private_data;
951 struct cifs_tcon *tcon;
952
Josef Bacik06222e42011-07-18 13:21:38 -0400953 /*
Andrew Morton965c8e52012-12-17 15:59:39 -0800954 * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate
Josef Bacik06222e42011-07-18 13:21:38 -0400955 * the cached file length
956 */
Andrew Morton965c8e52012-12-17 15:59:39 -0800957 if (whence != SEEK_SET && whence != SEEK_CUR) {
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400958 int rc;
Al Viro496ad9a2013-01-23 17:07:38 -0500959 struct inode *inode = file_inode(file);
Steve French030e9d82007-02-01 04:27:59 +0000960
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400961 /*
962 * We need to be sure that all dirty pages are written and the
963 * server has the newest file length.
964 */
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400965 if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping &&
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400966 inode->i_mapping->nrpages != 0) {
967 rc = filemap_fdatawait(inode->i_mapping);
Steve French156ecb22011-05-20 17:00:01 +0000968 if (rc) {
969 mapping_set_error(inode->i_mapping, rc);
970 return rc;
971 }
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400972 }
973 /*
974 * Some applications poll for the file length in this strange
975 * way so we must seek to end on non-oplocked files by
976 * setting the revalidate time to zero.
977 */
978 CIFS_I(inode)->time = 0;
Steve French030e9d82007-02-01 04:27:59 +0000979
Pavel Shilovsky6feb9892011-04-07 18:18:11 +0400980 rc = cifs_revalidate_file_attr(file);
981 if (rc < 0)
982 return (loff_t)rc;
Steve Frenchc32a0b62006-01-12 14:41:28 -0800983 }
Ronnie Sahlbergdece44e2019-05-15 07:17:02 +1000984 if (cfile && cfile->tlink) {
985 tcon = tlink_tcon(cfile->tlink);
986 if (tcon->ses->server->ops->llseek)
987 return tcon->ses->server->ops->llseek(file, tcon,
988 offset, whence);
989 }
Andrew Morton965c8e52012-12-17 15:59:39 -0800990 return generic_file_llseek(file, offset, whence);
Steve Frenchc32a0b62006-01-12 14:41:28 -0800991}
992
Jeff Laytone6f5c782014-08-22 10:40:25 -0400993static int
994cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv)
Steve French84210e92008-10-23 04:42:37 +0000995{
Pavel Shilovsky18cceb62013-09-05 13:01:06 +0400996 /*
997 * Note that this is called by vfs setlease with i_lock held to
998 * protect *lease from going away.
999 */
Al Viro496ad9a2013-01-23 17:07:38 -05001000 struct inode *inode = file_inode(file);
Jeff Laytonba00ba642010-09-20 16:01:31 -07001001 struct cifsFileInfo *cfile = file->private_data;
Steve French84210e92008-10-23 04:42:37 +00001002
1003 if (!(S_ISREG(inode->i_mode)))
1004 return -EINVAL;
1005
Jeff Layton02440802014-08-09 10:16:44 -04001006 /* Check if file is oplocked if this is request for new lease */
1007 if (arg == F_UNLCK ||
1008 ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) ||
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001009 ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode))))
Jeff Laytone6f5c782014-08-22 10:40:25 -04001010 return generic_setlease(file, arg, lease, priv);
Jeff Layton13cfb732010-09-29 19:51:11 -04001011 else if (tlink_tcon(cfile->tlink)->local_lease &&
Pavel Shilovsky18cceb62013-09-05 13:01:06 +04001012 !CIFS_CACHE_READ(CIFS_I(inode)))
1013 /*
1014 * If the server claims to support oplock on this file, then we
1015 * still need to check oplock even if the local_lease mount
1016 * option is set, but there are servers which do not support
1017 * oplock for which this mount option may be useful if the user
1018 * knows that the file won't be changed on the server by anyone
1019 * else.
1020 */
Jeff Laytone6f5c782014-08-22 10:40:25 -04001021 return generic_setlease(file, arg, lease, priv);
Christoph Hellwig51ee4b82010-10-31 08:35:10 -04001022 else
Steve French84210e92008-10-23 04:42:37 +00001023 return -EAGAIN;
1024}
Steve French84210e92008-10-23 04:42:37 +00001025
Igor Mammedove6ab1582008-01-11 01:49:48 +00001026struct file_system_type cifs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 .owner = THIS_MODULE,
1028 .name = "cifs",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001029 .init_fs_context = smb3_init_fs_context,
1030 .parameters = smb3_fs_parameters,
Al Viro6d686172011-06-17 08:34:57 -04001031 .kill_sb = cifs_kill_sb,
Steve Frenchc7e9f782020-02-25 18:08:54 -06001032 .fs_flags = FS_RENAME_DOES_D_MOVE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033};
Eric W. Biederman3e64fe52013-03-11 07:05:42 -07001034MODULE_ALIAS_FS("cifs");
Steve French49218b42018-05-23 21:44:53 -05001035
1036static struct file_system_type smb3_fs_type = {
1037 .owner = THIS_MODULE,
1038 .name = "smb3",
Ronnie Sahlberg24e0a1e2020-12-10 00:06:02 -06001039 .init_fs_context = smb3_init_fs_context,
1040 .parameters = smb3_fs_parameters,
Steve French49218b42018-05-23 21:44:53 -05001041 .kill_sb = cifs_kill_sb,
Steve Frenchc7e9f782020-02-25 18:08:54 -06001042 .fs_flags = FS_RENAME_DOES_D_MOVE,
Steve French49218b42018-05-23 21:44:53 -05001043};
1044MODULE_ALIAS_FS("smb3");
1045MODULE_ALIAS("smb3");
1046
Arjan van de Ven754661f2007-02-12 00:55:38 -08001047const struct inode_operations cifs_dir_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .create = cifs_create,
Miklos Szeredid2c12712012-06-05 15:10:23 +02001049 .atomic_open = cifs_atomic_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 .lookup = cifs_lookup,
1051 .getattr = cifs_getattr,
1052 .unlink = cifs_unlink,
1053 .link = cifs_hardlink,
1054 .mkdir = cifs_mkdir,
1055 .rmdir = cifs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +02001056 .rename = cifs_rename2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 .setattr = cifs_setattr,
1059 .symlink = cifs_symlink,
1060 .mknod = cifs_mknod,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062};
1063
Arjan van de Ven754661f2007-02-12 00:55:38 -08001064const struct inode_operations cifs_file_inode_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 .setattr = cifs_setattr,
Steve French48a77aa2016-05-18 20:48:32 -05001066 .getattr = cifs_getattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 .listxattr = cifs_listxattr,
Ronnie Sahlberg2f3ebab2019-04-25 16:45:29 +10001069 .fiemap = cifs_fiemap,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070};
1071
Arjan van de Ven754661f2007-02-12 00:55:38 -08001072const struct inode_operations cifs_symlink_inode_ops = {
Al Viro6b255392015-11-17 10:20:54 -05001073 .get_link = cifs_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 .permission = cifs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 .listxattr = cifs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076};
1077
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001078static loff_t cifs_remap_file_range(struct file *src_file, loff_t off,
1079 struct file *dst_file, loff_t destoff, loff_t len,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001080 unsigned int remap_flags)
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001081{
1082 struct inode *src_inode = file_inode(src_file);
1083 struct inode *target_inode = file_inode(dst_file);
1084 struct cifsFileInfo *smb_file_src = src_file->private_data;
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001085 struct cifsFileInfo *smb_file_target;
1086 struct cifs_tcon *target_tcon;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001087 unsigned int xid;
1088 int rc;
1089
Xiaoli Fengb073a082019-03-16 12:11:54 +08001090 if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY))
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001091 return -EINVAL;
1092
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001093 cifs_dbg(FYI, "clone range\n");
1094
1095 xid = get_xid();
1096
1097 if (!src_file->private_data || !dst_file->private_data) {
1098 rc = -EBADF;
1099 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1100 goto out;
1101 }
1102
Colin Ian King8c6c9bed82018-11-01 13:14:30 +00001103 smb_file_target = dst_file->private_data;
1104 target_tcon = tlink_tcon(smb_file_target->tlink);
1105
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001106 /*
1107 * Note: cifs case is easier than btrfs since server responsible for
1108 * checks for proper open modes and file type and if it wants
1109 * server could even support copy of range where source = target
1110 */
1111 lock_two_nondirectories(target_inode, src_inode);
1112
1113 if (len == 0)
1114 len = src_inode->i_size - off;
1115
1116 cifs_dbg(FYI, "about to flush pages\n");
1117 /* should we flush first and last page first */
1118 truncate_inode_pages_range(&target_inode->i_data, destoff,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001119 PAGE_ALIGN(destoff + len)-1);
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001120
1121 if (target_tcon->ses->server->ops->duplicate_extents)
1122 rc = target_tcon->ses->server->ops->duplicate_extents(xid,
1123 smb_file_src, smb_file_target, off, len, destoff);
1124 else
1125 rc = -EOPNOTSUPP;
1126
1127 /* force revalidate of size and timestamps of target file now
1128 that target is updated on the server */
1129 CIFS_I(target_inode)->time = 0;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001130 /* although unlocking in the reverse order from locking is not
1131 strictly necessary here it is a little cleaner to be consistent */
1132 unlock_two_nondirectories(src_inode, target_inode);
1133out:
1134 free_xid(xid);
Darrick J. Wong42ec3d42018-10-30 10:41:49 +11001135 return rc < 0 ? rc : len;
Christoph Hellwig04b38d62015-12-03 12:59:50 +01001136}
1137
Sachin Prabhu620d8742017-02-10 16:03:51 +05301138ssize_t cifs_file_copychunk_range(unsigned int xid,
1139 struct file *src_file, loff_t off,
1140 struct file *dst_file, loff_t destoff,
1141 size_t len, unsigned int flags)
1142{
1143 struct inode *src_inode = file_inode(src_file);
1144 struct inode *target_inode = file_inode(dst_file);
1145 struct cifsFileInfo *smb_file_src;
1146 struct cifsFileInfo *smb_file_target;
1147 struct cifs_tcon *src_tcon;
1148 struct cifs_tcon *target_tcon;
1149 ssize_t rc;
1150
1151 cifs_dbg(FYI, "copychunk range\n");
1152
Sachin Prabhu620d8742017-02-10 16:03:51 +05301153 if (!src_file->private_data || !dst_file->private_data) {
1154 rc = -EBADF;
1155 cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n");
1156 goto out;
1157 }
1158
1159 rc = -EXDEV;
1160 smb_file_target = dst_file->private_data;
1161 smb_file_src = src_file->private_data;
1162 src_tcon = tlink_tcon(smb_file_src->tlink);
1163 target_tcon = tlink_tcon(smb_file_target->tlink);
1164
1165 if (src_tcon->ses != target_tcon->ses) {
1166 cifs_dbg(VFS, "source and target of copy not on same server\n");
1167 goto out;
1168 }
1169
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001170 rc = -EOPNOTSUPP;
1171 if (!target_tcon->ses->server->ops->copychunk_range)
1172 goto out;
1173
Sachin Prabhu620d8742017-02-10 16:03:51 +05301174 /*
1175 * Note: cifs case is easier than btrfs since server responsible for
1176 * checks for proper open modes and file type and if it wants
1177 * server could even support copy of range where source = target
1178 */
1179 lock_two_nondirectories(target_inode, src_inode);
1180
1181 cifs_dbg(FYI, "about to flush pages\n");
1182 /* should we flush first and last page first */
1183 truncate_inode_pages(&target_inode->i_data, 0);
1184
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001185 rc = file_modified(dst_file);
1186 if (!rc)
Sachin Prabhu620d8742017-02-10 16:03:51 +05301187 rc = target_tcon->ses->server->ops->copychunk_range(xid,
1188 smb_file_src, smb_file_target, off, len, destoff);
Amir Goldsteinbf3c90e2019-06-10 20:36:57 +03001189
1190 file_accessed(src_file);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301191
1192 /* force revalidate of size and timestamps of target file now
1193 * that target is updated on the server
1194 */
1195 CIFS_I(target_inode)->time = 0;
1196 /* although unlocking in the reverse order from locking is not
1197 * strictly necessary here it is a little cleaner to be consistent
1198 */
1199 unlock_two_nondirectories(src_inode, target_inode);
1200
1201out:
1202 return rc;
1203}
1204
Steve French6e70c262018-05-10 10:59:37 -05001205/*
1206 * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync()
1207 * is a dummy operation.
1208 */
1209static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync)
1210{
1211 cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n",
1212 file, datasync);
1213
1214 return 0;
1215}
1216
Sachin Prabhu620d8742017-02-10 16:03:51 +05301217static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off,
1218 struct file *dst_file, loff_t destoff,
1219 size_t len, unsigned int flags)
1220{
1221 unsigned int xid = get_xid();
1222 ssize_t rc;
Steve French4e8aea32020-04-09 21:42:18 -05001223 struct cifsFileInfo *cfile = dst_file->private_data;
1224
1225 if (cfile->swapfile)
1226 return -EOPNOTSUPP;
Sachin Prabhu620d8742017-02-10 16:03:51 +05301227
1228 rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff,
1229 len, flags);
1230 free_xid(xid);
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001231
Amir Goldstein5dae2222019-06-05 08:04:50 -07001232 if (rc == -EOPNOTSUPP || rc == -EXDEV)
Dave Chinner64bf5ff2019-06-05 08:04:47 -07001233 rc = generic_copy_file_range(src_file, off, dst_file,
1234 destoff, len, flags);
Sachin Prabhu620d8742017-02-10 16:03:51 +05301235 return rc;
1236}
1237
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001238const struct file_operations cifs_file_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001239 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001240 .write_iter = cifs_file_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 .open = cifs_open,
1242 .release = cifs_close,
1243 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001244 .flock = cifs_flock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 .fsync = cifs_fsync,
1246 .flush = cifs_flush,
1247 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001248 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001249 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001250 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001251 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301252 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001253 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001254 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001255 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256};
1257
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001258const struct file_operations cifs_file_strict_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001259 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001260 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001261 .open = cifs_open,
1262 .release = cifs_close,
1263 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001264 .flock = cifs_flock,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001265 .fsync = cifs_strict_fsync,
1266 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001267 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001268 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001269 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001270 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001271 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301272 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001273 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001274 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001275 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001276};
1277
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001278const struct file_operations cifs_file_direct_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001279 .read_iter = cifs_direct_readv,
1280 .write_iter = cifs_direct_writev,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 .open = cifs_open,
1282 .release = cifs_close,
1283 .lock = cifs_lock,
Steve Frenchd0677992019-07-16 18:55:38 -05001284 .flock = cifs_flock,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 .fsync = cifs_fsync,
1286 .flush = cifs_flush,
Steve Frencha994b8f2009-12-07 05:44:46 +00001287 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001288 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001289 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001290 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301291 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001292 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001293 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001294 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001295 .fallocate = cifs_fallocate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296};
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001297
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001298const struct file_operations cifs_file_nobrl_ops = {
Jeff Layton08bc0352014-05-23 06:50:21 -04001299 .read_iter = cifs_loose_read_iter,
Al Viro3dae8752014-04-03 12:05:17 -04001300 .write_iter = cifs_file_write_iter,
Steve French87c89dd2005-11-17 17:03:00 -08001301 .open = cifs_open,
1302 .release = cifs_close,
1303 .fsync = cifs_fsync,
1304 .flush = cifs_flush,
1305 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001306 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001307 .splice_write = iter_file_splice_write,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001308 .llseek = cifs_llseek,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001309 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301310 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001311 .remap_file_range = cifs_remap_file_range,
Steve French84210e92008-10-23 04:42:37 +00001312 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001313 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001314};
1315
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001316const struct file_operations cifs_file_strict_nobrl_ops = {
Al Viroe6a7bcb2014-04-02 19:53:36 -04001317 .read_iter = cifs_strict_readv,
Al Viro3dae8752014-04-03 12:05:17 -04001318 .write_iter = cifs_strict_writev,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001319 .open = cifs_open,
1320 .release = cifs_close,
1321 .fsync = cifs_strict_fsync,
1322 .flush = cifs_flush,
Pavel Shilovsky7a6a19b2010-12-14 11:29:51 +03001323 .mmap = cifs_file_strict_mmap,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001324 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001325 .splice_write = iter_file_splice_write,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001326 .llseek = cifs_llseek,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001327 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301328 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001329 .remap_file_range = cifs_remap_file_range,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001330 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001331 .fallocate = cifs_fallocate,
Pavel Shilovsky8be7e6b2010-12-12 13:11:13 +03001332};
1333
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001334const struct file_operations cifs_file_direct_nobrl_ops = {
Long Libe4eb682018-10-31 22:13:11 +00001335 .read_iter = cifs_direct_readv,
1336 .write_iter = cifs_direct_writev,
Steve French87c89dd2005-11-17 17:03:00 -08001337 .open = cifs_open,
1338 .release = cifs_close,
1339 .fsync = cifs_fsync,
1340 .flush = cifs_flush,
Pavel Shilovsky810627a02010-03-27 02:00:49 +00001341 .mmap = cifs_file_mmap,
Jens Axboe5ffc4ef2007-06-01 11:49:19 +02001342 .splice_read = generic_file_splice_read,
Andrés Soutocd1aca22017-12-28 14:23:08 +01001343 .splice_write = iter_file_splice_write,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001344 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301345 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001346 .remap_file_range = cifs_remap_file_range,
Steve Frenchc32a0b62006-01-12 14:41:28 -08001347 .llseek = cifs_llseek,
Steve French84210e92008-10-23 04:42:37 +00001348 .setlease = cifs_setlease,
Steve French31742c52014-08-17 08:38:47 -05001349 .fallocate = cifs_fallocate,
Steve French8b94bcb2005-11-11 11:41:00 -08001350};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001352const struct file_operations cifs_dir_ops = {
Al Viro3125d262016-04-20 17:40:47 -04001353 .iterate_shared = cifs_readdir,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 .release = cifs_closedir,
1355 .read = generic_read_dir,
Steve Frenchf9ddcca2008-05-15 05:51:55 +00001356 .unlocked_ioctl = cifs_ioctl,
Sachin Prabhu620d8742017-02-10 16:03:51 +05301357 .copy_file_range = cifs_copy_file_range,
Darrick J. Wong2e5dfc92018-10-30 10:41:21 +11001358 .remap_file_range = cifs_remap_file_range,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +02001359 .llseek = generic_file_llseek,
Steve French6e70c262018-05-10 10:59:37 -05001360 .fsync = cifs_dir_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361};
1362
1363static void
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001364cifs_init_once(void *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
1366 struct cifsInodeInfo *cifsi = inode;
1367
Christoph Lametera35afb82007-05-16 22:10:57 -07001368 inode_init_once(&cifsi->vfs_inode);
Pavel Shilovsky1b4b55a2012-09-19 06:22:44 -07001369 init_rwsem(&cifsi->lock_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Fabian Frederick9ee108b2014-04-03 14:46:30 -07001372static int __init
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373cifs_init_inodecache(void)
1374{
1375 cifs_inode_cachep = kmem_cache_create("cifs_inode_cache",
Steve French26f57362007-08-30 22:09:15 +00001376 sizeof(struct cifsInodeInfo),
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001377 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -08001378 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +09001379 cifs_init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (cifs_inode_cachep == NULL)
1381 return -ENOMEM;
1382
1383 return 0;
1384}
1385
1386static void
1387cifs_destroy_inodecache(void)
1388{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10001389 /*
1390 * Make sure all delayed rcu free inodes are flushed before we
1391 * destroy cache.
1392 */
1393 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001394 kmem_cache_destroy(cifs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
1397static int
1398cifs_init_request_bufs(void)
1399{
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001400 /*
1401 * SMB2 maximum header size is bigger than CIFS one - no problems to
1402 * allocate some more bytes for CIFS.
1403 */
Steve French2a38e122017-07-08 18:48:15 -05001404 size_t max_hdr_size = MAX_SMB2_HDR_SIZE;
1405
Steve French4523cc32007-04-30 20:13:06 +00001406 if (CIFSMaxBufSize < 8192) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* Buffer size can not be smaller than 2 * PATH_MAX since maximum
1408 Unicode path name has to fit in any SMB/CIFS path based frames */
1409 CIFSMaxBufSize = 8192;
1410 } else if (CIFSMaxBufSize > 1024*127) {
1411 CIFSMaxBufSize = 1024 * 127;
1412 } else {
1413 CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/
1414 }
Joe Perchesf96637b2013-05-04 22:12:25 -05001415/*
1416 cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n",
1417 CIFSMaxBufSize, CIFSMaxBufSize);
1418*/
David Windsorde046442017-06-10 22:50:33 -04001419 cifs_req_cachep = kmem_cache_create_usercopy("cifs_request",
Pavel Shilovsky3792c172012-01-12 22:40:50 +04001420 CIFSMaxBufSize + max_hdr_size, 0,
David Windsorde046442017-06-10 22:50:33 -04001421 SLAB_HWCACHE_ALIGN, 0,
1422 CIFSMaxBufSize + max_hdr_size,
1423 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (cifs_req_cachep == NULL)
1425 return -ENOMEM;
1426
Steve French4523cc32007-04-30 20:13:06 +00001427 if (cifs_min_rcv < 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 cifs_min_rcv = 1;
1429 else if (cifs_min_rcv > 64) {
1430 cifs_min_rcv = 64;
Joe Perchesf96637b2013-05-04 22:12:25 -05001431 cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433
Matthew Dobson93d23412006-03-26 01:37:50 -08001434 cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv,
1435 cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Steve French4523cc32007-04-30 20:13:06 +00001437 if (cifs_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 kmem_cache_destroy(cifs_req_cachep);
1439 return -ENOMEM;
1440 }
Steve Frenchec637e32005-12-12 20:53:18 -08001441 /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 almost all handle based requests (but not write response, nor is it
1443 sufficient for path based requests). A smaller size would have
Steve French50c2f752007-07-13 00:33:32 +00001444 been more efficient (compacting multiple slab items on one 4k page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 for the case in which debug was on, but this larger size allows
1446 more SMBs to use small buffer alloc and is still much more
Steve French6dc0f872007-07-06 23:13:06 +00001447 efficient to alloc 1 per page off the slab compared to 17K (5page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 alloc of large cifs buffers even when page debugging is on */
David Windsorde046442017-06-10 22:50:33 -04001449 cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq",
Steve French6dc0f872007-07-06 23:13:06 +00001450 MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN,
David Windsorde046442017-06-10 22:50:33 -04001451 0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 if (cifs_sm_req_cachep == NULL) {
1453 mempool_destroy(cifs_req_poolp);
1454 kmem_cache_destroy(cifs_req_cachep);
Steve French6dc0f872007-07-06 23:13:06 +00001455 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457
Steve French4523cc32007-04-30 20:13:06 +00001458 if (cifs_min_small < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 cifs_min_small = 2;
1460 else if (cifs_min_small > 256) {
1461 cifs_min_small = 256;
Joe Perchesf96637b2013-05-04 22:12:25 -05001462 cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464
Matthew Dobson93d23412006-03-26 01:37:50 -08001465 cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small,
1466 cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Steve French4523cc32007-04-30 20:13:06 +00001468 if (cifs_sm_req_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 mempool_destroy(cifs_req_poolp);
1470 kmem_cache_destroy(cifs_req_cachep);
1471 kmem_cache_destroy(cifs_sm_req_cachep);
1472 return -ENOMEM;
1473 }
1474
1475 return 0;
1476}
1477
1478static void
1479cifs_destroy_request_bufs(void)
1480{
1481 mempool_destroy(cifs_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001482 kmem_cache_destroy(cifs_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 mempool_destroy(cifs_sm_req_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001484 kmem_cache_destroy(cifs_sm_req_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487static int
1488cifs_init_mids(void)
1489{
1490 cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids",
Steve French26f57362007-08-30 22:09:15 +00001491 sizeof(struct mid_q_entry), 0,
1492 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (cifs_mid_cachep == NULL)
1494 return -ENOMEM;
1495
Matthew Dobson93d23412006-03-26 01:37:50 -08001496 /* 3 is a reasonable minimum number of simultaneous operations */
1497 cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep);
Steve French4523cc32007-04-30 20:13:06 +00001498 if (cifs_mid_poolp == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 kmem_cache_destroy(cifs_mid_cachep);
1500 return -ENOMEM;
1501 }
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return 0;
1504}
1505
1506static void
1507cifs_destroy_mids(void)
1508{
1509 mempool_destroy(cifs_mid_poolp);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001510 kmem_cache_destroy(cifs_mid_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513static int __init
1514init_cifs(void)
1515{
1516 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 cifs_proc_init();
Jeff Laytone7ddee92008-11-14 13:44:38 -05001518 INIT_LIST_HEAD(&cifs_tcp_ses_list);
Steve French0eff0e22011-02-24 05:39:23 +00001519#ifdef CONFIG_CIFS_DNOTIFY_EXPERIMENTAL /* unused temporarily */
Steve French4ca9c192005-10-10 19:52:13 -07001520 INIT_LIST_HEAD(&GlobalDnotifyReqList);
1521 INIT_LIST_HEAD(&GlobalDnotifyRsp_Q);
Steve French0eff0e22011-02-24 05:39:23 +00001522#endif /* was needed for dnotify, and will be needed for inotify when VFS fix */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523/*
1524 * Initialize Global counters
1525 */
1526 atomic_set(&sesInfoAllocCount, 0);
1527 atomic_set(&tconInfoAllocCount, 0);
Steve French6dc0f872007-07-06 23:13:06 +00001528 atomic_set(&tcpSesAllocCount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 atomic_set(&tcpSesReconnectCount, 0);
1530 atomic_set(&tconInfoReconnectCount, 0);
1531
1532 atomic_set(&bufAllocCount, 0);
Steve French4498eed52005-12-03 13:58:57 -08001533 atomic_set(&smBufAllocCount, 0);
1534#ifdef CONFIG_CIFS_STATS2
1535 atomic_set(&totBufAllocCount, 0);
1536 atomic_set(&totSmBufAllocCount, 0);
Steve French00778e22018-09-18 14:05:18 -05001537 if (slow_rsp_threshold < 1)
1538 cifs_dbg(FYI, "slow_response_threshold msgs disabled\n");
1539 else if (slow_rsp_threshold > 32767)
1540 cifs_dbg(VFS,
1541 "slow response threshold set higher than recommended (0 to 32767)\n");
Steve French4498eed52005-12-03 13:58:57 -08001542#endif /* CONFIG_CIFS_STATS2 */
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 atomic_set(&midCount, 0);
1545 GlobalCurrentXid = 0;
1546 GlobalTotalActiveXid = 0;
1547 GlobalMaxActiveXid = 0;
Suresh Jayaraman3f9bcca2010-10-18 23:29:37 +05301548 spin_lock_init(&cifs_tcp_ses_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 spin_lock_init(&GlobalMid_Lock);
1550
Jason A. Donenfeld51b08172017-06-07 20:42:50 -04001551 cifs_lock_secret = get_random_u32();
Jeff Layton3d224622016-05-24 06:27:44 -04001552
Steve French4523cc32007-04-30 20:13:06 +00001553 if (cifs_max_pending < 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 cifs_max_pending = 2;
Joe Perchesf96637b2013-05-04 22:12:25 -05001555 cifs_dbg(FYI, "cifs_max_pending set to min of 2\n");
Pavel Shilovsky10b9b982012-03-20 12:55:09 +03001556 } else if (cifs_max_pending > CIFS_MAX_REQ) {
1557 cifs_max_pending = CIFS_MAX_REQ;
Joe Perchesf96637b2013-05-04 22:12:25 -05001558 cifs_dbg(FYI, "cifs_max_pending set to max of %u\n",
1559 CIFS_MAX_REQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
1561
Jeff Laytonda472fc2012-03-23 14:40:53 -04001562 cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1563 if (!cifsiod_wq) {
1564 rc = -ENOMEM;
1565 goto out_clean_proc;
1566 }
1567
Steve French35cf94a2019-09-07 01:09:49 -05001568 /*
Steve French10328c42019-09-09 13:30:15 -05001569 * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3)
1570 * so that we don't launch too many worker threads but
Mauro Carvalho Chehab0ac624f2019-09-24 10:01:28 -03001571 * Documentation/core-api/workqueue.rst recommends setting it to 0
Steve French35cf94a2019-09-07 01:09:49 -05001572 */
Steve French10328c42019-09-09 13:30:15 -05001573
1574 /* WQ_UNBOUND allows decrypt tasks to run on any CPU */
Steve French35cf94a2019-09-07 01:09:49 -05001575 decrypt_wq = alloc_workqueue("smb3decryptd",
Steve French10328c42019-09-09 13:30:15 -05001576 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
Steve French35cf94a2019-09-07 01:09:49 -05001577 if (!decrypt_wq) {
1578 rc = -ENOMEM;
1579 goto out_destroy_cifsiod_wq;
1580 }
1581
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001582 fileinfo_put_wq = alloc_workqueue("cifsfileinfoput",
1583 WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1584 if (!fileinfo_put_wq) {
1585 rc = -ENOMEM;
1586 goto out_destroy_decrypt_wq;
1587 }
1588
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001589 cifsoplockd_wq = alloc_workqueue("cifsoplockd",
1590 WQ_FREEZABLE|WQ_MEM_RECLAIM, 0);
1591 if (!cifsoplockd_wq) {
1592 rc = -ENOMEM;
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001593 goto out_destroy_fileinfo_put_wq;
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001594 }
1595
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301596 rc = cifs_fscache_register();
1597 if (rc)
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001598 goto out_destroy_cifsoplockd_wq;
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 rc = cifs_init_inodecache();
Steve French45af7a02006-04-21 22:52:25 +00001601 if (rc)
Steve Frenchd3bf5222010-09-22 19:15:36 +00001602 goto out_unreg_fscache;
Steve French45af7a02006-04-21 22:52:25 +00001603
1604 rc = cifs_init_mids();
1605 if (rc)
1606 goto out_destroy_inodecache;
1607
1608 rc = cifs_init_request_bufs();
1609 if (rc)
1610 goto out_destroy_mids;
1611
Paulo Alcantara1c780222018-11-14 16:24:03 -02001612#ifdef CONFIG_CIFS_DFS_UPCALL
1613 rc = dfs_cache_init();
1614 if (rc)
1615 goto out_destroy_request_bufs;
1616#endif /* CONFIG_CIFS_DFS_UPCALL */
Jeff Layton84a15b92007-11-03 05:02:24 +00001617#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001618 rc = init_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001619 if (rc)
Paulo Alcantara1c780222018-11-14 16:24:03 -02001620 goto out_destroy_dfs_cache;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001621#endif /* CONFIG_CIFS_UPCALL */
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001622#ifdef CONFIG_CIFS_SWN_UPCALL
1623 rc = cifs_genl_init();
1624 if (rc)
1625 goto out_register_key_type;
1626#endif /* CONFIG_CIFS_SWN_UPCALL */
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001627
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001628 rc = init_cifs_idmap();
1629 if (rc)
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001630 goto out_cifs_swn_init;
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001631
1632 rc = register_filesystem(&cifs_fs_type);
1633 if (rc)
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001634 goto out_init_cifs_idmap;
Steve French45af7a02006-04-21 22:52:25 +00001635
Steve French49218b42018-05-23 21:44:53 -05001636 rc = register_filesystem(&smb3_fs_type);
1637 if (rc) {
1638 unregister_filesystem(&cifs_fs_type);
1639 goto out_init_cifs_idmap;
1640 }
1641
Steve French45af7a02006-04-21 22:52:25 +00001642 return 0;
1643
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001644out_init_cifs_idmap:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001645 exit_cifs_idmap();
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001646out_cifs_swn_init:
1647#ifdef CONFIG_CIFS_SWN_UPCALL
1648 cifs_genl_exit();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001649out_register_key_type:
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001650#endif
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001651#ifdef CONFIG_CIFS_UPCALL
Sachin Prabhub74cb9a2016-05-17 18:20:13 -05001652 exit_cifs_spnego();
Paulo Alcantara1c780222018-11-14 16:24:03 -02001653out_destroy_dfs_cache:
1654#endif
1655#ifdef CONFIG_CIFS_DFS_UPCALL
1656 dfs_cache_destroy();
Shirish Pargaonkarc4aca0c2011-05-06 02:35:00 -05001657out_destroy_request_bufs:
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001658#endif
Steve French45af7a02006-04-21 22:52:25 +00001659 cifs_destroy_request_bufs();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001660out_destroy_mids:
Steve French45af7a02006-04-21 22:52:25 +00001661 cifs_destroy_mids();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001662out_destroy_inodecache:
Steve French45af7a02006-04-21 22:52:25 +00001663 cifs_destroy_inodecache();
Steve Frenchd3bf5222010-09-22 19:15:36 +00001664out_unreg_fscache:
Suresh Jayaramanf579cf32010-07-05 18:11:50 +05301665 cifs_fscache_unregister();
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001666out_destroy_cifsoplockd_wq:
1667 destroy_workqueue(cifsoplockd_wq);
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001668out_destroy_fileinfo_put_wq:
1669 destroy_workqueue(fileinfo_put_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001670out_destroy_decrypt_wq:
1671 destroy_workqueue(decrypt_wq);
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001672out_destroy_cifsiod_wq:
Jeff Laytonda472fc2012-03-23 14:40:53 -04001673 destroy_workqueue(cifsiod_wq);
Steve Frenchd3bf5222010-09-22 19:15:36 +00001674out_clean_proc:
1675 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 return rc;
1677}
1678
1679static void __exit
1680exit_cifs(void)
1681{
Steve French49218b42018-05-23 21:44:53 -05001682 cifs_dbg(NOISY, "exit_smb3\n");
Jeff Layton3dd93302012-03-21 06:27:55 -04001683 unregister_filesystem(&cifs_fs_type);
Steve French49218b42018-05-23 21:44:53 -05001684 unregister_filesystem(&smb3_fs_type);
Igor Mammedov78d31a32008-04-24 12:56:07 +04001685 cifs_dfs_release_automount_timer();
Shirish Pargaonkar4d79dba2011-04-27 23:34:35 -05001686 exit_cifs_idmap();
Samuel Cabrero06f08da2020-11-30 19:02:49 +01001687#ifdef CONFIG_CIFS_SWN_UPCALL
1688 cifs_genl_exit();
1689#endif
Jeff Layton84a15b92007-11-03 05:02:24 +00001690#ifdef CONFIG_CIFS_UPCALL
Shu Wang94183332017-09-07 16:03:27 +08001691 exit_cifs_spnego();
Jeff Layton84a15b92007-11-03 05:02:24 +00001692#endif
Paulo Alcantara1c780222018-11-14 16:24:03 -02001693#ifdef CONFIG_CIFS_DFS_UPCALL
1694 dfs_cache_destroy();
1695#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 cifs_destroy_request_bufs();
Jeff Layton3dd93302012-03-21 06:27:55 -04001697 cifs_destroy_mids();
1698 cifs_destroy_inodecache();
1699 cifs_fscache_unregister();
Rabin Vincent3998e6b82017-05-03 17:54:01 +02001700 destroy_workqueue(cifsoplockd_wq);
Steve French35cf94a2019-09-07 01:09:49 -05001701 destroy_workqueue(decrypt_wq);
Ronnie Sahlberg32546a92019-11-03 13:06:37 +10001702 destroy_workqueue(fileinfo_put_wq);
Jeff Laytonda472fc2012-03-23 14:40:53 -04001703 destroy_workqueue(cifsiod_wq);
Jeff Layton3dd93302012-03-21 06:27:55 -04001704 cifs_proc_clean();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
Steve French1c3a13a2018-09-18 04:07:45 -05001707MODULE_AUTHOR("Steve French");
Steve French6dc0f872007-07-06 23:13:06 +00001708MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709MODULE_DESCRIPTION
Steve French1c3a13a2018-09-18 04:07:45 -05001710 ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and "
1711 "also older servers complying with the SNIA CIFS Specification)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712MODULE_VERSION(CIFS_VERSION);
Ronnie Sahlberg3591bb82019-10-31 13:55:14 +10001713MODULE_SOFTDEP("ecb");
1714MODULE_SOFTDEP("hmac");
1715MODULE_SOFTDEP("md4");
1716MODULE_SOFTDEP("md5");
1717MODULE_SOFTDEP("nls");
1718MODULE_SOFTDEP("aes");
1719MODULE_SOFTDEP("cmac");
1720MODULE_SOFTDEP("sha256");
1721MODULE_SOFTDEP("sha512");
1722MODULE_SOFTDEP("aead2");
1723MODULE_SOFTDEP("ccm");
1724MODULE_SOFTDEP("gcm");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725module_init(init_cifs)
1726module_exit(exit_cifs)