blob: 9b1b7f4cfdd4b10442412e8cfb5cc4ecfb6130c6 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Sage Weil16725b92009-10-06 11:31:07 -07002
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07003#include <linux/ceph/ceph_debug.h>
Sage Weil16725b92009-10-06 11:31:07 -07004
5#include <linux/backing-dev.h>
Sage Weilc309f0a2010-06-30 21:34:01 -07006#include <linux/ctype.h>
Sage Weil16725b92009-10-06 11:31:07 -07007#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 Howells82995cc2019-03-25 16:38:32 +000012#include <linux/fs_context.h>
13#include <linux/fs_parser.h>
Sage Weil16725b92009-10-06 11:31:07 -070014#include <linux/sched.h>
15#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Sage Weil16725b92009-10-06 11:31:07 -070017#include <linux/statfs.h>
18#include <linux/string.h>
Sage Weil16725b92009-10-06 11:31:07 -070019
Sage Weil16725b92009-10-06 11:31:07 -070020#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070021#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040022#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070023
Sage Weil1fe60e52012-07-30 16:23:22 -070024#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070025#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 Weil16725b92009-10-06 11:31:07 -070029
Xiubo Li18f473b2020-07-16 10:05:57 -040030static DEFINE_SPINLOCK(ceph_fsc_lock);
31static LIST_HEAD(ceph_fsc_list);
32
Sage Weil16725b92009-10-06 11:31:07 -070033/*
34 * Ceph superblock operations
35 *
36 * Handle the basics of mounting, unmounting.
37 */
38
Sage Weil16725b92009-10-06 11:31:07 -070039/*
40 * super ops
41 */
42static void ceph_put_super(struct super_block *s)
43{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070044 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -070045
46 dout("put_super\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070047 ceph_mdsc_close_sessions(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -070048}
49
50static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
51{
David Howells2b0143b2015-03-17 22:25:59 +000052 struct ceph_fs_client *fsc = ceph_inode_to_client(d_inode(dentry));
Luis Henriques73fb0942018-05-28 18:37:40 +010053 struct ceph_mon_client *monc = &fsc->client->monc;
Sage Weil16725b92009-10-06 11:31:07 -070054 struct ceph_statfs st;
55 u64 fsid;
56 int err;
Douglas Fuller06d74372017-08-16 10:19:27 -040057 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 Weil16725b92009-10-06 11:31:07 -070064
65 dout("statfs\n");
Luis Henriques73fb0942018-05-28 18:37:40 +010066 err = ceph_monc_do_statfs(monc, data_pool, &st);
Sage Weil16725b92009-10-06 11:31:07 -070067 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 Weil92a49fb2013-02-22 15:31:00 -080076 *
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 Weil16725b92009-10-06 11:31:07 -070081 */
82 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080083 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Luis Henriques9122eed2018-01-31 10:53:13 +000084
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 Weil16725b92009-10-06 11:31:07 -070096
97 buf->f_files = le64_to_cpu(st.num_objects);
98 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070099 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -0700100
Jeff Layton080a3302017-10-23 10:58:40 -0400101 /* Must convert the fsid, for consistent values across arches */
Luis Henriques73fb0942018-05-28 18:37:40 +0100102 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 Viro6d1349c2020-09-18 16:45:50 -0400107 buf->f_fsid = u64_to_fsid(fsid);
Sage Weil16725b92009-10-06 11:31:07 -0700108
109 return 0;
110}
111
Sage Weil2d9c98a2010-07-30 09:38:13 -0700112static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700113{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700114 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700115
116 if (!wait) {
117 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700118 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700119 dout("sync_fs (non-blocking) done\n");
120 return 0;
121 }
122
123 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700124 ceph_osdc_sync(&fsc->client->osdc);
125 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700126 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700127 return 0;
128}
129
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700130/*
131 * mount options
132 */
133enum {
134 Opt_wsize,
135 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700136 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700137 Opt_caps_wanted_delay_min,
138 Opt_caps_wanted_delay_max,
Yan, Zhengfe330322019-02-01 14:57:15 +0800139 Opt_caps_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700140 Opt_readdir_max_entries,
141 Opt_readdir_max_bytes,
142 Opt_congestion_kb,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700143 /* int args above */
144 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800145 Opt_mds_namespace,
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800146 Opt_recover_session,
David Howells82995cc2019-03-25 16:38:32 +0000147 Opt_source,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700148 /* string args above */
149 Opt_dirstat,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700150 Opt_rbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600151 Opt_asyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800152 Opt_dcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800153 Opt_ino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400154 Opt_fscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800155 Opt_poolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800156 Opt_require_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800157 Opt_acl,
Luis Henriques9122eed2018-01-31 10:53:13 +0000158 Opt_quotadf,
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100159 Opt_copyfrom,
Jeff Layton2ccb4542019-04-02 15:35:56 -0400160 Opt_wsync,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700161};
162
David Howells82995cc2019-03-25 16:38:32 +0000163enum ceph_recover_session_mode {
164 ceph_recover_session_no,
165 ceph_recover_session_clean
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700166};
167
Al Viro5eede622019-12-16 13:33:32 -0500168static const struct constant_table ceph_param_recover[] = {
Al Viro2710c957a2019-09-06 22:12:08 -0400169 { "no", ceph_recover_session_no },
170 { "clean", ceph_recover_session_clean },
David Howells82995cc2019-03-25 16:38:32 +0000171 {}
172};
173
Al Virod7167b12019-09-07 07:23:15 -0400174static const struct fs_parameter_spec ceph_mount_parameters[] = {
David Howells82995cc2019-03-25 16:38:32 +0000175 fsparam_flag_no ("acl", Opt_acl),
176 fsparam_flag_no ("asyncreaddir", Opt_asyncreaddir),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400177 fsparam_s32 ("caps_max", Opt_caps_max),
David Howells82995cc2019-03-25 16:38:32 +0000178 fsparam_u32 ("caps_wanted_delay_max", Opt_caps_wanted_delay_max),
179 fsparam_u32 ("caps_wanted_delay_min", Opt_caps_wanted_delay_min),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400180 fsparam_u32 ("write_congestion_kb", Opt_congestion_kb),
David Howells82995cc2019-03-25 16:38:32 +0000181 fsparam_flag_no ("copyfrom", Opt_copyfrom),
182 fsparam_flag_no ("dcache", Opt_dcache),
183 fsparam_flag_no ("dirstat", Opt_dirstat),
Al Viro48ce73b2019-12-17 20:03:59 -0500184 fsparam_flag_no ("fsc", Opt_fscache), // fsc|nofsc
185 fsparam_string ("fsc", Opt_fscache), // fsc=...
David Howells82995cc2019-03-25 16:38:32 +0000186 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 Laytonad8c28a2019-09-09 15:58:55 -0400192 fsparam_u32 ("readdir_max_bytes", Opt_readdir_max_bytes),
193 fsparam_u32 ("readdir_max_entries", Opt_readdir_max_entries),
Al Viro2710c957a2019-09-06 22:12:08 -0400194 fsparam_enum ("recover_session", Opt_recover_session, ceph_param_recover),
David Howells82995cc2019-03-25 16:38:32 +0000195 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 Layton2ccb4542019-04-02 15:35:56 -0400200 fsparam_flag_no ("wsync", Opt_wsync),
David Howells82995cc2019-03-25 16:38:32 +0000201 {}
202};
203
David Howells82995cc2019-03-25 16:38:32 +0000204struct ceph_parse_opts_ctx {
205 struct ceph_options *copts;
206 struct ceph_mount_options *opts;
207};
208
209/*
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100210 * 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 */
215static 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 Howells82995cc2019-03-25 16:38:32 +0000230 * Parse the source parameter. Distinguish the server list from the path.
David Howells82995cc2019-03-25 16:38:32 +0000231 *
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 */
238static int ceph_parse_source(struct fs_parameter *param, struct fs_context *fc)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800239{
David Howells82995cc2019-03-25 16:38:32 +0000240 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 Sadeh2baba252009-12-18 13:51:57 -0800244
David Howells82995cc2019-03-25 16:38:32 +0000245 dout("%s '%s'\n", __func__, dev_name);
246 if (!dev_name || !*dev_name)
Al Virod53d0f72019-12-21 21:31:52 -0500247 return invalfc(fc, "Empty source");
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800248
David Howells82995cc2019-03-25 16:38:32 +0000249 dev_name_end = strchr(dev_name, '/');
250 if (dev_name_end) {
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500251 /*
252 * The server_path will include the whole chars from userland
253 * including the leading '/'.
254 */
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100255 kfree(fsopt->server_path);
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500256 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
257 if (!fsopt->server_path)
258 return -ENOMEM;
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100259
260 canonicalize_path(fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700261 } else {
David Howells82995cc2019-03-25 16:38:32 +0000262 dev_name_end = dev_name + strlen(dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700263 }
264
David Howells82995cc2019-03-25 16:38:32 +0000265 dev_name_end--; /* back up to ':' separator */
266 if (dev_name_end < dev_name || *dev_name_end != ':')
Al Virod53d0f72019-12-21 21:31:52 -0500267 return invalfc(fc, "No path or : separator in source");
David Howells82995cc2019-03-25 16:38:32 +0000268
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 Virocc3c0b52019-12-21 00:16:49 -0500274 pctx->copts, fc->log.log);
David Howells82995cc2019-03-25 16:38:32 +0000275 if (ret)
276 return ret;
277
278 fc->source = param->string;
279 param->string = NULL;
280 return 0;
281}
282
283static 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 Virocc3c0b52019-12-21 00:16:49 -0500292 ret = ceph_parse_param(param, pctx->copts, fc->log.log);
David Howells82995cc2019-03-25 16:38:32 +0000293 if (ret != -ENOPARAM)
294 return ret;
295
Al Virod7167b12019-09-07 07:23:15 -0400296 token = fs_parse(fc, ceph_mount_parameters, param, &result);
David Howells82995cc2019-03-25 16:38:32 +0000297 dout("%s fs_parse '%s' token %d\n", __func__, param->key, token);
298 if (token < 0)
299 return token;
300
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700301 switch (token) {
302 case Opt_snapdirname:
303 kfree(fsopt->snapdir_name);
David Howells82995cc2019-03-25 16:38:32 +0000304 fsopt->snapdir_name = param->string;
305 param->string = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700306 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800307 case Opt_mds_namespace:
Chengguang Xu937441f2018-02-06 08:25:55 +0800308 kfree(fsopt->mds_namespace);
David Howells82995cc2019-03-25 16:38:32 +0000309 fsopt->mds_namespace = param->string;
310 param->string = NULL;
Yan, Zheng235a0982016-03-30 17:18:34 +0800311 break;
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800312 case Opt_recover_session:
David Howells82995cc2019-03-25 16:38:32 +0000313 mode = result.uint_32;
314 if (mode == ceph_recover_session_no)
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800315 fsopt->flags &= ~CEPH_MOUNT_OPT_CLEANRECOVER;
David Howells82995cc2019-03-25 16:38:32 +0000316 else if (mode == ceph_recover_session_clean)
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800317 fsopt->flags |= CEPH_MOUNT_OPT_CLEANRECOVER;
David Howells82995cc2019-03-25 16:38:32 +0000318 else
319 BUG();
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800320 break;
David Howells82995cc2019-03-25 16:38:32 +0000321 case Opt_source:
322 if (fc->source)
Al Virod53d0f72019-12-21 21:31:52 -0500323 return invalfc(fc, "Multiple sources specified");
David Howells82995cc2019-03-25 16:38:32 +0000324 return ceph_parse_source(param, fc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700325 case Opt_wsize:
David Howells82995cc2019-03-25 16:38:32 +0000326 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 Sadeh3d14c5d2010-04-06 15:14:15 -0700330 break;
331 case Opt_rsize:
David Howells82995cc2019-03-25 16:38:32 +0000332 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 Sadeh3d14c5d2010-04-06 15:14:15 -0700336 break;
Sage Weil83817e32011-08-04 08:03:44 -0700337 case Opt_rasize:
David Howells82995cc2019-03-25 16:38:32 +0000338 fsopt->rasize = ALIGN(result.uint_32, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700339 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700340 case Opt_caps_wanted_delay_min:
David Howells82995cc2019-03-25 16:38:32 +0000341 if (result.uint_32 < 1)
342 goto out_of_range;
343 fsopt->caps_wanted_delay_min = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700344 break;
345 case Opt_caps_wanted_delay_max:
David Howells82995cc2019-03-25 16:38:32 +0000346 if (result.uint_32 < 1)
347 goto out_of_range;
348 fsopt->caps_wanted_delay_max = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700349 break;
Yan, Zhengfe330322019-02-01 14:57:15 +0800350 case Opt_caps_max:
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400351 if (result.int_32 < 0)
352 goto out_of_range;
353 fsopt->caps_max = result.int_32;
Yan, Zhengfe330322019-02-01 14:57:15 +0800354 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700355 case Opt_readdir_max_entries:
David Howells82995cc2019-03-25 16:38:32 +0000356 if (result.uint_32 < 1)
357 goto out_of_range;
358 fsopt->max_readdir = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700359 break;
360 case Opt_readdir_max_bytes:
David Howells82995cc2019-03-25 16:38:32 +0000361 if (result.uint_32 < PAGE_SIZE && result.uint_32 != 0)
362 goto out_of_range;
363 fsopt->max_readdir_bytes = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700364 break;
365 case Opt_congestion_kb:
David Howells82995cc2019-03-25 16:38:32 +0000366 if (result.uint_32 < 1024) /* at least 1M */
367 goto out_of_range;
368 fsopt->congestion_kb = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700369 break;
370 case Opt_dirstat:
David Howells82995cc2019-03-25 16:38:32 +0000371 if (!result.negated)
372 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
373 else
374 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700375 break;
376 case Opt_rbytes:
David Howells82995cc2019-03-25 16:38:32 +0000377 if (!result.negated)
378 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
379 else
380 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700381 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600382 case Opt_asyncreaddir:
David Howells82995cc2019-03-25 16:38:32 +0000383 if (!result.negated)
384 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
385 else
386 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700387 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800388 case Opt_dcache:
David Howells82995cc2019-03-25 16:38:32 +0000389 if (!result.negated)
390 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
391 else
392 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
Sage Weila40dc6c2012-01-10 09:12:55 -0800393 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800394 case Opt_ino32:
David Howells82995cc2019-03-25 16:38:32 +0000395 if (!result.negated)
396 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
397 else
398 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800399 break;
David Howells82995cc2019-03-25 16:38:32 +0000400
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400401 case Opt_fscache:
Jeff Laytonff29fde2019-11-07 09:39:32 -0500402#ifdef CONFIG_CEPH_FSCACHE
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800403 kfree(fsopt->fscache_uniq);
404 fsopt->fscache_uniq = NULL;
David Howells82995cc2019-03-25 16:38:32 +0000405 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 Tanski99ccbd22013-08-21 17:29:54 -0400412 break;
Jeff Laytonff29fde2019-11-07 09:39:32 -0500413#else
Al Virod53d0f72019-12-21 21:31:52 -0500414 return invalfc(fc, "fscache support is disabled");
Jeff Laytonff29fde2019-11-07 09:39:32 -0500415#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800416 case Opt_poolperm:
David Howells82995cc2019-03-25 16:38:32 +0000417 if (!result.negated)
418 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
419 else
420 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
Yan, Zheng10183a62015-04-27 15:33:28 +0800421 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800422 case Opt_require_active_mds:
David Howells82995cc2019-03-25 16:38:32 +0000423 if (!result.negated)
424 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
425 else
426 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800427 break;
Luis Henriques9122eed2018-01-31 10:53:13 +0000428 case Opt_quotadf:
David Howells82995cc2019-03-25 16:38:32 +0000429 if (!result.negated)
430 fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
431 else
432 fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
Luis Henriques9122eed2018-01-31 10:53:13 +0000433 break;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100434 case Opt_copyfrom:
David Howells82995cc2019-03-25 16:38:32 +0000435 if (!result.negated)
436 fsopt->flags &= ~CEPH_MOUNT_OPT_NOCOPYFROM;
437 else
438 fsopt->flags |= CEPH_MOUNT_OPT_NOCOPYFROM;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100439 break;
Sage Weil45195e42014-02-16 10:05:29 -0800440 case Opt_acl:
David Howells82995cc2019-03-25 16:38:32 +0000441 if (!result.negated) {
442#ifdef CONFIG_CEPH_FS_POSIX_ACL
443 fc->sb_flags |= SB_POSIXACL;
444#else
Al Virod53d0f72019-12-21 21:31:52 -0500445 return invalfc(fc, "POSIX ACL support is disabled");
Sage Weil45195e42014-02-16 10:05:29 -0800446#endif
David Howells82995cc2019-03-25 16:38:32 +0000447 } else {
448 fc->sb_flags &= ~SB_POSIXACL;
449 }
Sage Weil45195e42014-02-16 10:05:29 -0800450 break;
Jeff Layton2ccb4542019-04-02 15:35:56 -0400451 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 Sadeh3d14c5d2010-04-06 15:14:15 -0700457 default:
David Howells82995cc2019-03-25 16:38:32 +0000458 BUG();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700459 }
460 return 0;
David Howells82995cc2019-03-25 16:38:32 +0000461
462out_of_range:
Al Virod53d0f72019-12-21 21:31:52 -0500463 return invalfc(fc, "%s out of range", param->key);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700464}
465
466static void destroy_mount_options(struct ceph_mount_options *args)
467{
468 dout("destroy_mount_options %p\n", args);
David Howells82995cc2019-03-25 16:38:32 +0000469 if (!args)
470 return;
471
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700472 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800473 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800474 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800475 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700476 kfree(args);
477}
478
479static 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
490static 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 Dryomovb27a9392020-02-10 22:51:08 +0100506
Yan, Zheng430afba2016-07-08 11:25:38 +0800507 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
508 if (ret)
509 return ret;
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500510
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100511 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
Yan, Zheng3f384952016-04-21 11:09:55 +0800512 if (ret)
513 return ret;
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500514
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800515 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
516 if (ret)
517 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800518
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700519 return ceph_compare_options(new_opt, fsc->client);
520}
521
Sage Weil6e19a162010-04-29 16:38:32 -0700522/**
523 * ceph_show_options - Show mount options in /proc/mounts
524 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500525 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700526 */
Al Viro34c80b12011-12-08 21:32:45 -0500527static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700528{
Al Viro34c80b12011-12-08 21:32:45 -0500529 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700530 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300531 size_t pos;
532 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700533
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300534 /* a comma between MNT/MS and client options */
535 seq_putc(m, ',');
536 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700537
Dongsheng Yang02b2f542018-12-18 04:31:48 -0500538 ret = ceph_print_client_options(m, fsc->client, false);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300539 if (ret)
540 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700541
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300542 /* retract our comma if no client options */
543 if (m->count == pos)
544 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700545
546 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
547 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800548 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
549 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700550 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700551 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300552 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800553 seq_puts(m, ",nodcache");
Chengguang Xu3619aa82018-06-04 16:03:51 +0800554 if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
555 seq_puts(m, ",ino32");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800556 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800557 seq_show_option(m, "fsc", fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800558 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800559 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
560 seq_puts(m, ",nopoolperm");
Luis Henriques9122eed2018-01-31 10:53:13 +0000561 if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
562 seq_puts(m, ",noquotadf");
Sage Weil6e19a162010-04-29 16:38:32 -0700563
Sage Weil45195e42014-02-16 10:05:29 -0800564#ifdef CONFIG_CEPH_FS_POSIX_ACL
David Howells82995cc2019-03-25 16:38:32 +0000565 if (root->d_sb->s_flags & SB_POSIXACL)
Sage Weil45195e42014-02-16 10:05:29 -0800566 seq_puts(m, ",acl");
567 else
568 seq_puts(m, ",noacl");
569#endif
570
Luis Henriques6f9718f2018-12-10 10:23:12 +0000571 if ((fsopt->flags & CEPH_MOUNT_OPT_NOCOPYFROM) == 0)
572 seq_puts(m, ",copyfrom");
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100573
Yan, Zheng430afba2016-07-08 11:25:38 +0800574 if (fsopt->mds_namespace)
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800575 seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800576
577 if (fsopt->flags & CEPH_MOUNT_OPT_CLEANRECOVER)
578 seq_show_option(m, "recover_session", "clean");
579
Jeff Layton2ccb4542019-04-02 15:35:56 -0400580 if (fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
581 seq_puts(m, ",nowsync");
582
Ilya Dryomov6dd49402018-05-03 16:26:55 +0200583 if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400584 seq_printf(m, ",wsize=%u", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800585 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400586 seq_printf(m, ",rsize=%u", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700587 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400588 seq_printf(m, ",rasize=%u", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700589 if (fsopt->congestion_kb != default_congestion_kb())
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400590 seq_printf(m, ",write_congestion_kb=%u", fsopt->congestion_kb);
Yan, Zhengfe330322019-02-01 14:57:15 +0800591 if (fsopt->caps_max)
592 seq_printf(m, ",caps_max=%d", fsopt->caps_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700593 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400594 seq_printf(m, ",caps_wanted_delay_min=%u",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700595 fsopt->caps_wanted_delay_min);
596 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400597 seq_printf(m, ",caps_wanted_delay_max=%u",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700598 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700599 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400600 seq_printf(m, ",readdir_max_entries=%u", fsopt->max_readdir);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700601 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400602 seq_printf(m, ",readdir_max_bytes=%u", fsopt->max_readdir_bytes);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700603 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700604 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300605
Sage Weil6e19a162010-04-29 16:38:32 -0700606 return 0;
607}
608
609/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700610 * handle any mon messages the standard library doesn't understand.
611 * return error if we don't either.
612 */
613static 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, Zheng430afba2016-07-08 11:25:38 +0800620 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700621 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800622 case CEPH_MSG_FS_MAP_USER:
623 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
624 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700625 default:
626 return -1;
627 }
628}
629
630/*
631 * create a new fs client
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200632 *
633 * Success or not, this function consumes @fsopt and @opt.
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700634 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700635static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700636 struct ceph_options *opt)
637{
638 struct ceph_fs_client *fsc;
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200639 int err;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700640
641 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200642 if (!fsc) {
643 err = -ENOMEM;
644 goto fail;
645 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700646
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100647 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700648 if (IS_ERR(fsc->client)) {
649 err = PTR_ERR(fsc->client);
650 goto fail;
651 }
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200652 opt = NULL; /* fsc->client now owns this */
Ilya Dryomovc843d132018-05-30 16:29:14 +0200653
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700654 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Dongsheng Yang02b2f542018-12-18 04:31:48 -0500655 ceph_set_opt(fsc->client, ABORT_ON_FULL);
Yan, Zheng430afba2016-07-08 11:25:38 +0800656
Markus Elfringd37b1d92017-08-20 20:22:02 +0200657 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800658 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 Sadeh3d14c5d2010-04-06 15:14:15 -0700664
665 fsc->mount_options = fsopt;
666
667 fsc->sb = NULL;
668 fsc->mount_state = CEPH_MOUNT_MOUNTING;
Yan, Zheng81f148a2019-07-25 20:16:46 +0800669 fsc->filp_gen = 1;
Luis Henriques78beb0f2020-01-08 10:03:53 +0000670 fsc->have_copy_from2 = true;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700671
672 atomic_long_set(&fsc->writeback_count, 0);
673
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700674 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100675 /*
676 * The number of concurrent works can be high but they don't need
677 * to be processed in parallel, limit concurrency.
678 */
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800679 fsc->inode_wq = alloc_workqueue("ceph-inode", WQ_UNBOUND, 0);
680 if (!fsc->inode_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200681 goto fail_client;
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800682 fsc->cap_wq = alloc_workqueue("ceph-cap", 0, 1);
683 if (!fsc->cap_wq)
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800684 goto fail_inode_wq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700685
Xiubo Li18f473b2020-07-16 10:05:57 -0400686 spin_lock(&ceph_fsc_lock);
687 list_add_tail(&fsc->metric_wakeup, &ceph_fsc_list);
688 spin_unlock(&ceph_fsc_lock);
689
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700690 return fsc;
691
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800692fail_inode_wq:
693 destroy_workqueue(fsc->inode_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700694fail_client:
695 ceph_destroy_client(fsc->client);
696fail:
697 kfree(fsc);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200698 if (opt)
699 ceph_destroy_options(opt);
700 destroy_mount_options(fsopt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700701 return ERR_PTR(err);
702}
703
Yan, Zhenga57d9062018-05-18 16:05:51 +0800704static void flush_fs_workqueues(struct ceph_fs_client *fsc)
705{
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800706 flush_workqueue(fsc->inode_wq);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800707 flush_workqueue(fsc->cap_wq);
Yan, Zhenga57d9062018-05-18 16:05:51 +0800708}
709
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700710static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700711{
712 dout("destroy_fs_client %p\n", fsc);
713
Xiubo Li18f473b2020-07-16 10:05:57 -0400714 spin_lock(&ceph_fsc_lock);
715 list_del(&fsc->metric_wakeup);
716 spin_unlock(&ceph_fsc_lock);
717
Jeff Layton3ee5a702019-09-12 08:07:56 -0400718 ceph_mdsc_destroy(fsc);
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800719 destroy_workqueue(fsc->inode_wq);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800720 destroy_workqueue(fsc->cap_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700721
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700722 destroy_mount_options(fsc->mount_options);
723
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700724 ceph_destroy_client(fsc->client);
725
726 kfree(fsc);
727 dout("destroy_fs_client %p done\n", fsc);
728}
729
730/*
Sage Weil6e19a162010-04-29 16:38:32 -0700731 * caches
732 */
733struct kmem_cache *ceph_inode_cachep;
734struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800735struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700736struct kmem_cache *ceph_dentry_cachep;
737struct kmem_cache *ceph_file_cachep;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800738struct kmem_cache *ceph_dir_file_cachep;
Jeff Layton058daab2020-02-17 18:38:37 -0500739struct kmem_cache *ceph_mds_request_cachep;
Jeff Laytona0102bd2020-07-30 11:03:55 -0400740mempool_t *ceph_wb_pagevec_pool;
Sage Weil6e19a162010-04-29 16:38:32 -0700741
742static 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 Weil16725b92009-10-06 11:31:07 -0700748static int __init init_caches(void)
749{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400750 int error = -ENOMEM;
751
Sage Weil16725b92009-10-06 11:31:07 -0700752 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
753 sizeof(struct ceph_inode_info),
754 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800755 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
756 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200757 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700758 return -ENOMEM;
759
Chengguang Xubc4b5ad2018-02-27 13:49:44 +0800760 ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200761 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700762 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800763 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
764 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200765 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800766 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700767
768 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
769 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200770 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700771 goto bad_dentry;
772
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300773 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200774 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700775 goto bad_file;
776
Chengguang Xubb48bd42018-03-13 10:42:44 +0800777 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 Layton058daab2020-02-17 18:38:37 -0500781 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 Laytona0102bd2020-07-30 11:03:55 -0400785 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 Xu1c789242018-03-01 14:24:51 +0800789 error = ceph_fscache_register();
790 if (error)
791 goto bad_fscache;
Sage Weil16725b92009-10-06 11:31:07 -0700792
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400793 return 0;
Chengguang Xu1c789242018-03-01 14:24:51 +0800794
795bad_fscache:
Jeff Layton058daab2020-02-17 18:38:37 -0500796 kmem_cache_destroy(ceph_mds_request_cachep);
Jeff Laytona0102bd2020-07-30 11:03:55 -0400797bad_pagevec_pool:
798 mempool_destroy(ceph_wb_pagevec_pool);
Jeff Layton058daab2020-02-17 18:38:37 -0500799bad_mds_req:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800800 kmem_cache_destroy(ceph_dir_file_cachep);
801bad_dir_file:
Chengguang Xu1c789242018-03-01 14:24:51 +0800802 kmem_cache_destroy(ceph_file_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700803bad_file:
804 kmem_cache_destroy(ceph_dentry_cachep);
805bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800806 kmem_cache_destroy(ceph_cap_flush_cachep);
807bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700808 kmem_cache_destroy(ceph_cap_cachep);
809bad_cap:
810 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400811 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700812}
813
814static void destroy_caches(void)
815{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000816 /*
817 * Make sure all delayed rcu free inodes are flushed before we
818 * destroy cache.
819 */
820 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400821
Sage Weil16725b92009-10-06 11:31:07 -0700822 kmem_cache_destroy(ceph_inode_cachep);
823 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800824 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700825 kmem_cache_destroy(ceph_dentry_cachep);
826 kmem_cache_destroy(ceph_file_cachep);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800827 kmem_cache_destroy(ceph_dir_file_cachep);
Jeff Layton058daab2020-02-17 18:38:37 -0500828 kmem_cache_destroy(ceph_mds_request_cachep);
Jeff Laytona0102bd2020-07-30 11:03:55 -0400829 mempool_destroy(ceph_wb_pagevec_pool);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400830
831 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700832}
833
Jeff Layton50c91322020-09-25 07:55:39 -0400834static 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 Weil16725b92009-10-06 11:31:07 -0700841/*
Randy Dunlapf1f565a2020-07-17 16:36:04 -0700842 * ceph_umount_begin - initiate forced umount. Tear down the
Sage Weil16725b92009-10-06 11:31:07 -0700843 * mount, skipping steps that may hang while waiting for server(s).
844 */
845static void ceph_umount_begin(struct super_block *sb)
846{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700847 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700848
849 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700850 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700851 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700852 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Jeff Layton50c91322020-09-25 07:55:39 -0400853 __ceph_umount_begin(fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700854}
855
856static const struct super_operations ceph_super_ops = {
857 .alloc_inode = ceph_alloc_inode,
Al Virocfa6d412019-04-10 15:18:50 -0400858 .free_inode = ceph_free_inode,
Sage Weil16725b92009-10-06 11:31:07 -0700859 .write_inode = ceph_write_inode,
Luis Henriques52dd0f12019-07-05 17:14:56 +0100860 .drop_inode = generic_delete_inode,
Yan, Zheng87bc5b82019-06-02 09:45:38 +0800861 .evict_inode = ceph_evict_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700862 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700863 .put_super = ceph_put_super,
864 .show_options = ceph_show_options,
865 .statfs = ceph_statfs,
866 .umount_begin = ceph_umount_begin,
867};
868
Sage Weil16725b92009-10-06 11:31:07 -0700869/*
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 Sadeh3d14c5d2010-04-06 15:14:15 -0700873static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700874 const char *path,
875 unsigned long started)
876{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700877 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700878 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 Lawall7e34bc52010-05-22 12:01:14 +0200886 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700887 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400888 if (!req->r_path1) {
889 root = ERR_PTR(-ENOMEM);
890 goto out;
891 }
892
Sage Weil16725b92009-10-06 11:31:07 -0700893 req->r_ino1.ino = CEPH_INO_ROOT;
894 req->r_ino1.snap = CEPH_NOSNAP;
895 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300896 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700897 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 Viro3c5184e2012-01-09 16:34:32 -0500901 struct inode *inode = req->r_target_inode;
902 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700903 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800904 root = d_make_root(inode);
905 if (!root) {
906 root = ERR_PTR(-ENOMEM);
907 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800908 }
Sage Weil16725b92009-10-06 11:31:07 -0700909 dout("open_root_inode success, root dentry is %p\n", root);
910 } else {
911 root = ERR_PTR(err);
912 }
Al Viro3c5184e2012-01-09 16:34:32 -0500913out:
Sage Weil16725b92009-10-06 11:31:07 -0700914 ceph_mdsc_put_request(req);
915 return root;
916}
917
918/*
919 * mount: join the ceph cluster, and open root directory.
920 */
David Howells82995cc2019-03-25 16:38:32 +0000921static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
922 struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -0700923{
Sage Weil16725b92009-10-06 11:31:07 -0700924 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700925 unsigned long started = jiffies; /* note the start time */
926 struct dentry *root;
927
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800928 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700929 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700930
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800931 if (!fsc->sb->s_root) {
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100932 const char *path = fsc->mount_options->server_path ?
933 fsc->mount_options->server_path + 1 : "";
934
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800935 err = __ceph_open_session(fsc->client, started);
936 if (err < 0)
937 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700938
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800939 /* setup fscache */
940 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
David Howells82995cc2019-03-25 16:38:32 +0000941 err = ceph_fscache_register_fs(fsc, fc);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800942 if (err < 0)
943 goto out;
944 }
945
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500946 dout("mount opening path '%s'\n", path);
Chengguang Xu18106732018-02-09 20:40:59 +0800947
Greg Kroah-Hartman1a829ff2019-06-12 16:55:38 +0200948 ceph_fs_debugfs_init(fsc);
Chengguang Xu18106732018-02-09 20:40:59 +0800949
Yan, Zhengce2728a2016-09-14 14:53:05 +0800950 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800951 if (IS_ERR(root)) {
952 err = PTR_ERR(root);
953 goto out;
954 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800955 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200956 } else {
957 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700958 }
Sage Weil16725b92009-10-06 11:31:07 -0700959
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700960 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700961 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400962 mutex_unlock(&fsc->client->mount_mutex);
963 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700964
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800965out:
966 mutex_unlock(&fsc->client->mount_mutex);
967 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700968}
969
David Howells82995cc2019-03-25 16:38:32 +0000970static int ceph_set_super(struct super_block *s, struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -0700971{
David Howells82995cc2019-03-25 16:38:32 +0000972 struct ceph_fs_client *fsc = s->s_fs_info;
Sage Weil16725b92009-10-06 11:31:07 -0700973 int ret;
974
David Howells82995cc2019-03-25 16:38:32 +0000975 dout("set_super %p\n", s);
Sage Weil16725b92009-10-06 11:31:07 -0700976
Chengguang Xu719784b2018-07-19 22:15:24 +0800977 s->s_maxbytes = MAX_LFS_FILESIZE;
Sage Weil16725b92009-10-06 11:31:07 -0700978
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800979 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700980 fsc->sb = s;
Chengguang Xu719784b2018-07-19 22:15:24 +0800981 fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */
Sage Weil16725b92009-10-06 11:31:07 -0700982
983 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400984 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700985 s->s_export_op = &ceph_export_ops;
986
Luis Henriques0f7cf802019-06-27 14:51:22 +0100987 s->s_time_gran = 1;
Deepa Dinamani028ca4d2019-03-21 14:34:38 -0700988 s->s_time_min = 0;
989 s->s_time_max = U32_MAX;
Sage Weil16725b92009-10-06 11:31:07 -0700990
David Howells82995cc2019-03-25 16:38:32 +0000991 ret = set_anon_super_fc(s, fc);
Sage Weil16725b92009-10-06 11:31:07 -0700992 if (ret != 0)
David Howells82995cc2019-03-25 16:38:32 +0000993 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700994 return ret;
995}
996
997/*
998 * share superblock if same fs AND options
999 */
David Howells82995cc2019-03-25 16:38:32 +00001000static int ceph_compare_super(struct super_block *sb, struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001001{
David Howells82995cc2019-03-25 16:38:32 +00001002 struct ceph_fs_client *new = fc->s_fs_info;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001003 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 Weil16725b92009-10-06 11:31:07 -07001006
1007 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001008
1009 if (compare_mount_options(fsopt, opt, other)) {
1010 dout("monitor(s)/mount options don't match\n");
1011 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001012 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001013 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 Howells82995cc2019-03-25 16:38:32 +00001018 if (fc->sb_flags != (sb->s_flags & ~SB_BORN)) {
Sage Weil16725b92009-10-06 11:31:07 -07001019 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 Mahoney00d56432010-06-10 11:13:58 -04001028static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -07001029
Jan Kara09dc9fc2017-04-12 12:24:33 +02001030static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -07001031{
1032 int err;
1033
Jan Kara09dc9fc2017-04-12 12:24:33 +02001034 err = super_setup_bdi_name(sb, "ceph-%ld",
1035 atomic_long_inc_return(&bdi_seq));
1036 if (err)
1037 return err;
1038
Sage Weil83817e32011-08-04 08:03:44 -07001039 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +08001040 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001041
Yan, Zhengaa187922017-07-11 15:56:09 +08001042 /* set io_pages based on max osd read size */
1043 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +01001044
Jan Kara09dc9fc2017-04-12 12:24:33 +02001045 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001046}
1047
David Howells82995cc2019-03-25 16:38:32 +00001048static int ceph_get_tree(struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001049{
David Howells82995cc2019-03-25 16:38:32 +00001050 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
Sage Weil16725b92009-10-06 11:31:07 -07001051 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001052 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001053 struct dentry *res;
David Howells82995cc2019-03-25 16:38:32 +00001054 int (*compare_super)(struct super_block *, struct fs_context *) =
1055 ceph_compare_super;
Sage Weil16725b92009-10-06 11:31:07 -07001056 int err;
Sage Weil16725b92009-10-06 11:31:07 -07001057
David Howells82995cc2019-03-25 16:38:32 +00001058 dout("ceph_get_tree\n");
1059
1060 if (!fc->source)
Al Virod53d0f72019-12-21 21:31:52 -05001061 return invalfc(fc, "No source");
Sage Weil45195e42014-02-16 10:05:29 -08001062
Sage Weil16725b92009-10-06 11:31:07 -07001063 /* create client (which we may/may not use) */
David Howells82995cc2019-03-25 16:38:32 +00001064 fsc = create_fs_client(pctx->opts, pctx->copts);
1065 pctx->opts = NULL;
1066 pctx->copts = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001067 if (IS_ERR(fsc)) {
David Howells82995cc2019-03-25 16:38:32 +00001068 err = PTR_ERR(fsc);
Sage Weil6b805182009-10-27 11:50:50 -07001069 goto out_final;
1070 }
Sage Weil16725b92009-10-06 11:31:07 -07001071
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001072 err = ceph_mdsc_init(fsc);
David Howells82995cc2019-03-25 16:38:32 +00001073 if (err < 0)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001074 goto out;
1075
1076 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001077 compare_super = NULL;
David Howells82995cc2019-03-25 16:38:32 +00001078
1079 fc->s_fs_info = fsc;
1080 sb = sget_fc(fc, compare_super, ceph_set_super);
1081 fc->s_fs_info = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001082 if (IS_ERR(sb)) {
David Howells82995cc2019-03-25 16:38:32 +00001083 err = PTR_ERR(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001084 goto out;
1085 }
1086
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001087 if (ceph_sb_to_client(sb) != fsc) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001088 destroy_fs_client(fsc);
1089 fsc = ceph_sb_to_client(sb);
1090 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001091 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001092 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001093 err = ceph_setup_bdi(sb, fsc);
David Howells82995cc2019-03-25 16:38:32 +00001094 if (err < 0)
Sage Weil16725b92009-10-06 11:31:07 -07001095 goto out_splat;
1096 }
1097
David Howells82995cc2019-03-25 16:38:32 +00001098 res = ceph_real_mount(fsc, fc);
1099 if (IS_ERR(res)) {
1100 err = PTR_ERR(res);
Sage Weil16725b92009-10-06 11:31:07 -07001101 goto out_splat;
David Howells82995cc2019-03-25 16:38:32 +00001102 }
Al Viroa7f9fb22010-07-26 16:17:55 +04001103 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001104 d_inode(res), ceph_vinop(d_inode(res)));
David Howells82995cc2019-03-25 16:38:32 +00001105 fc->root = fsc->sb->s_root;
1106 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001107
1108out_splat:
Xiubo Li97820052019-12-10 20:29:40 -05001109 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 Sadeh3d14c5d2010-04-06 15:14:15 -07001114 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001115 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001116 goto out_final;
1117
1118out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001119 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001120out_final:
David Howells82995cc2019-03-25 16:38:32 +00001121 dout("ceph_get_tree fail %d\n", err);
1122 return err;
1123}
1124
1125static 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
1136static int ceph_reconfigure_fc(struct fs_context *fc)
1137{
Jeff Layton2ccb4542019-04-02 15:35:56 -04001138 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 Howells82995cc2019-03-25 16:38:32 +00001147 sync_filesystem(fc->root->d_sb);
1148 return 0;
1149}
1150
1151static 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 */
1161static 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 Li3b20bc22020-02-11 01:53:16 -05001194#ifdef CONFIG_CEPH_FS_POSIX_ACL
1195 fc->sb_flags |= SB_POSIXACL;
1196#endif
1197
David Howells82995cc2019-03-25 16:38:32 +00001198 fc->fs_private = pctx;
1199 fc->ops = &ceph_context_ops;
1200 return 0;
1201
1202nomem:
1203 destroy_mount_options(pctx->opts);
1204 ceph_destroy_options(pctx->copts);
1205 kfree(pctx);
1206 return -ENOMEM;
Sage Weil16725b92009-10-06 11:31:07 -07001207}
1208
1209static void ceph_kill_sb(struct super_block *s)
1210{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001211 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001212
Sage Weil16725b92009-10-06 11:31:07 -07001213 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001214
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001215 ceph_mdsc_pre_umount(fsc->mdsc);
Yan, Zhenga57d9062018-05-18 16:05:51 +08001216 flush_fs_workqueues(fsc);
1217
Jeff Layton470a5c72020-09-11 15:19:00 -04001218 kill_anon_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001219
1220 fsc->client->extra_mon_dispatch = NULL;
1221 ceph_fs_debugfs_cleanup(fsc);
1222
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001223 ceph_fscache_unregister_fs(fsc);
1224
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001225 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001226}
1227
1228static struct file_system_type ceph_fs_type = {
1229 .owner = THIS_MODULE,
1230 .name = "ceph",
David Howells82995cc2019-03-25 16:38:32 +00001231 .init_fs_context = ceph_init_fs_context,
Sage Weil16725b92009-10-06 11:31:07 -07001232 .kill_sb = ceph_kill_sb,
1233 .fs_flags = FS_RENAME_DOES_D_MOVE,
1234};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001235MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001236
Yan, Zhengd468e722019-07-25 20:16:44 +08001237int 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 Layton50c91322020-09-25 07:55:39 -04001242 fsc->mount_state = CEPH_MOUNT_RECOVER;
1243 __ceph_umount_begin(fsc);
Yan, Zhengd468e722019-07-25 20:16:44 +08001244
1245 /* Make sure all page caches get invalidated.
1246 * see remove_session_caps_cb() */
1247 flush_workqueue(fsc->inode_wq);
1248
Ilya Dryomov0b98acd2020-09-14 13:39:19 +02001249 /* In case that we were blocklisted. This also reset
Yan, Zhengd468e722019-07-25 20:16:44 +08001250 * all mon/osd connections */
1251 ceph_reset_client_addr(fsc->client);
1252
1253 ceph_osdc_clear_abort_err(&fsc->client->osdc);
Yan, Zheng131d7eb2019-07-25 20:16:47 +08001254
Ilya Dryomov0b98acd2020-09-14 13:39:19 +02001255 fsc->blocklisted = false;
Yan, Zhengd468e722019-07-25 20:16:44 +08001256 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 Weil16725b92009-10-06 11:31:07 -07001265static int __init init_ceph(void)
1266{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001267 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001268 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001269 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001270
Yan, Zhengeb13e832014-03-09 23:16:40 +08001271 ceph_flock_init();
Sage Weil16725b92009-10-06 11:31:07 -07001272 ret = register_filesystem(&ceph_fs_type);
1273 if (ret)
David Disseldorpd0f191d2019-04-18 14:15:49 +02001274 goto out_caches;
Sage Weil16725b92009-10-06 11:31:07 -07001275
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001276 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1277
Sage Weil16725b92009-10-06 11:31:07 -07001278 return 0;
1279
David Disseldorpd0f191d2019-04-18 14:15:49 +02001280out_caches:
Sage Weil16725b92009-10-06 11:31:07 -07001281 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001282out:
1283 return ret;
1284}
1285
1286static void __exit exit_ceph(void)
1287{
1288 dout("exit_ceph\n");
1289 unregister_filesystem(&ceph_fs_type);
Sage Weil16725b92009-10-06 11:31:07 -07001290 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001291}
1292
Xiubo Li18f473b2020-07-16 10:05:57 -04001293static 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
1315static const struct kernel_param_ops param_ops_metrics = {
1316 .set = param_set_metrics,
1317 .get = param_get_bool,
1318};
1319
1320bool disable_send_metrics = false;
1321module_param_cb(disable_send_metrics, &param_ops_metrics, &disable_send_metrics, 0644);
1322MODULE_PARM_DESC(disable_send_metrics, "Enable sending perf metrics to ceph cluster (default: on)");
1323
Sage Weil16725b92009-10-06 11:31:07 -07001324module_init(init_ceph);
1325module_exit(exit_ceph);
1326
1327MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1328MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1329MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1330MODULE_DESCRIPTION("Ceph filesystem for Linux");
1331MODULE_LICENSE("GPL");