Steve French | 929be90 | 2021-06-18 00:31:49 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: LGPL-2.1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Steve French | 2b280fa | 2008-05-17 03:12:45 +0000 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2008 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 6 | * |
| 7 | * Common Internet FileSystem (CIFS) client |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 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 French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 22 | #include <linux/delay.h> |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 23 | #include <linux/kthread.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 24 | #include <linux/freezer.h> |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 25 | #include <linux/namei.h> |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 26 | #include <linux/random.h> |
Andrew Lunn | c6e970a | 2017-03-28 23:45:06 +0200 | [diff] [blame] | 27 | #include <linux/uuid.h> |
Andreas Gruenbacher | a9ae008 | 2016-04-22 12:11:38 +0200 | [diff] [blame] | 28 | #include <linux/xattr.h> |
Jeff Layton | dea2903 | 2022-01-10 19:00:02 -0500 | [diff] [blame] | 29 | #include <uapi/linux/magic.h> |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 30 | #include <net/ipv6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include "cifsfs.h" |
| 32 | #include "cifspdu.h" |
| 33 | #define DECLARE_GLOBALS_HERE |
| 34 | #include "cifsglob.h" |
| 35 | #include "cifsproto.h" |
| 36 | #include "cifs_debug.h" |
| 37 | #include "cifs_fs_sb.h" |
| 38 | #include <linux/mm.h> |
Jeff Layton | 84a15b9 | 2007-11-03 05:02:24 +0000 | [diff] [blame] | 39 | #include <linux/key-type.h> |
Jeff Layton | e545937 | 2007-11-03 05:11:06 +0000 | [diff] [blame] | 40 | #include "cifs_spnego.h" |
Suresh Jayaraman | f579cf3 | 2010-07-05 18:11:50 +0530 | [diff] [blame] | 41 | #include "fscache.h" |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 42 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 43 | #include "dfs_cache.h" |
| 44 | #endif |
Samuel Cabrero | 06f08da | 2020-11-30 19:02:49 +0100 | [diff] [blame] | 45 | #ifdef CONFIG_CIFS_SWN_UPCALL |
| 46 | #include "netlink.h" |
| 47 | #endif |
Ronnie Sahlberg | 3fa1c6d | 2020-12-09 23:07:12 -0600 | [diff] [blame] | 48 | #include "fs_context.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Deepa Dinamani | cb7a69e | 2019-03-22 14:32:35 -0700 | [diff] [blame] | 50 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | int cifsFYI = 0; |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 60 | bool traceSMB; |
Steve French | e750473 | 2011-10-12 17:47:03 -0500 | [diff] [blame] | 61 | bool enable_oplocks = true; |
Kees Cook | 1404297 | 2016-03-17 14:22:54 -0700 | [diff] [blame] | 62 | bool linuxExtEnabled = true; |
| 63 | bool lookupCacheEnabled = true; |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 64 | bool disable_legacy_dialects; /* false by default */ |
Steve French | fee742b | 2021-04-27 23:07:19 -0500 | [diff] [blame] | 65 | bool enable_gcm_256 = true; |
Steve French | fbfd0b4 | 2020-09-11 16:19:28 -0500 | [diff] [blame] | 66 | bool require_gcm_256; /* false by default */ |
Steve French | 53d31a3 | 2021-07-05 15:05:39 -0500 | [diff] [blame] | 67 | bool enable_negotiate_signing; /* false by default */ |
Jeff Layton | 04912d6 | 2010-04-24 07:57:45 -0400 | [diff] [blame] | 68 | unsigned int global_secflags = CIFSSEC_DEF; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 69 | /* unsigned int ntlmv2_support = 0; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | unsigned int sign_CIFS_PDUs = 1; |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 71 | static const struct super_operations cifs_super_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | unsigned int CIFSMaxBufSize = CIFS_MAX_MSGSIZE; |
Germano Percossi | cb978ac | 2016-09-30 21:25:24 -0500 | [diff] [blame] | 73 | module_param(CIFSMaxBufSize, uint, 0444); |
Steve French | 11911b9 | 2018-05-24 02:09:20 -0500 | [diff] [blame] | 74 | MODULE_PARM_DESC(CIFSMaxBufSize, "Network buffer size (not including header) " |
| 75 | "for CIFS requests. " |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 76 | "Default: 16384 Range: 8192 to 130048"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | unsigned int cifs_min_rcv = CIFS_MIN_RCV_POOL; |
Germano Percossi | cb978ac | 2016-09-30 21:25:24 -0500 | [diff] [blame] | 78 | module_param(cifs_min_rcv, uint, 0444); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 79 | MODULE_PARM_DESC(cifs_min_rcv, "Network buffers in pool. Default: 4 Range: " |
| 80 | "1 to 64"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | unsigned int cifs_min_small = 30; |
Germano Percossi | cb978ac | 2016-09-30 21:25:24 -0500 | [diff] [blame] | 82 | module_param(cifs_min_small, uint, 0444); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 83 | MODULE_PARM_DESC(cifs_min_small, "Small network buffers in pool. Default: 30 " |
| 84 | "Range: 2 to 256"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | unsigned int cifs_max_pending = CIFS_MAX_REQ; |
Jeff Layton | 60654ce | 2012-11-25 08:00:34 -0500 | [diff] [blame] | 86 | module_param(cifs_max_pending, uint, 0444); |
Steve French | 11911b9 | 2018-05-24 02:09:20 -0500 | [diff] [blame] | 87 | MODULE_PARM_DESC(cifs_max_pending, "Simultaneous requests to server for " |
| 88 | "CIFS/SMB1 dialect (N/A for SMB3) " |
Pavel Shilovsky | 10b9b98 | 2012-03-20 12:55:09 +0300 | [diff] [blame] | 89 | "Default: 32767 Range: 2 to 32767."); |
Steve French | 00778e2 | 2018-09-18 14:05:18 -0500 | [diff] [blame] | 90 | #ifdef CONFIG_CIFS_STATS2 |
| 91 | unsigned int slow_rsp_threshold = 1; |
| 92 | module_param(slow_rsp_threshold, uint, 0644); |
| 93 | MODULE_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 French | e750473 | 2011-10-12 17:47:03 -0500 | [diff] [blame] | 98 | module_param(enable_oplocks, bool, 0644); |
Jeff Layton | 60654ce | 2012-11-25 08:00:34 -0500 | [diff] [blame] | 99 | MODULE_PARM_DESC(enable_oplocks, "Enable or disable oplocks. Default: y/Y/1"); |
Steve French | e750473 | 2011-10-12 17:47:03 -0500 | [diff] [blame] | 100 | |
Steve French | 29e2792 | 2020-10-14 20:24:09 -0500 | [diff] [blame] | 101 | module_param(enable_gcm_256, bool, 0644); |
| 102 | MODULE_PARM_DESC(enable_gcm_256, "Enable requesting strongest (256 bit) GCM encryption. Default: n/N/0"); |
| 103 | |
Steve French | fbfd0b4 | 2020-09-11 16:19:28 -0500 | [diff] [blame] | 104 | module_param(require_gcm_256, bool, 0644); |
| 105 | MODULE_PARM_DESC(require_gcm_256, "Require strongest (256 bit) GCM encryption. Default: n/N/0"); |
| 106 | |
Steve French | 53d31a3 | 2021-07-05 15:05:39 -0500 | [diff] [blame] | 107 | module_param(enable_negotiate_signing, bool, 0644); |
| 108 | MODULE_PARM_DESC(enable_negotiate_signing, "Enable negotiating packet signing algorithm with server. Default: n/N/0"); |
| 109 | |
Steve French | f92a720 | 2018-05-24 04:11:07 -0500 | [diff] [blame] | 110 | module_param(disable_legacy_dialects, bool, 0644); |
| 111 | MODULE_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | extern mempool_t *cifs_sm_req_poolp; |
| 120 | extern mempool_t *cifs_req_poolp; |
| 121 | extern mempool_t *cifs_mid_poolp; |
| 122 | |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 123 | struct workqueue_struct *cifsiod_wq; |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 124 | struct workqueue_struct *decrypt_wq; |
Ronnie Sahlberg | 32546a9 | 2019-11-03 13:06:37 +1000 | [diff] [blame] | 125 | struct workqueue_struct *fileinfo_put_wq; |
Rabin Vincent | 3998e6b8 | 2017-05-03 17:54:01 +0200 | [diff] [blame] | 126 | struct workqueue_struct *cifsoplockd_wq; |
Rohith Surabattula | 860b69a | 2021-05-05 10:56:47 +0000 | [diff] [blame] | 127 | struct workqueue_struct *deferredclose_wq; |
Jeff Layton | 3d22462 | 2016-05-24 06:27:44 -0400 | [diff] [blame] | 128 | __u32 cifs_lock_secret; |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 129 | |
Mateusz Guzik | 24261fc | 2013-03-08 16:30:03 +0100 | [diff] [blame] | 130 | /* |
| 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 | */ |
| 136 | void |
| 137 | cifs_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 | |
| 145 | void |
| 146 | cifs_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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | static int |
Al Viro | 97d1152 | 2011-06-17 09:29:57 -0400 | [diff] [blame] | 155 | cifs_read_super(struct super_block *sb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
| 157 | struct inode *inode; |
Pavel Shilovsky | b2e5cd3 | 2011-05-25 13:35:34 +0400 | [diff] [blame] | 158 | struct cifs_sb_info *cifs_sb; |
Jan Klos | 2f6c947 | 2013-10-06 21:08:20 +0200 | [diff] [blame] | 159 | struct cifs_tcon *tcon; |
Deepa Dinamani | cb7a69e | 2019-03-22 14:32:35 -0700 | [diff] [blame] | 160 | struct timespec64 ts; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | int rc = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 162 | |
Pavel Shilovsky | b2e5cd3 | 2011-05-25 13:35:34 +0400 | [diff] [blame] | 163 | cifs_sb = CIFS_SB(sb); |
Jan Klos | 2f6c947 | 2013-10-06 21:08:20 +0200 | [diff] [blame] | 164 | tcon = cifs_sb_master_tcon(cifs_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 166 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIXACL) |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 167 | sb->s_flags |= SB_POSIXACL; |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 168 | |
Steve French | 8a69e96 | 2018-06-29 16:06:15 -0500 | [diff] [blame] | 169 | if (tcon->snapshot_time) |
| 170 | sb->s_flags |= SB_RDONLY; |
| 171 | |
Jan Klos | 2f6c947 | 2013-10-06 21:08:20 +0200 | [diff] [blame] | 172 | if (tcon->ses->capabilities & tcon->ses->server->vals->cap_large_files) |
Al Viro | 2c6292a | 2011-06-17 09:05:48 -0400 | [diff] [blame] | 173 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
| 174 | else |
| 175 | sb->s_maxbytes = MAX_NON_LFS; |
| 176 | |
Steve French | 553292a | 2019-10-11 17:36:13 -0700 | [diff] [blame] | 177 | /* |
| 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 French | d4cfbf0 | 2019-10-08 00:27:14 -0500 | [diff] [blame] | 184 | 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 Dinamani | cb7a69e | 2019-03-22 14:32:35 -0700 | [diff] [blame] | 200 | 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 Dinamani | cb7a69e | 2019-03-22 14:32:35 -0700 | [diff] [blame] | 204 | } |
| 205 | |
Jeff Layton | dea2903 | 2022-01-10 19:00:02 -0500 | [diff] [blame] | 206 | sb->s_magic = CIFS_SUPER_MAGIC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | sb->s_op = &cifs_super_ops; |
Andreas Gruenbacher | a9ae008 | 2016-04-22 12:11:38 +0200 | [diff] [blame] | 208 | sb->s_xattr = cifs_xattr_handlers; |
Jan Kara | 851ea08 | 2017-04-12 12:24:34 +0200 | [diff] [blame] | 209 | rc = super_setup_bdi(sb); |
| 210 | if (rc) |
| 211 | goto out_no_root; |
Steve French | b8d64f8 | 2021-04-24 21:46:23 -0500 | [diff] [blame] | 212 | /* 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 Kara | 851ea08 | 2017-04-12 12:24:34 +0200 | [diff] [blame] | 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | sb->s_blocksize = CIFS_MAX_MSGSIZE; |
| 219 | sb->s_blocksize_bits = 14; /* default 2**14 = CIFS_MAX_MSGSIZE */ |
Shirish Pargaonkar | 9b6763e | 2011-02-21 23:56:59 -0600 | [diff] [blame] | 220 | inode = cifs_root_iget(sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
David Howells | ce634ab | 2008-02-07 00:15:33 -0800 | [diff] [blame] | 222 | if (IS_ERR(inode)) { |
| 223 | rc = PTR_ERR(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | goto out_no_root; |
| 225 | } |
| 226 | |
Jan Klos | 2f6c947 | 2013-10-06 21:08:20 +0200 | [diff] [blame] | 227 | if (tcon->nocase) |
Jeff Layton | 66ffd11 | 2013-07-30 11:38:44 -0400 | [diff] [blame] | 228 | sb->s_d_op = &cifs_ci_dentry_ops; |
| 229 | else |
| 230 | sb->s_d_op = &cifs_dentry_ops; |
| 231 | |
Al Viro | 48fde70 | 2012-01-08 22:15:13 -0500 | [diff] [blame] | 232 | sb->s_root = d_make_root(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | if (!sb->s_root) { |
| 234 | rc = -ENOMEM; |
| 235 | goto out_no_root; |
| 236 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 237 | |
Paul Bolle | f3a6a60 | 2011-10-12 14:14:04 +0200 | [diff] [blame] | 238 | #ifdef CONFIG_CIFS_NFSD_EXPORT |
Steve French | 7521a3c | 2007-07-11 18:30:34 +0000 | [diff] [blame] | 239 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 240 | cifs_dbg(FYI, "export ops supported\n"); |
Steve French | 7521a3c | 2007-07-11 18:30:34 +0000 | [diff] [blame] | 241 | sb->s_export_op = &cifs_export_ops; |
| 242 | } |
Paul Bolle | f3a6a60 | 2011-10-12 14:14:04 +0200 | [diff] [blame] | 243 | #endif /* CONFIG_CIFS_NFSD_EXPORT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | return 0; |
| 246 | |
| 247 | out_no_root: |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 248 | cifs_dbg(VFS, "%s: get root inode failed\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | return rc; |
| 250 | } |
| 251 | |
Al Viro | 6d68617 | 2011-06-17 08:34:57 -0400 | [diff] [blame] | 252 | static void cifs_kill_sb(struct super_block *sb) |
| 253 | { |
| 254 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Ronnie Sahlberg | 5e9c89d | 2021-03-09 09:07:31 +1000 | [diff] [blame] | 255 | struct cifs_tcon *tcon; |
| 256 | struct cached_fid *cfid; |
Ronnie Sahlberg | 269f67e | 2021-03-09 09:07:30 +1000 | [diff] [blame] | 257 | |
Ronnie Sahlberg | 5e9c89d | 2021-03-09 09:07:31 +1000 | [diff] [blame] | 258 | /* |
| 259 | * We ned to release all dentries for the cached directories |
| 260 | * before we kill the sb. |
| 261 | */ |
Ronnie Sahlberg | 269f67e | 2021-03-09 09:07:30 +1000 | [diff] [blame] | 262 | if (cifs_sb->root) { |
| 263 | dput(cifs_sb->root); |
| 264 | cifs_sb->root = NULL; |
| 265 | } |
Ronnie Sahlberg | 5e9c89d | 2021-03-09 09:07:31 +1000 | [diff] [blame] | 266 | 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 Sahlberg | 269f67e | 2021-03-09 09:07:30 +1000 | [diff] [blame] | 277 | |
Al Viro | 6d68617 | 2011-06-17 08:34:57 -0400 | [diff] [blame] | 278 | kill_anon_super(sb); |
Al Viro | 98ab494 | 2011-06-17 09:32:10 -0400 | [diff] [blame] | 279 | cifs_umount(cifs_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | static int |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 283 | cifs_statfs(struct dentry *dentry, struct kstatfs *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 285 | struct super_block *sb = dentry->d_sb; |
Steve French | 39da984 | 2008-04-28 04:04:34 +0000 | [diff] [blame] | 286 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 287 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
Pavel Shilovsky | 76ec5e3 | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 288 | struct TCP_Server_Info *server = tcon->ses->server; |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 289 | unsigned int xid; |
Pavel Shilovsky | 76ec5e3 | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 290 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 292 | xid = get_xid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Steve French | 21ba384 | 2018-06-24 23:18:52 -0500 | [diff] [blame] | 294 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | buf->f_files = 0; /* undefined */ |
| 305 | buf->f_ffree = 0; /* unlimited */ |
| 306 | |
Pavel Shilovsky | 76ec5e3 | 2012-09-18 16:20:33 -0700 | [diff] [blame] | 307 | if (server->ops->queryfs) |
Amir Goldstein | 0f06093 | 2020-02-03 21:46:43 +0200 | [diff] [blame] | 308 | rc = server->ops->queryfs(xid, tcon, cifs_sb, buf); |
Steve French | 39da984 | 2008-04-28 04:04:34 +0000 | [diff] [blame] | 309 | |
Pavel Shilovsky | 6d5786a | 2012-06-20 11:21:16 +0400 | [diff] [blame] | 310 | free_xid(xid); |
Paulo Alcantara | 14302ee | 2021-03-08 12:00:49 -0300 | [diff] [blame] | 311 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | } |
| 313 | |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 314 | static long cifs_fallocate(struct file *file, int mode, loff_t off, loff_t len) |
| 315 | { |
Al Viro | 7119e22 | 2014-10-22 00:25:12 -0400 | [diff] [blame] | 316 | struct cifs_sb_info *cifs_sb = CIFS_FILE_SB(file); |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 317 | 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 Brauner | 549c729 | 2021-01-21 14:19:43 +0100 | [diff] [blame] | 326 | static int cifs_permission(struct user_namespace *mnt_userns, |
| 327 | struct inode *inode, int mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
| 329 | struct cifs_sb_info *cifs_sb; |
| 330 | |
| 331 | cifs_sb = CIFS_SB(inode->i_sb); |
| 332 | |
Miklos Szeredi | f696a36 | 2008-07-31 13:41:58 +0200 | [diff] [blame] | 333 | 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 French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 339 | on the client (above and beyond ACL on servers) for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | servers which do not support setting and viewing mode bits, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 341 | so allowing client to check permissions is useful */ |
Christian Brauner | 47291ba | 2021-01-21 14:19:24 +0100 | [diff] [blame] | 342 | return generic_permission(&init_user_ns, inode, mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 345 | static struct kmem_cache *cifs_inode_cachep; |
| 346 | static struct kmem_cache *cifs_req_cachep; |
| 347 | static struct kmem_cache *cifs_mid_cachep; |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 348 | static struct kmem_cache *cifs_sm_req_cachep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | mempool_t *cifs_sm_req_poolp; |
| 350 | mempool_t *cifs_req_poolp; |
| 351 | mempool_t *cifs_mid_poolp; |
| 352 | |
| 353 | static struct inode * |
| 354 | cifs_alloc_inode(struct super_block *sb) |
| 355 | { |
| 356 | struct cifsInodeInfo *cifs_inode; |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 357 | cifs_inode = kmem_cache_alloc(cifs_inode_cachep, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | if (!cifs_inode) |
| 359 | return NULL; |
| 360 | cifs_inode->cifsAttrs = 0x20; /* default */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | cifs_inode->time = 0; |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 362 | /* |
| 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 Shilovsky | c672362 | 2010-11-03 10:58:57 +0300 | [diff] [blame] | 366 | cifs_set_oplock_level(cifs_inode, 0); |
Jeff Layton | aff8d5c | 2014-04-30 09:31:45 -0400 | [diff] [blame] | 367 | cifs_inode->flags = 0; |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 368 | spin_lock_init(&cifs_inode->writers_lock); |
| 369 | cifs_inode->writers = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | cifs_inode->vfs_inode.i_blkbits = 14; /* 2**14 = CIFS_MAX_MSGSIZE */ |
Jeff Layton | fbec9ab | 2009-04-03 13:44:00 -0400 | [diff] [blame] | 371 | cifs_inode->server_eof = 0; |
Jeff Layton | 20054bd | 2011-01-07 11:30:27 -0500 | [diff] [blame] | 372 | cifs_inode->uniqueid = 0; |
| 373 | cifs_inode->createtime = 0; |
Pavel Shilovsky | 42873b0 | 2013-09-05 21:30:16 +0400 | [diff] [blame] | 374 | cifs_inode->epoch = 0; |
Ronnie Sahlberg | 487317c | 2019-06-05 10:38:38 +1000 | [diff] [blame] | 375 | spin_lock_init(&cifs_inode->open_file_lock); |
Steve French | fa70b87 | 2016-09-22 00:39:34 -0500 | [diff] [blame] | 376 | generate_random_uuid(cifs_inode->lease_key); |
Steve French | 2a38e12 | 2017-07-08 18:48:15 -0500 | [diff] [blame] | 377 | |
Pavel Shilovsky | b8c32db | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 378 | /* |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | INIT_LIST_HEAD(&cifs_inode->openFileList); |
Pavel Shilovsky | f45d341 | 2012-09-19 06:22:43 -0700 | [diff] [blame] | 384 | INIT_LIST_HEAD(&cifs_inode->llist); |
Rohith Surabattula | c3f207a | 2021-04-13 00:26:42 -0500 | [diff] [blame] | 385 | INIT_LIST_HEAD(&cifs_inode->deferred_closes); |
| 386 | spin_lock_init(&cifs_inode->deferred_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | return &cifs_inode->vfs_inode; |
| 388 | } |
| 389 | |
| 390 | static void |
Al Viro | c2e6802 | 2019-04-14 23:18:35 -0400 | [diff] [blame] | 391 | cifs_free_inode(struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Al Viro | c2e6802 | 2019-04-14 23:18:35 -0400 | [diff] [blame] | 393 | kmem_cache_free(cifs_inode_cachep, CIFS_I(inode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | } |
| 395 | |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 396 | static void |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 397 | cifs_evict_inode(struct inode *inode) |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 398 | { |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 399 | truncate_inode_pages_final(&inode->i_data); |
David Howells | 70431bf | 2020-11-17 15:56:59 +0000 | [diff] [blame] | 400 | if (inode->i_state & I_PINNING_FSCACHE_WB) |
| 401 | cifs_fscache_unuse_inode_cookie(inode, true); |
| 402 | cifs_fscache_release_inode_cookie(inode); |
Jan Kara | dbd5768 | 2012-05-03 14:48:02 +0200 | [diff] [blame] | 403 | clear_inode(inode); |
Suresh Jayaraman | 9451a9a | 2010-07-05 18:12:45 +0530 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | static void |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 407 | cifs_show_address(struct seq_file *s, struct TCP_Server_Info *server) |
| 408 | { |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 409 | struct sockaddr_in *sa = (struct sockaddr_in *) &server->dstaddr; |
| 410 | struct sockaddr_in6 *sa6 = (struct sockaddr_in6 *) &server->dstaddr; |
| 411 | |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 412 | seq_puts(s, ",addr="); |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 413 | |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 414 | switch (server->dstaddr.ss_family) { |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 415 | case AF_INET: |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 416 | seq_printf(s, "%pI4", &sa->sin_addr.s_addr); |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 417 | break; |
| 418 | case AF_INET6: |
Pavel Shilovsky | a9f1b85 | 2010-12-13 19:08:35 +0300 | [diff] [blame] | 419 | seq_printf(s, "%pI6", &sa6->sin6_addr.s6_addr); |
| 420 | if (sa6->sin6_scope_id) |
| 421 | seq_printf(s, "%%%u", sa6->sin6_scope_id); |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 422 | break; |
| 423 | default: |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 424 | seq_puts(s, "(unknown)"); |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 425 | } |
Long Li | 8339dd3 | 2017-11-07 01:54:55 -0700 | [diff] [blame] | 426 | if (server->rdma) |
| 427 | seq_puts(s, ",rdma"); |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 428 | } |
| 429 | |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 430 | static void |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 431 | cifs_show_security(struct seq_file *s, struct cifs_ses *ses) |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 432 | { |
Steve French | eda2116 | 2015-09-11 19:24:19 -0500 | [diff] [blame] | 433 | if (ses->sectype == Unspecified) { |
| 434 | if (ses->user_name == NULL) |
| 435 | seq_puts(s, ",sec=none"); |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 436 | return; |
Steve French | eda2116 | 2015-09-11 19:24:19 -0500 | [diff] [blame] | 437 | } |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 438 | |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 439 | seq_puts(s, ",sec="); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 440 | |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 441 | switch (ses->sectype) { |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 442 | case NTLMv2: |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 443 | seq_puts(s, "ntlmv2"); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 444 | break; |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 445 | case Kerberos: |
Petr Pavlu | 3f6166a | 2020-02-10 10:38:14 +0100 | [diff] [blame] | 446 | seq_puts(s, "krb5"); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 447 | break; |
| 448 | case RawNTLMSSP: |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 449 | seq_puts(s, "ntlmssp"); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 450 | break; |
| 451 | default: |
| 452 | /* shouldn't ever happen */ |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 453 | seq_puts(s, "unknown"); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 454 | break; |
| 455 | } |
| 456 | |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 457 | if (ses->sign) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 458 | seq_puts(s, "i"); |
Petr Pavlu | 3f6166a | 2020-02-10 10:38:14 +0100 | [diff] [blame] | 459 | |
| 460 | if (ses->sectype == Kerberos) |
| 461 | seq_printf(s, ",cruid=%u", |
| 462 | from_kuid_munged(&init_user_ns, ses->cred_uid)); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 463 | } |
| 464 | |
Jeff Layton | d06b505 | 2012-05-16 07:53:01 -0400 | [diff] [blame] | 465 | static void |
| 466 | cifs_show_cache_flavor(struct seq_file *s, struct cifs_sb_info *cifs_sb) |
| 467 | { |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 468 | seq_puts(s, ",cache="); |
Jeff Layton | d06b505 | 2012-05-16 07:53:01 -0400 | [diff] [blame] | 469 | |
| 470 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_STRICT_IO) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 471 | seq_puts(s, "strict"); |
Jeff Layton | d06b505 | 2012-05-16 07:53:01 -0400 | [diff] [blame] | 472 | else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DIRECT_IO) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 473 | seq_puts(s, "none"); |
Steve French | 41e033f | 2019-08-30 02:12:41 -0500 | [diff] [blame] | 474 | else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RW_CACHE) |
| 475 | seq_puts(s, "singleclient"); /* assume only one client access */ |
Steve French | 83bbfa7 | 2019-08-27 23:58:54 -0500 | [diff] [blame] | 476 | else if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RO_CACHE) |
| 477 | seq_puts(s, "ro"); /* read only caching assumed */ |
Jeff Layton | d06b505 | 2012-05-16 07:53:01 -0400 | [diff] [blame] | 478 | else |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 479 | seq_puts(s, "loose"); |
Jeff Layton | d06b505 | 2012-05-16 07:53:01 -0400 | [diff] [blame] | 480 | } |
| 481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | /* |
Steve French | 653a5ef | 2020-12-14 20:08:10 -0600 | [diff] [blame] | 483 | * cifs_show_devname() is used so we show the mount device name with correct |
| 484 | * format (e.g. forward slashes vs. back slashes) in /proc/mounts |
| 485 | */ |
| 486 | static int cifs_show_devname(struct seq_file *m, struct dentry *root) |
| 487 | { |
| 488 | struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb); |
Ronnie Sahlberg | af1a3d2 | 2021-02-11 16:06:16 +1000 | [diff] [blame] | 489 | char *devname = kstrdup(cifs_sb->ctx->source, GFP_KERNEL); |
Steve French | 653a5ef | 2020-12-14 20:08:10 -0600 | [diff] [blame] | 490 | |
| 491 | if (devname == NULL) |
| 492 | seq_puts(m, "none"); |
| 493 | else { |
| 494 | convert_delimiter(devname, '/'); |
Maciek Borzecki | 0fc9322 | 2021-04-06 17:02:29 +0200 | [diff] [blame] | 495 | /* escape all spaces in share names */ |
| 496 | seq_escape(m, devname, " \t"); |
Steve French | 653a5ef | 2020-12-14 20:08:10 -0600 | [diff] [blame] | 497 | kfree(devname); |
| 498 | } |
| 499 | return 0; |
| 500 | } |
| 501 | |
| 502 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | * cifs_show_options() is for displaying mount options in /proc/mounts. |
| 504 | * Not all settable options are displayed but most of the important |
| 505 | * ones are. |
| 506 | */ |
| 507 | static int |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 508 | cifs_show_options(struct seq_file *s, struct dentry *root) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | { |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 510 | struct cifs_sb_info *cifs_sb = CIFS_SB(root->d_sb); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 511 | struct cifs_tcon *tcon = cifs_sb_master_tcon(cifs_sb); |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 512 | struct sockaddr *srcaddr; |
| 513 | srcaddr = (struct sockaddr *)&tcon->ses->server->srcaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 514 | |
Kees Cook | a068acf | 2015-09-04 15:44:57 -0700 | [diff] [blame] | 515 | seq_show_option(s, "vers", tcon->ses->server->vals->version_string); |
Jeff Layton | 28e11bd | 2013-05-26 07:01:00 -0400 | [diff] [blame] | 516 | cifs_show_security(s, tcon->ses); |
Jeff Layton | d06b505 | 2012-05-16 07:53:01 -0400 | [diff] [blame] | 517 | cifs_show_cache_flavor(s, cifs_sb); |
Jeff Layton | 3e71551 | 2011-06-13 11:50:41 -0400 | [diff] [blame] | 518 | |
Steve French | 3e7a02d | 2019-09-11 21:46:20 -0500 | [diff] [blame] | 519 | if (tcon->no_lease) |
| 520 | seq_puts(s, ",nolease"); |
Ronnie Sahlberg | 9ccecae | 2020-12-14 16:40:19 +1000 | [diff] [blame] | 521 | if (cifs_sb->ctx->multiuser) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 522 | seq_puts(s, ",multiuser"); |
Steve French | 8727c8a | 2011-02-25 01:11:56 -0600 | [diff] [blame] | 523 | else if (tcon->ses->user_name) |
Kees Cook | a068acf | 2015-09-04 15:44:57 -0700 | [diff] [blame] | 524 | seq_show_option(s, "username", tcon->ses->user_name); |
Jeff Layton | 29e07c8 | 2010-09-29 19:51:12 -0400 | [diff] [blame] | 525 | |
Ronnie Sahlberg | e55954a | 2018-08-10 11:31:10 +1000 | [diff] [blame] | 526 | if (tcon->ses->domainName && tcon->ses->domainName[0] != 0) |
Kees Cook | a068acf | 2015-09-04 15:44:57 -0700 | [diff] [blame] | 527 | seq_show_option(s, "domain", tcon->ses->domainName); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 528 | |
Ben Greear | 3eb9a88 | 2010-09-01 17:06:02 -0700 | [diff] [blame] | 529 | if (srcaddr->sa_family != AF_UNSPEC) { |
| 530 | struct sockaddr_in *saddr4; |
| 531 | struct sockaddr_in6 *saddr6; |
| 532 | saddr4 = (struct sockaddr_in *)srcaddr; |
| 533 | saddr6 = (struct sockaddr_in6 *)srcaddr; |
| 534 | if (srcaddr->sa_family == AF_INET6) |
| 535 | seq_printf(s, ",srcaddr=%pI6c", |
| 536 | &saddr6->sin6_addr); |
| 537 | else if (srcaddr->sa_family == AF_INET) |
| 538 | seq_printf(s, ",srcaddr=%pI4", |
| 539 | &saddr4->sin_addr.s_addr); |
| 540 | else |
| 541 | seq_printf(s, ",srcaddr=BAD-AF:%i", |
| 542 | (int)(srcaddr->sa_family)); |
| 543 | } |
| 544 | |
Eric W. Biederman | 1f68233 | 2013-02-06 01:20:20 -0800 | [diff] [blame] | 545 | seq_printf(s, ",uid=%u", |
Ronnie Sahlberg | 8401e93 | 2020-12-12 13:40:50 -0600 | [diff] [blame] | 546 | from_kuid_munged(&init_user_ns, cifs_sb->ctx->linux_uid)); |
Jeff Layton | 340481a3 | 2009-06-11 10:27:29 -0400 | [diff] [blame] | 547 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_UID) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 548 | seq_puts(s, ",forceuid"); |
Jeff Layton | 4486d6e | 2009-08-03 12:45:10 -0400 | [diff] [blame] | 549 | else |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 550 | seq_puts(s, ",noforceuid"); |
Jeff Layton | 340481a3 | 2009-06-11 10:27:29 -0400 | [diff] [blame] | 551 | |
Eric W. Biederman | 1f68233 | 2013-02-06 01:20:20 -0800 | [diff] [blame] | 552 | seq_printf(s, ",gid=%u", |
Ronnie Sahlberg | 8401e93 | 2020-12-12 13:40:50 -0600 | [diff] [blame] | 553 | from_kgid_munged(&init_user_ns, cifs_sb->ctx->linux_gid)); |
Jeff Layton | 340481a3 | 2009-06-11 10:27:29 -0400 | [diff] [blame] | 554 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 555 | seq_puts(s, ",forcegid"); |
Jeff Layton | 4486d6e | 2009-08-03 12:45:10 -0400 | [diff] [blame] | 556 | else |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 557 | seq_puts(s, ",noforcegid"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 558 | |
Jeff Layton | 61f98ff | 2009-06-11 10:27:32 -0400 | [diff] [blame] | 559 | cifs_show_address(s, tcon->ses->server); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 560 | |
| 561 | if (!tcon->unix_ext) |
Al Viro | 5206efd | 2011-07-26 03:22:14 -0400 | [diff] [blame] | 562 | seq_printf(s, ",file_mode=0%ho,dir_mode=0%ho", |
Ronnie Sahlberg | 8401e93 | 2020-12-12 13:40:50 -0600 | [diff] [blame] | 563 | cifs_sb->ctx->file_mode, |
| 564 | cifs_sb->ctx->dir_mode); |
Ronnie Sahlberg | 7c7ee62 | 2020-12-14 16:40:22 +1000 | [diff] [blame] | 565 | if (cifs_sb->ctx->iocharset) |
| 566 | seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 567 | if (tcon->seal) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 568 | seq_puts(s, ",seal"); |
Steve French | ec57010 | 2020-02-19 23:59:32 -0600 | [diff] [blame] | 569 | else if (tcon->ses->server->ignore_signature) |
| 570 | seq_puts(s, ",signloosely"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 571 | if (tcon->nocase) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 572 | seq_puts(s, ",nocase"); |
Steve French | 82e9367 | 2020-05-19 03:06:57 -0500 | [diff] [blame] | 573 | if (tcon->nodelete) |
| 574 | seq_puts(s, ",nodelete"); |
Kenneth D'souza | c8b6ac1 | 2019-01-21 11:51:59 +1000 | [diff] [blame] | 575 | if (tcon->local_lease) |
| 576 | seq_puts(s, ",locallease"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 577 | if (tcon->retry) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 578 | seq_puts(s, ",hard"); |
Ronnie Sahlberg | 6e82e92 | 2017-09-20 13:09:23 +1000 | [diff] [blame] | 579 | else |
| 580 | seq_puts(s, ",soft"); |
Steve French | f16dfa7 | 2015-09-30 21:07:59 -0500 | [diff] [blame] | 581 | if (tcon->use_persistent) |
| 582 | seq_puts(s, ",persistenthandles"); |
Steve French | 592fafe | 2015-11-03 10:08:53 -0600 | [diff] [blame] | 583 | else if (tcon->use_resilient) |
| 584 | seq_puts(s, ",resilienthandles"); |
Steve French | b326614 | 2018-05-20 23:41:10 -0500 | [diff] [blame] | 585 | if (tcon->posix_extensions) |
| 586 | seq_puts(s, ",posix"); |
| 587 | else if (tcon->unix_ext) |
| 588 | seq_puts(s, ",unix"); |
| 589 | else |
| 590 | seq_puts(s, ",nounix"); |
Aurelien Aptel | 8393072 | 2018-09-20 18:10:25 -0700 | [diff] [blame] | 591 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_DFS) |
| 592 | seq_puts(s, ",nodfs"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 593 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 594 | seq_puts(s, ",posixpaths"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 595 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SET_UID) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 596 | seq_puts(s, ",setuids"); |
Steve French | 9593265 | 2016-09-23 01:36:34 -0500 | [diff] [blame] | 597 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UID_FROM_ACL) |
| 598 | seq_puts(s, ",idsfromsid"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 599 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 600 | seq_puts(s, ",serverino"); |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 601 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_RWPIDFORWARD) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 602 | seq_puts(s, ",rwpidforward"); |
Pavel Shilovsky | d4ffff1 | 2011-05-26 06:02:00 +0000 | [diff] [blame] | 603 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOPOSIXBRL) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 604 | seq_puts(s, ",forcemand"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 605 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_XATTR) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 606 | seq_puts(s, ",nouser_xattr"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 607 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 608 | seq_puts(s, ",mapchars"); |
Nakajima Akira | bc8ebdc4 | 2015-02-13 15:35:58 +0900 | [diff] [blame] | 609 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SFM_CHR) |
| 610 | seq_puts(s, ",mapposix"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 611 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 612 | seq_puts(s, ",sfu"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 613 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_BRL) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 614 | seq_puts(s, ",nobrl"); |
Steve French | 3d4ef9a | 2018-04-25 22:19:09 -0500 | [diff] [blame] | 615 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_HANDLE_CACHE) |
| 616 | seq_puts(s, ",nohandlecache"); |
Steve French | 412094a | 2019-06-24 02:01:42 -0500 | [diff] [blame] | 617 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MODE_FROM_SID) |
| 618 | seq_puts(s, ",modefromsid"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 619 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_ACL) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 620 | seq_puts(s, ",cifsacl"); |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 621 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_DYNPERM) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 622 | seq_puts(s, ",dynperm"); |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 623 | if (root->d_sb->s_flags & SB_POSIXACL) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 624 | seq_puts(s, ",acl"); |
Stefan Metzmacher | 736a3320 | 2010-07-30 14:56:00 +0200 | [diff] [blame] | 625 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MF_SYMLINKS) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 626 | seq_puts(s, ",mfsymlinks"); |
Suresh Jayaraman | 476428f | 2010-11-24 17:49:07 +0530 | [diff] [blame] | 627 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 628 | seq_puts(s, ",fsc"); |
Steve French | 71c424b | 2011-10-19 20:44:48 -0500 | [diff] [blame] | 629 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NOSSYNC) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 630 | seq_puts(s, ",nostrictsync"); |
Steve French | 71c424b | 2011-10-19 20:44:48 -0500 | [diff] [blame] | 631 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_NO_PERM) |
Fabian Frederick | 571d597 | 2014-05-13 18:04:17 +0200 | [diff] [blame] | 632 | seq_puts(s, ",noperm"); |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 633 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPUID) |
Eric W. Biederman | 1f68233 | 2013-02-06 01:20:20 -0800 | [diff] [blame] | 634 | seq_printf(s, ",backupuid=%u", |
| 635 | from_kuid_munged(&init_user_ns, |
Ronnie Sahlberg | 8401e93 | 2020-12-12 13:40:50 -0600 | [diff] [blame] | 636 | cifs_sb->ctx->backupuid)); |
Sachin Prabhu | 3c7c87f | 2012-04-24 15:28:14 +0100 | [diff] [blame] | 637 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_CIFS_BACKUPGID) |
Eric W. Biederman | 1f68233 | 2013-02-06 01:20:20 -0800 | [diff] [blame] | 638 | seq_printf(s, ",backupgid=%u", |
| 639 | from_kgid_munged(&init_user_ns, |
Ronnie Sahlberg | 8401e93 | 2020-12-12 13:40:50 -0600 | [diff] [blame] | 640 | cifs_sb->ctx->backupgid)); |
Steve French | 2b280fa | 2008-05-17 03:12:45 +0000 | [diff] [blame] | 641 | |
Steve French | 0c2b5f7 | 2020-12-15 13:28:50 -0600 | [diff] [blame] | 642 | seq_printf(s, ",rsize=%u", cifs_sb->ctx->rsize); |
| 643 | seq_printf(s, ",wsize=%u", cifs_sb->ctx->wsize); |
| 644 | seq_printf(s, ",bsize=%u", cifs_sb->ctx->bsize); |
Steve French | b8d64f8 | 2021-04-24 21:46:23 -0500 | [diff] [blame] | 645 | if (cifs_sb->ctx->rasize) |
| 646 | seq_printf(s, ",rasize=%u", cifs_sb->ctx->rasize); |
Steve French | 563317e | 2019-09-08 23:22:02 -0500 | [diff] [blame] | 647 | if (tcon->ses->server->min_offload) |
| 648 | seq_printf(s, ",esize=%u", tcon->ses->server->min_offload); |
Steve French | adfeb3e | 2015-12-18 12:31:36 -0600 | [diff] [blame] | 649 | seq_printf(s, ",echo_interval=%lu", |
| 650 | tcon->ses->server->echo_interval / HZ); |
Steve French | dc17926 | 2019-06-17 17:34:57 -0500 | [diff] [blame] | 651 | |
| 652 | /* Only display max_credits if it was overridden on mount */ |
| 653 | if (tcon->ses->server->max_credits != SMB2_MAX_CREDITS_AVAILABLE) |
| 654 | seq_printf(s, ",max_credits=%u", tcon->ses->server->max_credits); |
| 655 | |
Steve French | 8a69e96 | 2018-06-29 16:06:15 -0500 | [diff] [blame] | 656 | if (tcon->snapshot_time) |
| 657 | seq_printf(s, ",snapshot=%llu", tcon->snapshot_time); |
Steve French | ca567eb | 2019-03-29 16:31:07 -0500 | [diff] [blame] | 658 | if (tcon->handle_timeout) |
| 659 | seq_printf(s, ",handletimeout=%u", tcon->handle_timeout); |
Steve French | 5780464 | 2021-02-24 12:12:53 -0600 | [diff] [blame] | 660 | |
| 661 | /* |
| 662 | * Display file and directory attribute timeout in seconds. |
| 663 | * If file and directory attribute timeout the same then actimeo |
| 664 | * was likely specified on mount |
| 665 | */ |
| 666 | if (cifs_sb->ctx->acdirmax == cifs_sb->ctx->acregmax) |
| 667 | seq_printf(s, ",actimeo=%lu", cifs_sb->ctx->acregmax / HZ); |
| 668 | else { |
| 669 | seq_printf(s, ",acdirmax=%lu", cifs_sb->ctx->acdirmax / HZ); |
| 670 | seq_printf(s, ",acregmax=%lu", cifs_sb->ctx->acregmax / HZ); |
| 671 | } |
Jeff Layton | 8616e0f | 2009-06-11 10:27:28 -0400 | [diff] [blame] | 672 | |
Aurelien Aptel | bcc8880 | 2019-09-20 04:32:20 +0200 | [diff] [blame] | 673 | if (tcon->ses->chan_max > 1) |
Steve French | 7866c17 | 2020-06-09 19:50:40 -0500 | [diff] [blame] | 674 | seq_printf(s, ",multichannel,max_channels=%zu", |
Aurelien Aptel | bcc8880 | 2019-09-20 04:32:20 +0200 | [diff] [blame] | 675 | tcon->ses->chan_max); |
| 676 | |
Samuel Cabrero | 0ac4e29 | 2020-12-11 22:59:29 -0600 | [diff] [blame] | 677 | if (tcon->use_witness) |
| 678 | seq_puts(s, ",witness"); |
Samuel Cabrero | 0ac4e29 | 2020-12-11 22:59:29 -0600 | [diff] [blame] | 679 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | return 0; |
| 681 | } |
| 682 | |
Al Viro | 42faad9 | 2008-04-24 07:21:56 -0400 | [diff] [blame] | 683 | static void cifs_umount_begin(struct super_block *sb) |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 684 | { |
Al Viro | 42faad9 | 2008-04-24 07:21:56 -0400 | [diff] [blame] | 685 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Steve French | 96daf2b | 2011-05-27 04:34:02 +0000 | [diff] [blame] | 686 | struct cifs_tcon *tcon; |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 687 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 688 | if (cifs_sb == NULL) |
Steve French | 9e2e85f | 2005-10-10 14:28:38 -0700 | [diff] [blame] | 689 | return; |
| 690 | |
Jeff Layton | 0d424ad | 2010-09-20 16:01:35 -0700 | [diff] [blame] | 691 | tcon = cifs_sb_master_tcon(cifs_sb); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 692 | |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 693 | spin_lock(&cifs_tcp_ses_lock); |
Steve French | ad8034f | 2009-06-26 03:25:49 +0000 | [diff] [blame] | 694 | if ((tcon->tc_count > 1) || (tcon->tidStatus == CifsExiting)) { |
| 695 | /* we have other mounts to same share or we have |
| 696 | already tried to force umount this and woken up |
| 697 | all waiting network requests, nothing to do */ |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 698 | spin_unlock(&cifs_tcp_ses_lock); |
Steve French | ad8034f | 2009-06-26 03:25:49 +0000 | [diff] [blame] | 699 | return; |
| 700 | } else if (tcon->tc_count == 1) |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 701 | tcon->tidStatus = CifsExiting; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 702 | spin_unlock(&cifs_tcp_ses_lock); |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 703 | |
Steve French | 3a5ff61 | 2006-07-14 22:37:11 +0000 | [diff] [blame] | 704 | /* cancel_brl_requests(tcon); */ /* BB mark all brl mids as exiting */ |
Steve French | 7b7abfe | 2005-11-09 15:21:09 -0800 | [diff] [blame] | 705 | /* cancel_notify_requests(tcon); */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 706 | if (tcon->ses && tcon->ses->server) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 707 | cifs_dbg(FYI, "wake up tasks now - umount begin not complete\n"); |
Steve French | 9e2e85f | 2005-10-10 14:28:38 -0700 | [diff] [blame] | 708 | wake_up_all(&tcon->ses->server->request_q); |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 709 | wake_up_all(&tcon->ses->server->response_q); |
| 710 | msleep(1); /* yield */ |
| 711 | /* we have to kick the requests once more */ |
| 712 | wake_up_all(&tcon->ses->server->response_q); |
| 713 | msleep(1); |
Steve French | 5e1253b | 2005-10-10 14:06:37 -0700 | [diff] [blame] | 714 | } |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 715 | |
| 716 | return; |
| 717 | } |
Steve French | 68058e7 | 2005-10-10 10:34:22 -0700 | [diff] [blame] | 718 | |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 719 | #ifdef CONFIG_CIFS_STATS2 |
Al Viro | 6413237 | 2011-12-08 20:51:13 -0500 | [diff] [blame] | 720 | static int cifs_show_stats(struct seq_file *s, struct dentry *root) |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 721 | { |
| 722 | /* BB FIXME */ |
| 723 | return 0; |
| 724 | } |
| 725 | #endif |
| 726 | |
David Howells | 70431bf | 2020-11-17 15:56:59 +0000 | [diff] [blame] | 727 | static int cifs_write_inode(struct inode *inode, struct writeback_control *wbc) |
| 728 | { |
| 729 | fscache_unpin_writeback(wbc, cifs_inode_cookie(inode)); |
| 730 | return 0; |
| 731 | } |
| 732 | |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 733 | static int cifs_drop_inode(struct inode *inode) |
Jeff Layton | 12420ac | 2010-06-01 14:47:40 -0400 | [diff] [blame] | 734 | { |
| 735 | struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |
| 736 | |
Al Viro | 45321ac | 2010-06-07 13:43:19 -0400 | [diff] [blame] | 737 | /* no serverino => unconditional eviction */ |
| 738 | return !(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) || |
| 739 | generic_drop_inode(inode); |
Jeff Layton | 12420ac | 2010-06-01 14:47:40 -0400 | [diff] [blame] | 740 | } |
| 741 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 742 | static const struct super_operations cifs_super_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | .statfs = cifs_statfs, |
| 744 | .alloc_inode = cifs_alloc_inode, |
David Howells | 70431bf | 2020-11-17 15:56:59 +0000 | [diff] [blame] | 745 | .write_inode = cifs_write_inode, |
Al Viro | c2e6802 | 2019-04-14 23:18:35 -0400 | [diff] [blame] | 746 | .free_inode = cifs_free_inode, |
Jeff Layton | 12420ac | 2010-06-01 14:47:40 -0400 | [diff] [blame] | 747 | .drop_inode = cifs_drop_inode, |
Al Viro | b57922d | 2010-06-07 14:34:48 -0400 | [diff] [blame] | 748 | .evict_inode = cifs_evict_inode, |
Steve French | 653a5ef | 2020-12-14 20:08:10 -0600 | [diff] [blame] | 749 | /* .show_path = cifs_show_path, */ /* Would we ever need show path? */ |
| 750 | .show_devname = cifs_show_devname, |
Jeff Layton | 12420ac | 2010-06-01 14:47:40 -0400 | [diff] [blame] | 751 | /* .delete_inode = cifs_delete_inode, */ /* Do not need above |
| 752 | function unless later we add lazy close of inodes or unless the |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 753 | kernel forgets to call us with the same number of releases (closes) |
| 754 | as opens */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | .show_options = cifs_show_options, |
Steve French | 7b7abfe | 2005-11-09 15:21:09 -0800 | [diff] [blame] | 756 | .umount_begin = cifs_umount_begin, |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 757 | #ifdef CONFIG_CIFS_STATS2 |
Steve French | f46d3e1 | 2006-09-30 01:08:55 +0000 | [diff] [blame] | 758 | .show_stats = cifs_show_stats, |
Steve French | bf97d28 | 2006-09-28 21:34:06 +0000 | [diff] [blame] | 759 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | }; |
| 761 | |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 762 | /* |
| 763 | * Get root dentry from superblock according to prefix path mount option. |
| 764 | * Return dentry with refcount + 1 on success and NULL otherwise. |
| 765 | */ |
| 766 | static struct dentry * |
Ronnie Sahlberg | 3fa1c6d | 2020-12-09 23:07:12 -0600 | [diff] [blame] | 767 | cifs_get_root(struct smb3_fs_context *ctx, struct super_block *sb) |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 768 | { |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 769 | struct dentry *dentry; |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 770 | struct cifs_sb_info *cifs_sb = CIFS_SB(sb); |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 771 | char *full_path = NULL; |
| 772 | char *s, *p; |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 773 | char sep; |
| 774 | |
Sachin Prabhu | 348c1bf | 2016-07-29 22:38:21 +0100 | [diff] [blame] | 775 | if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_USE_PREFIX_PATH) |
| 776 | return dget(sb->s_root); |
| 777 | |
Ronnie Sahlberg | 3fa1c6d | 2020-12-09 23:07:12 -0600 | [diff] [blame] | 778 | full_path = cifs_build_path_to_root(ctx, cifs_sb, |
Sachin Prabhu | 374402a | 2016-12-15 12:31:19 +0530 | [diff] [blame] | 779 | cifs_sb_master_tcon(cifs_sb), 0); |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 780 | if (full_path == NULL) |
Al Viro | 9403c9c | 2011-06-17 10:02:59 -0400 | [diff] [blame] | 781 | return ERR_PTR(-ENOMEM); |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 782 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 783 | cifs_dbg(FYI, "Get root dentry for %s\n", full_path); |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 784 | |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 785 | sep = CIFS_DIR_SEP(cifs_sb); |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 786 | dentry = dget(sb->s_root); |
Colin Ian King | 0b66fa7 | 2021-12-21 00:48:09 +0000 | [diff] [blame] | 787 | s = full_path; |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 788 | |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 789 | do { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 790 | struct inode *dir = d_inode(dentry); |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 791 | struct dentry *child; |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 792 | |
Jeff Layton | ce2ac52 | 2013-02-01 15:11:01 -0500 | [diff] [blame] | 793 | if (!S_ISDIR(dir->i_mode)) { |
| 794 | dput(dentry); |
| 795 | dentry = ERR_PTR(-ENOTDIR); |
| 796 | break; |
| 797 | } |
Pavel Shilovsky | 5b980b0 | 2011-08-21 19:30:15 +0400 | [diff] [blame] | 798 | |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 799 | /* skip separators */ |
| 800 | while (*s == sep) |
| 801 | s++; |
| 802 | if (!*s) |
| 803 | break; |
| 804 | p = s++; |
| 805 | /* next separator */ |
| 806 | while (*s && *s != sep) |
| 807 | s++; |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 808 | |
Al Viro | 6c2d4798 | 2019-10-31 01:21:58 -0400 | [diff] [blame] | 809 | child = lookup_positive_unlocked(p, dentry, s - p); |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 810 | dput(dentry); |
| 811 | dentry = child; |
| 812 | } while (!IS_ERR(dentry)); |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 813 | kfree(full_path); |
Al Viro | fec11dd | 2011-07-18 13:50:40 -0400 | [diff] [blame] | 814 | return dentry; |
Steve French | f87d39d | 2011-05-27 03:50:55 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Al Viro | ee01a14 | 2011-06-17 09:47:23 -0400 | [diff] [blame] | 817 | static int cifs_set_super(struct super_block *sb, void *data) |
| 818 | { |
| 819 | struct cifs_mnt_data *mnt_data = data; |
| 820 | sb->s_fs_info = mnt_data->cifs_sb; |
| 821 | return set_anon_super(sb, NULL); |
| 822 | } |
| 823 | |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 824 | struct dentry * |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 825 | cifs_smb3_do_mount(struct file_system_type *fs_type, |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 826 | int flags, struct smb3_fs_context *old_ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | { |
| 828 | int rc; |
Jan Blunck | db71922 | 2010-08-15 22:51:10 +0200 | [diff] [blame] | 829 | struct super_block *sb; |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 830 | struct cifs_sb_info *cifs_sb = NULL; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 831 | struct cifs_mnt_data mnt_data; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 832 | struct dentry *root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
Steve French | 8c1beb9 | 2018-10-07 13:52:18 -0500 | [diff] [blame] | 834 | /* |
| 835 | * Prints in Kernel / CIFS log the attempted mount operation |
| 836 | * If CIFS_DEBUG && cifs_FYI |
| 837 | */ |
Rodrigo Freire | f80eaed | 2018-10-07 12:21:26 -0300 | [diff] [blame] | 838 | if (cifsFYI) |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 839 | cifs_dbg(FYI, "Devname: %s flags: %d\n", old_ctx->UNC, flags); |
Rodrigo Freire | f80eaed | 2018-10-07 12:21:26 -0300 | [diff] [blame] | 840 | else |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 841 | cifs_info("Attempting to mount %s\n", old_ctx->UNC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 843 | cifs_sb = kzalloc(sizeof(struct cifs_sb_info), GFP_KERNEL); |
| 844 | if (cifs_sb == NULL) { |
| 845 | root = ERR_PTR(-ENOMEM); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 846 | goto out; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 847 | } |
| 848 | |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 849 | cifs_sb->ctx = kzalloc(sizeof(struct smb3_fs_context), GFP_KERNEL); |
| 850 | if (!cifs_sb->ctx) { |
Al Viro | 5d3bc60 | 2011-06-17 09:17:28 -0400 | [diff] [blame] | 851 | root = ERR_PTR(-ENOMEM); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 852 | goto out; |
Al Viro | 5d3bc60 | 2011-06-17 09:17:28 -0400 | [diff] [blame] | 853 | } |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 854 | rc = smb3_fs_context_dup(cifs_sb->ctx, old_ctx); |
Sachin Prabhu | 4214ebf | 2016-07-29 22:38:19 +0100 | [diff] [blame] | 855 | if (rc) { |
| 856 | root = ERR_PTR(rc); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 857 | goto out; |
Aurelien Aptel | a6b5058 | 2016-05-25 19:59:09 +0200 | [diff] [blame] | 858 | } |
| 859 | |
Paulo Alcantara | 5c1acf3 | 2021-05-03 11:55:26 -0300 | [diff] [blame] | 860 | rc = cifs_setup_volume_info(cifs_sb->ctx, NULL, NULL); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 861 | if (rc) { |
| 862 | root = ERR_PTR(rc); |
| 863 | goto out; |
| 864 | } |
| 865 | |
Ronnie Sahlberg | 51acd20 | 2020-12-14 16:40:24 +1000 | [diff] [blame] | 866 | rc = cifs_setup_cifs_sb(cifs_sb); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 867 | if (rc) { |
| 868 | root = ERR_PTR(rc); |
| 869 | goto out; |
| 870 | } |
| 871 | |
| 872 | rc = cifs_mount(cifs_sb, cifs_sb->ctx); |
Al Viro | 97d1152 | 2011-06-17 09:29:57 -0400 | [diff] [blame] | 873 | if (rc) { |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 874 | if (!(flags & SB_SILENT)) |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 875 | cifs_dbg(VFS, "cifs_mount failed w/return code = %d\n", |
| 876 | rc); |
Al Viro | 97d1152 | 2011-06-17 09:29:57 -0400 | [diff] [blame] | 877 | root = ERR_PTR(rc); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 878 | goto out; |
Al Viro | 97d1152 | 2011-06-17 09:29:57 -0400 | [diff] [blame] | 879 | } |
| 880 | |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 881 | mnt_data.ctx = cifs_sb->ctx; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 882 | mnt_data.cifs_sb = cifs_sb; |
| 883 | mnt_data.flags = flags; |
| 884 | |
David Howells | 9249e17 | 2012-06-25 12:55:37 +0100 | [diff] [blame] | 885 | /* BB should we make this contingent on mount parm? */ |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 886 | flags |= SB_NODIRATIME | SB_NOATIME; |
David Howells | 9249e17 | 2012-06-25 12:55:37 +0100 | [diff] [blame] | 887 | |
| 888 | sb = sget(fs_type, cifs_match_super, cifs_set_super, flags, &mnt_data); |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 889 | if (IS_ERR(sb)) { |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 890 | root = ERR_CAST(sb); |
Al Viro | 97d1152 | 2011-06-17 09:29:57 -0400 | [diff] [blame] | 891 | cifs_umount(cifs_sb); |
Ronnie Sahlberg | 6cf5abb | 2020-12-16 08:51:33 +1000 | [diff] [blame] | 892 | cifs_sb = NULL; |
Al Viro | d757d71 | 2011-06-17 09:42:43 -0400 | [diff] [blame] | 893 | goto out; |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 894 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | |
Al Viro | ee01a14 | 2011-06-17 09:47:23 -0400 | [diff] [blame] | 896 | if (sb->s_root) { |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 897 | cifs_dbg(FYI, "Use existing superblock\n"); |
Al Viro | 97d1152 | 2011-06-17 09:29:57 -0400 | [diff] [blame] | 898 | cifs_umount(cifs_sb); |
Ronnie Sahlberg | 6cf5abb | 2020-12-16 08:51:33 +1000 | [diff] [blame] | 899 | cifs_sb = NULL; |
Al Viro | 5c4f1ad | 2011-06-17 09:56:55 -0400 | [diff] [blame] | 900 | } else { |
Al Viro | 5c4f1ad | 2011-06-17 09:56:55 -0400 | [diff] [blame] | 901 | rc = cifs_read_super(sb); |
| 902 | if (rc) { |
| 903 | root = ERR_PTR(rc); |
| 904 | goto out_super; |
| 905 | } |
| 906 | |
Linus Torvalds | 1751e8a | 2017-11-27 13:05:09 -0800 | [diff] [blame] | 907 | sb->s_flags |= SB_ACTIVE; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 908 | } |
| 909 | |
Ronnie Sahlberg | 6cf5abb | 2020-12-16 08:51:33 +1000 | [diff] [blame] | 910 | root = cifs_get_root(cifs_sb ? cifs_sb->ctx : old_ctx, sb); |
Al Viro | 9403c9c | 2011-06-17 10:02:59 -0400 | [diff] [blame] | 911 | if (IS_ERR(root)) |
Al Viro | fa18f1b | 2011-06-17 09:50:44 -0400 | [diff] [blame] | 912 | goto out_super; |
Al Viro | fa18f1b | 2011-06-17 09:50:44 -0400 | [diff] [blame] | 913 | |
Ronnie Sahlberg | 269f67e | 2021-03-09 09:07:30 +1000 | [diff] [blame] | 914 | if (cifs_sb) |
| 915 | cifs_sb->root = dget(root); |
| 916 | |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 917 | cifs_dbg(FYI, "dentry root is: %p\n", root); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 918 | return root; |
Pavel Shilovsky | 25c7f41 | 2011-05-26 23:35:47 +0400 | [diff] [blame] | 919 | |
Pavel Shilovsky | 641a58d | 2011-05-26 00:02:16 +0400 | [diff] [blame] | 920 | out_super: |
Pavel Shilovsky | 641a58d | 2011-05-26 00:02:16 +0400 | [diff] [blame] | 921 | deactivate_locked_super(sb); |
Pavel Shilovsky | 641a58d | 2011-05-26 00:02:16 +0400 | [diff] [blame] | 922 | out: |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 923 | if (cifs_sb) { |
| 924 | kfree(cifs_sb->prepath); |
Ronnie Sahlberg | c741cba | 2020-12-14 16:40:16 +1000 | [diff] [blame] | 925 | smb3_cleanup_fs_context(cifs_sb->ctx); |
Ronnie Sahlberg | d17abdf7 | 2020-11-10 08:59:26 +1000 | [diff] [blame] | 926 | kfree(cifs_sb); |
| 927 | } |
Pavel Shilovsky | 724d9f1 | 2011-05-05 09:55:12 +0000 | [diff] [blame] | 928 | return root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | } |
| 930 | |
Steve French | c7c137b | 2018-06-06 17:59:29 -0500 | [diff] [blame] | 931 | |
Jeff Layton | 08bc035 | 2014-05-23 06:50:21 -0400 | [diff] [blame] | 932 | static ssize_t |
| 933 | cifs_loose_read_iter(struct kiocb *iocb, struct iov_iter *iter) |
| 934 | { |
| 935 | ssize_t rc; |
| 936 | struct inode *inode = file_inode(iocb->ki_filp); |
| 937 | |
Ross Lagerwall | 882137c | 2015-12-02 14:46:07 +0000 | [diff] [blame] | 938 | if (iocb->ki_filp->f_flags & O_DIRECT) |
| 939 | return cifs_user_readv(iocb, iter); |
| 940 | |
Jeff Layton | 08bc035 | 2014-05-23 06:50:21 -0400 | [diff] [blame] | 941 | rc = cifs_revalidate_mapping(inode); |
| 942 | if (rc) |
| 943 | return rc; |
| 944 | |
| 945 | return generic_file_read_iter(iocb, iter); |
| 946 | } |
| 947 | |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 948 | static ssize_t cifs_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 949 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 950 | struct inode *inode = file_inode(iocb->ki_filp); |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 951 | struct cifsInodeInfo *cinode = CIFS_I(inode); |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 952 | ssize_t written; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 953 | int rc; |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 954 | |
Ross Lagerwall | 882137c | 2015-12-02 14:46:07 +0000 | [diff] [blame] | 955 | if (iocb->ki_filp->f_flags & O_DIRECT) { |
| 956 | written = cifs_user_writev(iocb, from); |
| 957 | if (written > 0 && CIFS_CACHE_READ(cinode)) { |
| 958 | cifs_zap_mapping(inode); |
| 959 | cifs_dbg(FYI, |
| 960 | "Set no oplock for inode=%p after a write operation\n", |
| 961 | inode); |
| 962 | cinode->oplock = 0; |
| 963 | } |
| 964 | return written; |
| 965 | } |
| 966 | |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 967 | written = cifs_get_writer(cinode); |
| 968 | if (written) |
| 969 | return written; |
| 970 | |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 971 | written = generic_file_write_iter(iocb, from); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 972 | |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 973 | if (CIFS_CACHE_WRITE(CIFS_I(inode))) |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 974 | goto out; |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 975 | |
| 976 | rc = filemap_fdatawrite(inode->i_mapping); |
| 977 | if (rc) |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 978 | cifs_dbg(FYI, "cifs_file_write_iter: %d rc on %p inode\n", |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 979 | rc, inode); |
Pavel Shilovsky | 72432ff | 2011-01-24 14:16:35 -0500 | [diff] [blame] | 980 | |
Sachin Prabhu | c11f1df | 2014-03-11 16:11:47 +0000 | [diff] [blame] | 981 | out: |
| 982 | cifs_put_writer(cinode); |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 983 | return written; |
| 984 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 986 | static loff_t cifs_llseek(struct file *file, loff_t offset, int whence) |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 987 | { |
Ronnie Sahlberg | dece44e | 2019-05-15 07:17:02 +1000 | [diff] [blame] | 988 | struct cifsFileInfo *cfile = file->private_data; |
| 989 | struct cifs_tcon *tcon; |
| 990 | |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 991 | /* |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 992 | * whence == SEEK_END || SEEK_DATA || SEEK_HOLE => we must revalidate |
Josef Bacik | 06222e4 | 2011-07-18 13:21:38 -0400 | [diff] [blame] | 993 | * the cached file length |
| 994 | */ |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 995 | if (whence != SEEK_SET && whence != SEEK_CUR) { |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 996 | int rc; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 997 | struct inode *inode = file_inode(file); |
Steve French | 030e9d8 | 2007-02-01 04:27:59 +0000 | [diff] [blame] | 998 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 999 | /* |
| 1000 | * We need to be sure that all dirty pages are written and the |
| 1001 | * server has the newest file length. |
| 1002 | */ |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1003 | if (!CIFS_CACHE_READ(CIFS_I(inode)) && inode->i_mapping && |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1004 | inode->i_mapping->nrpages != 0) { |
| 1005 | rc = filemap_fdatawait(inode->i_mapping); |
Steve French | 156ecb2 | 2011-05-20 17:00:01 +0000 | [diff] [blame] | 1006 | if (rc) { |
| 1007 | mapping_set_error(inode->i_mapping, rc); |
| 1008 | return rc; |
| 1009 | } |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1010 | } |
| 1011 | /* |
| 1012 | * Some applications poll for the file length in this strange |
| 1013 | * way so we must seek to end on non-oplocked files by |
| 1014 | * setting the revalidate time to zero. |
| 1015 | */ |
| 1016 | CIFS_I(inode)->time = 0; |
Steve French | 030e9d8 | 2007-02-01 04:27:59 +0000 | [diff] [blame] | 1017 | |
Pavel Shilovsky | 6feb989 | 2011-04-07 18:18:11 +0400 | [diff] [blame] | 1018 | rc = cifs_revalidate_file_attr(file); |
| 1019 | if (rc < 0) |
| 1020 | return (loff_t)rc; |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1021 | } |
Ronnie Sahlberg | dece44e | 2019-05-15 07:17:02 +1000 | [diff] [blame] | 1022 | if (cfile && cfile->tlink) { |
| 1023 | tcon = tlink_tcon(cfile->tlink); |
| 1024 | if (tcon->ses->server->ops->llseek) |
| 1025 | return tcon->ses->server->ops->llseek(file, tcon, |
| 1026 | offset, whence); |
| 1027 | } |
Andrew Morton | 965c8e5 | 2012-12-17 15:59:39 -0800 | [diff] [blame] | 1028 | return generic_file_llseek(file, offset, whence); |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1029 | } |
| 1030 | |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1031 | static int |
| 1032 | cifs_setlease(struct file *file, long arg, struct file_lock **lease, void **priv) |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1033 | { |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1034 | /* |
| 1035 | * Note that this is called by vfs setlease with i_lock held to |
| 1036 | * protect *lease from going away. |
| 1037 | */ |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 1038 | struct inode *inode = file_inode(file); |
Jeff Layton | ba00ba64 | 2010-09-20 16:01:31 -0700 | [diff] [blame] | 1039 | struct cifsFileInfo *cfile = file->private_data; |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1040 | |
| 1041 | if (!(S_ISREG(inode->i_mode))) |
| 1042 | return -EINVAL; |
| 1043 | |
Jeff Layton | 0244080 | 2014-08-09 10:16:44 -0400 | [diff] [blame] | 1044 | /* Check if file is oplocked if this is request for new lease */ |
| 1045 | if (arg == F_UNLCK || |
| 1046 | ((arg == F_RDLCK) && CIFS_CACHE_READ(CIFS_I(inode))) || |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1047 | ((arg == F_WRLCK) && CIFS_CACHE_WRITE(CIFS_I(inode)))) |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1048 | return generic_setlease(file, arg, lease, priv); |
Jeff Layton | 13cfb73 | 2010-09-29 19:51:11 -0400 | [diff] [blame] | 1049 | else if (tlink_tcon(cfile->tlink)->local_lease && |
Pavel Shilovsky | 18cceb6 | 2013-09-05 13:01:06 +0400 | [diff] [blame] | 1050 | !CIFS_CACHE_READ(CIFS_I(inode))) |
| 1051 | /* |
| 1052 | * If the server claims to support oplock on this file, then we |
| 1053 | * still need to check oplock even if the local_lease mount |
| 1054 | * option is set, but there are servers which do not support |
| 1055 | * oplock for which this mount option may be useful if the user |
| 1056 | * knows that the file won't be changed on the server by anyone |
| 1057 | * else. |
| 1058 | */ |
Jeff Layton | e6f5c78 | 2014-08-22 10:40:25 -0400 | [diff] [blame] | 1059 | return generic_setlease(file, arg, lease, priv); |
Christoph Hellwig | 51ee4b8 | 2010-10-31 08:35:10 -0400 | [diff] [blame] | 1060 | else |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1061 | return -EAGAIN; |
| 1062 | } |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1063 | |
Igor Mammedov | e6ab158 | 2008-01-11 01:49:48 +0000 | [diff] [blame] | 1064 | struct file_system_type cifs_fs_type = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | .owner = THIS_MODULE, |
| 1066 | .name = "cifs", |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 1067 | .init_fs_context = smb3_init_fs_context, |
| 1068 | .parameters = smb3_fs_parameters, |
Al Viro | 6d68617 | 2011-06-17 08:34:57 -0400 | [diff] [blame] | 1069 | .kill_sb = cifs_kill_sb, |
Steve French | c7e9f78 | 2020-02-25 18:08:54 -0600 | [diff] [blame] | 1070 | .fs_flags = FS_RENAME_DOES_D_MOVE, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | }; |
Eric W. Biederman | 3e64fe5 | 2013-03-11 07:05:42 -0700 | [diff] [blame] | 1072 | MODULE_ALIAS_FS("cifs"); |
Steve French | 49218b4 | 2018-05-23 21:44:53 -0500 | [diff] [blame] | 1073 | |
| 1074 | static struct file_system_type smb3_fs_type = { |
| 1075 | .owner = THIS_MODULE, |
| 1076 | .name = "smb3", |
Ronnie Sahlberg | 24e0a1e | 2020-12-10 00:06:02 -0600 | [diff] [blame] | 1077 | .init_fs_context = smb3_init_fs_context, |
| 1078 | .parameters = smb3_fs_parameters, |
Steve French | 49218b4 | 2018-05-23 21:44:53 -0500 | [diff] [blame] | 1079 | .kill_sb = cifs_kill_sb, |
Steve French | c7e9f78 | 2020-02-25 18:08:54 -0600 | [diff] [blame] | 1080 | .fs_flags = FS_RENAME_DOES_D_MOVE, |
Steve French | 49218b4 | 2018-05-23 21:44:53 -0500 | [diff] [blame] | 1081 | }; |
| 1082 | MODULE_ALIAS_FS("smb3"); |
| 1083 | MODULE_ALIAS("smb3"); |
| 1084 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 1085 | const struct inode_operations cifs_dir_inode_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | .create = cifs_create, |
Miklos Szeredi | d2c1271 | 2012-06-05 15:10:23 +0200 | [diff] [blame] | 1087 | .atomic_open = cifs_atomic_open, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1088 | .lookup = cifs_lookup, |
| 1089 | .getattr = cifs_getattr, |
| 1090 | .unlink = cifs_unlink, |
| 1091 | .link = cifs_hardlink, |
| 1092 | .mkdir = cifs_mkdir, |
| 1093 | .rmdir = cifs_rmdir, |
Miklos Szeredi | 2773bf0 | 2016-09-27 11:03:58 +0200 | [diff] [blame] | 1094 | .rename = cifs_rename2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | .permission = cifs_permission, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | .setattr = cifs_setattr, |
| 1097 | .symlink = cifs_symlink, |
| 1098 | .mknod = cifs_mknod, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | .listxattr = cifs_listxattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | }; |
| 1101 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 1102 | const struct inode_operations cifs_file_inode_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | .setattr = cifs_setattr, |
Steve French | 48a77aa | 2016-05-18 20:48:32 -0500 | [diff] [blame] | 1104 | .getattr = cifs_getattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1105 | .permission = cifs_permission, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | .listxattr = cifs_listxattr, |
Ronnie Sahlberg | 2f3ebab | 2019-04-25 16:45:29 +1000 | [diff] [blame] | 1107 | .fiemap = cifs_fiemap, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | }; |
| 1109 | |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 1110 | const struct inode_operations cifs_symlink_inode_ops = { |
Al Viro | 6b25539 | 2015-11-17 10:20:54 -0500 | [diff] [blame] | 1111 | .get_link = cifs_get_link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1112 | .permission = cifs_permission, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1113 | .listxattr = cifs_listxattr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | }; |
| 1115 | |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1116 | static loff_t cifs_remap_file_range(struct file *src_file, loff_t off, |
| 1117 | struct file *dst_file, loff_t destoff, loff_t len, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1118 | unsigned int remap_flags) |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1119 | { |
| 1120 | struct inode *src_inode = file_inode(src_file); |
| 1121 | struct inode *target_inode = file_inode(dst_file); |
| 1122 | struct cifsFileInfo *smb_file_src = src_file->private_data; |
Colin Ian King | 8c6c9bed8 | 2018-11-01 13:14:30 +0000 | [diff] [blame] | 1123 | struct cifsFileInfo *smb_file_target; |
| 1124 | struct cifs_tcon *target_tcon; |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1125 | unsigned int xid; |
| 1126 | int rc; |
| 1127 | |
Xiaoli Feng | b073a08 | 2019-03-16 12:11:54 +0800 | [diff] [blame] | 1128 | if (remap_flags & ~(REMAP_FILE_DEDUP | REMAP_FILE_ADVISORY)) |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1129 | return -EINVAL; |
| 1130 | |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1131 | cifs_dbg(FYI, "clone range\n"); |
| 1132 | |
| 1133 | xid = get_xid(); |
| 1134 | |
| 1135 | if (!src_file->private_data || !dst_file->private_data) { |
| 1136 | rc = -EBADF; |
| 1137 | cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n"); |
| 1138 | goto out; |
| 1139 | } |
| 1140 | |
Colin Ian King | 8c6c9bed8 | 2018-11-01 13:14:30 +0000 | [diff] [blame] | 1141 | smb_file_target = dst_file->private_data; |
| 1142 | target_tcon = tlink_tcon(smb_file_target->tlink); |
| 1143 | |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1144 | /* |
| 1145 | * Note: cifs case is easier than btrfs since server responsible for |
| 1146 | * checks for proper open modes and file type and if it wants |
| 1147 | * server could even support copy of range where source = target |
| 1148 | */ |
| 1149 | lock_two_nondirectories(target_inode, src_inode); |
| 1150 | |
| 1151 | if (len == 0) |
| 1152 | len = src_inode->i_size - off; |
| 1153 | |
| 1154 | cifs_dbg(FYI, "about to flush pages\n"); |
| 1155 | /* should we flush first and last page first */ |
| 1156 | truncate_inode_pages_range(&target_inode->i_data, destoff, |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1157 | PAGE_ALIGN(destoff + len)-1); |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1158 | |
| 1159 | if (target_tcon->ses->server->ops->duplicate_extents) |
| 1160 | rc = target_tcon->ses->server->ops->duplicate_extents(xid, |
| 1161 | smb_file_src, smb_file_target, off, len, destoff); |
| 1162 | else |
| 1163 | rc = -EOPNOTSUPP; |
| 1164 | |
| 1165 | /* force revalidate of size and timestamps of target file now |
| 1166 | that target is updated on the server */ |
| 1167 | CIFS_I(target_inode)->time = 0; |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1168 | /* although unlocking in the reverse order from locking is not |
| 1169 | strictly necessary here it is a little cleaner to be consistent */ |
| 1170 | unlock_two_nondirectories(src_inode, target_inode); |
| 1171 | out: |
| 1172 | free_xid(xid); |
Darrick J. Wong | 42ec3d4 | 2018-10-30 10:41:49 +1100 | [diff] [blame] | 1173 | return rc < 0 ? rc : len; |
Christoph Hellwig | 04b38d6 | 2015-12-03 12:59:50 +0100 | [diff] [blame] | 1174 | } |
| 1175 | |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1176 | ssize_t cifs_file_copychunk_range(unsigned int xid, |
| 1177 | struct file *src_file, loff_t off, |
| 1178 | struct file *dst_file, loff_t destoff, |
| 1179 | size_t len, unsigned int flags) |
| 1180 | { |
| 1181 | struct inode *src_inode = file_inode(src_file); |
| 1182 | struct inode *target_inode = file_inode(dst_file); |
| 1183 | struct cifsFileInfo *smb_file_src; |
| 1184 | struct cifsFileInfo *smb_file_target; |
| 1185 | struct cifs_tcon *src_tcon; |
| 1186 | struct cifs_tcon *target_tcon; |
| 1187 | ssize_t rc; |
| 1188 | |
| 1189 | cifs_dbg(FYI, "copychunk range\n"); |
| 1190 | |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1191 | if (!src_file->private_data || !dst_file->private_data) { |
| 1192 | rc = -EBADF; |
| 1193 | cifs_dbg(VFS, "missing cifsFileInfo on copy range src file\n"); |
| 1194 | goto out; |
| 1195 | } |
| 1196 | |
| 1197 | rc = -EXDEV; |
| 1198 | smb_file_target = dst_file->private_data; |
| 1199 | smb_file_src = src_file->private_data; |
| 1200 | src_tcon = tlink_tcon(smb_file_src->tlink); |
| 1201 | target_tcon = tlink_tcon(smb_file_target->tlink); |
| 1202 | |
| 1203 | if (src_tcon->ses != target_tcon->ses) { |
| 1204 | cifs_dbg(VFS, "source and target of copy not on same server\n"); |
| 1205 | goto out; |
| 1206 | } |
| 1207 | |
Amir Goldstein | bf3c90e | 2019-06-10 20:36:57 +0300 | [diff] [blame] | 1208 | rc = -EOPNOTSUPP; |
| 1209 | if (!target_tcon->ses->server->ops->copychunk_range) |
| 1210 | goto out; |
| 1211 | |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1212 | /* |
| 1213 | * Note: cifs case is easier than btrfs since server responsible for |
| 1214 | * checks for proper open modes and file type and if it wants |
| 1215 | * server could even support copy of range where source = target |
| 1216 | */ |
| 1217 | lock_two_nondirectories(target_inode, src_inode); |
| 1218 | |
| 1219 | cifs_dbg(FYI, "about to flush pages\n"); |
| 1220 | /* should we flush first and last page first */ |
| 1221 | truncate_inode_pages(&target_inode->i_data, 0); |
| 1222 | |
Amir Goldstein | bf3c90e | 2019-06-10 20:36:57 +0300 | [diff] [blame] | 1223 | rc = file_modified(dst_file); |
| 1224 | if (!rc) |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1225 | rc = target_tcon->ses->server->ops->copychunk_range(xid, |
| 1226 | smb_file_src, smb_file_target, off, len, destoff); |
Amir Goldstein | bf3c90e | 2019-06-10 20:36:57 +0300 | [diff] [blame] | 1227 | |
| 1228 | file_accessed(src_file); |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1229 | |
| 1230 | /* force revalidate of size and timestamps of target file now |
| 1231 | * that target is updated on the server |
| 1232 | */ |
| 1233 | CIFS_I(target_inode)->time = 0; |
| 1234 | /* although unlocking in the reverse order from locking is not |
| 1235 | * strictly necessary here it is a little cleaner to be consistent |
| 1236 | */ |
| 1237 | unlock_two_nondirectories(src_inode, target_inode); |
| 1238 | |
| 1239 | out: |
| 1240 | return rc; |
| 1241 | } |
| 1242 | |
Steve French | 6e70c26 | 2018-05-10 10:59:37 -0500 | [diff] [blame] | 1243 | /* |
| 1244 | * Directory operations under CIFS/SMB2/SMB3 are synchronous, so fsync() |
| 1245 | * is a dummy operation. |
| 1246 | */ |
| 1247 | static int cifs_dir_fsync(struct file *file, loff_t start, loff_t end, int datasync) |
| 1248 | { |
| 1249 | cifs_dbg(FYI, "Sync directory - name: %pD datasync: 0x%x\n", |
| 1250 | file, datasync); |
| 1251 | |
| 1252 | return 0; |
| 1253 | } |
| 1254 | |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1255 | static ssize_t cifs_copy_file_range(struct file *src_file, loff_t off, |
| 1256 | struct file *dst_file, loff_t destoff, |
| 1257 | size_t len, unsigned int flags) |
| 1258 | { |
| 1259 | unsigned int xid = get_xid(); |
| 1260 | ssize_t rc; |
Steve French | 4e8aea3 | 2020-04-09 21:42:18 -0500 | [diff] [blame] | 1261 | struct cifsFileInfo *cfile = dst_file->private_data; |
| 1262 | |
| 1263 | if (cfile->swapfile) |
| 1264 | return -EOPNOTSUPP; |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1265 | |
| 1266 | rc = cifs_file_copychunk_range(xid, src_file, off, dst_file, destoff, |
| 1267 | len, flags); |
| 1268 | free_xid(xid); |
Dave Chinner | 64bf5ff | 2019-06-05 08:04:47 -0700 | [diff] [blame] | 1269 | |
Amir Goldstein | 5dae222 | 2019-06-05 08:04:50 -0700 | [diff] [blame] | 1270 | if (rc == -EOPNOTSUPP || rc == -EXDEV) |
Dave Chinner | 64bf5ff | 2019-06-05 08:04:47 -0700 | [diff] [blame] | 1271 | rc = generic_copy_file_range(src_file, off, dst_file, |
| 1272 | destoff, len, flags); |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1273 | return rc; |
| 1274 | } |
| 1275 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1276 | const struct file_operations cifs_file_ops = { |
Jeff Layton | 08bc035 | 2014-05-23 06:50:21 -0400 | [diff] [blame] | 1277 | .read_iter = cifs_loose_read_iter, |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 1278 | .write_iter = cifs_file_write_iter, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | .open = cifs_open, |
| 1280 | .release = cifs_close, |
| 1281 | .lock = cifs_lock, |
Steve French | d067799 | 2019-07-16 18:55:38 -0500 | [diff] [blame] | 1282 | .flock = cifs_flock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | .fsync = cifs_fsync, |
| 1284 | .flush = cifs_flush, |
| 1285 | .mmap = cifs_file_mmap, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 1286 | .splice_read = generic_file_splice_read, |
Andrés Souto | cd1aca2 | 2017-12-28 14:23:08 +0100 | [diff] [blame] | 1287 | .splice_write = iter_file_splice_write, |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1288 | .llseek = cifs_llseek, |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 1289 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1290 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1291 | .remap_file_range = cifs_remap_file_range, |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1292 | .setlease = cifs_setlease, |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 1293 | .fallocate = cifs_fallocate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | }; |
| 1295 | |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1296 | const struct file_operations cifs_file_strict_ops = { |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 1297 | .read_iter = cifs_strict_readv, |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 1298 | .write_iter = cifs_strict_writev, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1299 | .open = cifs_open, |
| 1300 | .release = cifs_close, |
| 1301 | .lock = cifs_lock, |
Steve French | d067799 | 2019-07-16 18:55:38 -0500 | [diff] [blame] | 1302 | .flock = cifs_flock, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1303 | .fsync = cifs_strict_fsync, |
| 1304 | .flush = cifs_flush, |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 1305 | .mmap = cifs_file_strict_mmap, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1306 | .splice_read = generic_file_splice_read, |
Andrés Souto | cd1aca2 | 2017-12-28 14:23:08 +0100 | [diff] [blame] | 1307 | .splice_write = iter_file_splice_write, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1308 | .llseek = cifs_llseek, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1309 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1310 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1311 | .remap_file_range = cifs_remap_file_range, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1312 | .setlease = cifs_setlease, |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 1313 | .fallocate = cifs_fallocate, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1314 | }; |
| 1315 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1316 | const struct file_operations cifs_file_direct_ops = { |
Long Li | be4eb68 | 2018-10-31 22:13:11 +0000 | [diff] [blame] | 1317 | .read_iter = cifs_direct_readv, |
| 1318 | .write_iter = cifs_direct_writev, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | .open = cifs_open, |
| 1320 | .release = cifs_close, |
| 1321 | .lock = cifs_lock, |
Steve French | d067799 | 2019-07-16 18:55:38 -0500 | [diff] [blame] | 1322 | .flock = cifs_flock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | .fsync = cifs_fsync, |
| 1324 | .flush = cifs_flush, |
Steve French | a994b8f | 2009-12-07 05:44:46 +0000 | [diff] [blame] | 1325 | .mmap = cifs_file_mmap, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 1326 | .splice_read = generic_file_splice_read, |
Andrés Souto | cd1aca2 | 2017-12-28 14:23:08 +0100 | [diff] [blame] | 1327 | .splice_write = iter_file_splice_write, |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 1328 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1329 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1330 | .remap_file_range = cifs_remap_file_range, |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1331 | .llseek = cifs_llseek, |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1332 | .setlease = cifs_setlease, |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 1333 | .fallocate = cifs_fallocate, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | }; |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1335 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1336 | const struct file_operations cifs_file_nobrl_ops = { |
Jeff Layton | 08bc035 | 2014-05-23 06:50:21 -0400 | [diff] [blame] | 1337 | .read_iter = cifs_loose_read_iter, |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 1338 | .write_iter = cifs_file_write_iter, |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 1339 | .open = cifs_open, |
| 1340 | .release = cifs_close, |
| 1341 | .fsync = cifs_fsync, |
| 1342 | .flush = cifs_flush, |
| 1343 | .mmap = cifs_file_mmap, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 1344 | .splice_read = generic_file_splice_read, |
Andrés Souto | cd1aca2 | 2017-12-28 14:23:08 +0100 | [diff] [blame] | 1345 | .splice_write = iter_file_splice_write, |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1346 | .llseek = cifs_llseek, |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 1347 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1348 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1349 | .remap_file_range = cifs_remap_file_range, |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1350 | .setlease = cifs_setlease, |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 1351 | .fallocate = cifs_fallocate, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 1352 | }; |
| 1353 | |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1354 | const struct file_operations cifs_file_strict_nobrl_ops = { |
Al Viro | e6a7bcb | 2014-04-02 19:53:36 -0400 | [diff] [blame] | 1355 | .read_iter = cifs_strict_readv, |
Al Viro | 3dae875 | 2014-04-03 12:05:17 -0400 | [diff] [blame] | 1356 | .write_iter = cifs_strict_writev, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1357 | .open = cifs_open, |
| 1358 | .release = cifs_close, |
| 1359 | .fsync = cifs_strict_fsync, |
| 1360 | .flush = cifs_flush, |
Pavel Shilovsky | 7a6a19b | 2010-12-14 11:29:51 +0300 | [diff] [blame] | 1361 | .mmap = cifs_file_strict_mmap, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1362 | .splice_read = generic_file_splice_read, |
Andrés Souto | cd1aca2 | 2017-12-28 14:23:08 +0100 | [diff] [blame] | 1363 | .splice_write = iter_file_splice_write, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1364 | .llseek = cifs_llseek, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1365 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1366 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1367 | .remap_file_range = cifs_remap_file_range, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1368 | .setlease = cifs_setlease, |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 1369 | .fallocate = cifs_fallocate, |
Pavel Shilovsky | 8be7e6b | 2010-12-12 13:11:13 +0300 | [diff] [blame] | 1370 | }; |
| 1371 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1372 | const struct file_operations cifs_file_direct_nobrl_ops = { |
Long Li | be4eb68 | 2018-10-31 22:13:11 +0000 | [diff] [blame] | 1373 | .read_iter = cifs_direct_readv, |
| 1374 | .write_iter = cifs_direct_writev, |
Steve French | 87c89dd | 2005-11-17 17:03:00 -0800 | [diff] [blame] | 1375 | .open = cifs_open, |
| 1376 | .release = cifs_close, |
| 1377 | .fsync = cifs_fsync, |
| 1378 | .flush = cifs_flush, |
Pavel Shilovsky | 810627a0 | 2010-03-27 02:00:49 +0000 | [diff] [blame] | 1379 | .mmap = cifs_file_mmap, |
Jens Axboe | 5ffc4ef | 2007-06-01 11:49:19 +0200 | [diff] [blame] | 1380 | .splice_read = generic_file_splice_read, |
Andrés Souto | cd1aca2 | 2017-12-28 14:23:08 +0100 | [diff] [blame] | 1381 | .splice_write = iter_file_splice_write, |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 1382 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1383 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1384 | .remap_file_range = cifs_remap_file_range, |
Steve French | c32a0b6 | 2006-01-12 14:41:28 -0800 | [diff] [blame] | 1385 | .llseek = cifs_llseek, |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1386 | .setlease = cifs_setlease, |
Steve French | 31742c5 | 2014-08-17 08:38:47 -0500 | [diff] [blame] | 1387 | .fallocate = cifs_fallocate, |
Steve French | 8b94bcb | 2005-11-11 11:41:00 -0800 | [diff] [blame] | 1388 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 1390 | const struct file_operations cifs_dir_ops = { |
Al Viro | 3125d26 | 2016-04-20 17:40:47 -0400 | [diff] [blame] | 1391 | .iterate_shared = cifs_readdir, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | .release = cifs_closedir, |
| 1393 | .read = generic_read_dir, |
Steve French | f9ddcca | 2008-05-15 05:51:55 +0000 | [diff] [blame] | 1394 | .unlocked_ioctl = cifs_ioctl, |
Sachin Prabhu | 620d874 | 2017-02-10 16:03:51 +0530 | [diff] [blame] | 1395 | .copy_file_range = cifs_copy_file_range, |
Darrick J. Wong | 2e5dfc9 | 2018-10-30 10:41:21 +1100 | [diff] [blame] | 1396 | .remap_file_range = cifs_remap_file_range, |
Christoph Hellwig | 3222a3e | 2008-09-03 21:53:01 +0200 | [diff] [blame] | 1397 | .llseek = generic_file_llseek, |
Steve French | 6e70c26 | 2018-05-10 10:59:37 -0500 | [diff] [blame] | 1398 | .fsync = cifs_dir_fsync, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1399 | }; |
| 1400 | |
| 1401 | static void |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 1402 | cifs_init_once(void *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | { |
| 1404 | struct cifsInodeInfo *cifsi = inode; |
| 1405 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1406 | inode_init_once(&cifsi->vfs_inode); |
Pavel Shilovsky | 1b4b55a | 2012-09-19 06:22:44 -0700 | [diff] [blame] | 1407 | init_rwsem(&cifsi->lock_sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | } |
| 1409 | |
Fabian Frederick | 9ee108b | 2014-04-03 14:46:30 -0700 | [diff] [blame] | 1410 | static int __init |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1411 | cifs_init_inodecache(void) |
| 1412 | { |
| 1413 | cifs_inode_cachep = kmem_cache_create("cifs_inode_cache", |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1414 | sizeof(struct cifsInodeInfo), |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 1415 | 0, (SLAB_RECLAIM_ACCOUNT| |
Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 1416 | SLAB_MEM_SPREAD|SLAB_ACCOUNT), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1417 | cifs_init_once); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | if (cifs_inode_cachep == NULL) |
| 1419 | return -ENOMEM; |
| 1420 | |
| 1421 | return 0; |
| 1422 | } |
| 1423 | |
| 1424 | static void |
| 1425 | cifs_destroy_inodecache(void) |
| 1426 | { |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 1427 | /* |
| 1428 | * Make sure all delayed rcu free inodes are flushed before we |
| 1429 | * destroy cache. |
| 1430 | */ |
| 1431 | rcu_barrier(); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1432 | kmem_cache_destroy(cifs_inode_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | static int |
| 1436 | cifs_init_request_bufs(void) |
| 1437 | { |
Pavel Shilovsky | 3792c17 | 2012-01-12 22:40:50 +0400 | [diff] [blame] | 1438 | /* |
| 1439 | * SMB2 maximum header size is bigger than CIFS one - no problems to |
| 1440 | * allocate some more bytes for CIFS. |
| 1441 | */ |
Steve French | 2a38e12 | 2017-07-08 18:48:15 -0500 | [diff] [blame] | 1442 | size_t max_hdr_size = MAX_SMB2_HDR_SIZE; |
| 1443 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1444 | if (CIFSMaxBufSize < 8192) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1445 | /* Buffer size can not be smaller than 2 * PATH_MAX since maximum |
| 1446 | Unicode path name has to fit in any SMB/CIFS path based frames */ |
| 1447 | CIFSMaxBufSize = 8192; |
| 1448 | } else if (CIFSMaxBufSize > 1024*127) { |
| 1449 | CIFSMaxBufSize = 1024 * 127; |
| 1450 | } else { |
| 1451 | CIFSMaxBufSize &= 0x1FE00; /* Round size to even 512 byte mult*/ |
| 1452 | } |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1453 | /* |
| 1454 | cifs_dbg(VFS, "CIFSMaxBufSize %d 0x%x\n", |
| 1455 | CIFSMaxBufSize, CIFSMaxBufSize); |
| 1456 | */ |
David Windsor | de04644 | 2017-06-10 22:50:33 -0400 | [diff] [blame] | 1457 | cifs_req_cachep = kmem_cache_create_usercopy("cifs_request", |
Pavel Shilovsky | 3792c17 | 2012-01-12 22:40:50 +0400 | [diff] [blame] | 1458 | CIFSMaxBufSize + max_hdr_size, 0, |
David Windsor | de04644 | 2017-06-10 22:50:33 -0400 | [diff] [blame] | 1459 | SLAB_HWCACHE_ALIGN, 0, |
| 1460 | CIFSMaxBufSize + max_hdr_size, |
| 1461 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | if (cifs_req_cachep == NULL) |
| 1463 | return -ENOMEM; |
| 1464 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1465 | if (cifs_min_rcv < 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | cifs_min_rcv = 1; |
| 1467 | else if (cifs_min_rcv > 64) { |
| 1468 | cifs_min_rcv = 64; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1469 | cifs_dbg(VFS, "cifs_min_rcv set to maximum (64)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | } |
| 1471 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1472 | cifs_req_poolp = mempool_create_slab_pool(cifs_min_rcv, |
| 1473 | cifs_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1475 | if (cifs_req_poolp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | kmem_cache_destroy(cifs_req_cachep); |
| 1477 | return -ENOMEM; |
| 1478 | } |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 1479 | /* MAX_CIFS_SMALL_BUFFER_SIZE bytes is enough for most SMB responses and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | almost all handle based requests (but not write response, nor is it |
| 1481 | sufficient for path based requests). A smaller size would have |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1482 | been more efficient (compacting multiple slab items on one 4k page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | for the case in which debug was on, but this larger size allows |
| 1484 | more SMBs to use small buffer alloc and is still much more |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1485 | efficient to alloc 1 per page off the slab compared to 17K (5page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | alloc of large cifs buffers even when page debugging is on */ |
David Windsor | de04644 | 2017-06-10 22:50:33 -0400 | [diff] [blame] | 1487 | cifs_sm_req_cachep = kmem_cache_create_usercopy("cifs_small_rq", |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1488 | MAX_CIFS_SMALL_BUFFER_SIZE, 0, SLAB_HWCACHE_ALIGN, |
David Windsor | de04644 | 2017-06-10 22:50:33 -0400 | [diff] [blame] | 1489 | 0, MAX_CIFS_SMALL_BUFFER_SIZE, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1490 | if (cifs_sm_req_cachep == NULL) { |
| 1491 | mempool_destroy(cifs_req_poolp); |
| 1492 | kmem_cache_destroy(cifs_req_cachep); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1493 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | } |
| 1495 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1496 | if (cifs_min_small < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | cifs_min_small = 2; |
| 1498 | else if (cifs_min_small > 256) { |
| 1499 | cifs_min_small = 256; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1500 | cifs_dbg(FYI, "cifs_min_small set to maximum (256)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | } |
| 1502 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1503 | cifs_sm_req_poolp = mempool_create_slab_pool(cifs_min_small, |
| 1504 | cifs_sm_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1505 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1506 | if (cifs_sm_req_poolp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | mempool_destroy(cifs_req_poolp); |
| 1508 | kmem_cache_destroy(cifs_req_cachep); |
| 1509 | kmem_cache_destroy(cifs_sm_req_cachep); |
| 1510 | return -ENOMEM; |
| 1511 | } |
| 1512 | |
| 1513 | return 0; |
| 1514 | } |
| 1515 | |
| 1516 | static void |
| 1517 | cifs_destroy_request_bufs(void) |
| 1518 | { |
| 1519 | mempool_destroy(cifs_req_poolp); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1520 | kmem_cache_destroy(cifs_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1521 | mempool_destroy(cifs_sm_req_poolp); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1522 | kmem_cache_destroy(cifs_sm_req_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | } |
| 1524 | |
| 1525 | static int |
| 1526 | cifs_init_mids(void) |
| 1527 | { |
| 1528 | cifs_mid_cachep = kmem_cache_create("cifs_mpx_ids", |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 1529 | sizeof(struct mid_q_entry), 0, |
| 1530 | SLAB_HWCACHE_ALIGN, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | if (cifs_mid_cachep == NULL) |
| 1532 | return -ENOMEM; |
| 1533 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1534 | /* 3 is a reasonable minimum number of simultaneous operations */ |
| 1535 | cifs_mid_poolp = mempool_create_slab_pool(3, cifs_mid_cachep); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1536 | if (cifs_mid_poolp == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | kmem_cache_destroy(cifs_mid_cachep); |
| 1538 | return -ENOMEM; |
| 1539 | } |
| 1540 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1541 | return 0; |
| 1542 | } |
| 1543 | |
| 1544 | static void |
| 1545 | cifs_destroy_mids(void) |
| 1546 | { |
| 1547 | mempool_destroy(cifs_mid_poolp); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 1548 | kmem_cache_destroy(cifs_mid_cachep); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | } |
| 1550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | static int __init |
| 1552 | init_cifs(void) |
| 1553 | { |
| 1554 | int rc = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1555 | cifs_proc_init(); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1556 | INIT_LIST_HEAD(&cifs_tcp_ses_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | /* |
| 1558 | * Initialize Global counters |
| 1559 | */ |
| 1560 | atomic_set(&sesInfoAllocCount, 0); |
| 1561 | atomic_set(&tconInfoAllocCount, 0); |
Shyam Prasad N | 6d82c27 | 2021-02-03 23:20:46 -0800 | [diff] [blame] | 1562 | atomic_set(&tcpSesNextId, 0); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1563 | atomic_set(&tcpSesAllocCount, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | atomic_set(&tcpSesReconnectCount, 0); |
| 1565 | atomic_set(&tconInfoReconnectCount, 0); |
| 1566 | |
| 1567 | atomic_set(&bufAllocCount, 0); |
Steve French | 4498eed5 | 2005-12-03 13:58:57 -0800 | [diff] [blame] | 1568 | atomic_set(&smBufAllocCount, 0); |
| 1569 | #ifdef CONFIG_CIFS_STATS2 |
| 1570 | atomic_set(&totBufAllocCount, 0); |
| 1571 | atomic_set(&totSmBufAllocCount, 0); |
Steve French | 00778e2 | 2018-09-18 14:05:18 -0500 | [diff] [blame] | 1572 | if (slow_rsp_threshold < 1) |
| 1573 | cifs_dbg(FYI, "slow_response_threshold msgs disabled\n"); |
| 1574 | else if (slow_rsp_threshold > 32767) |
| 1575 | cifs_dbg(VFS, |
| 1576 | "slow response threshold set higher than recommended (0 to 32767)\n"); |
Steve French | 4498eed5 | 2005-12-03 13:58:57 -0800 | [diff] [blame] | 1577 | #endif /* CONFIG_CIFS_STATS2 */ |
| 1578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1579 | atomic_set(&midCount, 0); |
| 1580 | GlobalCurrentXid = 0; |
| 1581 | GlobalTotalActiveXid = 0; |
| 1582 | GlobalMaxActiveXid = 0; |
Suresh Jayaraman | 3f9bcca | 2010-10-18 23:29:37 +0530 | [diff] [blame] | 1583 | spin_lock_init(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1584 | spin_lock_init(&GlobalMid_Lock); |
| 1585 | |
Jason A. Donenfeld | 51b0817 | 2017-06-07 20:42:50 -0400 | [diff] [blame] | 1586 | cifs_lock_secret = get_random_u32(); |
Jeff Layton | 3d22462 | 2016-05-24 06:27:44 -0400 | [diff] [blame] | 1587 | |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1588 | if (cifs_max_pending < 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1589 | cifs_max_pending = 2; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1590 | cifs_dbg(FYI, "cifs_max_pending set to min of 2\n"); |
Pavel Shilovsky | 10b9b98 | 2012-03-20 12:55:09 +0300 | [diff] [blame] | 1591 | } else if (cifs_max_pending > CIFS_MAX_REQ) { |
| 1592 | cifs_max_pending = CIFS_MAX_REQ; |
Joe Perches | f96637b | 2013-05-04 22:12:25 -0500 | [diff] [blame] | 1593 | cifs_dbg(FYI, "cifs_max_pending set to max of %u\n", |
| 1594 | CIFS_MAX_REQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | } |
| 1596 | |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 1597 | cifsiod_wq = alloc_workqueue("cifsiod", WQ_FREEZABLE|WQ_MEM_RECLAIM, 0); |
| 1598 | if (!cifsiod_wq) { |
| 1599 | rc = -ENOMEM; |
| 1600 | goto out_clean_proc; |
| 1601 | } |
| 1602 | |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 1603 | /* |
Steve French | 10328c4 | 2019-09-09 13:30:15 -0500 | [diff] [blame] | 1604 | * Consider in future setting limit!=0 maybe to min(num_of_cores - 1, 3) |
| 1605 | * so that we don't launch too many worker threads but |
Mauro Carvalho Chehab | 0ac624f | 2019-09-24 10:01:28 -0300 | [diff] [blame] | 1606 | * Documentation/core-api/workqueue.rst recommends setting it to 0 |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 1607 | */ |
Steve French | 10328c4 | 2019-09-09 13:30:15 -0500 | [diff] [blame] | 1608 | |
| 1609 | /* WQ_UNBOUND allows decrypt tasks to run on any CPU */ |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 1610 | decrypt_wq = alloc_workqueue("smb3decryptd", |
Steve French | 10328c4 | 2019-09-09 13:30:15 -0500 | [diff] [blame] | 1611 | WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0); |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 1612 | if (!decrypt_wq) { |
| 1613 | rc = -ENOMEM; |
| 1614 | goto out_destroy_cifsiod_wq; |
| 1615 | } |
| 1616 | |
Ronnie Sahlberg | 32546a9 | 2019-11-03 13:06:37 +1000 | [diff] [blame] | 1617 | fileinfo_put_wq = alloc_workqueue("cifsfileinfoput", |
| 1618 | WQ_UNBOUND|WQ_FREEZABLE|WQ_MEM_RECLAIM, 0); |
| 1619 | if (!fileinfo_put_wq) { |
| 1620 | rc = -ENOMEM; |
| 1621 | goto out_destroy_decrypt_wq; |
| 1622 | } |
| 1623 | |
Rabin Vincent | 3998e6b8 | 2017-05-03 17:54:01 +0200 | [diff] [blame] | 1624 | cifsoplockd_wq = alloc_workqueue("cifsoplockd", |
| 1625 | WQ_FREEZABLE|WQ_MEM_RECLAIM, 0); |
| 1626 | if (!cifsoplockd_wq) { |
| 1627 | rc = -ENOMEM; |
Ronnie Sahlberg | 32546a9 | 2019-11-03 13:06:37 +1000 | [diff] [blame] | 1628 | goto out_destroy_fileinfo_put_wq; |
Rabin Vincent | 3998e6b8 | 2017-05-03 17:54:01 +0200 | [diff] [blame] | 1629 | } |
| 1630 | |
Rohith Surabattula | c3f207a | 2021-04-13 00:26:42 -0500 | [diff] [blame] | 1631 | deferredclose_wq = alloc_workqueue("deferredclose", |
| 1632 | WQ_FREEZABLE|WQ_MEM_RECLAIM, 0); |
| 1633 | if (!deferredclose_wq) { |
| 1634 | rc = -ENOMEM; |
| 1635 | goto out_destroy_cifsoplockd_wq; |
| 1636 | } |
| 1637 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1638 | rc = cifs_init_inodecache(); |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1639 | if (rc) |
David Howells | 70431bf | 2020-11-17 15:56:59 +0000 | [diff] [blame] | 1640 | goto out_destroy_deferredclose_wq; |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1641 | |
| 1642 | rc = cifs_init_mids(); |
| 1643 | if (rc) |
| 1644 | goto out_destroy_inodecache; |
| 1645 | |
| 1646 | rc = cifs_init_request_bufs(); |
| 1647 | if (rc) |
| 1648 | goto out_destroy_mids; |
| 1649 | |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 1650 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 1651 | rc = dfs_cache_init(); |
| 1652 | if (rc) |
| 1653 | goto out_destroy_request_bufs; |
| 1654 | #endif /* CONFIG_CIFS_DFS_UPCALL */ |
Jeff Layton | 84a15b9 | 2007-11-03 05:02:24 +0000 | [diff] [blame] | 1655 | #ifdef CONFIG_CIFS_UPCALL |
Sachin Prabhu | b74cb9a | 2016-05-17 18:20:13 -0500 | [diff] [blame] | 1656 | rc = init_cifs_spnego(); |
Jeff Layton | 84a15b9 | 2007-11-03 05:02:24 +0000 | [diff] [blame] | 1657 | if (rc) |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 1658 | goto out_destroy_dfs_cache; |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1659 | #endif /* CONFIG_CIFS_UPCALL */ |
Samuel Cabrero | 06f08da | 2020-11-30 19:02:49 +0100 | [diff] [blame] | 1660 | #ifdef CONFIG_CIFS_SWN_UPCALL |
| 1661 | rc = cifs_genl_init(); |
| 1662 | if (rc) |
| 1663 | goto out_register_key_type; |
| 1664 | #endif /* CONFIG_CIFS_SWN_UPCALL */ |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1665 | |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1666 | rc = init_cifs_idmap(); |
| 1667 | if (rc) |
Samuel Cabrero | 06f08da | 2020-11-30 19:02:49 +0100 | [diff] [blame] | 1668 | goto out_cifs_swn_init; |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1669 | |
| 1670 | rc = register_filesystem(&cifs_fs_type); |
| 1671 | if (rc) |
Shirish Pargaonkar | c4aca0c | 2011-05-06 02:35:00 -0500 | [diff] [blame] | 1672 | goto out_init_cifs_idmap; |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1673 | |
Steve French | 49218b4 | 2018-05-23 21:44:53 -0500 | [diff] [blame] | 1674 | rc = register_filesystem(&smb3_fs_type); |
| 1675 | if (rc) { |
| 1676 | unregister_filesystem(&cifs_fs_type); |
| 1677 | goto out_init_cifs_idmap; |
| 1678 | } |
| 1679 | |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1680 | return 0; |
| 1681 | |
Shirish Pargaonkar | c4aca0c | 2011-05-06 02:35:00 -0500 | [diff] [blame] | 1682 | out_init_cifs_idmap: |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1683 | exit_cifs_idmap(); |
Samuel Cabrero | 06f08da | 2020-11-30 19:02:49 +0100 | [diff] [blame] | 1684 | out_cifs_swn_init: |
| 1685 | #ifdef CONFIG_CIFS_SWN_UPCALL |
| 1686 | cifs_genl_exit(); |
Shirish Pargaonkar | c4aca0c | 2011-05-06 02:35:00 -0500 | [diff] [blame] | 1687 | out_register_key_type: |
Samuel Cabrero | 06f08da | 2020-11-30 19:02:49 +0100 | [diff] [blame] | 1688 | #endif |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1689 | #ifdef CONFIG_CIFS_UPCALL |
Sachin Prabhu | b74cb9a | 2016-05-17 18:20:13 -0500 | [diff] [blame] | 1690 | exit_cifs_spnego(); |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 1691 | out_destroy_dfs_cache: |
| 1692 | #endif |
| 1693 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 1694 | dfs_cache_destroy(); |
Shirish Pargaonkar | c4aca0c | 2011-05-06 02:35:00 -0500 | [diff] [blame] | 1695 | out_destroy_request_bufs: |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1696 | #endif |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1697 | cifs_destroy_request_bufs(); |
Steve French | d3bf522 | 2010-09-22 19:15:36 +0000 | [diff] [blame] | 1698 | out_destroy_mids: |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1699 | cifs_destroy_mids(); |
Steve French | d3bf522 | 2010-09-22 19:15:36 +0000 | [diff] [blame] | 1700 | out_destroy_inodecache: |
Steve French | 45af7a0 | 2006-04-21 22:52:25 +0000 | [diff] [blame] | 1701 | cifs_destroy_inodecache(); |
Rohith Surabattula | c3f207a | 2021-04-13 00:26:42 -0500 | [diff] [blame] | 1702 | out_destroy_deferredclose_wq: |
| 1703 | destroy_workqueue(deferredclose_wq); |
Rabin Vincent | 3998e6b8 | 2017-05-03 17:54:01 +0200 | [diff] [blame] | 1704 | out_destroy_cifsoplockd_wq: |
| 1705 | destroy_workqueue(cifsoplockd_wq); |
Ronnie Sahlberg | 32546a9 | 2019-11-03 13:06:37 +1000 | [diff] [blame] | 1706 | out_destroy_fileinfo_put_wq: |
| 1707 | destroy_workqueue(fileinfo_put_wq); |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 1708 | out_destroy_decrypt_wq: |
| 1709 | destroy_workqueue(decrypt_wq); |
Rabin Vincent | 3998e6b8 | 2017-05-03 17:54:01 +0200 | [diff] [blame] | 1710 | out_destroy_cifsiod_wq: |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 1711 | destroy_workqueue(cifsiod_wq); |
Steve French | d3bf522 | 2010-09-22 19:15:36 +0000 | [diff] [blame] | 1712 | out_clean_proc: |
| 1713 | cifs_proc_clean(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | return rc; |
| 1715 | } |
| 1716 | |
| 1717 | static void __exit |
| 1718 | exit_cifs(void) |
| 1719 | { |
Steve French | 49218b4 | 2018-05-23 21:44:53 -0500 | [diff] [blame] | 1720 | cifs_dbg(NOISY, "exit_smb3\n"); |
Jeff Layton | 3dd9330 | 2012-03-21 06:27:55 -0400 | [diff] [blame] | 1721 | unregister_filesystem(&cifs_fs_type); |
Steve French | 49218b4 | 2018-05-23 21:44:53 -0500 | [diff] [blame] | 1722 | unregister_filesystem(&smb3_fs_type); |
Igor Mammedov | 78d31a3 | 2008-04-24 12:56:07 +0400 | [diff] [blame] | 1723 | cifs_dfs_release_automount_timer(); |
Shirish Pargaonkar | 4d79dba | 2011-04-27 23:34:35 -0500 | [diff] [blame] | 1724 | exit_cifs_idmap(); |
Samuel Cabrero | 06f08da | 2020-11-30 19:02:49 +0100 | [diff] [blame] | 1725 | #ifdef CONFIG_CIFS_SWN_UPCALL |
| 1726 | cifs_genl_exit(); |
| 1727 | #endif |
Jeff Layton | 84a15b9 | 2007-11-03 05:02:24 +0000 | [diff] [blame] | 1728 | #ifdef CONFIG_CIFS_UPCALL |
Shu Wang | 9418333 | 2017-09-07 16:03:27 +0800 | [diff] [blame] | 1729 | exit_cifs_spnego(); |
Jeff Layton | 84a15b9 | 2007-11-03 05:02:24 +0000 | [diff] [blame] | 1730 | #endif |
Paulo Alcantara | 1c78022 | 2018-11-14 16:24:03 -0200 | [diff] [blame] | 1731 | #ifdef CONFIG_CIFS_DFS_UPCALL |
| 1732 | dfs_cache_destroy(); |
| 1733 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1734 | cifs_destroy_request_bufs(); |
Jeff Layton | 3dd9330 | 2012-03-21 06:27:55 -0400 | [diff] [blame] | 1735 | cifs_destroy_mids(); |
| 1736 | cifs_destroy_inodecache(); |
Rohith Surabattula | c3f207a | 2021-04-13 00:26:42 -0500 | [diff] [blame] | 1737 | destroy_workqueue(deferredclose_wq); |
Rabin Vincent | 3998e6b8 | 2017-05-03 17:54:01 +0200 | [diff] [blame] | 1738 | destroy_workqueue(cifsoplockd_wq); |
Steve French | 35cf94a | 2019-09-07 01:09:49 -0500 | [diff] [blame] | 1739 | destroy_workqueue(decrypt_wq); |
Ronnie Sahlberg | 32546a9 | 2019-11-03 13:06:37 +1000 | [diff] [blame] | 1740 | destroy_workqueue(fileinfo_put_wq); |
Jeff Layton | da472fc | 2012-03-23 14:40:53 -0400 | [diff] [blame] | 1741 | destroy_workqueue(cifsiod_wq); |
Jeff Layton | 3dd9330 | 2012-03-21 06:27:55 -0400 | [diff] [blame] | 1742 | cifs_proc_clean(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | } |
| 1744 | |
Steve French | 1c3a13a | 2018-09-18 04:07:45 -0500 | [diff] [blame] | 1745 | MODULE_AUTHOR("Steve French"); |
Steve French | 6dc0f87 | 2007-07-06 23:13:06 +0000 | [diff] [blame] | 1746 | MODULE_LICENSE("GPL"); /* combination of LGPL + GPL source behaves as GPL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1747 | MODULE_DESCRIPTION |
Steve French | 1c3a13a | 2018-09-18 04:07:45 -0500 | [diff] [blame] | 1748 | ("VFS to access SMB3 servers e.g. Samba, Macs, Azure and Windows (and " |
| 1749 | "also older servers complying with the SNIA CIFS Specification)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | MODULE_VERSION(CIFS_VERSION); |
Ronnie Sahlberg | 3591bb8 | 2019-10-31 13:55:14 +1000 | [diff] [blame] | 1751 | MODULE_SOFTDEP("ecb"); |
| 1752 | MODULE_SOFTDEP("hmac"); |
Ronnie Sahlberg | 3591bb8 | 2019-10-31 13:55:14 +1000 | [diff] [blame] | 1753 | MODULE_SOFTDEP("md5"); |
| 1754 | MODULE_SOFTDEP("nls"); |
| 1755 | MODULE_SOFTDEP("aes"); |
| 1756 | MODULE_SOFTDEP("cmac"); |
| 1757 | MODULE_SOFTDEP("sha256"); |
| 1758 | MODULE_SOFTDEP("sha512"); |
| 1759 | MODULE_SOFTDEP("aead2"); |
| 1760 | MODULE_SOFTDEP("ccm"); |
| 1761 | MODULE_SOFTDEP("gcm"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | module_init(init_cifs) |
| 1763 | module_exit(exit_cifs) |