Thomas Gleixner | 09c434b | 2019-05-19 13:08:20 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 2 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 3 | #include <linux/ceph/ceph_debug.h> |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 4 | |
| 5 | #include <linux/backing-dev.h> |
Sage Weil | c309f0a | 2010-06-30 21:34:01 -0700 | [diff] [blame] | 6 | #include <linux/ctype.h> |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 7 | #include <linux/fs.h> |
| 8 | #include <linux/inet.h> |
| 9 | #include <linux/in6.h> |
| 10 | #include <linux/module.h> |
| 11 | #include <linux/mount.h> |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 12 | #include <linux/fs_context.h> |
| 13 | #include <linux/fs_parser.h> |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 14 | #include <linux/sched.h> |
| 15 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 17 | #include <linux/statfs.h> |
| 18 | #include <linux/string.h> |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 19 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 20 | #include "super.h" |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 21 | #include "mds_client.h" |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 22 | #include "cache.h" |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 23 | |
Sage Weil | 1fe60e5 | 2012-07-30 16:23:22 -0700 | [diff] [blame] | 24 | #include <linux/ceph/ceph_features.h> |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 25 | #include <linux/ceph/decode.h> |
| 26 | #include <linux/ceph/mon_client.h> |
| 27 | #include <linux/ceph/auth.h> |
| 28 | #include <linux/ceph/debugfs.h> |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 29 | |
Xiubo Li | 18f473b | 2020-07-16 10:05:57 -0400 | [diff] [blame] | 30 | static DEFINE_SPINLOCK(ceph_fsc_lock); |
| 31 | static LIST_HEAD(ceph_fsc_list); |
| 32 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 33 | /* |
| 34 | * Ceph superblock operations |
| 35 | * |
| 36 | * Handle the basics of mounting, unmounting. |
| 37 | */ |
| 38 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 39 | /* |
| 40 | * super ops |
| 41 | */ |
| 42 | static void ceph_put_super(struct super_block *s) |
| 43 | { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 44 | struct ceph_fs_client *fsc = ceph_sb_to_client(s); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 45 | |
| 46 | dout("put_super\n"); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 47 | ceph_mdsc_close_sessions(fsc->mdsc); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf) |
| 51 | { |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 52 | struct ceph_fs_client *fsc = ceph_inode_to_client(d_inode(dentry)); |
Luis Henriques | 73fb094 | 2018-05-28 18:37:40 +0100 | [diff] [blame] | 53 | struct ceph_mon_client *monc = &fsc->client->monc; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 54 | struct ceph_statfs st; |
| 55 | u64 fsid; |
| 56 | int err; |
Douglas Fuller | 06d7437 | 2017-08-16 10:19:27 -0400 | [diff] [blame] | 57 | u64 data_pool; |
| 58 | |
| 59 | if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) { |
| 60 | data_pool = fsc->mdsc->mdsmap->m_data_pg_pools[0]; |
| 61 | } else { |
| 62 | data_pool = CEPH_NOPOOL; |
| 63 | } |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 64 | |
| 65 | dout("statfs\n"); |
Luis Henriques | 73fb094 | 2018-05-28 18:37:40 +0100 | [diff] [blame] | 66 | err = ceph_monc_do_statfs(monc, data_pool, &st); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 67 | if (err < 0) |
| 68 | return err; |
| 69 | |
| 70 | /* fill in kstatfs */ |
| 71 | buf->f_type = CEPH_SUPER_MAGIC; /* ?? */ |
| 72 | |
| 73 | /* |
| 74 | * express utilization in terms of large blocks to avoid |
| 75 | * overflow on 32-bit machines. |
Sage Weil | 92a49fb | 2013-02-22 15:31:00 -0800 | [diff] [blame] | 76 | * |
| 77 | * NOTE: for the time being, we make bsize == frsize to humor |
| 78 | * not-yet-ancient versions of glibc that are broken. |
| 79 | * Someday, we will probably want to report a real block |
| 80 | * size... whatever that may mean for a network file system! |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 81 | */ |
| 82 | buf->f_bsize = 1 << CEPH_BLOCK_SHIFT; |
Sage Weil | 92a49fb | 2013-02-22 15:31:00 -0800 | [diff] [blame] | 83 | buf->f_frsize = 1 << CEPH_BLOCK_SHIFT; |
Luis Henriques | 9122eed | 2018-01-31 10:53:13 +0000 | [diff] [blame] | 84 | |
| 85 | /* |
| 86 | * By default use root quota for stats; fallback to overall filesystem |
| 87 | * usage if using 'noquotadf' mount option or if the root dir doesn't |
| 88 | * have max_bytes quota set. |
| 89 | */ |
| 90 | if (ceph_test_mount_opt(fsc, NOQUOTADF) || |
| 91 | !ceph_quota_update_statfs(fsc, buf)) { |
| 92 | buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10); |
| 93 | buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10); |
| 94 | buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10); |
| 95 | } |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 96 | |
| 97 | buf->f_files = le64_to_cpu(st.num_objects); |
| 98 | buf->f_ffree = -1; |
Sage Weil | 558d349 | 2010-06-01 12:51:12 -0700 | [diff] [blame] | 99 | buf->f_namelen = NAME_MAX; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 100 | |
Jeff Layton | 080a330 | 2017-10-23 10:58:40 -0400 | [diff] [blame] | 101 | /* Must convert the fsid, for consistent values across arches */ |
Luis Henriques | 73fb094 | 2018-05-28 18:37:40 +0100 | [diff] [blame] | 102 | mutex_lock(&monc->mutex); |
| 103 | fsid = le64_to_cpu(*(__le64 *)(&monc->monmap->fsid)) ^ |
| 104 | le64_to_cpu(*((__le64 *)&monc->monmap->fsid + 1)); |
| 105 | mutex_unlock(&monc->mutex); |
| 106 | |
Al Viro | 6d1349c | 2020-09-18 16:45:50 -0400 | [diff] [blame] | 107 | buf->f_fsid = u64_to_fsid(fsid); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 108 | |
| 109 | return 0; |
| 110 | } |
| 111 | |
Sage Weil | 2d9c98a | 2010-07-30 09:38:13 -0700 | [diff] [blame] | 112 | static int ceph_sync_fs(struct super_block *sb, int wait) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 113 | { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 114 | struct ceph_fs_client *fsc = ceph_sb_to_client(sb); |
Sage Weil | 2d9c98a | 2010-07-30 09:38:13 -0700 | [diff] [blame] | 115 | |
| 116 | if (!wait) { |
| 117 | dout("sync_fs (non-blocking)\n"); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 118 | ceph_flush_dirty_caps(fsc->mdsc); |
Sage Weil | 2d9c98a | 2010-07-30 09:38:13 -0700 | [diff] [blame] | 119 | dout("sync_fs (non-blocking) done\n"); |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | dout("sync_fs (blocking)\n"); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 124 | ceph_osdc_sync(&fsc->client->osdc); |
| 125 | ceph_mdsc_sync(fsc->mdsc); |
Sage Weil | 2d9c98a | 2010-07-30 09:38:13 -0700 | [diff] [blame] | 126 | dout("sync_fs (blocking) done\n"); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 127 | return 0; |
| 128 | } |
| 129 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 130 | /* |
| 131 | * mount options |
| 132 | */ |
| 133 | enum { |
| 134 | Opt_wsize, |
| 135 | Opt_rsize, |
Sage Weil | 83817e3 | 2011-08-04 08:03:44 -0700 | [diff] [blame] | 136 | Opt_rasize, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 137 | Opt_caps_wanted_delay_min, |
| 138 | Opt_caps_wanted_delay_max, |
Yan, Zheng | fe33032 | 2019-02-01 14:57:15 +0800 | [diff] [blame] | 139 | Opt_caps_max, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 140 | Opt_readdir_max_entries, |
| 141 | Opt_readdir_max_bytes, |
| 142 | Opt_congestion_kb, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 143 | /* int args above */ |
| 144 | Opt_snapdirname, |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 145 | Opt_mds_namespace, |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 146 | Opt_recover_session, |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 147 | Opt_source, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 148 | /* string args above */ |
| 149 | Opt_dirstat, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 150 | Opt_rbytes, |
Alex Elder | cffaba1 | 2012-02-15 07:43:54 -0600 | [diff] [blame] | 151 | Opt_asyncreaddir, |
Sage Weil | a40dc6c | 2012-01-10 09:12:55 -0800 | [diff] [blame] | 152 | Opt_dcache, |
Yehuda Sadeh | ad1fee9 | 2011-01-21 16:44:03 -0800 | [diff] [blame] | 153 | Opt_ino32, |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 154 | Opt_fscache, |
Yan, Zheng | 10183a6 | 2015-04-27 15:33:28 +0800 | [diff] [blame] | 155 | Opt_poolperm, |
Yan, Zheng | e9e427f | 2016-11-10 16:02:06 +0800 | [diff] [blame] | 156 | Opt_require_active_mds, |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 157 | Opt_acl, |
Luis Henriques | 9122eed | 2018-01-31 10:53:13 +0000 | [diff] [blame] | 158 | Opt_quotadf, |
Luis Henriques | ea4cdc5 | 2018-10-15 16:46:00 +0100 | [diff] [blame] | 159 | Opt_copyfrom, |
Jeff Layton | 2ccb454 | 2019-04-02 15:35:56 -0400 | [diff] [blame] | 160 | Opt_wsync, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 161 | }; |
| 162 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 163 | enum ceph_recover_session_mode { |
| 164 | ceph_recover_session_no, |
| 165 | ceph_recover_session_clean |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 166 | }; |
| 167 | |
Al Viro | 5eede62 | 2019-12-16 13:33:32 -0500 | [diff] [blame] | 168 | static const struct constant_table ceph_param_recover[] = { |
Al Viro | 2710c957a | 2019-09-06 22:12:08 -0400 | [diff] [blame] | 169 | { "no", ceph_recover_session_no }, |
| 170 | { "clean", ceph_recover_session_clean }, |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 171 | {} |
| 172 | }; |
| 173 | |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 174 | static const struct fs_parameter_spec ceph_mount_parameters[] = { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 175 | fsparam_flag_no ("acl", Opt_acl), |
| 176 | fsparam_flag_no ("asyncreaddir", Opt_asyncreaddir), |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 177 | fsparam_s32 ("caps_max", Opt_caps_max), |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 178 | fsparam_u32 ("caps_wanted_delay_max", Opt_caps_wanted_delay_max), |
| 179 | fsparam_u32 ("caps_wanted_delay_min", Opt_caps_wanted_delay_min), |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 180 | fsparam_u32 ("write_congestion_kb", Opt_congestion_kb), |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 181 | fsparam_flag_no ("copyfrom", Opt_copyfrom), |
| 182 | fsparam_flag_no ("dcache", Opt_dcache), |
| 183 | fsparam_flag_no ("dirstat", Opt_dirstat), |
Al Viro | 48ce73b | 2019-12-17 20:03:59 -0500 | [diff] [blame] | 184 | fsparam_flag_no ("fsc", Opt_fscache), // fsc|nofsc |
| 185 | fsparam_string ("fsc", Opt_fscache), // fsc=... |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 186 | fsparam_flag_no ("ino32", Opt_ino32), |
| 187 | fsparam_string ("mds_namespace", Opt_mds_namespace), |
| 188 | fsparam_flag_no ("poolperm", Opt_poolperm), |
| 189 | fsparam_flag_no ("quotadf", Opt_quotadf), |
| 190 | fsparam_u32 ("rasize", Opt_rasize), |
| 191 | fsparam_flag_no ("rbytes", Opt_rbytes), |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 192 | fsparam_u32 ("readdir_max_bytes", Opt_readdir_max_bytes), |
| 193 | fsparam_u32 ("readdir_max_entries", Opt_readdir_max_entries), |
Al Viro | 2710c957a | 2019-09-06 22:12:08 -0400 | [diff] [blame] | 194 | fsparam_enum ("recover_session", Opt_recover_session, ceph_param_recover), |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 195 | fsparam_flag_no ("require_active_mds", Opt_require_active_mds), |
| 196 | fsparam_u32 ("rsize", Opt_rsize), |
| 197 | fsparam_string ("snapdirname", Opt_snapdirname), |
| 198 | fsparam_string ("source", Opt_source), |
| 199 | fsparam_u32 ("wsize", Opt_wsize), |
Jeff Layton | 2ccb454 | 2019-04-02 15:35:56 -0400 | [diff] [blame] | 200 | fsparam_flag_no ("wsync", Opt_wsync), |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 201 | {} |
| 202 | }; |
| 203 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 204 | struct ceph_parse_opts_ctx { |
| 205 | struct ceph_options *copts; |
| 206 | struct ceph_mount_options *opts; |
| 207 | }; |
| 208 | |
| 209 | /* |
Ilya Dryomov | b27a939 | 2020-02-10 22:51:08 +0100 | [diff] [blame] | 210 | * Remove adjacent slashes and then the trailing slash, unless it is |
| 211 | * the only remaining character. |
| 212 | * |
| 213 | * E.g. "//dir1////dir2///" --> "/dir1/dir2", "///" --> "/". |
| 214 | */ |
| 215 | static void canonicalize_path(char *path) |
| 216 | { |
| 217 | int i, j = 0; |
| 218 | |
| 219 | for (i = 0; path[i] != '\0'; i++) { |
| 220 | if (path[i] != '/' || j < 1 || path[j - 1] != '/') |
| 221 | path[j++] = path[i]; |
| 222 | } |
| 223 | |
| 224 | if (j > 1 && path[j - 1] == '/') |
| 225 | j--; |
| 226 | path[j] = '\0'; |
| 227 | } |
| 228 | |
| 229 | /* |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 230 | * Parse the source parameter. Distinguish the server list from the path. |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 231 | * |
| 232 | * The source will look like: |
| 233 | * <server_spec>[,<server_spec>...]:[<path>] |
| 234 | * where |
| 235 | * <server_spec> is <ip>[:<port>] |
| 236 | * <path> is optional, but if present must begin with '/' |
| 237 | */ |
| 238 | static int ceph_parse_source(struct fs_parameter *param, struct fs_context *fc) |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 239 | { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 240 | struct ceph_parse_opts_ctx *pctx = fc->fs_private; |
| 241 | struct ceph_mount_options *fsopt = pctx->opts; |
| 242 | char *dev_name = param->string, *dev_name_end; |
| 243 | int ret; |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 244 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 245 | dout("%s '%s'\n", __func__, dev_name); |
| 246 | if (!dev_name || !*dev_name) |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 247 | return invalfc(fc, "Empty source"); |
Yehuda Sadeh | 2baba25 | 2009-12-18 13:51:57 -0800 | [diff] [blame] | 248 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 249 | dev_name_end = strchr(dev_name, '/'); |
| 250 | if (dev_name_end) { |
Xiubo Li | 4fbc0c7 | 2019-12-20 09:34:04 -0500 | [diff] [blame] | 251 | /* |
| 252 | * The server_path will include the whole chars from userland |
| 253 | * including the leading '/'. |
| 254 | */ |
Ilya Dryomov | b27a939 | 2020-02-10 22:51:08 +0100 | [diff] [blame] | 255 | kfree(fsopt->server_path); |
Xiubo Li | 4fbc0c7 | 2019-12-20 09:34:04 -0500 | [diff] [blame] | 256 | fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL); |
| 257 | if (!fsopt->server_path) |
| 258 | return -ENOMEM; |
Ilya Dryomov | b27a939 | 2020-02-10 22:51:08 +0100 | [diff] [blame] | 259 | |
| 260 | canonicalize_path(fsopt->server_path); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 261 | } else { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 262 | dev_name_end = dev_name + strlen(dev_name); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 263 | } |
| 264 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 265 | dev_name_end--; /* back up to ':' separator */ |
| 266 | if (dev_name_end < dev_name || *dev_name_end != ':') |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 267 | return invalfc(fc, "No path or : separator in source"); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 268 | |
| 269 | dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name); |
| 270 | if (fsopt->server_path) |
| 271 | dout("server path '%s'\n", fsopt->server_path); |
| 272 | |
| 273 | ret = ceph_parse_mon_ips(param->string, dev_name_end - dev_name, |
Al Viro | cc3c0b5 | 2019-12-21 00:16:49 -0500 | [diff] [blame] | 274 | pctx->copts, fc->log.log); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 275 | if (ret) |
| 276 | return ret; |
| 277 | |
| 278 | fc->source = param->string; |
| 279 | param->string = NULL; |
| 280 | return 0; |
| 281 | } |
| 282 | |
| 283 | static int ceph_parse_mount_param(struct fs_context *fc, |
| 284 | struct fs_parameter *param) |
| 285 | { |
| 286 | struct ceph_parse_opts_ctx *pctx = fc->fs_private; |
| 287 | struct ceph_mount_options *fsopt = pctx->opts; |
| 288 | struct fs_parse_result result; |
| 289 | unsigned int mode; |
| 290 | int token, ret; |
| 291 | |
Al Viro | cc3c0b5 | 2019-12-21 00:16:49 -0500 | [diff] [blame] | 292 | ret = ceph_parse_param(param, pctx->copts, fc->log.log); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 293 | if (ret != -ENOPARAM) |
| 294 | return ret; |
| 295 | |
Al Viro | d7167b1 | 2019-09-07 07:23:15 -0400 | [diff] [blame] | 296 | token = fs_parse(fc, ceph_mount_parameters, param, &result); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 297 | dout("%s fs_parse '%s' token %d\n", __func__, param->key, token); |
| 298 | if (token < 0) |
| 299 | return token; |
| 300 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 301 | switch (token) { |
| 302 | case Opt_snapdirname: |
| 303 | kfree(fsopt->snapdir_name); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 304 | fsopt->snapdir_name = param->string; |
| 305 | param->string = NULL; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 306 | break; |
Yan, Zheng | 235a098 | 2016-03-30 17:18:34 +0800 | [diff] [blame] | 307 | case Opt_mds_namespace: |
Chengguang Xu | 937441f | 2018-02-06 08:25:55 +0800 | [diff] [blame] | 308 | kfree(fsopt->mds_namespace); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 309 | fsopt->mds_namespace = param->string; |
| 310 | param->string = NULL; |
Yan, Zheng | 235a098 | 2016-03-30 17:18:34 +0800 | [diff] [blame] | 311 | break; |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 312 | case Opt_recover_session: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 313 | mode = result.uint_32; |
| 314 | if (mode == ceph_recover_session_no) |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 315 | fsopt->flags &= ~CEPH_MOUNT_OPT_CLEANRECOVER; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 316 | else if (mode == ceph_recover_session_clean) |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 317 | fsopt->flags |= CEPH_MOUNT_OPT_CLEANRECOVER; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 318 | else |
| 319 | BUG(); |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 320 | break; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 321 | case Opt_source: |
| 322 | if (fc->source) |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 323 | return invalfc(fc, "Multiple sources specified"); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 324 | return ceph_parse_source(param, fc); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 325 | case Opt_wsize: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 326 | if (result.uint_32 < PAGE_SIZE || |
| 327 | result.uint_32 > CEPH_MAX_WRITE_SIZE) |
| 328 | goto out_of_range; |
| 329 | fsopt->wsize = ALIGN(result.uint_32, PAGE_SIZE); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 330 | break; |
| 331 | case Opt_rsize: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 332 | if (result.uint_32 < PAGE_SIZE || |
| 333 | result.uint_32 > CEPH_MAX_READ_SIZE) |
| 334 | goto out_of_range; |
| 335 | fsopt->rsize = ALIGN(result.uint_32, PAGE_SIZE); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 336 | break; |
Sage Weil | 83817e3 | 2011-08-04 08:03:44 -0700 | [diff] [blame] | 337 | case Opt_rasize: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 338 | fsopt->rasize = ALIGN(result.uint_32, PAGE_SIZE); |
Sage Weil | 83817e3 | 2011-08-04 08:03:44 -0700 | [diff] [blame] | 339 | break; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 340 | case Opt_caps_wanted_delay_min: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 341 | if (result.uint_32 < 1) |
| 342 | goto out_of_range; |
| 343 | fsopt->caps_wanted_delay_min = result.uint_32; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 344 | break; |
| 345 | case Opt_caps_wanted_delay_max: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 346 | if (result.uint_32 < 1) |
| 347 | goto out_of_range; |
| 348 | fsopt->caps_wanted_delay_max = result.uint_32; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 349 | break; |
Yan, Zheng | fe33032 | 2019-02-01 14:57:15 +0800 | [diff] [blame] | 350 | case Opt_caps_max: |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 351 | if (result.int_32 < 0) |
| 352 | goto out_of_range; |
| 353 | fsopt->caps_max = result.int_32; |
Yan, Zheng | fe33032 | 2019-02-01 14:57:15 +0800 | [diff] [blame] | 354 | break; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 355 | case Opt_readdir_max_entries: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 356 | if (result.uint_32 < 1) |
| 357 | goto out_of_range; |
| 358 | fsopt->max_readdir = result.uint_32; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 359 | break; |
| 360 | case Opt_readdir_max_bytes: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 361 | if (result.uint_32 < PAGE_SIZE && result.uint_32 != 0) |
| 362 | goto out_of_range; |
| 363 | fsopt->max_readdir_bytes = result.uint_32; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 364 | break; |
| 365 | case Opt_congestion_kb: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 366 | if (result.uint_32 < 1024) /* at least 1M */ |
| 367 | goto out_of_range; |
| 368 | fsopt->congestion_kb = result.uint_32; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 369 | break; |
| 370 | case Opt_dirstat: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 371 | if (!result.negated) |
| 372 | fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT; |
| 373 | else |
| 374 | fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 375 | break; |
| 376 | case Opt_rbytes: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 377 | if (!result.negated) |
| 378 | fsopt->flags |= CEPH_MOUNT_OPT_RBYTES; |
| 379 | else |
| 380 | fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 381 | break; |
Alex Elder | cffaba1 | 2012-02-15 07:43:54 -0600 | [diff] [blame] | 382 | case Opt_asyncreaddir: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 383 | if (!result.negated) |
| 384 | fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR; |
| 385 | else |
| 386 | fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 387 | break; |
Sage Weil | a40dc6c | 2012-01-10 09:12:55 -0800 | [diff] [blame] | 388 | case Opt_dcache: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 389 | if (!result.negated) |
| 390 | fsopt->flags |= CEPH_MOUNT_OPT_DCACHE; |
| 391 | else |
| 392 | fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE; |
Sage Weil | a40dc6c | 2012-01-10 09:12:55 -0800 | [diff] [blame] | 393 | break; |
Yehuda Sadeh | ad1fee9 | 2011-01-21 16:44:03 -0800 | [diff] [blame] | 394 | case Opt_ino32: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 395 | if (!result.negated) |
| 396 | fsopt->flags |= CEPH_MOUNT_OPT_INO32; |
| 397 | else |
| 398 | fsopt->flags &= ~CEPH_MOUNT_OPT_INO32; |
Yehuda Sadeh | ad1fee9 | 2011-01-21 16:44:03 -0800 | [diff] [blame] | 399 | break; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 400 | |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 401 | case Opt_fscache: |
Jeff Layton | ff29fde | 2019-11-07 09:39:32 -0500 | [diff] [blame] | 402 | #ifdef CONFIG_CEPH_FSCACHE |
Chengguang Xu | 7ae7a82 | 2018-02-07 10:27:06 +0800 | [diff] [blame] | 403 | kfree(fsopt->fscache_uniq); |
| 404 | fsopt->fscache_uniq = NULL; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 405 | if (result.negated) { |
| 406 | fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE; |
| 407 | } else { |
| 408 | fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE; |
| 409 | fsopt->fscache_uniq = param->string; |
| 410 | param->string = NULL; |
| 411 | } |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 412 | break; |
Jeff Layton | ff29fde | 2019-11-07 09:39:32 -0500 | [diff] [blame] | 413 | #else |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 414 | return invalfc(fc, "fscache support is disabled"); |
Jeff Layton | ff29fde | 2019-11-07 09:39:32 -0500 | [diff] [blame] | 415 | #endif |
Yan, Zheng | 10183a6 | 2015-04-27 15:33:28 +0800 | [diff] [blame] | 416 | case Opt_poolperm: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 417 | if (!result.negated) |
| 418 | fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM; |
| 419 | else |
| 420 | fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM; |
Yan, Zheng | 10183a6 | 2015-04-27 15:33:28 +0800 | [diff] [blame] | 421 | break; |
Yan, Zheng | e9e427f | 2016-11-10 16:02:06 +0800 | [diff] [blame] | 422 | case Opt_require_active_mds: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 423 | if (!result.negated) |
| 424 | fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT; |
| 425 | else |
| 426 | fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT; |
Yan, Zheng | e9e427f | 2016-11-10 16:02:06 +0800 | [diff] [blame] | 427 | break; |
Luis Henriques | 9122eed | 2018-01-31 10:53:13 +0000 | [diff] [blame] | 428 | case Opt_quotadf: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 429 | if (!result.negated) |
| 430 | fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF; |
| 431 | else |
| 432 | fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF; |
Luis Henriques | 9122eed | 2018-01-31 10:53:13 +0000 | [diff] [blame] | 433 | break; |
Luis Henriques | ea4cdc5 | 2018-10-15 16:46:00 +0100 | [diff] [blame] | 434 | case Opt_copyfrom: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 435 | if (!result.negated) |
| 436 | fsopt->flags &= ~CEPH_MOUNT_OPT_NOCOPYFROM; |
| 437 | else |
| 438 | fsopt->flags |= CEPH_MOUNT_OPT_NOCOPYFROM; |
Luis Henriques | ea4cdc5 | 2018-10-15 16:46:00 +0100 | [diff] [blame] | 439 | break; |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 440 | case Opt_acl: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 441 | if (!result.negated) { |
| 442 | #ifdef CONFIG_CEPH_FS_POSIX_ACL |
| 443 | fc->sb_flags |= SB_POSIXACL; |
| 444 | #else |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 445 | return invalfc(fc, "POSIX ACL support is disabled"); |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 446 | #endif |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 447 | } else { |
| 448 | fc->sb_flags &= ~SB_POSIXACL; |
| 449 | } |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 450 | break; |
Jeff Layton | 2ccb454 | 2019-04-02 15:35:56 -0400 | [diff] [blame] | 451 | case Opt_wsync: |
| 452 | if (!result.negated) |
| 453 | fsopt->flags &= ~CEPH_MOUNT_OPT_ASYNC_DIROPS; |
| 454 | else |
| 455 | fsopt->flags |= CEPH_MOUNT_OPT_ASYNC_DIROPS; |
| 456 | break; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 457 | default: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 458 | BUG(); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 459 | } |
| 460 | return 0; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 461 | |
| 462 | out_of_range: |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 463 | return invalfc(fc, "%s out of range", param->key); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 464 | } |
| 465 | |
| 466 | static void destroy_mount_options(struct ceph_mount_options *args) |
| 467 | { |
| 468 | dout("destroy_mount_options %p\n", args); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 469 | if (!args) |
| 470 | return; |
| 471 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 472 | kfree(args->snapdir_name); |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 473 | kfree(args->mds_namespace); |
Yan, Zheng | 3f38495 | 2016-04-21 11:09:55 +0800 | [diff] [blame] | 474 | kfree(args->server_path); |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 475 | kfree(args->fscache_uniq); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 476 | kfree(args); |
| 477 | } |
| 478 | |
| 479 | static int strcmp_null(const char *s1, const char *s2) |
| 480 | { |
| 481 | if (!s1 && !s2) |
| 482 | return 0; |
| 483 | if (s1 && !s2) |
| 484 | return -1; |
| 485 | if (!s1 && s2) |
| 486 | return 1; |
| 487 | return strcmp(s1, s2); |
| 488 | } |
| 489 | |
| 490 | static int compare_mount_options(struct ceph_mount_options *new_fsopt, |
| 491 | struct ceph_options *new_opt, |
| 492 | struct ceph_fs_client *fsc) |
| 493 | { |
| 494 | struct ceph_mount_options *fsopt1 = new_fsopt; |
| 495 | struct ceph_mount_options *fsopt2 = fsc->mount_options; |
| 496 | int ofs = offsetof(struct ceph_mount_options, snapdir_name); |
| 497 | int ret; |
| 498 | |
| 499 | ret = memcmp(fsopt1, fsopt2, ofs); |
| 500 | if (ret) |
| 501 | return ret; |
| 502 | |
| 503 | ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name); |
| 504 | if (ret) |
| 505 | return ret; |
Ilya Dryomov | b27a939 | 2020-02-10 22:51:08 +0100 | [diff] [blame] | 506 | |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 507 | ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace); |
| 508 | if (ret) |
| 509 | return ret; |
Xiubo Li | 4fbc0c7 | 2019-12-20 09:34:04 -0500 | [diff] [blame] | 510 | |
Ilya Dryomov | b27a939 | 2020-02-10 22:51:08 +0100 | [diff] [blame] | 511 | ret = strcmp_null(fsopt1->server_path, fsopt2->server_path); |
Yan, Zheng | 3f38495 | 2016-04-21 11:09:55 +0800 | [diff] [blame] | 512 | if (ret) |
| 513 | return ret; |
Xiubo Li | 4fbc0c7 | 2019-12-20 09:34:04 -0500 | [diff] [blame] | 514 | |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 515 | ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq); |
| 516 | if (ret) |
| 517 | return ret; |
Yan, Zheng | 3f38495 | 2016-04-21 11:09:55 +0800 | [diff] [blame] | 518 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 519 | return ceph_compare_options(new_opt, fsc->client); |
| 520 | } |
| 521 | |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 522 | /** |
| 523 | * ceph_show_options - Show mount options in /proc/mounts |
| 524 | * @m: seq_file to write to |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 525 | * @root: root of that (sub)tree |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 526 | */ |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 527 | static int ceph_show_options(struct seq_file *m, struct dentry *root) |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 528 | { |
Al Viro | 34c80b1 | 2011-12-08 21:32:45 -0500 | [diff] [blame] | 529 | struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 530 | struct ceph_mount_options *fsopt = fsc->mount_options; |
Ilya Dryomov | ff40f9a | 2015-03-25 21:02:16 +0300 | [diff] [blame] | 531 | size_t pos; |
| 532 | int ret; |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 533 | |
Ilya Dryomov | ff40f9a | 2015-03-25 21:02:16 +0300 | [diff] [blame] | 534 | /* a comma between MNT/MS and client options */ |
| 535 | seq_putc(m, ','); |
| 536 | pos = m->count; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 537 | |
Dongsheng Yang | 02b2f54 | 2018-12-18 04:31:48 -0500 | [diff] [blame] | 538 | ret = ceph_print_client_options(m, fsc->client, false); |
Ilya Dryomov | ff40f9a | 2015-03-25 21:02:16 +0300 | [diff] [blame] | 539 | if (ret) |
| 540 | return ret; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 541 | |
Ilya Dryomov | ff40f9a | 2015-03-25 21:02:16 +0300 | [diff] [blame] | 542 | /* retract our comma if no client options */ |
| 543 | if (m->count == pos) |
| 544 | m->count--; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 545 | |
| 546 | if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT) |
| 547 | seq_puts(m, ",dirstat"); |
Yan, Zheng | 133e915 | 2016-01-25 10:44:33 +0800 | [diff] [blame] | 548 | if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES)) |
| 549 | seq_puts(m, ",rbytes"); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 550 | if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR) |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 551 | seq_puts(m, ",noasyncreaddir"); |
Ilya Dryomov | ff7eeb8 | 2015-03-25 21:10:09 +0300 | [diff] [blame] | 552 | if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0) |
Sage Weil | a40dc6c | 2012-01-10 09:12:55 -0800 | [diff] [blame] | 553 | seq_puts(m, ",nodcache"); |
Chengguang Xu | 3619aa8 | 2018-06-04 16:03:51 +0800 | [diff] [blame] | 554 | if (fsopt->flags & CEPH_MOUNT_OPT_INO32) |
| 555 | seq_puts(m, ",ino32"); |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 556 | if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) { |
Chengguang Xu | 4d8969a | 2018-02-15 15:39:05 +0800 | [diff] [blame] | 557 | seq_show_option(m, "fsc", fsopt->fscache_uniq); |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 558 | } |
Yan, Zheng | 10183a6 | 2015-04-27 15:33:28 +0800 | [diff] [blame] | 559 | if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM) |
| 560 | seq_puts(m, ",nopoolperm"); |
Luis Henriques | 9122eed | 2018-01-31 10:53:13 +0000 | [diff] [blame] | 561 | if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF) |
| 562 | seq_puts(m, ",noquotadf"); |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 563 | |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 564 | #ifdef CONFIG_CEPH_FS_POSIX_ACL |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 565 | if (root->d_sb->s_flags & SB_POSIXACL) |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 566 | seq_puts(m, ",acl"); |
| 567 | else |
| 568 | seq_puts(m, ",noacl"); |
| 569 | #endif |
| 570 | |
Luis Henriques | 6f9718f | 2018-12-10 10:23:12 +0000 | [diff] [blame] | 571 | if ((fsopt->flags & CEPH_MOUNT_OPT_NOCOPYFROM) == 0) |
| 572 | seq_puts(m, ",copyfrom"); |
Luis Henriques | ea4cdc5 | 2018-10-15 16:46:00 +0100 | [diff] [blame] | 573 | |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 574 | if (fsopt->mds_namespace) |
Chengguang Xu | 4d8969a | 2018-02-15 15:39:05 +0800 | [diff] [blame] | 575 | seq_show_option(m, "mds_namespace", fsopt->mds_namespace); |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 576 | |
| 577 | if (fsopt->flags & CEPH_MOUNT_OPT_CLEANRECOVER) |
| 578 | seq_show_option(m, "recover_session", "clean"); |
| 579 | |
Jeff Layton | 2ccb454 | 2019-04-02 15:35:56 -0400 | [diff] [blame] | 580 | if (fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS) |
| 581 | seq_puts(m, ",nowsync"); |
| 582 | |
Ilya Dryomov | 6dd4940 | 2018-05-03 16:26:55 +0200 | [diff] [blame] | 583 | if (fsopt->wsize != CEPH_MAX_WRITE_SIZE) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 584 | seq_printf(m, ",wsize=%u", fsopt->wsize); |
Yan, Zheng | aa18792 | 2017-07-11 15:56:09 +0800 | [diff] [blame] | 585 | if (fsopt->rsize != CEPH_MAX_READ_SIZE) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 586 | seq_printf(m, ",rsize=%u", fsopt->rsize); |
Sage Weil | 83817e3 | 2011-08-04 08:03:44 -0700 | [diff] [blame] | 587 | if (fsopt->rasize != CEPH_RASIZE_DEFAULT) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 588 | seq_printf(m, ",rasize=%u", fsopt->rasize); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 589 | if (fsopt->congestion_kb != default_congestion_kb()) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 590 | seq_printf(m, ",write_congestion_kb=%u", fsopt->congestion_kb); |
Yan, Zheng | fe33032 | 2019-02-01 14:57:15 +0800 | [diff] [blame] | 591 | if (fsopt->caps_max) |
| 592 | seq_printf(m, ",caps_max=%d", fsopt->caps_max); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 593 | if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 594 | seq_printf(m, ",caps_wanted_delay_min=%u", |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 595 | fsopt->caps_wanted_delay_min); |
| 596 | if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 597 | seq_printf(m, ",caps_wanted_delay_max=%u", |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 598 | fsopt->caps_wanted_delay_max); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 599 | if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 600 | seq_printf(m, ",readdir_max_entries=%u", fsopt->max_readdir); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 601 | if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT) |
Jeff Layton | ad8c28a | 2019-09-09 15:58:55 -0400 | [diff] [blame] | 602 | seq_printf(m, ",readdir_max_bytes=%u", fsopt->max_readdir_bytes); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 603 | if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT)) |
Kees Cook | a068acf | 2015-09-04 15:44:57 -0700 | [diff] [blame] | 604 | seq_show_option(m, "snapdirname", fsopt->snapdir_name); |
Ilya Dryomov | ff40f9a | 2015-03-25 21:02:16 +0300 | [diff] [blame] | 605 | |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 606 | return 0; |
| 607 | } |
| 608 | |
| 609 | /* |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 610 | * handle any mon messages the standard library doesn't understand. |
| 611 | * return error if we don't either. |
| 612 | */ |
| 613 | static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg) |
| 614 | { |
| 615 | struct ceph_fs_client *fsc = client->private; |
| 616 | int type = le16_to_cpu(msg->hdr.type); |
| 617 | |
| 618 | switch (type) { |
| 619 | case CEPH_MSG_MDS_MAP: |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 620 | ceph_mdsc_handle_mdsmap(fsc->mdsc, msg); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 621 | return 0; |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 622 | case CEPH_MSG_FS_MAP_USER: |
| 623 | ceph_mdsc_handle_fsmap(fsc->mdsc, msg); |
| 624 | return 0; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 625 | default: |
| 626 | return -1; |
| 627 | } |
| 628 | } |
| 629 | |
| 630 | /* |
| 631 | * create a new fs client |
Ilya Dryomov | 8aaff15 | 2018-08-24 15:32:43 +0200 | [diff] [blame] | 632 | * |
| 633 | * Success or not, this function consumes @fsopt and @opt. |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 634 | */ |
H Hartley Sweeten | 0c6d4b4e2 | 2011-09-23 11:53:30 -0700 | [diff] [blame] | 635 | static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt, |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 636 | struct ceph_options *opt) |
| 637 | { |
| 638 | struct ceph_fs_client *fsc; |
Ilya Dryomov | 8aaff15 | 2018-08-24 15:32:43 +0200 | [diff] [blame] | 639 | int err; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 640 | |
| 641 | fsc = kzalloc(sizeof(*fsc), GFP_KERNEL); |
Ilya Dryomov | 8aaff15 | 2018-08-24 15:32:43 +0200 | [diff] [blame] | 642 | if (!fsc) { |
| 643 | err = -ENOMEM; |
| 644 | goto fail; |
| 645 | } |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 646 | |
Ilya Dryomov | 74da4a0f | 2017-03-03 18:16:07 +0100 | [diff] [blame] | 647 | fsc->client = ceph_create_client(opt, fsc); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 648 | if (IS_ERR(fsc->client)) { |
| 649 | err = PTR_ERR(fsc->client); |
| 650 | goto fail; |
| 651 | } |
Ilya Dryomov | 8aaff15 | 2018-08-24 15:32:43 +0200 | [diff] [blame] | 652 | opt = NULL; /* fsc->client now owns this */ |
Ilya Dryomov | c843d13 | 2018-05-30 16:29:14 +0200 | [diff] [blame] | 653 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 654 | fsc->client->extra_mon_dispatch = extra_mon_dispatch; |
Dongsheng Yang | 02b2f54 | 2018-12-18 04:31:48 -0500 | [diff] [blame] | 655 | ceph_set_opt(fsc->client, ABORT_ON_FULL); |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 656 | |
Markus Elfring | d37b1d9 | 2017-08-20 20:22:02 +0200 | [diff] [blame] | 657 | if (!fsopt->mds_namespace) { |
Yan, Zheng | 430afba | 2016-07-08 11:25:38 +0800 | [diff] [blame] | 658 | ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP, |
| 659 | 0, true); |
| 660 | } else { |
| 661 | ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP, |
| 662 | 0, false); |
| 663 | } |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 664 | |
| 665 | fsc->mount_options = fsopt; |
| 666 | |
| 667 | fsc->sb = NULL; |
| 668 | fsc->mount_state = CEPH_MOUNT_MOUNTING; |
Yan, Zheng | 81f148a | 2019-07-25 20:16:46 +0800 | [diff] [blame] | 669 | fsc->filp_gen = 1; |
Luis Henriques | 78beb0f | 2020-01-08 10:03:53 +0000 | [diff] [blame] | 670 | fsc->have_copy_from2 = true; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 671 | |
| 672 | atomic_long_set(&fsc->writeback_count, 0); |
| 673 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 674 | err = -ENOMEM; |
Tejun Heo | 01e6acc | 2011-01-03 14:49:45 +0100 | [diff] [blame] | 675 | /* |
| 676 | * The number of concurrent works can be high but they don't need |
| 677 | * to be processed in parallel, limit concurrency. |
| 678 | */ |
Yan, Zheng | 1cf89a8 | 2019-05-18 11:18:44 +0800 | [diff] [blame] | 679 | fsc->inode_wq = alloc_workqueue("ceph-inode", WQ_UNBOUND, 0); |
| 680 | if (!fsc->inode_wq) |
Jan Kara | 09dc9fc | 2017-04-12 12:24:33 +0200 | [diff] [blame] | 681 | goto fail_client; |
Yan, Zheng | e3ec8d6 | 2019-01-14 17:21:19 +0800 | [diff] [blame] | 682 | fsc->cap_wq = alloc_workqueue("ceph-cap", 0, 1); |
| 683 | if (!fsc->cap_wq) |
Yan, Zheng | 1cf89a8 | 2019-05-18 11:18:44 +0800 | [diff] [blame] | 684 | goto fail_inode_wq; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 685 | |
Xiubo Li | 18f473b | 2020-07-16 10:05:57 -0400 | [diff] [blame] | 686 | spin_lock(&ceph_fsc_lock); |
| 687 | list_add_tail(&fsc->metric_wakeup, &ceph_fsc_list); |
| 688 | spin_unlock(&ceph_fsc_lock); |
| 689 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 690 | return fsc; |
| 691 | |
Yan, Zheng | 1cf89a8 | 2019-05-18 11:18:44 +0800 | [diff] [blame] | 692 | fail_inode_wq: |
| 693 | destroy_workqueue(fsc->inode_wq); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 694 | fail_client: |
| 695 | ceph_destroy_client(fsc->client); |
| 696 | fail: |
| 697 | kfree(fsc); |
Ilya Dryomov | 8aaff15 | 2018-08-24 15:32:43 +0200 | [diff] [blame] | 698 | if (opt) |
| 699 | ceph_destroy_options(opt); |
| 700 | destroy_mount_options(fsopt); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 701 | return ERR_PTR(err); |
| 702 | } |
| 703 | |
Yan, Zheng | a57d906 | 2018-05-18 16:05:51 +0800 | [diff] [blame] | 704 | static void flush_fs_workqueues(struct ceph_fs_client *fsc) |
| 705 | { |
Yan, Zheng | 1cf89a8 | 2019-05-18 11:18:44 +0800 | [diff] [blame] | 706 | flush_workqueue(fsc->inode_wq); |
Yan, Zheng | e3ec8d6 | 2019-01-14 17:21:19 +0800 | [diff] [blame] | 707 | flush_workqueue(fsc->cap_wq); |
Yan, Zheng | a57d906 | 2018-05-18 16:05:51 +0800 | [diff] [blame] | 708 | } |
| 709 | |
H Hartley Sweeten | 0c6d4b4e2 | 2011-09-23 11:53:30 -0700 | [diff] [blame] | 710 | static void destroy_fs_client(struct ceph_fs_client *fsc) |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 711 | { |
| 712 | dout("destroy_fs_client %p\n", fsc); |
| 713 | |
Xiubo Li | 18f473b | 2020-07-16 10:05:57 -0400 | [diff] [blame] | 714 | spin_lock(&ceph_fsc_lock); |
| 715 | list_del(&fsc->metric_wakeup); |
| 716 | spin_unlock(&ceph_fsc_lock); |
| 717 | |
Jeff Layton | 3ee5a70 | 2019-09-12 08:07:56 -0400 | [diff] [blame] | 718 | ceph_mdsc_destroy(fsc); |
Yan, Zheng | 1cf89a8 | 2019-05-18 11:18:44 +0800 | [diff] [blame] | 719 | destroy_workqueue(fsc->inode_wq); |
Yan, Zheng | e3ec8d6 | 2019-01-14 17:21:19 +0800 | [diff] [blame] | 720 | destroy_workqueue(fsc->cap_wq); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 721 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 722 | destroy_mount_options(fsc->mount_options); |
| 723 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 724 | ceph_destroy_client(fsc->client); |
| 725 | |
| 726 | kfree(fsc); |
| 727 | dout("destroy_fs_client %p done\n", fsc); |
| 728 | } |
| 729 | |
| 730 | /* |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 731 | * caches |
| 732 | */ |
| 733 | struct kmem_cache *ceph_inode_cachep; |
| 734 | struct kmem_cache *ceph_cap_cachep; |
Yan, Zheng | f66fd9f | 2015-06-10 17:26:13 +0800 | [diff] [blame] | 735 | struct kmem_cache *ceph_cap_flush_cachep; |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 736 | struct kmem_cache *ceph_dentry_cachep; |
| 737 | struct kmem_cache *ceph_file_cachep; |
Chengguang Xu | bb48bd4 | 2018-03-13 10:42:44 +0800 | [diff] [blame] | 738 | struct kmem_cache *ceph_dir_file_cachep; |
Jeff Layton | 058daab | 2020-02-17 18:38:37 -0500 | [diff] [blame] | 739 | struct kmem_cache *ceph_mds_request_cachep; |
Jeff Layton | a0102bd | 2020-07-30 11:03:55 -0400 | [diff] [blame] | 740 | mempool_t *ceph_wb_pagevec_pool; |
Sage Weil | 6e19a16 | 2010-04-29 16:38:32 -0700 | [diff] [blame] | 741 | |
| 742 | static void ceph_inode_init_once(void *foo) |
| 743 | { |
| 744 | struct ceph_inode_info *ci = foo; |
| 745 | inode_init_once(&ci->vfs_inode); |
| 746 | } |
| 747 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 748 | static int __init init_caches(void) |
| 749 | { |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 750 | int error = -ENOMEM; |
| 751 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 752 | ceph_inode_cachep = kmem_cache_create("ceph_inode_info", |
| 753 | sizeof(struct ceph_inode_info), |
| 754 | __alignof__(struct ceph_inode_info), |
Vladimir Davydov | 5d09705 | 2016-01-14 15:18:21 -0800 | [diff] [blame] | 755 | SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD| |
| 756 | SLAB_ACCOUNT, ceph_inode_init_once); |
Markus Elfring | d37b1d9 | 2017-08-20 20:22:02 +0200 | [diff] [blame] | 757 | if (!ceph_inode_cachep) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 758 | return -ENOMEM; |
| 759 | |
Chengguang Xu | bc4b5ad | 2018-02-27 13:49:44 +0800 | [diff] [blame] | 760 | ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD); |
Markus Elfring | d37b1d9 | 2017-08-20 20:22:02 +0200 | [diff] [blame] | 761 | if (!ceph_cap_cachep) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 762 | goto bad_cap; |
Yan, Zheng | f66fd9f | 2015-06-10 17:26:13 +0800 | [diff] [blame] | 763 | ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush, |
| 764 | SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD); |
Markus Elfring | d37b1d9 | 2017-08-20 20:22:02 +0200 | [diff] [blame] | 765 | if (!ceph_cap_flush_cachep) |
Yan, Zheng | f66fd9f | 2015-06-10 17:26:13 +0800 | [diff] [blame] | 766 | goto bad_cap_flush; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 767 | |
| 768 | ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info, |
| 769 | SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD); |
Markus Elfring | d37b1d9 | 2017-08-20 20:22:02 +0200 | [diff] [blame] | 770 | if (!ceph_dentry_cachep) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 771 | goto bad_dentry; |
| 772 | |
Nikolay Borisov | 6b1a9a6 | 2016-07-25 20:12:13 +0300 | [diff] [blame] | 773 | ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD); |
Markus Elfring | d37b1d9 | 2017-08-20 20:22:02 +0200 | [diff] [blame] | 774 | if (!ceph_file_cachep) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 775 | goto bad_file; |
| 776 | |
Chengguang Xu | bb48bd4 | 2018-03-13 10:42:44 +0800 | [diff] [blame] | 777 | ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, SLAB_MEM_SPREAD); |
| 778 | if (!ceph_dir_file_cachep) |
| 779 | goto bad_dir_file; |
| 780 | |
Jeff Layton | 058daab | 2020-02-17 18:38:37 -0500 | [diff] [blame] | 781 | ceph_mds_request_cachep = KMEM_CACHE(ceph_mds_request, SLAB_MEM_SPREAD); |
| 782 | if (!ceph_mds_request_cachep) |
| 783 | goto bad_mds_req; |
| 784 | |
Jeff Layton | a0102bd | 2020-07-30 11:03:55 -0400 | [diff] [blame] | 785 | ceph_wb_pagevec_pool = mempool_create_kmalloc_pool(10, CEPH_MAX_WRITE_SIZE >> PAGE_SHIFT); |
| 786 | if (!ceph_wb_pagevec_pool) |
| 787 | goto bad_pagevec_pool; |
| 788 | |
Chengguang Xu | 1c78924 | 2018-03-01 14:24:51 +0800 | [diff] [blame] | 789 | error = ceph_fscache_register(); |
| 790 | if (error) |
| 791 | goto bad_fscache; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 792 | |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 793 | return 0; |
Chengguang Xu | 1c78924 | 2018-03-01 14:24:51 +0800 | [diff] [blame] | 794 | |
| 795 | bad_fscache: |
Jeff Layton | 058daab | 2020-02-17 18:38:37 -0500 | [diff] [blame] | 796 | kmem_cache_destroy(ceph_mds_request_cachep); |
Jeff Layton | a0102bd | 2020-07-30 11:03:55 -0400 | [diff] [blame] | 797 | bad_pagevec_pool: |
| 798 | mempool_destroy(ceph_wb_pagevec_pool); |
Jeff Layton | 058daab | 2020-02-17 18:38:37 -0500 | [diff] [blame] | 799 | bad_mds_req: |
Chengguang Xu | bb48bd4 | 2018-03-13 10:42:44 +0800 | [diff] [blame] | 800 | kmem_cache_destroy(ceph_dir_file_cachep); |
| 801 | bad_dir_file: |
Chengguang Xu | 1c78924 | 2018-03-01 14:24:51 +0800 | [diff] [blame] | 802 | kmem_cache_destroy(ceph_file_cachep); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 803 | bad_file: |
| 804 | kmem_cache_destroy(ceph_dentry_cachep); |
| 805 | bad_dentry: |
Yan, Zheng | f66fd9f | 2015-06-10 17:26:13 +0800 | [diff] [blame] | 806 | kmem_cache_destroy(ceph_cap_flush_cachep); |
| 807 | bad_cap_flush: |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 808 | kmem_cache_destroy(ceph_cap_cachep); |
| 809 | bad_cap: |
| 810 | kmem_cache_destroy(ceph_inode_cachep); |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 811 | return error; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 812 | } |
| 813 | |
| 814 | static void destroy_caches(void) |
| 815 | { |
Kirill A. Shutemov | 8c0a853 | 2012-09-26 11:33:07 +1000 | [diff] [blame] | 816 | /* |
| 817 | * Make sure all delayed rcu free inodes are flushed before we |
| 818 | * destroy cache. |
| 819 | */ |
| 820 | rcu_barrier(); |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 821 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 822 | kmem_cache_destroy(ceph_inode_cachep); |
| 823 | kmem_cache_destroy(ceph_cap_cachep); |
Yan, Zheng | f66fd9f | 2015-06-10 17:26:13 +0800 | [diff] [blame] | 824 | kmem_cache_destroy(ceph_cap_flush_cachep); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 825 | kmem_cache_destroy(ceph_dentry_cachep); |
| 826 | kmem_cache_destroy(ceph_file_cachep); |
Chengguang Xu | bb48bd4 | 2018-03-13 10:42:44 +0800 | [diff] [blame] | 827 | kmem_cache_destroy(ceph_dir_file_cachep); |
Jeff Layton | 058daab | 2020-02-17 18:38:37 -0500 | [diff] [blame] | 828 | kmem_cache_destroy(ceph_mds_request_cachep); |
Jeff Layton | a0102bd | 2020-07-30 11:03:55 -0400 | [diff] [blame] | 829 | mempool_destroy(ceph_wb_pagevec_pool); |
Milosz Tanski | 99ccbd2 | 2013-08-21 17:29:54 -0400 | [diff] [blame] | 830 | |
| 831 | ceph_fscache_unregister(); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Jeff Layton | 50c9132 | 2020-09-25 07:55:39 -0400 | [diff] [blame] | 834 | static void __ceph_umount_begin(struct ceph_fs_client *fsc) |
| 835 | { |
| 836 | ceph_osdc_abort_requests(&fsc->client->osdc, -EIO); |
| 837 | ceph_mdsc_force_umount(fsc->mdsc); |
| 838 | fsc->filp_gen++; // invalidate open files |
| 839 | } |
| 840 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 841 | /* |
Randy Dunlap | f1f565a | 2020-07-17 16:36:04 -0700 | [diff] [blame] | 842 | * ceph_umount_begin - initiate forced umount. Tear down the |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 843 | * mount, skipping steps that may hang while waiting for server(s). |
| 844 | */ |
| 845 | static void ceph_umount_begin(struct super_block *sb) |
| 846 | { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 847 | struct ceph_fs_client *fsc = ceph_sb_to_client(sb); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 848 | |
| 849 | dout("ceph_umount_begin - starting forced umount\n"); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 850 | if (!fsc) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 851 | return; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 852 | fsc->mount_state = CEPH_MOUNT_SHUTDOWN; |
Jeff Layton | 50c9132 | 2020-09-25 07:55:39 -0400 | [diff] [blame] | 853 | __ceph_umount_begin(fsc); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 854 | } |
| 855 | |
| 856 | static const struct super_operations ceph_super_ops = { |
| 857 | .alloc_inode = ceph_alloc_inode, |
Al Viro | cfa6d41 | 2019-04-10 15:18:50 -0400 | [diff] [blame] | 858 | .free_inode = ceph_free_inode, |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 859 | .write_inode = ceph_write_inode, |
Luis Henriques | 52dd0f1 | 2019-07-05 17:14:56 +0100 | [diff] [blame] | 860 | .drop_inode = generic_delete_inode, |
Yan, Zheng | 87bc5b8 | 2019-06-02 09:45:38 +0800 | [diff] [blame] | 861 | .evict_inode = ceph_evict_inode, |
Sage Weil | 2d9c98a | 2010-07-30 09:38:13 -0700 | [diff] [blame] | 862 | .sync_fs = ceph_sync_fs, |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 863 | .put_super = ceph_put_super, |
| 864 | .show_options = ceph_show_options, |
| 865 | .statfs = ceph_statfs, |
| 866 | .umount_begin = ceph_umount_begin, |
| 867 | }; |
| 868 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 869 | /* |
| 870 | * Bootstrap mount by opening the root directory. Note the mount |
| 871 | * @started time from caller, and time out if this takes too long. |
| 872 | */ |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 873 | static struct dentry *open_root_dentry(struct ceph_fs_client *fsc, |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 874 | const char *path, |
| 875 | unsigned long started) |
| 876 | { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 877 | struct ceph_mds_client *mdsc = fsc->mdsc; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 878 | struct ceph_mds_request *req = NULL; |
| 879 | int err; |
| 880 | struct dentry *root; |
| 881 | |
| 882 | /* open dir */ |
| 883 | dout("open_root_inode opening '%s'\n", path); |
| 884 | req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS); |
| 885 | if (IS_ERR(req)) |
Julia Lawall | 7e34bc5 | 2010-05-22 12:01:14 +0200 | [diff] [blame] | 886 | return ERR_CAST(req); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 887 | req->r_path1 = kstrdup(path, GFP_NOFS); |
Sanidhya Kashyap | a149bb9 | 2015-03-21 12:54:58 -0400 | [diff] [blame] | 888 | if (!req->r_path1) { |
| 889 | root = ERR_PTR(-ENOMEM); |
| 890 | goto out; |
| 891 | } |
| 892 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 893 | req->r_ino1.ino = CEPH_INO_ROOT; |
| 894 | req->r_ino1.snap = CEPH_NOSNAP; |
| 895 | req->r_started = started; |
Ilya Dryomov | a319bf5 | 2015-05-15 12:02:17 +0300 | [diff] [blame] | 896 | req->r_timeout = fsc->client->options->mount_timeout; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 897 | req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE); |
| 898 | req->r_num_caps = 2; |
| 899 | err = ceph_mdsc_do_request(mdsc, NULL, req); |
| 900 | if (err == 0) { |
Al Viro | 3c5184e | 2012-01-09 16:34:32 -0500 | [diff] [blame] | 901 | struct inode *inode = req->r_target_inode; |
| 902 | req->r_target_inode = NULL; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 903 | dout("open_root_inode success\n"); |
Yan, Zheng | ce2728a | 2016-09-14 14:53:05 +0800 | [diff] [blame] | 904 | root = d_make_root(inode); |
| 905 | if (!root) { |
| 906 | root = ERR_PTR(-ENOMEM); |
| 907 | goto out; |
Sage Weil | 774ac21 | 2011-11-11 09:48:08 -0800 | [diff] [blame] | 908 | } |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 909 | dout("open_root_inode success, root dentry is %p\n", root); |
| 910 | } else { |
| 911 | root = ERR_PTR(err); |
| 912 | } |
Al Viro | 3c5184e | 2012-01-09 16:34:32 -0500 | [diff] [blame] | 913 | out: |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 914 | ceph_mdsc_put_request(req); |
| 915 | return root; |
| 916 | } |
| 917 | |
| 918 | /* |
| 919 | * mount: join the ceph cluster, and open root directory. |
| 920 | */ |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 921 | static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc, |
| 922 | struct fs_context *fc) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 923 | { |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 924 | int err; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 925 | unsigned long started = jiffies; /* note the start time */ |
| 926 | struct dentry *root; |
| 927 | |
Yan, Zheng | 132ca7e | 2016-03-12 13:20:48 +0800 | [diff] [blame] | 928 | dout("mount start %p\n", fsc); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 929 | mutex_lock(&fsc->client->mount_mutex); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 930 | |
Yan, Zheng | 132ca7e | 2016-03-12 13:20:48 +0800 | [diff] [blame] | 931 | if (!fsc->sb->s_root) { |
Ilya Dryomov | b27a939 | 2020-02-10 22:51:08 +0100 | [diff] [blame] | 932 | const char *path = fsc->mount_options->server_path ? |
| 933 | fsc->mount_options->server_path + 1 : ""; |
| 934 | |
Yan, Zheng | 132ca7e | 2016-03-12 13:20:48 +0800 | [diff] [blame] | 935 | err = __ceph_open_session(fsc->client, started); |
| 936 | if (err < 0) |
| 937 | goto out; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 938 | |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 939 | /* setup fscache */ |
| 940 | if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 941 | err = ceph_fscache_register_fs(fsc, fc); |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 942 | if (err < 0) |
| 943 | goto out; |
| 944 | } |
| 945 | |
Xiubo Li | 4fbc0c7 | 2019-12-20 09:34:04 -0500 | [diff] [blame] | 946 | dout("mount opening path '%s'\n", path); |
Chengguang Xu | 1810673 | 2018-02-09 20:40:59 +0800 | [diff] [blame] | 947 | |
Greg Kroah-Hartman | 1a829ff | 2019-06-12 16:55:38 +0200 | [diff] [blame] | 948 | ceph_fs_debugfs_init(fsc); |
Chengguang Xu | 1810673 | 2018-02-09 20:40:59 +0800 | [diff] [blame] | 949 | |
Yan, Zheng | ce2728a | 2016-09-14 14:53:05 +0800 | [diff] [blame] | 950 | root = open_root_dentry(fsc, path, started); |
Yan, Zheng | 132ca7e | 2016-03-12 13:20:48 +0800 | [diff] [blame] | 951 | if (IS_ERR(root)) { |
| 952 | err = PTR_ERR(root); |
| 953 | goto out; |
| 954 | } |
Yan, Zheng | ce2728a | 2016-09-14 14:53:05 +0800 | [diff] [blame] | 955 | fsc->sb->s_root = dget(root); |
Geert Uytterhoeven | 31ca587 | 2016-10-13 17:15:37 +0200 | [diff] [blame] | 956 | } else { |
| 957 | root = dget(fsc->sb->s_root); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 958 | } |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 959 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 960 | fsc->mount_state = CEPH_MOUNT_MOUNTED; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 961 | dout("mount success\n"); |
Al Viro | a7f9fb2 | 2010-07-26 16:17:55 +0400 | [diff] [blame] | 962 | mutex_unlock(&fsc->client->mount_mutex); |
| 963 | return root; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 964 | |
Yan, Zheng | 132ca7e | 2016-03-12 13:20:48 +0800 | [diff] [blame] | 965 | out: |
| 966 | mutex_unlock(&fsc->client->mount_mutex); |
| 967 | return ERR_PTR(err); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 968 | } |
| 969 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 970 | static int ceph_set_super(struct super_block *s, struct fs_context *fc) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 971 | { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 972 | struct ceph_fs_client *fsc = s->s_fs_info; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 973 | int ret; |
| 974 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 975 | dout("set_super %p\n", s); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 976 | |
Chengguang Xu | 719784b | 2018-07-19 22:15:24 +0800 | [diff] [blame] | 977 | s->s_maxbytes = MAX_LFS_FILESIZE; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 978 | |
Guangliang Zhao | 7221fe4 | 2013-11-11 15:18:03 +0800 | [diff] [blame] | 979 | s->s_xattr = ceph_xattr_handlers; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 980 | fsc->sb = s; |
Chengguang Xu | 719784b | 2018-07-19 22:15:24 +0800 | [diff] [blame] | 981 | fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */ |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 982 | |
| 983 | s->s_op = &ceph_super_ops; |
Al Viro | 18fc8ab | 2016-10-28 21:52:50 -0400 | [diff] [blame] | 984 | s->s_d_op = &ceph_dentry_ops; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 985 | s->s_export_op = &ceph_export_ops; |
| 986 | |
Luis Henriques | 0f7cf80 | 2019-06-27 14:51:22 +0100 | [diff] [blame] | 987 | s->s_time_gran = 1; |
Deepa Dinamani | 028ca4d | 2019-03-21 14:34:38 -0700 | [diff] [blame] | 988 | s->s_time_min = 0; |
| 989 | s->s_time_max = U32_MAX; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 990 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 991 | ret = set_anon_super_fc(s, fc); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 992 | if (ret != 0) |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 993 | fsc->sb = NULL; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 994 | return ret; |
| 995 | } |
| 996 | |
| 997 | /* |
| 998 | * share superblock if same fs AND options |
| 999 | */ |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1000 | static int ceph_compare_super(struct super_block *sb, struct fs_context *fc) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1001 | { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1002 | struct ceph_fs_client *new = fc->s_fs_info; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1003 | struct ceph_mount_options *fsopt = new->mount_options; |
| 1004 | struct ceph_options *opt = new->client->options; |
| 1005 | struct ceph_fs_client *other = ceph_sb_to_client(sb); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1006 | |
| 1007 | dout("ceph_compare_super %p\n", sb); |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1008 | |
| 1009 | if (compare_mount_options(fsopt, opt, other)) { |
| 1010 | dout("monitor(s)/mount options don't match\n"); |
| 1011 | return 0; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1012 | } |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1013 | if ((opt->flags & CEPH_OPT_FSID) && |
| 1014 | ceph_fsid_compare(&opt->fsid, &other->client->fsid)) { |
| 1015 | dout("fsid doesn't match\n"); |
| 1016 | return 0; |
| 1017 | } |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1018 | if (fc->sb_flags != (sb->s_flags & ~SB_BORN)) { |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1019 | dout("flags differ\n"); |
| 1020 | return 0; |
| 1021 | } |
| 1022 | return 1; |
| 1023 | } |
| 1024 | |
| 1025 | /* |
| 1026 | * construct our own bdi so we can control readahead, etc. |
| 1027 | */ |
Jeff Mahoney | 00d5643 | 2010-06-10 11:13:58 -0400 | [diff] [blame] | 1028 | static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0); |
Sage Weil | 31e0cf8 | 2010-05-04 16:39:35 -0700 | [diff] [blame] | 1029 | |
Jan Kara | 09dc9fc | 2017-04-12 12:24:33 +0200 | [diff] [blame] | 1030 | static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1031 | { |
| 1032 | int err; |
| 1033 | |
Jan Kara | 09dc9fc | 2017-04-12 12:24:33 +0200 | [diff] [blame] | 1034 | err = super_setup_bdi_name(sb, "ceph-%ld", |
| 1035 | atomic_long_inc_return(&bdi_seq)); |
| 1036 | if (err) |
| 1037 | return err; |
| 1038 | |
Sage Weil | 83817e3 | 2011-08-04 08:03:44 -0700 | [diff] [blame] | 1039 | /* set ra_pages based on rasize mount option? */ |
Yan, Zheng | 4214fb1 | 2017-07-11 18:49:44 +0800 | [diff] [blame] | 1040 | sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT; |
Yehuda Sadeh | e985222 | 2011-07-22 11:12:28 -0700 | [diff] [blame] | 1041 | |
Yan, Zheng | aa18792 | 2017-07-11 15:56:09 +0800 | [diff] [blame] | 1042 | /* set io_pages based on max osd read size */ |
| 1043 | sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT; |
Andreas Gerstmayr | 7c94ba2 | 2017-01-10 14:17:56 +0100 | [diff] [blame] | 1044 | |
Jan Kara | 09dc9fc | 2017-04-12 12:24:33 +0200 | [diff] [blame] | 1045 | return 0; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1046 | } |
| 1047 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1048 | static int ceph_get_tree(struct fs_context *fc) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1049 | { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1050 | struct ceph_parse_opts_ctx *pctx = fc->fs_private; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1051 | struct super_block *sb; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1052 | struct ceph_fs_client *fsc; |
Al Viro | a7f9fb2 | 2010-07-26 16:17:55 +0400 | [diff] [blame] | 1053 | struct dentry *res; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1054 | int (*compare_super)(struct super_block *, struct fs_context *) = |
| 1055 | ceph_compare_super; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1056 | int err; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1057 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1058 | dout("ceph_get_tree\n"); |
| 1059 | |
| 1060 | if (!fc->source) |
Al Viro | d53d0f7 | 2019-12-21 21:31:52 -0500 | [diff] [blame] | 1061 | return invalfc(fc, "No source"); |
Sage Weil | 45195e4 | 2014-02-16 10:05:29 -0800 | [diff] [blame] | 1062 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1063 | /* create client (which we may/may not use) */ |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1064 | fsc = create_fs_client(pctx->opts, pctx->copts); |
| 1065 | pctx->opts = NULL; |
| 1066 | pctx->copts = NULL; |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1067 | if (IS_ERR(fsc)) { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1068 | err = PTR_ERR(fsc); |
Sage Weil | 6b80518 | 2009-10-27 11:50:50 -0700 | [diff] [blame] | 1069 | goto out_final; |
| 1070 | } |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1071 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1072 | err = ceph_mdsc_init(fsc); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1073 | if (err < 0) |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1074 | goto out; |
| 1075 | |
| 1076 | if (ceph_test_opt(fsc->client, NOSHARE)) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1077 | compare_super = NULL; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1078 | |
| 1079 | fc->s_fs_info = fsc; |
| 1080 | sb = sget_fc(fc, compare_super, ceph_set_super); |
| 1081 | fc->s_fs_info = NULL; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1082 | if (IS_ERR(sb)) { |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1083 | err = PTR_ERR(sb); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1084 | goto out; |
| 1085 | } |
| 1086 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1087 | if (ceph_sb_to_client(sb) != fsc) { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1088 | destroy_fs_client(fsc); |
| 1089 | fsc = ceph_sb_to_client(sb); |
| 1090 | dout("get_sb got existing client %p\n", fsc); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1091 | } else { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1092 | dout("get_sb using new client %p\n", fsc); |
Jan Kara | 09dc9fc | 2017-04-12 12:24:33 +0200 | [diff] [blame] | 1093 | err = ceph_setup_bdi(sb, fsc); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1094 | if (err < 0) |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1095 | goto out_splat; |
| 1096 | } |
| 1097 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1098 | res = ceph_real_mount(fsc, fc); |
| 1099 | if (IS_ERR(res)) { |
| 1100 | err = PTR_ERR(res); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1101 | goto out_splat; |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1102 | } |
Al Viro | a7f9fb2 | 2010-07-26 16:17:55 +0400 | [diff] [blame] | 1103 | dout("root %p inode %p ino %llx.%llx\n", res, |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 1104 | d_inode(res), ceph_vinop(d_inode(res))); |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1105 | fc->root = fsc->sb->s_root; |
| 1106 | return 0; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1107 | |
| 1108 | out_splat: |
Xiubo Li | 9782005 | 2019-12-10 20:29:40 -0500 | [diff] [blame] | 1109 | if (!ceph_mdsmap_is_cluster_available(fsc->mdsc->mdsmap)) { |
| 1110 | pr_info("No mds server is up or the cluster is laggy\n"); |
| 1111 | err = -EHOSTUNREACH; |
| 1112 | } |
| 1113 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1114 | ceph_mdsc_close_sessions(fsc->mdsc); |
Al Viro | 3981f2e | 2010-03-21 19:22:29 -0400 | [diff] [blame] | 1115 | deactivate_locked_super(sb); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1116 | goto out_final; |
| 1117 | |
| 1118 | out: |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1119 | destroy_fs_client(fsc); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1120 | out_final: |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1121 | dout("ceph_get_tree fail %d\n", err); |
| 1122 | return err; |
| 1123 | } |
| 1124 | |
| 1125 | static void ceph_free_fc(struct fs_context *fc) |
| 1126 | { |
| 1127 | struct ceph_parse_opts_ctx *pctx = fc->fs_private; |
| 1128 | |
| 1129 | if (pctx) { |
| 1130 | destroy_mount_options(pctx->opts); |
| 1131 | ceph_destroy_options(pctx->copts); |
| 1132 | kfree(pctx); |
| 1133 | } |
| 1134 | } |
| 1135 | |
| 1136 | static int ceph_reconfigure_fc(struct fs_context *fc) |
| 1137 | { |
Jeff Layton | 2ccb454 | 2019-04-02 15:35:56 -0400 | [diff] [blame] | 1138 | struct ceph_parse_opts_ctx *pctx = fc->fs_private; |
| 1139 | struct ceph_mount_options *fsopt = pctx->opts; |
| 1140 | struct ceph_fs_client *fsc = ceph_sb_to_client(fc->root->d_sb); |
| 1141 | |
| 1142 | if (fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS) |
| 1143 | ceph_set_mount_opt(fsc, ASYNC_DIROPS); |
| 1144 | else |
| 1145 | ceph_clear_mount_opt(fsc, ASYNC_DIROPS); |
| 1146 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1147 | sync_filesystem(fc->root->d_sb); |
| 1148 | return 0; |
| 1149 | } |
| 1150 | |
| 1151 | static const struct fs_context_operations ceph_context_ops = { |
| 1152 | .free = ceph_free_fc, |
| 1153 | .parse_param = ceph_parse_mount_param, |
| 1154 | .get_tree = ceph_get_tree, |
| 1155 | .reconfigure = ceph_reconfigure_fc, |
| 1156 | }; |
| 1157 | |
| 1158 | /* |
| 1159 | * Set up the filesystem mount context. |
| 1160 | */ |
| 1161 | static int ceph_init_fs_context(struct fs_context *fc) |
| 1162 | { |
| 1163 | struct ceph_parse_opts_ctx *pctx; |
| 1164 | struct ceph_mount_options *fsopt; |
| 1165 | |
| 1166 | pctx = kzalloc(sizeof(*pctx), GFP_KERNEL); |
| 1167 | if (!pctx) |
| 1168 | return -ENOMEM; |
| 1169 | |
| 1170 | pctx->copts = ceph_alloc_options(); |
| 1171 | if (!pctx->copts) |
| 1172 | goto nomem; |
| 1173 | |
| 1174 | pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL); |
| 1175 | if (!pctx->opts) |
| 1176 | goto nomem; |
| 1177 | |
| 1178 | fsopt = pctx->opts; |
| 1179 | fsopt->flags = CEPH_MOUNT_OPT_DEFAULT; |
| 1180 | |
| 1181 | fsopt->wsize = CEPH_MAX_WRITE_SIZE; |
| 1182 | fsopt->rsize = CEPH_MAX_READ_SIZE; |
| 1183 | fsopt->rasize = CEPH_RASIZE_DEFAULT; |
| 1184 | fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL); |
| 1185 | if (!fsopt->snapdir_name) |
| 1186 | goto nomem; |
| 1187 | |
| 1188 | fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT; |
| 1189 | fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT; |
| 1190 | fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT; |
| 1191 | fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT; |
| 1192 | fsopt->congestion_kb = default_congestion_kb(); |
| 1193 | |
Xiubo Li | 3b20bc2 | 2020-02-11 01:53:16 -0500 | [diff] [blame] | 1194 | #ifdef CONFIG_CEPH_FS_POSIX_ACL |
| 1195 | fc->sb_flags |= SB_POSIXACL; |
| 1196 | #endif |
| 1197 | |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1198 | fc->fs_private = pctx; |
| 1199 | fc->ops = &ceph_context_ops; |
| 1200 | return 0; |
| 1201 | |
| 1202 | nomem: |
| 1203 | destroy_mount_options(pctx->opts); |
| 1204 | ceph_destroy_options(pctx->copts); |
| 1205 | kfree(pctx); |
| 1206 | return -ENOMEM; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1207 | } |
| 1208 | |
| 1209 | static void ceph_kill_sb(struct super_block *s) |
| 1210 | { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1211 | struct ceph_fs_client *fsc = ceph_sb_to_client(s); |
Christoph Hellwig | e4d2750 | 2015-01-14 10:42:38 +0100 | [diff] [blame] | 1212 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1213 | dout("kill_sb %p\n", s); |
Christoph Hellwig | e4d2750 | 2015-01-14 10:42:38 +0100 | [diff] [blame] | 1214 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1215 | ceph_mdsc_pre_umount(fsc->mdsc); |
Yan, Zheng | a57d906 | 2018-05-18 16:05:51 +0800 | [diff] [blame] | 1216 | flush_fs_workqueues(fsc); |
| 1217 | |
Jeff Layton | 470a5c7 | 2020-09-11 15:19:00 -0400 | [diff] [blame] | 1218 | kill_anon_super(s); |
Yan, Zheng | 62a65f3 | 2017-06-22 16:26:34 +0800 | [diff] [blame] | 1219 | |
| 1220 | fsc->client->extra_mon_dispatch = NULL; |
| 1221 | ceph_fs_debugfs_cleanup(fsc); |
| 1222 | |
Yan, Zheng | 1d8f836 | 2017-06-27 11:57:56 +0800 | [diff] [blame] | 1223 | ceph_fscache_unregister_fs(fsc); |
| 1224 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1225 | destroy_fs_client(fsc); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1226 | } |
| 1227 | |
| 1228 | static struct file_system_type ceph_fs_type = { |
| 1229 | .owner = THIS_MODULE, |
| 1230 | .name = "ceph", |
David Howells | 82995cc | 2019-03-25 16:38:32 +0000 | [diff] [blame] | 1231 | .init_fs_context = ceph_init_fs_context, |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1232 | .kill_sb = ceph_kill_sb, |
| 1233 | .fs_flags = FS_RENAME_DOES_D_MOVE, |
| 1234 | }; |
Eric W. Biederman | 7f78e03 | 2013-03-02 19:39:14 -0800 | [diff] [blame] | 1235 | MODULE_ALIAS_FS("ceph"); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1236 | |
Yan, Zheng | d468e72 | 2019-07-25 20:16:44 +0800 | [diff] [blame] | 1237 | int ceph_force_reconnect(struct super_block *sb) |
| 1238 | { |
| 1239 | struct ceph_fs_client *fsc = ceph_sb_to_client(sb); |
| 1240 | int err = 0; |
| 1241 | |
Jeff Layton | 50c9132 | 2020-09-25 07:55:39 -0400 | [diff] [blame] | 1242 | fsc->mount_state = CEPH_MOUNT_RECOVER; |
| 1243 | __ceph_umount_begin(fsc); |
Yan, Zheng | d468e72 | 2019-07-25 20:16:44 +0800 | [diff] [blame] | 1244 | |
| 1245 | /* Make sure all page caches get invalidated. |
| 1246 | * see remove_session_caps_cb() */ |
| 1247 | flush_workqueue(fsc->inode_wq); |
| 1248 | |
Ilya Dryomov | 0b98acd | 2020-09-14 13:39:19 +0200 | [diff] [blame] | 1249 | /* In case that we were blocklisted. This also reset |
Yan, Zheng | d468e72 | 2019-07-25 20:16:44 +0800 | [diff] [blame] | 1250 | * all mon/osd connections */ |
| 1251 | ceph_reset_client_addr(fsc->client); |
| 1252 | |
| 1253 | ceph_osdc_clear_abort_err(&fsc->client->osdc); |
Yan, Zheng | 131d7eb | 2019-07-25 20:16:47 +0800 | [diff] [blame] | 1254 | |
Ilya Dryomov | 0b98acd | 2020-09-14 13:39:19 +0200 | [diff] [blame] | 1255 | fsc->blocklisted = false; |
Yan, Zheng | d468e72 | 2019-07-25 20:16:44 +0800 | [diff] [blame] | 1256 | fsc->mount_state = CEPH_MOUNT_MOUNTED; |
| 1257 | |
| 1258 | if (sb->s_root) { |
| 1259 | err = __ceph_do_getattr(d_inode(sb->s_root), NULL, |
| 1260 | CEPH_STAT_CAP_INODE, true); |
| 1261 | } |
| 1262 | return err; |
| 1263 | } |
| 1264 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1265 | static int __init init_ceph(void) |
| 1266 | { |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1267 | int ret = init_caches(); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1268 | if (ret) |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1269 | goto out; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1270 | |
Yan, Zheng | eb13e83 | 2014-03-09 23:16:40 +0800 | [diff] [blame] | 1271 | ceph_flock_init(); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1272 | ret = register_filesystem(&ceph_fs_type); |
| 1273 | if (ret) |
David Disseldorp | d0f191d | 2019-04-18 14:15:49 +0200 | [diff] [blame] | 1274 | goto out_caches; |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1275 | |
Yehuda Sadeh | 3d14c5d | 2010-04-06 15:14:15 -0700 | [diff] [blame] | 1276 | pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL); |
| 1277 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1278 | return 0; |
| 1279 | |
David Disseldorp | d0f191d | 2019-04-18 14:15:49 +0200 | [diff] [blame] | 1280 | out_caches: |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1281 | destroy_caches(); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1282 | out: |
| 1283 | return ret; |
| 1284 | } |
| 1285 | |
| 1286 | static void __exit exit_ceph(void) |
| 1287 | { |
| 1288 | dout("exit_ceph\n"); |
| 1289 | unregister_filesystem(&ceph_fs_type); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1290 | destroy_caches(); |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1291 | } |
| 1292 | |
Xiubo Li | 18f473b | 2020-07-16 10:05:57 -0400 | [diff] [blame] | 1293 | static int param_set_metrics(const char *val, const struct kernel_param *kp) |
| 1294 | { |
| 1295 | struct ceph_fs_client *fsc; |
| 1296 | int ret; |
| 1297 | |
| 1298 | ret = param_set_bool(val, kp); |
| 1299 | if (ret) { |
| 1300 | pr_err("Failed to parse sending metrics switch value '%s'\n", |
| 1301 | val); |
| 1302 | return ret; |
| 1303 | } else if (!disable_send_metrics) { |
| 1304 | // wake up all the mds clients |
| 1305 | spin_lock(&ceph_fsc_lock); |
| 1306 | list_for_each_entry(fsc, &ceph_fsc_list, metric_wakeup) { |
| 1307 | metric_schedule_delayed(&fsc->mdsc->metric); |
| 1308 | } |
| 1309 | spin_unlock(&ceph_fsc_lock); |
| 1310 | } |
| 1311 | |
| 1312 | return 0; |
| 1313 | } |
| 1314 | |
| 1315 | static const struct kernel_param_ops param_ops_metrics = { |
| 1316 | .set = param_set_metrics, |
| 1317 | .get = param_get_bool, |
| 1318 | }; |
| 1319 | |
| 1320 | bool disable_send_metrics = false; |
| 1321 | module_param_cb(disable_send_metrics, ¶m_ops_metrics, &disable_send_metrics, 0644); |
| 1322 | MODULE_PARM_DESC(disable_send_metrics, "Enable sending perf metrics to ceph cluster (default: on)"); |
| 1323 | |
Sage Weil | 16725b9 | 2009-10-06 11:31:07 -0700 | [diff] [blame] | 1324 | module_init(init_ceph); |
| 1325 | module_exit(exit_ceph); |
| 1326 | |
| 1327 | MODULE_AUTHOR("Sage Weil <sage@newdream.net>"); |
| 1328 | MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>"); |
| 1329 | MODULE_AUTHOR("Patience Warnick <patience@newdream.net>"); |
| 1330 | MODULE_DESCRIPTION("Ceph filesystem for Linux"); |
| 1331 | MODULE_LICENSE("GPL"); |