blob: eb255d24e321d1a1070af0dc308f96cf66f3a99a [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;
Jeff Layton8cfc0c72021-10-05 11:12:58 -040055 int i, err;
Douglas Fuller06d74372017-08-16 10:19:27 -040056 u64 data_pool;
57
58 if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) {
59 data_pool = fsc->mdsc->mdsmap->m_data_pg_pools[0];
60 } else {
61 data_pool = CEPH_NOPOOL;
62 }
Sage Weil16725b92009-10-06 11:31:07 -070063
64 dout("statfs\n");
Luis Henriques73fb0942018-05-28 18:37:40 +010065 err = ceph_monc_do_statfs(monc, data_pool, &st);
Sage Weil16725b92009-10-06 11:31:07 -070066 if (err < 0)
67 return err;
68
69 /* fill in kstatfs */
70 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
71
72 /*
73 * express utilization in terms of large blocks to avoid
74 * overflow on 32-bit machines.
Sage Weil92a49fb2013-02-22 15:31:00 -080075 *
76 * NOTE: for the time being, we make bsize == frsize to humor
77 * not-yet-ancient versions of glibc that are broken.
78 * Someday, we will probably want to report a real block
79 * size... whatever that may mean for a network file system!
Sage Weil16725b92009-10-06 11:31:07 -070080 */
81 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080082 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Luis Henriques9122eed2018-01-31 10:53:13 +000083
84 /*
85 * By default use root quota for stats; fallback to overall filesystem
86 * usage if using 'noquotadf' mount option or if the root dir doesn't
87 * have max_bytes quota set.
88 */
89 if (ceph_test_mount_opt(fsc, NOQUOTADF) ||
90 !ceph_quota_update_statfs(fsc, buf)) {
91 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
92 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
93 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
94 }
Sage Weil16725b92009-10-06 11:31:07 -070095
96 buf->f_files = le64_to_cpu(st.num_objects);
97 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070098 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070099
Jeff Layton080a3302017-10-23 10:58:40 -0400100 /* Must convert the fsid, for consistent values across arches */
Jeff Layton8cfc0c72021-10-05 11:12:58 -0400101 buf->f_fsid.val[0] = 0;
Luis Henriques73fb0942018-05-28 18:37:40 +0100102 mutex_lock(&monc->mutex);
Jeff Layton8cfc0c72021-10-05 11:12:58 -0400103 for (i = 0 ; i < sizeof(monc->monmap->fsid) / sizeof(__le32) ; ++i)
104 buf->f_fsid.val[0] ^= le32_to_cpu(((__le32 *)&monc->monmap->fsid)[i]);
Luis Henriques73fb0942018-05-28 18:37:40 +0100105 mutex_unlock(&monc->mutex);
106
Jeff Layton8cfc0c72021-10-05 11:12:58 -0400107 /* fold the fs_cluster_id into the upper bits */
108 buf->f_fsid.val[1] = monc->fs_cluster_id;
Sage Weil16725b92009-10-06 11:31:07 -0700109
110 return 0;
111}
112
Sage Weil2d9c98a2010-07-30 09:38:13 -0700113static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700114{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700115 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700116
117 if (!wait) {
118 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700119 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700120 dout("sync_fs (non-blocking) done\n");
121 return 0;
122 }
123
124 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700125 ceph_osdc_sync(&fsc->client->osdc);
126 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700127 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700128 return 0;
129}
130
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700131/*
132 * mount options
133 */
134enum {
135 Opt_wsize,
136 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700137 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700138 Opt_caps_wanted_delay_min,
139 Opt_caps_wanted_delay_max,
Yan, Zhengfe330322019-02-01 14:57:15 +0800140 Opt_caps_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700141 Opt_readdir_max_entries,
142 Opt_readdir_max_bytes,
143 Opt_congestion_kb,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700144 /* int args above */
145 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800146 Opt_mds_namespace,
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800147 Opt_recover_session,
David Howells82995cc2019-03-25 16:38:32 +0000148 Opt_source,
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530149 Opt_mon_addr,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700150 /* string args above */
151 Opt_dirstat,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700152 Opt_rbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600153 Opt_asyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800154 Opt_dcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800155 Opt_ino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400156 Opt_fscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800157 Opt_poolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800158 Opt_require_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800159 Opt_acl,
Luis Henriques9122eed2018-01-31 10:53:13 +0000160 Opt_quotadf,
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100161 Opt_copyfrom,
Jeff Layton2ccb4542019-04-02 15:35:56 -0400162 Opt_wsync,
Jeff Layton94cc0872021-11-30 14:12:13 -0500163 Opt_pagecache,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700164};
165
David Howells82995cc2019-03-25 16:38:32 +0000166enum ceph_recover_session_mode {
167 ceph_recover_session_no,
168 ceph_recover_session_clean
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700169};
170
Al Viro5eede622019-12-16 13:33:32 -0500171static const struct constant_table ceph_param_recover[] = {
Al Viro2710c957a2019-09-06 22:12:08 -0400172 { "no", ceph_recover_session_no },
173 { "clean", ceph_recover_session_clean },
David Howells82995cc2019-03-25 16:38:32 +0000174 {}
175};
176
Al Virod7167b12019-09-07 07:23:15 -0400177static const struct fs_parameter_spec ceph_mount_parameters[] = {
David Howells82995cc2019-03-25 16:38:32 +0000178 fsparam_flag_no ("acl", Opt_acl),
179 fsparam_flag_no ("asyncreaddir", Opt_asyncreaddir),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400180 fsparam_s32 ("caps_max", Opt_caps_max),
David Howells82995cc2019-03-25 16:38:32 +0000181 fsparam_u32 ("caps_wanted_delay_max", Opt_caps_wanted_delay_max),
182 fsparam_u32 ("caps_wanted_delay_min", Opt_caps_wanted_delay_min),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400183 fsparam_u32 ("write_congestion_kb", Opt_congestion_kb),
David Howells82995cc2019-03-25 16:38:32 +0000184 fsparam_flag_no ("copyfrom", Opt_copyfrom),
185 fsparam_flag_no ("dcache", Opt_dcache),
186 fsparam_flag_no ("dirstat", Opt_dirstat),
Al Viro48ce73b2019-12-17 20:03:59 -0500187 fsparam_flag_no ("fsc", Opt_fscache), // fsc|nofsc
188 fsparam_string ("fsc", Opt_fscache), // fsc=...
David Howells82995cc2019-03-25 16:38:32 +0000189 fsparam_flag_no ("ino32", Opt_ino32),
190 fsparam_string ("mds_namespace", Opt_mds_namespace),
191 fsparam_flag_no ("poolperm", Opt_poolperm),
192 fsparam_flag_no ("quotadf", Opt_quotadf),
193 fsparam_u32 ("rasize", Opt_rasize),
194 fsparam_flag_no ("rbytes", Opt_rbytes),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400195 fsparam_u32 ("readdir_max_bytes", Opt_readdir_max_bytes),
196 fsparam_u32 ("readdir_max_entries", Opt_readdir_max_entries),
Al Viro2710c957a2019-09-06 22:12:08 -0400197 fsparam_enum ("recover_session", Opt_recover_session, ceph_param_recover),
David Howells82995cc2019-03-25 16:38:32 +0000198 fsparam_flag_no ("require_active_mds", Opt_require_active_mds),
199 fsparam_u32 ("rsize", Opt_rsize),
200 fsparam_string ("snapdirname", Opt_snapdirname),
201 fsparam_string ("source", Opt_source),
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530202 fsparam_string ("mon_addr", Opt_mon_addr),
David Howells82995cc2019-03-25 16:38:32 +0000203 fsparam_u32 ("wsize", Opt_wsize),
Jeff Layton2ccb4542019-04-02 15:35:56 -0400204 fsparam_flag_no ("wsync", Opt_wsync),
Jeff Layton94cc0872021-11-30 14:12:13 -0500205 fsparam_flag_no ("pagecache", Opt_pagecache),
David Howells82995cc2019-03-25 16:38:32 +0000206 {}
207};
208
David Howells82995cc2019-03-25 16:38:32 +0000209struct ceph_parse_opts_ctx {
210 struct ceph_options *copts;
211 struct ceph_mount_options *opts;
212};
213
214/*
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100215 * Remove adjacent slashes and then the trailing slash, unless it is
216 * the only remaining character.
217 *
218 * E.g. "//dir1////dir2///" --> "/dir1/dir2", "///" --> "/".
219 */
220static void canonicalize_path(char *path)
221{
222 int i, j = 0;
223
224 for (i = 0; path[i] != '\0'; i++) {
225 if (path[i] != '/' || j < 1 || path[j - 1] != '/')
226 path[j++] = path[i];
227 }
228
229 if (j > 1 && path[j - 1] == '/')
230 j--;
231 path[j] = '\0';
232}
233
234/*
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530235 * Check if the mds namespace in ceph_mount_options matches
236 * the passed in namespace string. First time match (when
237 * ->mds_namespace is NULL) is treated specially, since
238 * ->mds_namespace needs to be initialized by the caller.
239 */
240static int namespace_equals(struct ceph_mount_options *fsopt,
241 const char *namespace, size_t len)
242{
243 return !(fsopt->mds_namespace &&
244 (strlen(fsopt->mds_namespace) != len ||
245 strncmp(fsopt->mds_namespace, namespace, len)));
246}
247
248static int ceph_parse_old_source(const char *dev_name, const char *dev_name_end,
249 struct fs_context *fc)
250{
251 int r;
252 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
253 struct ceph_mount_options *fsopt = pctx->opts;
254
255 if (*dev_name_end != ':')
256 return invalfc(fc, "separator ':' missing in source");
257
258 r = ceph_parse_mon_ips(dev_name, dev_name_end - dev_name,
259 pctx->copts, fc->log.log, ',');
260 if (r)
261 return r;
262
263 fsopt->new_dev_syntax = false;
264 return 0;
265}
266
267static int ceph_parse_new_source(const char *dev_name, const char *dev_name_end,
268 struct fs_context *fc)
269{
270 size_t len;
271 struct ceph_fsid fsid;
272 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
273 struct ceph_mount_options *fsopt = pctx->opts;
274 char *fsid_start, *fs_name_start;
275
276 if (*dev_name_end != '=') {
277 dout("separator '=' missing in source");
278 return -EINVAL;
279 }
280
281 fsid_start = strchr(dev_name, '@');
282 if (!fsid_start)
283 return invalfc(fc, "missing cluster fsid");
284 ++fsid_start; /* start of cluster fsid */
285
286 fs_name_start = strchr(fsid_start, '.');
287 if (!fs_name_start)
288 return invalfc(fc, "missing file system name");
289
290 if (ceph_parse_fsid(fsid_start, &fsid))
291 return invalfc(fc, "Invalid FSID");
292
293 ++fs_name_start; /* start of file system name */
294 len = dev_name_end - fs_name_start;
295
296 if (!namespace_equals(fsopt, fs_name_start, len))
297 return invalfc(fc, "Mismatching mds_namespace");
298 kfree(fsopt->mds_namespace);
299 fsopt->mds_namespace = kstrndup(fs_name_start, len, GFP_KERNEL);
300 if (!fsopt->mds_namespace)
301 return -ENOMEM;
302 dout("file system (mds namespace) '%s'\n", fsopt->mds_namespace);
303
304 fsopt->new_dev_syntax = true;
305 return 0;
306}
307
308/*
309 * Parse the source parameter for new device format. Distinguish the device
310 * spec from the path. Try parsing new device format and fallback to old
311 * format if needed.
David Howells82995cc2019-03-25 16:38:32 +0000312 *
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530313 * New device syntax will looks like:
314 * <device_spec>=/<path>
315 * where
316 * <device_spec> is name@fsid.fsname
317 * <path> is optional, but if present must begin with '/'
318 * (monitor addresses are passed via mount option)
319 *
320 * Old device syntax is:
David Howells82995cc2019-03-25 16:38:32 +0000321 * <server_spec>[,<server_spec>...]:[<path>]
322 * where
323 * <server_spec> is <ip>[:<port>]
324 * <path> is optional, but if present must begin with '/'
325 */
326static int ceph_parse_source(struct fs_parameter *param, struct fs_context *fc)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800327{
David Howells82995cc2019-03-25 16:38:32 +0000328 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
329 struct ceph_mount_options *fsopt = pctx->opts;
330 char *dev_name = param->string, *dev_name_end;
331 int ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800332
David Howells82995cc2019-03-25 16:38:32 +0000333 dout("%s '%s'\n", __func__, dev_name);
334 if (!dev_name || !*dev_name)
Al Virod53d0f72019-12-21 21:31:52 -0500335 return invalfc(fc, "Empty source");
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800336
David Howells82995cc2019-03-25 16:38:32 +0000337 dev_name_end = strchr(dev_name, '/');
338 if (dev_name_end) {
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500339 /*
340 * The server_path will include the whole chars from userland
341 * including the leading '/'.
342 */
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100343 kfree(fsopt->server_path);
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500344 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
345 if (!fsopt->server_path)
346 return -ENOMEM;
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100347
348 canonicalize_path(fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700349 } else {
David Howells82995cc2019-03-25 16:38:32 +0000350 dev_name_end = dev_name + strlen(dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700351 }
352
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530353 dev_name_end--; /* back up to separator */
354 if (dev_name_end < dev_name)
355 return invalfc(fc, "Path missing in source");
David Howells82995cc2019-03-25 16:38:32 +0000356
357 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
358 if (fsopt->server_path)
359 dout("server path '%s'\n", fsopt->server_path);
360
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530361 dout("trying new device syntax");
362 ret = ceph_parse_new_source(dev_name, dev_name_end, fc);
363 if (ret) {
364 if (ret != -EINVAL)
365 return ret;
366 dout("trying old device syntax");
367 ret = ceph_parse_old_source(dev_name, dev_name_end, fc);
368 if (ret)
369 return ret;
370 }
David Howells82995cc2019-03-25 16:38:32 +0000371
372 fc->source = param->string;
373 param->string = NULL;
374 return 0;
375}
376
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530377static int ceph_parse_mon_addr(struct fs_parameter *param,
378 struct fs_context *fc)
379{
380 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
381 struct ceph_mount_options *fsopt = pctx->opts;
382
383 kfree(fsopt->mon_addr);
384 fsopt->mon_addr = param->string;
385 param->string = NULL;
386
387 return ceph_parse_mon_ips(fsopt->mon_addr, strlen(fsopt->mon_addr),
388 pctx->copts, fc->log.log, '/');
389}
390
David Howells82995cc2019-03-25 16:38:32 +0000391static int ceph_parse_mount_param(struct fs_context *fc,
392 struct fs_parameter *param)
393{
394 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
395 struct ceph_mount_options *fsopt = pctx->opts;
396 struct fs_parse_result result;
397 unsigned int mode;
398 int token, ret;
399
Al Virocc3c0b52019-12-21 00:16:49 -0500400 ret = ceph_parse_param(param, pctx->copts, fc->log.log);
David Howells82995cc2019-03-25 16:38:32 +0000401 if (ret != -ENOPARAM)
402 return ret;
403
Al Virod7167b12019-09-07 07:23:15 -0400404 token = fs_parse(fc, ceph_mount_parameters, param, &result);
David Howells82995cc2019-03-25 16:38:32 +0000405 dout("%s fs_parse '%s' token %d\n", __func__, param->key, token);
406 if (token < 0)
407 return token;
408
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700409 switch (token) {
410 case Opt_snapdirname:
411 kfree(fsopt->snapdir_name);
David Howells82995cc2019-03-25 16:38:32 +0000412 fsopt->snapdir_name = param->string;
413 param->string = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700414 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800415 case Opt_mds_namespace:
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530416 if (!namespace_equals(fsopt, param->string, strlen(param->string)))
417 return invalfc(fc, "Mismatching mds_namespace");
Chengguang Xu937441f2018-02-06 08:25:55 +0800418 kfree(fsopt->mds_namespace);
David Howells82995cc2019-03-25 16:38:32 +0000419 fsopt->mds_namespace = param->string;
420 param->string = NULL;
Yan, Zheng235a0982016-03-30 17:18:34 +0800421 break;
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800422 case Opt_recover_session:
David Howells82995cc2019-03-25 16:38:32 +0000423 mode = result.uint_32;
424 if (mode == ceph_recover_session_no)
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800425 fsopt->flags &= ~CEPH_MOUNT_OPT_CLEANRECOVER;
David Howells82995cc2019-03-25 16:38:32 +0000426 else if (mode == ceph_recover_session_clean)
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800427 fsopt->flags |= CEPH_MOUNT_OPT_CLEANRECOVER;
David Howells82995cc2019-03-25 16:38:32 +0000428 else
429 BUG();
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800430 break;
David Howells82995cc2019-03-25 16:38:32 +0000431 case Opt_source:
432 if (fc->source)
Al Virod53d0f72019-12-21 21:31:52 -0500433 return invalfc(fc, "Multiple sources specified");
David Howells82995cc2019-03-25 16:38:32 +0000434 return ceph_parse_source(param, fc);
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530435 case Opt_mon_addr:
436 return ceph_parse_mon_addr(param, fc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700437 case Opt_wsize:
David Howells82995cc2019-03-25 16:38:32 +0000438 if (result.uint_32 < PAGE_SIZE ||
439 result.uint_32 > CEPH_MAX_WRITE_SIZE)
440 goto out_of_range;
441 fsopt->wsize = ALIGN(result.uint_32, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700442 break;
443 case Opt_rsize:
David Howells82995cc2019-03-25 16:38:32 +0000444 if (result.uint_32 < PAGE_SIZE ||
445 result.uint_32 > CEPH_MAX_READ_SIZE)
446 goto out_of_range;
447 fsopt->rsize = ALIGN(result.uint_32, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700448 break;
Sage Weil83817e32011-08-04 08:03:44 -0700449 case Opt_rasize:
David Howells82995cc2019-03-25 16:38:32 +0000450 fsopt->rasize = ALIGN(result.uint_32, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700451 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700452 case Opt_caps_wanted_delay_min:
David Howells82995cc2019-03-25 16:38:32 +0000453 if (result.uint_32 < 1)
454 goto out_of_range;
455 fsopt->caps_wanted_delay_min = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700456 break;
457 case Opt_caps_wanted_delay_max:
David Howells82995cc2019-03-25 16:38:32 +0000458 if (result.uint_32 < 1)
459 goto out_of_range;
460 fsopt->caps_wanted_delay_max = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700461 break;
Yan, Zhengfe330322019-02-01 14:57:15 +0800462 case Opt_caps_max:
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400463 if (result.int_32 < 0)
464 goto out_of_range;
465 fsopt->caps_max = result.int_32;
Yan, Zhengfe330322019-02-01 14:57:15 +0800466 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700467 case Opt_readdir_max_entries:
David Howells82995cc2019-03-25 16:38:32 +0000468 if (result.uint_32 < 1)
469 goto out_of_range;
470 fsopt->max_readdir = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700471 break;
472 case Opt_readdir_max_bytes:
David Howells82995cc2019-03-25 16:38:32 +0000473 if (result.uint_32 < PAGE_SIZE && result.uint_32 != 0)
474 goto out_of_range;
475 fsopt->max_readdir_bytes = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700476 break;
477 case Opt_congestion_kb:
David Howells82995cc2019-03-25 16:38:32 +0000478 if (result.uint_32 < 1024) /* at least 1M */
479 goto out_of_range;
480 fsopt->congestion_kb = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700481 break;
482 case Opt_dirstat:
David Howells82995cc2019-03-25 16:38:32 +0000483 if (!result.negated)
484 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
485 else
486 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700487 break;
488 case Opt_rbytes:
David Howells82995cc2019-03-25 16:38:32 +0000489 if (!result.negated)
490 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
491 else
492 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700493 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600494 case Opt_asyncreaddir:
David Howells82995cc2019-03-25 16:38:32 +0000495 if (!result.negated)
496 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
497 else
498 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700499 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800500 case Opt_dcache:
David Howells82995cc2019-03-25 16:38:32 +0000501 if (!result.negated)
502 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
503 else
504 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
Sage Weila40dc6c2012-01-10 09:12:55 -0800505 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800506 case Opt_ino32:
David Howells82995cc2019-03-25 16:38:32 +0000507 if (!result.negated)
508 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
509 else
510 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800511 break;
David Howells82995cc2019-03-25 16:38:32 +0000512
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400513 case Opt_fscache:
Jeff Laytonff29fde2019-11-07 09:39:32 -0500514#ifdef CONFIG_CEPH_FSCACHE
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800515 kfree(fsopt->fscache_uniq);
516 fsopt->fscache_uniq = NULL;
David Howells82995cc2019-03-25 16:38:32 +0000517 if (result.negated) {
518 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
519 } else {
520 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
521 fsopt->fscache_uniq = param->string;
522 param->string = NULL;
523 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400524 break;
Jeff Laytonff29fde2019-11-07 09:39:32 -0500525#else
Al Virod53d0f72019-12-21 21:31:52 -0500526 return invalfc(fc, "fscache support is disabled");
Jeff Laytonff29fde2019-11-07 09:39:32 -0500527#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800528 case Opt_poolperm:
David Howells82995cc2019-03-25 16:38:32 +0000529 if (!result.negated)
530 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
531 else
532 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
Yan, Zheng10183a62015-04-27 15:33:28 +0800533 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800534 case Opt_require_active_mds:
David Howells82995cc2019-03-25 16:38:32 +0000535 if (!result.negated)
536 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
537 else
538 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800539 break;
Luis Henriques9122eed2018-01-31 10:53:13 +0000540 case Opt_quotadf:
David Howells82995cc2019-03-25 16:38:32 +0000541 if (!result.negated)
542 fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
543 else
544 fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
Luis Henriques9122eed2018-01-31 10:53:13 +0000545 break;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100546 case Opt_copyfrom:
David Howells82995cc2019-03-25 16:38:32 +0000547 if (!result.negated)
548 fsopt->flags &= ~CEPH_MOUNT_OPT_NOCOPYFROM;
549 else
550 fsopt->flags |= CEPH_MOUNT_OPT_NOCOPYFROM;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100551 break;
Sage Weil45195e42014-02-16 10:05:29 -0800552 case Opt_acl:
David Howells82995cc2019-03-25 16:38:32 +0000553 if (!result.negated) {
554#ifdef CONFIG_CEPH_FS_POSIX_ACL
555 fc->sb_flags |= SB_POSIXACL;
556#else
Al Virod53d0f72019-12-21 21:31:52 -0500557 return invalfc(fc, "POSIX ACL support is disabled");
Sage Weil45195e42014-02-16 10:05:29 -0800558#endif
David Howells82995cc2019-03-25 16:38:32 +0000559 } else {
560 fc->sb_flags &= ~SB_POSIXACL;
561 }
Sage Weil45195e42014-02-16 10:05:29 -0800562 break;
Jeff Layton2ccb4542019-04-02 15:35:56 -0400563 case Opt_wsync:
564 if (!result.negated)
565 fsopt->flags &= ~CEPH_MOUNT_OPT_ASYNC_DIROPS;
566 else
567 fsopt->flags |= CEPH_MOUNT_OPT_ASYNC_DIROPS;
568 break;
Jeff Layton94cc0872021-11-30 14:12:13 -0500569 case Opt_pagecache:
570 if (result.negated)
571 fsopt->flags |= CEPH_MOUNT_OPT_NOPAGECACHE;
572 else
573 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPAGECACHE;
574 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700575 default:
David Howells82995cc2019-03-25 16:38:32 +0000576 BUG();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577 }
578 return 0;
David Howells82995cc2019-03-25 16:38:32 +0000579
580out_of_range:
Al Virod53d0f72019-12-21 21:31:52 -0500581 return invalfc(fc, "%s out of range", param->key);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700582}
583
584static void destroy_mount_options(struct ceph_mount_options *args)
585{
586 dout("destroy_mount_options %p\n", args);
David Howells82995cc2019-03-25 16:38:32 +0000587 if (!args)
588 return;
589
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700590 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800591 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800592 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800593 kfree(args->fscache_uniq);
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530594 kfree(args->mon_addr);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700595 kfree(args);
596}
597
598static int strcmp_null(const char *s1, const char *s2)
599{
600 if (!s1 && !s2)
601 return 0;
602 if (s1 && !s2)
603 return -1;
604 if (!s1 && s2)
605 return 1;
606 return strcmp(s1, s2);
607}
608
609static int compare_mount_options(struct ceph_mount_options *new_fsopt,
610 struct ceph_options *new_opt,
611 struct ceph_fs_client *fsc)
612{
613 struct ceph_mount_options *fsopt1 = new_fsopt;
614 struct ceph_mount_options *fsopt2 = fsc->mount_options;
615 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
616 int ret;
617
618 ret = memcmp(fsopt1, fsopt2, ofs);
619 if (ret)
620 return ret;
621
622 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
623 if (ret)
624 return ret;
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100625
Yan, Zheng430afba2016-07-08 11:25:38 +0800626 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
627 if (ret)
628 return ret;
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500629
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100630 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
Yan, Zheng3f384952016-04-21 11:09:55 +0800631 if (ret)
632 return ret;
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500633
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800634 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
635 if (ret)
636 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800637
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530638 ret = strcmp_null(fsopt1->mon_addr, fsopt2->mon_addr);
639 if (ret)
640 return ret;
641
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700642 return ceph_compare_options(new_opt, fsc->client);
643}
644
Sage Weil6e19a162010-04-29 16:38:32 -0700645/**
646 * ceph_show_options - Show mount options in /proc/mounts
647 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500648 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700649 */
Al Viro34c80b12011-12-08 21:32:45 -0500650static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700651{
Al Viro34c80b12011-12-08 21:32:45 -0500652 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700653 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300654 size_t pos;
655 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700656
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300657 /* a comma between MNT/MS and client options */
658 seq_putc(m, ',');
659 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700660
Dongsheng Yang02b2f542018-12-18 04:31:48 -0500661 ret = ceph_print_client_options(m, fsc->client, false);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300662 if (ret)
663 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700664
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300665 /* retract our comma if no client options */
666 if (m->count == pos)
667 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700668
669 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
670 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800671 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
672 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700673 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700674 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300675 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800676 seq_puts(m, ",nodcache");
Chengguang Xu3619aa82018-06-04 16:03:51 +0800677 if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
678 seq_puts(m, ",ino32");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800679 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800680 seq_show_option(m, "fsc", fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800681 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800682 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
683 seq_puts(m, ",nopoolperm");
Luis Henriques9122eed2018-01-31 10:53:13 +0000684 if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
685 seq_puts(m, ",noquotadf");
Sage Weil6e19a162010-04-29 16:38:32 -0700686
Sage Weil45195e42014-02-16 10:05:29 -0800687#ifdef CONFIG_CEPH_FS_POSIX_ACL
David Howells82995cc2019-03-25 16:38:32 +0000688 if (root->d_sb->s_flags & SB_POSIXACL)
Sage Weil45195e42014-02-16 10:05:29 -0800689 seq_puts(m, ",acl");
690 else
691 seq_puts(m, ",noacl");
692#endif
693
Luis Henriques6f9718f2018-12-10 10:23:12 +0000694 if ((fsopt->flags & CEPH_MOUNT_OPT_NOCOPYFROM) == 0)
695 seq_puts(m, ",copyfrom");
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100696
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530697 /* dump mds_namespace when old device syntax is in use */
698 if (fsopt->mds_namespace && !fsopt->new_dev_syntax)
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800699 seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800700
Venky Shankar7b19b4d2021-07-14 15:35:52 +0530701 if (fsopt->mon_addr)
702 seq_printf(m, ",mon_addr=%s", fsopt->mon_addr);
703
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800704 if (fsopt->flags & CEPH_MOUNT_OPT_CLEANRECOVER)
705 seq_show_option(m, "recover_session", "clean");
706
Jeff Laytonf7a67b42021-08-09 11:55:15 -0400707 if (!(fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS))
708 seq_puts(m, ",wsync");
Jeff Layton2ccb4542019-04-02 15:35:56 -0400709
Jeff Layton94cc0872021-11-30 14:12:13 -0500710 if (fsopt->flags & CEPH_MOUNT_OPT_NOPAGECACHE)
711 seq_puts(m, ",nopagecache");
712
Ilya Dryomov6dd49402018-05-03 16:26:55 +0200713 if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400714 seq_printf(m, ",wsize=%u", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800715 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400716 seq_printf(m, ",rsize=%u", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700717 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400718 seq_printf(m, ",rasize=%u", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700719 if (fsopt->congestion_kb != default_congestion_kb())
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400720 seq_printf(m, ",write_congestion_kb=%u", fsopt->congestion_kb);
Yan, Zhengfe330322019-02-01 14:57:15 +0800721 if (fsopt->caps_max)
722 seq_printf(m, ",caps_max=%d", fsopt->caps_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700723 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400724 seq_printf(m, ",caps_wanted_delay_min=%u",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700725 fsopt->caps_wanted_delay_min);
726 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400727 seq_printf(m, ",caps_wanted_delay_max=%u",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700728 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700729 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400730 seq_printf(m, ",readdir_max_entries=%u", fsopt->max_readdir);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700731 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400732 seq_printf(m, ",readdir_max_bytes=%u", fsopt->max_readdir_bytes);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700733 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700734 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300735
Sage Weil6e19a162010-04-29 16:38:32 -0700736 return 0;
737}
738
739/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700740 * handle any mon messages the standard library doesn't understand.
741 * return error if we don't either.
742 */
743static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
744{
745 struct ceph_fs_client *fsc = client->private;
746 int type = le16_to_cpu(msg->hdr.type);
747
748 switch (type) {
749 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800750 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700751 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800752 case CEPH_MSG_FS_MAP_USER:
753 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
754 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700755 default:
756 return -1;
757 }
758}
759
760/*
761 * create a new fs client
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200762 *
763 * Success or not, this function consumes @fsopt and @opt.
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700764 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700765static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700766 struct ceph_options *opt)
767{
768 struct ceph_fs_client *fsc;
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200769 int err;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700770
771 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200772 if (!fsc) {
773 err = -ENOMEM;
774 goto fail;
775 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700776
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100777 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700778 if (IS_ERR(fsc->client)) {
779 err = PTR_ERR(fsc->client);
780 goto fail;
781 }
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200782 opt = NULL; /* fsc->client now owns this */
Ilya Dryomovc843d132018-05-30 16:29:14 +0200783
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700784 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Dongsheng Yang02b2f542018-12-18 04:31:48 -0500785 ceph_set_opt(fsc->client, ABORT_ON_FULL);
Yan, Zheng430afba2016-07-08 11:25:38 +0800786
Markus Elfringd37b1d92017-08-20 20:22:02 +0200787 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800788 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
789 0, true);
790 } else {
791 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
792 0, false);
793 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700794
795 fsc->mount_options = fsopt;
796
797 fsc->sb = NULL;
798 fsc->mount_state = CEPH_MOUNT_MOUNTING;
Yan, Zheng81f148a2019-07-25 20:16:46 +0800799 fsc->filp_gen = 1;
Luis Henriques78beb0f2020-01-08 10:03:53 +0000800 fsc->have_copy_from2 = true;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700801
802 atomic_long_set(&fsc->writeback_count, 0);
803
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700804 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100805 /*
806 * The number of concurrent works can be high but they don't need
807 * to be processed in parallel, limit concurrency.
808 */
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800809 fsc->inode_wq = alloc_workqueue("ceph-inode", WQ_UNBOUND, 0);
810 if (!fsc->inode_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200811 goto fail_client;
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800812 fsc->cap_wq = alloc_workqueue("ceph-cap", 0, 1);
813 if (!fsc->cap_wq)
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800814 goto fail_inode_wq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700815
Xiubo Li18f473b2020-07-16 10:05:57 -0400816 spin_lock(&ceph_fsc_lock);
817 list_add_tail(&fsc->metric_wakeup, &ceph_fsc_list);
818 spin_unlock(&ceph_fsc_lock);
819
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700820 return fsc;
821
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800822fail_inode_wq:
823 destroy_workqueue(fsc->inode_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700824fail_client:
825 ceph_destroy_client(fsc->client);
826fail:
827 kfree(fsc);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200828 if (opt)
829 ceph_destroy_options(opt);
830 destroy_mount_options(fsopt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700831 return ERR_PTR(err);
832}
833
Yan, Zhenga57d9062018-05-18 16:05:51 +0800834static void flush_fs_workqueues(struct ceph_fs_client *fsc)
835{
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800836 flush_workqueue(fsc->inode_wq);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800837 flush_workqueue(fsc->cap_wq);
Yan, Zhenga57d9062018-05-18 16:05:51 +0800838}
839
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700840static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700841{
842 dout("destroy_fs_client %p\n", fsc);
843
Xiubo Li18f473b2020-07-16 10:05:57 -0400844 spin_lock(&ceph_fsc_lock);
845 list_del(&fsc->metric_wakeup);
846 spin_unlock(&ceph_fsc_lock);
847
Jeff Layton3ee5a702019-09-12 08:07:56 -0400848 ceph_mdsc_destroy(fsc);
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800849 destroy_workqueue(fsc->inode_wq);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800850 destroy_workqueue(fsc->cap_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700851
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700852 destroy_mount_options(fsc->mount_options);
853
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700854 ceph_destroy_client(fsc->client);
855
856 kfree(fsc);
857 dout("destroy_fs_client %p done\n", fsc);
858}
859
860/*
Sage Weil6e19a162010-04-29 16:38:32 -0700861 * caches
862 */
863struct kmem_cache *ceph_inode_cachep;
864struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800865struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700866struct kmem_cache *ceph_dentry_cachep;
867struct kmem_cache *ceph_file_cachep;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800868struct kmem_cache *ceph_dir_file_cachep;
Jeff Layton058daab2020-02-17 18:38:37 -0500869struct kmem_cache *ceph_mds_request_cachep;
Jeff Laytona0102bd2020-07-30 11:03:55 -0400870mempool_t *ceph_wb_pagevec_pool;
Sage Weil6e19a162010-04-29 16:38:32 -0700871
872static void ceph_inode_init_once(void *foo)
873{
874 struct ceph_inode_info *ci = foo;
875 inode_init_once(&ci->vfs_inode);
876}
877
Sage Weil16725b92009-10-06 11:31:07 -0700878static int __init init_caches(void)
879{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400880 int error = -ENOMEM;
881
Sage Weil16725b92009-10-06 11:31:07 -0700882 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
883 sizeof(struct ceph_inode_info),
884 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800885 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
886 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200887 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700888 return -ENOMEM;
889
Chengguang Xubc4b5ad2018-02-27 13:49:44 +0800890 ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200891 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700892 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800893 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
894 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200895 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800896 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700897
898 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
899 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200900 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700901 goto bad_dentry;
902
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300903 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200904 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700905 goto bad_file;
906
Chengguang Xubb48bd42018-03-13 10:42:44 +0800907 ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, SLAB_MEM_SPREAD);
908 if (!ceph_dir_file_cachep)
909 goto bad_dir_file;
910
Jeff Layton058daab2020-02-17 18:38:37 -0500911 ceph_mds_request_cachep = KMEM_CACHE(ceph_mds_request, SLAB_MEM_SPREAD);
912 if (!ceph_mds_request_cachep)
913 goto bad_mds_req;
914
Jeff Laytona0102bd2020-07-30 11:03:55 -0400915 ceph_wb_pagevec_pool = mempool_create_kmalloc_pool(10, CEPH_MAX_WRITE_SIZE >> PAGE_SHIFT);
916 if (!ceph_wb_pagevec_pool)
917 goto bad_pagevec_pool;
918
Chengguang Xu1c789242018-03-01 14:24:51 +0800919 error = ceph_fscache_register();
920 if (error)
921 goto bad_fscache;
Sage Weil16725b92009-10-06 11:31:07 -0700922
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400923 return 0;
Chengguang Xu1c789242018-03-01 14:24:51 +0800924
925bad_fscache:
Jeff Layton058daab2020-02-17 18:38:37 -0500926 kmem_cache_destroy(ceph_mds_request_cachep);
Jeff Laytona0102bd2020-07-30 11:03:55 -0400927bad_pagevec_pool:
928 mempool_destroy(ceph_wb_pagevec_pool);
Jeff Layton058daab2020-02-17 18:38:37 -0500929bad_mds_req:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800930 kmem_cache_destroy(ceph_dir_file_cachep);
931bad_dir_file:
Chengguang Xu1c789242018-03-01 14:24:51 +0800932 kmem_cache_destroy(ceph_file_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700933bad_file:
934 kmem_cache_destroy(ceph_dentry_cachep);
935bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800936 kmem_cache_destroy(ceph_cap_flush_cachep);
937bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700938 kmem_cache_destroy(ceph_cap_cachep);
939bad_cap:
940 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400941 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700942}
943
944static void destroy_caches(void)
945{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000946 /*
947 * Make sure all delayed rcu free inodes are flushed before we
948 * destroy cache.
949 */
950 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400951
Sage Weil16725b92009-10-06 11:31:07 -0700952 kmem_cache_destroy(ceph_inode_cachep);
953 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800954 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700955 kmem_cache_destroy(ceph_dentry_cachep);
956 kmem_cache_destroy(ceph_file_cachep);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800957 kmem_cache_destroy(ceph_dir_file_cachep);
Jeff Layton058daab2020-02-17 18:38:37 -0500958 kmem_cache_destroy(ceph_mds_request_cachep);
Jeff Laytona0102bd2020-07-30 11:03:55 -0400959 mempool_destroy(ceph_wb_pagevec_pool);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400960
961 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700962}
963
Jeff Layton50c91322020-09-25 07:55:39 -0400964static void __ceph_umount_begin(struct ceph_fs_client *fsc)
965{
966 ceph_osdc_abort_requests(&fsc->client->osdc, -EIO);
967 ceph_mdsc_force_umount(fsc->mdsc);
968 fsc->filp_gen++; // invalidate open files
969}
970
Sage Weil16725b92009-10-06 11:31:07 -0700971/*
Randy Dunlapf1f565a2020-07-17 16:36:04 -0700972 * ceph_umount_begin - initiate forced umount. Tear down the
Sage Weil16725b92009-10-06 11:31:07 -0700973 * mount, skipping steps that may hang while waiting for server(s).
974 */
Jeff Layton631ed4b2021-10-14 11:10:47 -0400975void ceph_umount_begin(struct super_block *sb)
Sage Weil16725b92009-10-06 11:31:07 -0700976{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700977 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700978
979 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700980 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700981 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700982 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Jeff Layton50c91322020-09-25 07:55:39 -0400983 __ceph_umount_begin(fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700984}
985
986static const struct super_operations ceph_super_ops = {
987 .alloc_inode = ceph_alloc_inode,
Al Virocfa6d412019-04-10 15:18:50 -0400988 .free_inode = ceph_free_inode,
Sage Weil16725b92009-10-06 11:31:07 -0700989 .write_inode = ceph_write_inode,
Luis Henriques52dd0f12019-07-05 17:14:56 +0100990 .drop_inode = generic_delete_inode,
Yan, Zheng87bc5b82019-06-02 09:45:38 +0800991 .evict_inode = ceph_evict_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700992 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700993 .put_super = ceph_put_super,
994 .show_options = ceph_show_options,
995 .statfs = ceph_statfs,
996 .umount_begin = ceph_umount_begin,
997};
998
Sage Weil16725b92009-10-06 11:31:07 -0700999/*
1000 * Bootstrap mount by opening the root directory. Note the mount
1001 * @started time from caller, and time out if this takes too long.
1002 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001003static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -07001004 const char *path,
1005 unsigned long started)
1006{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001007 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -07001008 struct ceph_mds_request *req = NULL;
1009 int err;
1010 struct dentry *root;
1011
1012 /* open dir */
1013 dout("open_root_inode opening '%s'\n", path);
1014 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
1015 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +02001016 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -07001017 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -04001018 if (!req->r_path1) {
1019 root = ERR_PTR(-ENOMEM);
1020 goto out;
1021 }
1022
Sage Weil16725b92009-10-06 11:31:07 -07001023 req->r_ino1.ino = CEPH_INO_ROOT;
1024 req->r_ino1.snap = CEPH_NOSNAP;
1025 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +03001026 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -07001027 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
1028 req->r_num_caps = 2;
1029 err = ceph_mdsc_do_request(mdsc, NULL, req);
1030 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -05001031 struct inode *inode = req->r_target_inode;
1032 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001033 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +08001034 root = d_make_root(inode);
1035 if (!root) {
1036 root = ERR_PTR(-ENOMEM);
1037 goto out;
Sage Weil774ac212011-11-11 09:48:08 -08001038 }
Sage Weil16725b92009-10-06 11:31:07 -07001039 dout("open_root_inode success, root dentry is %p\n", root);
1040 } else {
1041 root = ERR_PTR(err);
1042 }
Al Viro3c5184e2012-01-09 16:34:32 -05001043out:
Sage Weil16725b92009-10-06 11:31:07 -07001044 ceph_mdsc_put_request(req);
1045 return root;
1046}
1047
1048/*
1049 * mount: join the ceph cluster, and open root directory.
1050 */
David Howells82995cc2019-03-25 16:38:32 +00001051static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
1052 struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001053{
Sage Weil16725b92009-10-06 11:31:07 -07001054 int err;
Sage Weil16725b92009-10-06 11:31:07 -07001055 unsigned long started = jiffies; /* note the start time */
1056 struct dentry *root;
1057
Yan, Zheng132ca7e2016-03-12 13:20:48 +08001058 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001059 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -07001060
Yan, Zheng132ca7e2016-03-12 13:20:48 +08001061 if (!fsc->sb->s_root) {
Ilya Dryomovb27a9392020-02-10 22:51:08 +01001062 const char *path = fsc->mount_options->server_path ?
1063 fsc->mount_options->server_path + 1 : "";
1064
Yan, Zheng132ca7e2016-03-12 13:20:48 +08001065 err = __ceph_open_session(fsc->client, started);
1066 if (err < 0)
1067 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001068
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001069 /* setup fscache */
1070 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
David Howells82995cc2019-03-25 16:38:32 +00001071 err = ceph_fscache_register_fs(fsc, fc);
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001072 if (err < 0)
1073 goto out;
1074 }
1075
Xiubo Li4fbc0c72019-12-20 09:34:04 -05001076 dout("mount opening path '%s'\n", path);
Chengguang Xu18106732018-02-09 20:40:59 +08001077
Greg Kroah-Hartman1a829ff2019-06-12 16:55:38 +02001078 ceph_fs_debugfs_init(fsc);
Chengguang Xu18106732018-02-09 20:40:59 +08001079
Yan, Zhengce2728a2016-09-14 14:53:05 +08001080 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +08001081 if (IS_ERR(root)) {
1082 err = PTR_ERR(root);
1083 goto out;
1084 }
Yan, Zhengce2728a2016-09-14 14:53:05 +08001085 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +02001086 } else {
1087 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001088 }
Sage Weil16725b92009-10-06 11:31:07 -07001089
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001090 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -07001091 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +04001092 mutex_unlock(&fsc->client->mount_mutex);
1093 return root;
Sage Weil16725b92009-10-06 11:31:07 -07001094
Yan, Zheng132ca7e2016-03-12 13:20:48 +08001095out:
1096 mutex_unlock(&fsc->client->mount_mutex);
1097 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001098}
1099
David Howells82995cc2019-03-25 16:38:32 +00001100static int ceph_set_super(struct super_block *s, struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001101{
David Howells82995cc2019-03-25 16:38:32 +00001102 struct ceph_fs_client *fsc = s->s_fs_info;
Sage Weil16725b92009-10-06 11:31:07 -07001103 int ret;
1104
David Howells82995cc2019-03-25 16:38:32 +00001105 dout("set_super %p\n", s);
Sage Weil16725b92009-10-06 11:31:07 -07001106
Chengguang Xu719784b2018-07-19 22:15:24 +08001107 s->s_maxbytes = MAX_LFS_FILESIZE;
Sage Weil16725b92009-10-06 11:31:07 -07001108
Guangliang Zhao7221fe42013-11-11 15:18:03 +08001109 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001110 fsc->sb = s;
Chengguang Xu719784b2018-07-19 22:15:24 +08001111 fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */
Sage Weil16725b92009-10-06 11:31:07 -07001112
1113 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -04001114 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -07001115 s->s_export_op = &ceph_export_ops;
1116
Luis Henriques0f7cf802019-06-27 14:51:22 +01001117 s->s_time_gran = 1;
Deepa Dinamani028ca4d2019-03-21 14:34:38 -07001118 s->s_time_min = 0;
1119 s->s_time_max = U32_MAX;
Sage Weil16725b92009-10-06 11:31:07 -07001120
David Howells82995cc2019-03-25 16:38:32 +00001121 ret = set_anon_super_fc(s, fc);
Sage Weil16725b92009-10-06 11:31:07 -07001122 if (ret != 0)
David Howells82995cc2019-03-25 16:38:32 +00001123 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001124 return ret;
1125}
1126
1127/*
1128 * share superblock if same fs AND options
1129 */
David Howells82995cc2019-03-25 16:38:32 +00001130static int ceph_compare_super(struct super_block *sb, struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001131{
David Howells82995cc2019-03-25 16:38:32 +00001132 struct ceph_fs_client *new = fc->s_fs_info;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001133 struct ceph_mount_options *fsopt = new->mount_options;
1134 struct ceph_options *opt = new->client->options;
Jeff Layton98d0a6f2021-09-30 08:33:13 -04001135 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001136
1137 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001138
Jeff Layton98d0a6f2021-09-30 08:33:13 -04001139 if (compare_mount_options(fsopt, opt, fsc)) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001140 dout("monitor(s)/mount options don't match\n");
1141 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001142 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001143 if ((opt->flags & CEPH_OPT_FSID) &&
Jeff Layton98d0a6f2021-09-30 08:33:13 -04001144 ceph_fsid_compare(&opt->fsid, &fsc->client->fsid)) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001145 dout("fsid doesn't match\n");
1146 return 0;
1147 }
David Howells82995cc2019-03-25 16:38:32 +00001148 if (fc->sb_flags != (sb->s_flags & ~SB_BORN)) {
Sage Weil16725b92009-10-06 11:31:07 -07001149 dout("flags differ\n");
1150 return 0;
1151 }
Jeff Layton98d0a6f2021-09-30 08:33:13 -04001152
1153 if (fsc->blocklisted && !ceph_test_mount_opt(fsc, CLEANRECOVER)) {
1154 dout("client is blocklisted (and CLEANRECOVER is not set)\n");
1155 return 0;
1156 }
1157
1158 if (fsc->mount_state == CEPH_MOUNT_SHUTDOWN) {
1159 dout("client has been forcibly unmounted\n");
1160 return 0;
1161 }
1162
Sage Weil16725b92009-10-06 11:31:07 -07001163 return 1;
1164}
1165
1166/*
1167 * construct our own bdi so we can control readahead, etc.
1168 */
Jeff Mahoney00d56432010-06-10 11:13:58 -04001169static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -07001170
Jan Kara09dc9fc2017-04-12 12:24:33 +02001171static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -07001172{
1173 int err;
1174
Jan Kara09dc9fc2017-04-12 12:24:33 +02001175 err = super_setup_bdi_name(sb, "ceph-%ld",
1176 atomic_long_inc_return(&bdi_seq));
1177 if (err)
1178 return err;
1179
Sage Weil83817e32011-08-04 08:03:44 -07001180 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +08001181 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001182
Yan, Zhengaa187922017-07-11 15:56:09 +08001183 /* set io_pages based on max osd read size */
1184 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +01001185
Jan Kara09dc9fc2017-04-12 12:24:33 +02001186 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001187}
1188
David Howells82995cc2019-03-25 16:38:32 +00001189static int ceph_get_tree(struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001190{
David Howells82995cc2019-03-25 16:38:32 +00001191 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
Venky Shankar7b19b4d2021-07-14 15:35:52 +05301192 struct ceph_mount_options *fsopt = pctx->opts;
Sage Weil16725b92009-10-06 11:31:07 -07001193 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001194 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001195 struct dentry *res;
David Howells82995cc2019-03-25 16:38:32 +00001196 int (*compare_super)(struct super_block *, struct fs_context *) =
1197 ceph_compare_super;
Sage Weil16725b92009-10-06 11:31:07 -07001198 int err;
Sage Weil16725b92009-10-06 11:31:07 -07001199
David Howells82995cc2019-03-25 16:38:32 +00001200 dout("ceph_get_tree\n");
1201
1202 if (!fc->source)
Al Virod53d0f72019-12-21 21:31:52 -05001203 return invalfc(fc, "No source");
Venky Shankar7b19b4d2021-07-14 15:35:52 +05301204 if (fsopt->new_dev_syntax && !fsopt->mon_addr)
1205 return invalfc(fc, "No monitor address");
Sage Weil45195e42014-02-16 10:05:29 -08001206
Sage Weil16725b92009-10-06 11:31:07 -07001207 /* create client (which we may/may not use) */
David Howells82995cc2019-03-25 16:38:32 +00001208 fsc = create_fs_client(pctx->opts, pctx->copts);
1209 pctx->opts = NULL;
1210 pctx->copts = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001211 if (IS_ERR(fsc)) {
David Howells82995cc2019-03-25 16:38:32 +00001212 err = PTR_ERR(fsc);
Sage Weil6b805182009-10-27 11:50:50 -07001213 goto out_final;
1214 }
Sage Weil16725b92009-10-06 11:31:07 -07001215
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001216 err = ceph_mdsc_init(fsc);
David Howells82995cc2019-03-25 16:38:32 +00001217 if (err < 0)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001218 goto out;
1219
1220 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001221 compare_super = NULL;
David Howells82995cc2019-03-25 16:38:32 +00001222
1223 fc->s_fs_info = fsc;
1224 sb = sget_fc(fc, compare_super, ceph_set_super);
1225 fc->s_fs_info = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001226 if (IS_ERR(sb)) {
David Howells82995cc2019-03-25 16:38:32 +00001227 err = PTR_ERR(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001228 goto out;
1229 }
1230
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001231 if (ceph_sb_to_client(sb) != fsc) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001232 destroy_fs_client(fsc);
1233 fsc = ceph_sb_to_client(sb);
1234 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001235 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001236 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001237 err = ceph_setup_bdi(sb, fsc);
David Howells82995cc2019-03-25 16:38:32 +00001238 if (err < 0)
Sage Weil16725b92009-10-06 11:31:07 -07001239 goto out_splat;
1240 }
1241
David Howells82995cc2019-03-25 16:38:32 +00001242 res = ceph_real_mount(fsc, fc);
1243 if (IS_ERR(res)) {
1244 err = PTR_ERR(res);
Sage Weil16725b92009-10-06 11:31:07 -07001245 goto out_splat;
David Howells82995cc2019-03-25 16:38:32 +00001246 }
Al Viroa7f9fb22010-07-26 16:17:55 +04001247 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001248 d_inode(res), ceph_vinop(d_inode(res)));
David Howells82995cc2019-03-25 16:38:32 +00001249 fc->root = fsc->sb->s_root;
1250 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001251
1252out_splat:
Xiubo Li97820052019-12-10 20:29:40 -05001253 if (!ceph_mdsmap_is_cluster_available(fsc->mdsc->mdsmap)) {
1254 pr_info("No mds server is up or the cluster is laggy\n");
1255 err = -EHOSTUNREACH;
1256 }
1257
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001258 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001259 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001260 goto out_final;
1261
1262out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001263 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001264out_final:
David Howells82995cc2019-03-25 16:38:32 +00001265 dout("ceph_get_tree fail %d\n", err);
1266 return err;
1267}
1268
1269static void ceph_free_fc(struct fs_context *fc)
1270{
1271 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1272
1273 if (pctx) {
1274 destroy_mount_options(pctx->opts);
1275 ceph_destroy_options(pctx->copts);
1276 kfree(pctx);
1277 }
1278}
1279
1280static int ceph_reconfigure_fc(struct fs_context *fc)
1281{
Jeff Layton2ccb4542019-04-02 15:35:56 -04001282 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1283 struct ceph_mount_options *fsopt = pctx->opts;
1284 struct ceph_fs_client *fsc = ceph_sb_to_client(fc->root->d_sb);
1285
1286 if (fsopt->flags & CEPH_MOUNT_OPT_ASYNC_DIROPS)
1287 ceph_set_mount_opt(fsc, ASYNC_DIROPS);
1288 else
1289 ceph_clear_mount_opt(fsc, ASYNC_DIROPS);
1290
Venky Shankar2167f2c2021-07-14 15:35:53 +05301291 if (strcmp_null(fsc->mount_options->mon_addr, fsopt->mon_addr)) {
1292 kfree(fsc->mount_options->mon_addr);
1293 fsc->mount_options->mon_addr = fsopt->mon_addr;
1294 fsopt->mon_addr = NULL;
1295 pr_notice("ceph: monitor addresses recorded, but not used for reconnection");
1296 }
1297
David Howells82995cc2019-03-25 16:38:32 +00001298 sync_filesystem(fc->root->d_sb);
1299 return 0;
1300}
1301
1302static const struct fs_context_operations ceph_context_ops = {
1303 .free = ceph_free_fc,
1304 .parse_param = ceph_parse_mount_param,
1305 .get_tree = ceph_get_tree,
1306 .reconfigure = ceph_reconfigure_fc,
1307};
1308
1309/*
1310 * Set up the filesystem mount context.
1311 */
1312static int ceph_init_fs_context(struct fs_context *fc)
1313{
1314 struct ceph_parse_opts_ctx *pctx;
1315 struct ceph_mount_options *fsopt;
1316
1317 pctx = kzalloc(sizeof(*pctx), GFP_KERNEL);
1318 if (!pctx)
1319 return -ENOMEM;
1320
1321 pctx->copts = ceph_alloc_options();
1322 if (!pctx->copts)
1323 goto nomem;
1324
1325 pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL);
1326 if (!pctx->opts)
1327 goto nomem;
1328
1329 fsopt = pctx->opts;
1330 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
1331
1332 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
1333 fsopt->rsize = CEPH_MAX_READ_SIZE;
1334 fsopt->rasize = CEPH_RASIZE_DEFAULT;
1335 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
1336 if (!fsopt->snapdir_name)
1337 goto nomem;
1338
1339 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
1340 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
1341 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
1342 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
1343 fsopt->congestion_kb = default_congestion_kb();
1344
Xiubo Li3b20bc22020-02-11 01:53:16 -05001345#ifdef CONFIG_CEPH_FS_POSIX_ACL
1346 fc->sb_flags |= SB_POSIXACL;
1347#endif
1348
David Howells82995cc2019-03-25 16:38:32 +00001349 fc->fs_private = pctx;
1350 fc->ops = &ceph_context_ops;
1351 return 0;
1352
1353nomem:
1354 destroy_mount_options(pctx->opts);
1355 ceph_destroy_options(pctx->copts);
1356 kfree(pctx);
1357 return -ENOMEM;
Sage Weil16725b92009-10-06 11:31:07 -07001358}
1359
1360static void ceph_kill_sb(struct super_block *s)
1361{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001362 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001363
Sage Weil16725b92009-10-06 11:31:07 -07001364 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001365
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001366 ceph_mdsc_pre_umount(fsc->mdsc);
Yan, Zhenga57d9062018-05-18 16:05:51 +08001367 flush_fs_workqueues(fsc);
1368
Jeff Layton470a5c72020-09-11 15:19:00 -04001369 kill_anon_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001370
1371 fsc->client->extra_mon_dispatch = NULL;
1372 ceph_fs_debugfs_cleanup(fsc);
1373
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001374 ceph_fscache_unregister_fs(fsc);
1375
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001376 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001377}
1378
1379static struct file_system_type ceph_fs_type = {
1380 .owner = THIS_MODULE,
1381 .name = "ceph",
David Howells82995cc2019-03-25 16:38:32 +00001382 .init_fs_context = ceph_init_fs_context,
Sage Weil16725b92009-10-06 11:31:07 -07001383 .kill_sb = ceph_kill_sb,
1384 .fs_flags = FS_RENAME_DOES_D_MOVE,
1385};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001386MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001387
Yan, Zhengd468e722019-07-25 20:16:44 +08001388int ceph_force_reconnect(struct super_block *sb)
1389{
1390 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
1391 int err = 0;
1392
Jeff Layton50c91322020-09-25 07:55:39 -04001393 fsc->mount_state = CEPH_MOUNT_RECOVER;
1394 __ceph_umount_begin(fsc);
Yan, Zhengd468e722019-07-25 20:16:44 +08001395
1396 /* Make sure all page caches get invalidated.
1397 * see remove_session_caps_cb() */
1398 flush_workqueue(fsc->inode_wq);
1399
Ilya Dryomov0b98acd2020-09-14 13:39:19 +02001400 /* In case that we were blocklisted. This also reset
Yan, Zhengd468e722019-07-25 20:16:44 +08001401 * all mon/osd connections */
1402 ceph_reset_client_addr(fsc->client);
1403
1404 ceph_osdc_clear_abort_err(&fsc->client->osdc);
Yan, Zheng131d7eb2019-07-25 20:16:47 +08001405
Ilya Dryomov0b98acd2020-09-14 13:39:19 +02001406 fsc->blocklisted = false;
Yan, Zhengd468e722019-07-25 20:16:44 +08001407 fsc->mount_state = CEPH_MOUNT_MOUNTED;
1408
1409 if (sb->s_root) {
1410 err = __ceph_do_getattr(d_inode(sb->s_root), NULL,
1411 CEPH_STAT_CAP_INODE, true);
1412 }
1413 return err;
1414}
1415
Sage Weil16725b92009-10-06 11:31:07 -07001416static int __init init_ceph(void)
1417{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001418 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001419 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001420 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001421
Yan, Zhengeb13e832014-03-09 23:16:40 +08001422 ceph_flock_init();
Sage Weil16725b92009-10-06 11:31:07 -07001423 ret = register_filesystem(&ceph_fs_type);
1424 if (ret)
David Disseldorpd0f191d2019-04-18 14:15:49 +02001425 goto out_caches;
Sage Weil16725b92009-10-06 11:31:07 -07001426
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001427 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1428
Sage Weil16725b92009-10-06 11:31:07 -07001429 return 0;
1430
David Disseldorpd0f191d2019-04-18 14:15:49 +02001431out_caches:
Sage Weil16725b92009-10-06 11:31:07 -07001432 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001433out:
1434 return ret;
1435}
1436
1437static void __exit exit_ceph(void)
1438{
1439 dout("exit_ceph\n");
1440 unregister_filesystem(&ceph_fs_type);
Sage Weil16725b92009-10-06 11:31:07 -07001441 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001442}
1443
Xiubo Li18f473b2020-07-16 10:05:57 -04001444static int param_set_metrics(const char *val, const struct kernel_param *kp)
1445{
1446 struct ceph_fs_client *fsc;
1447 int ret;
1448
1449 ret = param_set_bool(val, kp);
1450 if (ret) {
1451 pr_err("Failed to parse sending metrics switch value '%s'\n",
1452 val);
1453 return ret;
1454 } else if (!disable_send_metrics) {
1455 // wake up all the mds clients
1456 spin_lock(&ceph_fsc_lock);
1457 list_for_each_entry(fsc, &ceph_fsc_list, metric_wakeup) {
1458 metric_schedule_delayed(&fsc->mdsc->metric);
1459 }
1460 spin_unlock(&ceph_fsc_lock);
1461 }
1462
1463 return 0;
1464}
1465
1466static const struct kernel_param_ops param_ops_metrics = {
1467 .set = param_set_metrics,
1468 .get = param_get_bool,
1469};
1470
1471bool disable_send_metrics = false;
1472module_param_cb(disable_send_metrics, &param_ops_metrics, &disable_send_metrics, 0644);
1473MODULE_PARM_DESC(disable_send_metrics, "Enable sending perf metrics to ceph cluster (default: on)");
1474
Venky Shankaradbed052021-11-03 10:30:39 +05301475/* for both v1 and v2 syntax */
1476static bool mount_support = true;
1477static const struct kernel_param_ops param_ops_mount_syntax = {
1478 .get = param_get_bool,
1479};
1480module_param_cb(mount_syntax_v1, &param_ops_mount_syntax, &mount_support, 0444);
1481module_param_cb(mount_syntax_v2, &param_ops_mount_syntax, &mount_support, 0444);
1482
Sage Weil16725b92009-10-06 11:31:07 -07001483module_init(init_ceph);
1484module_exit(exit_ceph);
1485
1486MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1487MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1488MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1489MODULE_DESCRIPTION("Ceph filesystem for Linux");
1490MODULE_LICENSE("GPL");