blob: 64ea34ac330ba77f39ec3d3095658d0fcf067dcf [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
30/*
31 * Ceph superblock operations
32 *
33 * Handle the basics of mounting, unmounting.
34 */
35
Sage Weil16725b92009-10-06 11:31:07 -070036/*
37 * super ops
38 */
39static void ceph_put_super(struct super_block *s)
40{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070041 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -070042
43 dout("put_super\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070044 ceph_mdsc_close_sessions(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -070045}
46
47static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
48{
David Howells2b0143b2015-03-17 22:25:59 +000049 struct ceph_fs_client *fsc = ceph_inode_to_client(d_inode(dentry));
Luis Henriques73fb0942018-05-28 18:37:40 +010050 struct ceph_mon_client *monc = &fsc->client->monc;
Sage Weil16725b92009-10-06 11:31:07 -070051 struct ceph_statfs st;
52 u64 fsid;
53 int err;
Douglas Fuller06d74372017-08-16 10:19:27 -040054 u64 data_pool;
55
56 if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) {
57 data_pool = fsc->mdsc->mdsmap->m_data_pg_pools[0];
58 } else {
59 data_pool = CEPH_NOPOOL;
60 }
Sage Weil16725b92009-10-06 11:31:07 -070061
62 dout("statfs\n");
Luis Henriques73fb0942018-05-28 18:37:40 +010063 err = ceph_monc_do_statfs(monc, data_pool, &st);
Sage Weil16725b92009-10-06 11:31:07 -070064 if (err < 0)
65 return err;
66
67 /* fill in kstatfs */
68 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
69
70 /*
71 * express utilization in terms of large blocks to avoid
72 * overflow on 32-bit machines.
Sage Weil92a49fb2013-02-22 15:31:00 -080073 *
74 * NOTE: for the time being, we make bsize == frsize to humor
75 * not-yet-ancient versions of glibc that are broken.
76 * Someday, we will probably want to report a real block
77 * size... whatever that may mean for a network file system!
Sage Weil16725b92009-10-06 11:31:07 -070078 */
79 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080080 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Luis Henriques9122eed2018-01-31 10:53:13 +000081
82 /*
83 * By default use root quota for stats; fallback to overall filesystem
84 * usage if using 'noquotadf' mount option or if the root dir doesn't
85 * have max_bytes quota set.
86 */
87 if (ceph_test_mount_opt(fsc, NOQUOTADF) ||
88 !ceph_quota_update_statfs(fsc, buf)) {
89 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
90 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
91 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
92 }
Sage Weil16725b92009-10-06 11:31:07 -070093
94 buf->f_files = le64_to_cpu(st.num_objects);
95 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070096 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070097
Jeff Layton080a3302017-10-23 10:58:40 -040098 /* Must convert the fsid, for consistent values across arches */
Luis Henriques73fb0942018-05-28 18:37:40 +010099 mutex_lock(&monc->mutex);
100 fsid = le64_to_cpu(*(__le64 *)(&monc->monmap->fsid)) ^
101 le64_to_cpu(*((__le64 *)&monc->monmap->fsid + 1));
102 mutex_unlock(&monc->mutex);
103
Sage Weil16725b92009-10-06 11:31:07 -0700104 buf->f_fsid.val[0] = fsid & 0xffffffff;
105 buf->f_fsid.val[1] = fsid >> 32;
106
107 return 0;
108}
109
Sage Weil2d9c98a2010-07-30 09:38:13 -0700110static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700111{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700112 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700113
114 if (!wait) {
115 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700116 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700117 dout("sync_fs (non-blocking) done\n");
118 return 0;
119 }
120
121 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700122 ceph_osdc_sync(&fsc->client->osdc);
123 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700124 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700125 return 0;
126}
127
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700128/*
129 * mount options
130 */
131enum {
132 Opt_wsize,
133 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700134 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700135 Opt_caps_wanted_delay_min,
136 Opt_caps_wanted_delay_max,
Yan, Zhengfe330322019-02-01 14:57:15 +0800137 Opt_caps_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700138 Opt_readdir_max_entries,
139 Opt_readdir_max_bytes,
140 Opt_congestion_kb,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700141 /* int args above */
142 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800143 Opt_mds_namespace,
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800144 Opt_recover_session,
David Howells82995cc2019-03-25 16:38:32 +0000145 Opt_source,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700146 /* string args above */
147 Opt_dirstat,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700148 Opt_rbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600149 Opt_asyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800150 Opt_dcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800151 Opt_ino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400152 Opt_fscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800153 Opt_poolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800154 Opt_require_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800155 Opt_acl,
Luis Henriques9122eed2018-01-31 10:53:13 +0000156 Opt_quotadf,
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100157 Opt_copyfrom,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700158};
159
David Howells82995cc2019-03-25 16:38:32 +0000160enum ceph_recover_session_mode {
161 ceph_recover_session_no,
162 ceph_recover_session_clean
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700163};
164
Al Viro5eede622019-12-16 13:33:32 -0500165static const struct constant_table ceph_param_recover[] = {
Al Viro2710c957a2019-09-06 22:12:08 -0400166 { "no", ceph_recover_session_no },
167 { "clean", ceph_recover_session_clean },
David Howells82995cc2019-03-25 16:38:32 +0000168 {}
169};
170
Al Virod7167b12019-09-07 07:23:15 -0400171static const struct fs_parameter_spec ceph_mount_parameters[] = {
David Howells82995cc2019-03-25 16:38:32 +0000172 fsparam_flag_no ("acl", Opt_acl),
173 fsparam_flag_no ("asyncreaddir", Opt_asyncreaddir),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400174 fsparam_s32 ("caps_max", Opt_caps_max),
David Howells82995cc2019-03-25 16:38:32 +0000175 fsparam_u32 ("caps_wanted_delay_max", Opt_caps_wanted_delay_max),
176 fsparam_u32 ("caps_wanted_delay_min", Opt_caps_wanted_delay_min),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400177 fsparam_u32 ("write_congestion_kb", Opt_congestion_kb),
David Howells82995cc2019-03-25 16:38:32 +0000178 fsparam_flag_no ("copyfrom", Opt_copyfrom),
179 fsparam_flag_no ("dcache", Opt_dcache),
180 fsparam_flag_no ("dirstat", Opt_dirstat),
Al Viro48ce73b2019-12-17 20:03:59 -0500181 fsparam_flag_no ("fsc", Opt_fscache), // fsc|nofsc
182 fsparam_string ("fsc", Opt_fscache), // fsc=...
David Howells82995cc2019-03-25 16:38:32 +0000183 fsparam_flag_no ("ino32", Opt_ino32),
184 fsparam_string ("mds_namespace", Opt_mds_namespace),
185 fsparam_flag_no ("poolperm", Opt_poolperm),
186 fsparam_flag_no ("quotadf", Opt_quotadf),
187 fsparam_u32 ("rasize", Opt_rasize),
188 fsparam_flag_no ("rbytes", Opt_rbytes),
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400189 fsparam_u32 ("readdir_max_bytes", Opt_readdir_max_bytes),
190 fsparam_u32 ("readdir_max_entries", Opt_readdir_max_entries),
Al Viro2710c957a2019-09-06 22:12:08 -0400191 fsparam_enum ("recover_session", Opt_recover_session, ceph_param_recover),
David Howells82995cc2019-03-25 16:38:32 +0000192 fsparam_flag_no ("require_active_mds", Opt_require_active_mds),
193 fsparam_u32 ("rsize", Opt_rsize),
194 fsparam_string ("snapdirname", Opt_snapdirname),
195 fsparam_string ("source", Opt_source),
196 fsparam_u32 ("wsize", Opt_wsize),
197 {}
198};
199
David Howells82995cc2019-03-25 16:38:32 +0000200struct ceph_parse_opts_ctx {
201 struct ceph_options *copts;
202 struct ceph_mount_options *opts;
203};
204
205/*
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100206 * Remove adjacent slashes and then the trailing slash, unless it is
207 * the only remaining character.
208 *
209 * E.g. "//dir1////dir2///" --> "/dir1/dir2", "///" --> "/".
210 */
211static void canonicalize_path(char *path)
212{
213 int i, j = 0;
214
215 for (i = 0; path[i] != '\0'; i++) {
216 if (path[i] != '/' || j < 1 || path[j - 1] != '/')
217 path[j++] = path[i];
218 }
219
220 if (j > 1 && path[j - 1] == '/')
221 j--;
222 path[j] = '\0';
223}
224
225/*
David Howells82995cc2019-03-25 16:38:32 +0000226 * Parse the source parameter. Distinguish the server list from the path.
David Howells82995cc2019-03-25 16:38:32 +0000227 *
228 * The source will look like:
229 * <server_spec>[,<server_spec>...]:[<path>]
230 * where
231 * <server_spec> is <ip>[:<port>]
232 * <path> is optional, but if present must begin with '/'
233 */
234static int ceph_parse_source(struct fs_parameter *param, struct fs_context *fc)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800235{
David Howells82995cc2019-03-25 16:38:32 +0000236 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
237 struct ceph_mount_options *fsopt = pctx->opts;
238 char *dev_name = param->string, *dev_name_end;
239 int ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800240
David Howells82995cc2019-03-25 16:38:32 +0000241 dout("%s '%s'\n", __func__, dev_name);
242 if (!dev_name || !*dev_name)
Al Virod53d0f72019-12-21 21:31:52 -0500243 return invalfc(fc, "Empty source");
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800244
David Howells82995cc2019-03-25 16:38:32 +0000245 dev_name_end = strchr(dev_name, '/');
246 if (dev_name_end) {
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500247 /*
248 * The server_path will include the whole chars from userland
249 * including the leading '/'.
250 */
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100251 kfree(fsopt->server_path);
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500252 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
253 if (!fsopt->server_path)
254 return -ENOMEM;
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100255
256 canonicalize_path(fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700257 } else {
David Howells82995cc2019-03-25 16:38:32 +0000258 dev_name_end = dev_name + strlen(dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700259 }
260
David Howells82995cc2019-03-25 16:38:32 +0000261 dev_name_end--; /* back up to ':' separator */
262 if (dev_name_end < dev_name || *dev_name_end != ':')
Al Virod53d0f72019-12-21 21:31:52 -0500263 return invalfc(fc, "No path or : separator in source");
David Howells82995cc2019-03-25 16:38:32 +0000264
265 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
266 if (fsopt->server_path)
267 dout("server path '%s'\n", fsopt->server_path);
268
269 ret = ceph_parse_mon_ips(param->string, dev_name_end - dev_name,
Al Virocc3c0b52019-12-21 00:16:49 -0500270 pctx->copts, fc->log.log);
David Howells82995cc2019-03-25 16:38:32 +0000271 if (ret)
272 return ret;
273
274 fc->source = param->string;
275 param->string = NULL;
276 return 0;
277}
278
279static int ceph_parse_mount_param(struct fs_context *fc,
280 struct fs_parameter *param)
281{
282 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
283 struct ceph_mount_options *fsopt = pctx->opts;
284 struct fs_parse_result result;
285 unsigned int mode;
286 int token, ret;
287
Al Virocc3c0b52019-12-21 00:16:49 -0500288 ret = ceph_parse_param(param, pctx->copts, fc->log.log);
David Howells82995cc2019-03-25 16:38:32 +0000289 if (ret != -ENOPARAM)
290 return ret;
291
Al Virod7167b12019-09-07 07:23:15 -0400292 token = fs_parse(fc, ceph_mount_parameters, param, &result);
David Howells82995cc2019-03-25 16:38:32 +0000293 dout("%s fs_parse '%s' token %d\n", __func__, param->key, token);
294 if (token < 0)
295 return token;
296
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700297 switch (token) {
298 case Opt_snapdirname:
299 kfree(fsopt->snapdir_name);
David Howells82995cc2019-03-25 16:38:32 +0000300 fsopt->snapdir_name = param->string;
301 param->string = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700302 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800303 case Opt_mds_namespace:
Chengguang Xu937441f2018-02-06 08:25:55 +0800304 kfree(fsopt->mds_namespace);
David Howells82995cc2019-03-25 16:38:32 +0000305 fsopt->mds_namespace = param->string;
306 param->string = NULL;
Yan, Zheng235a0982016-03-30 17:18:34 +0800307 break;
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800308 case Opt_recover_session:
David Howells82995cc2019-03-25 16:38:32 +0000309 mode = result.uint_32;
310 if (mode == ceph_recover_session_no)
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800311 fsopt->flags &= ~CEPH_MOUNT_OPT_CLEANRECOVER;
David Howells82995cc2019-03-25 16:38:32 +0000312 else if (mode == ceph_recover_session_clean)
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800313 fsopt->flags |= CEPH_MOUNT_OPT_CLEANRECOVER;
David Howells82995cc2019-03-25 16:38:32 +0000314 else
315 BUG();
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800316 break;
David Howells82995cc2019-03-25 16:38:32 +0000317 case Opt_source:
318 if (fc->source)
Al Virod53d0f72019-12-21 21:31:52 -0500319 return invalfc(fc, "Multiple sources specified");
David Howells82995cc2019-03-25 16:38:32 +0000320 return ceph_parse_source(param, fc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700321 case Opt_wsize:
David Howells82995cc2019-03-25 16:38:32 +0000322 if (result.uint_32 < PAGE_SIZE ||
323 result.uint_32 > CEPH_MAX_WRITE_SIZE)
324 goto out_of_range;
325 fsopt->wsize = ALIGN(result.uint_32, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700326 break;
327 case Opt_rsize:
David Howells82995cc2019-03-25 16:38:32 +0000328 if (result.uint_32 < PAGE_SIZE ||
329 result.uint_32 > CEPH_MAX_READ_SIZE)
330 goto out_of_range;
331 fsopt->rsize = ALIGN(result.uint_32, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700332 break;
Sage Weil83817e32011-08-04 08:03:44 -0700333 case Opt_rasize:
David Howells82995cc2019-03-25 16:38:32 +0000334 fsopt->rasize = ALIGN(result.uint_32, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700335 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700336 case Opt_caps_wanted_delay_min:
David Howells82995cc2019-03-25 16:38:32 +0000337 if (result.uint_32 < 1)
338 goto out_of_range;
339 fsopt->caps_wanted_delay_min = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700340 break;
341 case Opt_caps_wanted_delay_max:
David Howells82995cc2019-03-25 16:38:32 +0000342 if (result.uint_32 < 1)
343 goto out_of_range;
344 fsopt->caps_wanted_delay_max = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700345 break;
Yan, Zhengfe330322019-02-01 14:57:15 +0800346 case Opt_caps_max:
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400347 if (result.int_32 < 0)
348 goto out_of_range;
349 fsopt->caps_max = result.int_32;
Yan, Zhengfe330322019-02-01 14:57:15 +0800350 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700351 case Opt_readdir_max_entries:
David Howells82995cc2019-03-25 16:38:32 +0000352 if (result.uint_32 < 1)
353 goto out_of_range;
354 fsopt->max_readdir = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700355 break;
356 case Opt_readdir_max_bytes:
David Howells82995cc2019-03-25 16:38:32 +0000357 if (result.uint_32 < PAGE_SIZE && result.uint_32 != 0)
358 goto out_of_range;
359 fsopt->max_readdir_bytes = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700360 break;
361 case Opt_congestion_kb:
David Howells82995cc2019-03-25 16:38:32 +0000362 if (result.uint_32 < 1024) /* at least 1M */
363 goto out_of_range;
364 fsopt->congestion_kb = result.uint_32;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700365 break;
366 case Opt_dirstat:
David Howells82995cc2019-03-25 16:38:32 +0000367 if (!result.negated)
368 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
369 else
370 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700371 break;
372 case Opt_rbytes:
David Howells82995cc2019-03-25 16:38:32 +0000373 if (!result.negated)
374 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
375 else
376 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700377 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600378 case Opt_asyncreaddir:
David Howells82995cc2019-03-25 16:38:32 +0000379 if (!result.negated)
380 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
381 else
382 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700383 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800384 case Opt_dcache:
David Howells82995cc2019-03-25 16:38:32 +0000385 if (!result.negated)
386 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
387 else
388 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
Sage Weila40dc6c2012-01-10 09:12:55 -0800389 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800390 case Opt_ino32:
David Howells82995cc2019-03-25 16:38:32 +0000391 if (!result.negated)
392 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
393 else
394 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800395 break;
David Howells82995cc2019-03-25 16:38:32 +0000396
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400397 case Opt_fscache:
Jeff Laytonff29fde2019-11-07 09:39:32 -0500398#ifdef CONFIG_CEPH_FSCACHE
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800399 kfree(fsopt->fscache_uniq);
400 fsopt->fscache_uniq = NULL;
David Howells82995cc2019-03-25 16:38:32 +0000401 if (result.negated) {
402 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
403 } else {
404 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
405 fsopt->fscache_uniq = param->string;
406 param->string = NULL;
407 }
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400408 break;
Jeff Laytonff29fde2019-11-07 09:39:32 -0500409#else
Al Virod53d0f72019-12-21 21:31:52 -0500410 return invalfc(fc, "fscache support is disabled");
Jeff Laytonff29fde2019-11-07 09:39:32 -0500411#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800412 case Opt_poolperm:
David Howells82995cc2019-03-25 16:38:32 +0000413 if (!result.negated)
414 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
415 else
416 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
Yan, Zheng10183a62015-04-27 15:33:28 +0800417 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800418 case Opt_require_active_mds:
David Howells82995cc2019-03-25 16:38:32 +0000419 if (!result.negated)
420 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
421 else
422 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800423 break;
Luis Henriques9122eed2018-01-31 10:53:13 +0000424 case Opt_quotadf:
David Howells82995cc2019-03-25 16:38:32 +0000425 if (!result.negated)
426 fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
427 else
428 fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
Luis Henriques9122eed2018-01-31 10:53:13 +0000429 break;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100430 case Opt_copyfrom:
David Howells82995cc2019-03-25 16:38:32 +0000431 if (!result.negated)
432 fsopt->flags &= ~CEPH_MOUNT_OPT_NOCOPYFROM;
433 else
434 fsopt->flags |= CEPH_MOUNT_OPT_NOCOPYFROM;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100435 break;
Sage Weil45195e42014-02-16 10:05:29 -0800436 case Opt_acl:
David Howells82995cc2019-03-25 16:38:32 +0000437 if (!result.negated) {
438#ifdef CONFIG_CEPH_FS_POSIX_ACL
439 fc->sb_flags |= SB_POSIXACL;
440#else
Al Virod53d0f72019-12-21 21:31:52 -0500441 return invalfc(fc, "POSIX ACL support is disabled");
Sage Weil45195e42014-02-16 10:05:29 -0800442#endif
David Howells82995cc2019-03-25 16:38:32 +0000443 } else {
444 fc->sb_flags &= ~SB_POSIXACL;
445 }
Sage Weil45195e42014-02-16 10:05:29 -0800446 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700447 default:
David Howells82995cc2019-03-25 16:38:32 +0000448 BUG();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700449 }
450 return 0;
David Howells82995cc2019-03-25 16:38:32 +0000451
452out_of_range:
Al Virod53d0f72019-12-21 21:31:52 -0500453 return invalfc(fc, "%s out of range", param->key);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700454}
455
456static void destroy_mount_options(struct ceph_mount_options *args)
457{
458 dout("destroy_mount_options %p\n", args);
David Howells82995cc2019-03-25 16:38:32 +0000459 if (!args)
460 return;
461
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700462 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800463 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800464 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800465 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700466 kfree(args);
467}
468
469static int strcmp_null(const char *s1, const char *s2)
470{
471 if (!s1 && !s2)
472 return 0;
473 if (s1 && !s2)
474 return -1;
475 if (!s1 && s2)
476 return 1;
477 return strcmp(s1, s2);
478}
479
480static int compare_mount_options(struct ceph_mount_options *new_fsopt,
481 struct ceph_options *new_opt,
482 struct ceph_fs_client *fsc)
483{
484 struct ceph_mount_options *fsopt1 = new_fsopt;
485 struct ceph_mount_options *fsopt2 = fsc->mount_options;
486 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
487 int ret;
488
489 ret = memcmp(fsopt1, fsopt2, ofs);
490 if (ret)
491 return ret;
492
493 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
494 if (ret)
495 return ret;
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100496
Yan, Zheng430afba2016-07-08 11:25:38 +0800497 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
498 if (ret)
499 return ret;
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500500
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100501 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
Yan, Zheng3f384952016-04-21 11:09:55 +0800502 if (ret)
503 return ret;
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500504
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800505 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
506 if (ret)
507 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800508
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700509 return ceph_compare_options(new_opt, fsc->client);
510}
511
Sage Weil6e19a162010-04-29 16:38:32 -0700512/**
513 * ceph_show_options - Show mount options in /proc/mounts
514 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500515 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700516 */
Al Viro34c80b12011-12-08 21:32:45 -0500517static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700518{
Al Viro34c80b12011-12-08 21:32:45 -0500519 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700520 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300521 size_t pos;
522 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700523
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300524 /* a comma between MNT/MS and client options */
525 seq_putc(m, ',');
526 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700527
Dongsheng Yang02b2f542018-12-18 04:31:48 -0500528 ret = ceph_print_client_options(m, fsc->client, false);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300529 if (ret)
530 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700531
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300532 /* retract our comma if no client options */
533 if (m->count == pos)
534 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700535
536 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
537 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800538 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
539 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700540 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700541 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300542 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800543 seq_puts(m, ",nodcache");
Chengguang Xu3619aa82018-06-04 16:03:51 +0800544 if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
545 seq_puts(m, ",ino32");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800546 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800547 seq_show_option(m, "fsc", fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800548 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800549 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
550 seq_puts(m, ",nopoolperm");
Luis Henriques9122eed2018-01-31 10:53:13 +0000551 if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
552 seq_puts(m, ",noquotadf");
Sage Weil6e19a162010-04-29 16:38:32 -0700553
Sage Weil45195e42014-02-16 10:05:29 -0800554#ifdef CONFIG_CEPH_FS_POSIX_ACL
David Howells82995cc2019-03-25 16:38:32 +0000555 if (root->d_sb->s_flags & SB_POSIXACL)
Sage Weil45195e42014-02-16 10:05:29 -0800556 seq_puts(m, ",acl");
557 else
558 seq_puts(m, ",noacl");
559#endif
560
Luis Henriques6f9718f2018-12-10 10:23:12 +0000561 if ((fsopt->flags & CEPH_MOUNT_OPT_NOCOPYFROM) == 0)
562 seq_puts(m, ",copyfrom");
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100563
Yan, Zheng430afba2016-07-08 11:25:38 +0800564 if (fsopt->mds_namespace)
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800565 seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
Yan, Zheng131d7eb2019-07-25 20:16:47 +0800566
567 if (fsopt->flags & CEPH_MOUNT_OPT_CLEANRECOVER)
568 seq_show_option(m, "recover_session", "clean");
569
Ilya Dryomov6dd49402018-05-03 16:26:55 +0200570 if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400571 seq_printf(m, ",wsize=%u", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800572 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400573 seq_printf(m, ",rsize=%u", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700574 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400575 seq_printf(m, ",rasize=%u", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700576 if (fsopt->congestion_kb != default_congestion_kb())
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400577 seq_printf(m, ",write_congestion_kb=%u", fsopt->congestion_kb);
Yan, Zhengfe330322019-02-01 14:57:15 +0800578 if (fsopt->caps_max)
579 seq_printf(m, ",caps_max=%d", fsopt->caps_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700580 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400581 seq_printf(m, ",caps_wanted_delay_min=%u",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700582 fsopt->caps_wanted_delay_min);
583 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400584 seq_printf(m, ",caps_wanted_delay_max=%u",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700585 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700586 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400587 seq_printf(m, ",readdir_max_entries=%u", fsopt->max_readdir);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700588 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
Jeff Laytonad8c28a2019-09-09 15:58:55 -0400589 seq_printf(m, ",readdir_max_bytes=%u", fsopt->max_readdir_bytes);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700590 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700591 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300592
Sage Weil6e19a162010-04-29 16:38:32 -0700593 return 0;
594}
595
596/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700597 * handle any mon messages the standard library doesn't understand.
598 * return error if we don't either.
599 */
600static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
601{
602 struct ceph_fs_client *fsc = client->private;
603 int type = le16_to_cpu(msg->hdr.type);
604
605 switch (type) {
606 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800607 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700608 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800609 case CEPH_MSG_FS_MAP_USER:
610 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
611 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700612 default:
613 return -1;
614 }
615}
616
617/*
618 * create a new fs client
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200619 *
620 * Success or not, this function consumes @fsopt and @opt.
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700621 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700622static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700623 struct ceph_options *opt)
624{
625 struct ceph_fs_client *fsc;
Alex Elder3bf53332013-04-01 10:48:40 -0500626 int page_count;
627 size_t size;
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200628 int err;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700629
630 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200631 if (!fsc) {
632 err = -ENOMEM;
633 goto fail;
634 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700635
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100636 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700637 if (IS_ERR(fsc->client)) {
638 err = PTR_ERR(fsc->client);
639 goto fail;
640 }
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200641 opt = NULL; /* fsc->client now owns this */
Ilya Dryomovc843d132018-05-30 16:29:14 +0200642
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700643 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Dongsheng Yang02b2f542018-12-18 04:31:48 -0500644 ceph_set_opt(fsc->client, ABORT_ON_FULL);
Yan, Zheng430afba2016-07-08 11:25:38 +0800645
Markus Elfringd37b1d92017-08-20 20:22:02 +0200646 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800647 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
648 0, true);
649 } else {
650 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
651 0, false);
652 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700653
654 fsc->mount_options = fsopt;
655
656 fsc->sb = NULL;
657 fsc->mount_state = CEPH_MOUNT_MOUNTING;
Yan, Zheng81f148a2019-07-25 20:16:46 +0800658 fsc->filp_gen = 1;
Luis Henriques78beb0f2020-01-08 10:03:53 +0000659 fsc->have_copy_from2 = true;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700660
661 atomic_long_set(&fsc->writeback_count, 0);
662
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700663 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100664 /*
665 * The number of concurrent works can be high but they don't need
666 * to be processed in parallel, limit concurrency.
667 */
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800668 fsc->inode_wq = alloc_workqueue("ceph-inode", WQ_UNBOUND, 0);
669 if (!fsc->inode_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200670 goto fail_client;
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800671 fsc->cap_wq = alloc_workqueue("ceph-cap", 0, 1);
672 if (!fsc->cap_wq)
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800673 goto fail_inode_wq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700674
675 /* set up mempools */
676 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300677 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500678 size = sizeof (struct page *) * (page_count ? page_count : 1);
679 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700680 if (!fsc->wb_pagevec_pool)
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800681 goto fail_cap_wq;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700682
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700683 return fsc;
684
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800685fail_cap_wq:
686 destroy_workqueue(fsc->cap_wq);
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800687fail_inode_wq:
688 destroy_workqueue(fsc->inode_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700689fail_client:
690 ceph_destroy_client(fsc->client);
691fail:
692 kfree(fsc);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200693 if (opt)
694 ceph_destroy_options(opt);
695 destroy_mount_options(fsopt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700696 return ERR_PTR(err);
697}
698
Yan, Zhenga57d9062018-05-18 16:05:51 +0800699static void flush_fs_workqueues(struct ceph_fs_client *fsc)
700{
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800701 flush_workqueue(fsc->inode_wq);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800702 flush_workqueue(fsc->cap_wq);
Yan, Zhenga57d9062018-05-18 16:05:51 +0800703}
704
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700705static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700706{
707 dout("destroy_fs_client %p\n", fsc);
708
Jeff Layton3ee5a702019-09-12 08:07:56 -0400709 ceph_mdsc_destroy(fsc);
Yan, Zheng1cf89a82019-05-18 11:18:44 +0800710 destroy_workqueue(fsc->inode_wq);
Yan, Zhenge3ec8d62019-01-14 17:21:19 +0800711 destroy_workqueue(fsc->cap_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700712
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700713 mempool_destroy(fsc->wb_pagevec_pool);
714
715 destroy_mount_options(fsc->mount_options);
716
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700717 ceph_destroy_client(fsc->client);
718
719 kfree(fsc);
720 dout("destroy_fs_client %p done\n", fsc);
721}
722
723/*
Sage Weil6e19a162010-04-29 16:38:32 -0700724 * caches
725 */
726struct kmem_cache *ceph_inode_cachep;
727struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800728struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700729struct kmem_cache *ceph_dentry_cachep;
730struct kmem_cache *ceph_file_cachep;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800731struct kmem_cache *ceph_dir_file_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700732
733static void ceph_inode_init_once(void *foo)
734{
735 struct ceph_inode_info *ci = foo;
736 inode_init_once(&ci->vfs_inode);
737}
738
Sage Weil16725b92009-10-06 11:31:07 -0700739static int __init init_caches(void)
740{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400741 int error = -ENOMEM;
742
Sage Weil16725b92009-10-06 11:31:07 -0700743 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
744 sizeof(struct ceph_inode_info),
745 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800746 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
747 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200748 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700749 return -ENOMEM;
750
Chengguang Xubc4b5ad2018-02-27 13:49:44 +0800751 ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200752 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700753 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800754 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
755 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200756 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800757 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700758
759 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
760 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200761 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700762 goto bad_dentry;
763
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300764 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200765 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700766 goto bad_file;
767
Chengguang Xubb48bd42018-03-13 10:42:44 +0800768 ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, SLAB_MEM_SPREAD);
769 if (!ceph_dir_file_cachep)
770 goto bad_dir_file;
771
Chengguang Xu1c789242018-03-01 14:24:51 +0800772 error = ceph_fscache_register();
773 if (error)
774 goto bad_fscache;
Sage Weil16725b92009-10-06 11:31:07 -0700775
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400776 return 0;
Chengguang Xu1c789242018-03-01 14:24:51 +0800777
778bad_fscache:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800779 kmem_cache_destroy(ceph_dir_file_cachep);
780bad_dir_file:
Chengguang Xu1c789242018-03-01 14:24:51 +0800781 kmem_cache_destroy(ceph_file_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700782bad_file:
783 kmem_cache_destroy(ceph_dentry_cachep);
784bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800785 kmem_cache_destroy(ceph_cap_flush_cachep);
786bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700787 kmem_cache_destroy(ceph_cap_cachep);
788bad_cap:
789 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400790 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700791}
792
793static void destroy_caches(void)
794{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000795 /*
796 * Make sure all delayed rcu free inodes are flushed before we
797 * destroy cache.
798 */
799 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400800
Sage Weil16725b92009-10-06 11:31:07 -0700801 kmem_cache_destroy(ceph_inode_cachep);
802 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800803 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700804 kmem_cache_destroy(ceph_dentry_cachep);
805 kmem_cache_destroy(ceph_file_cachep);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800806 kmem_cache_destroy(ceph_dir_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400807
808 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700809}
810
Sage Weil16725b92009-10-06 11:31:07 -0700811/*
812 * ceph_umount_begin - initiate forced umount. Tear down down the
813 * mount, skipping steps that may hang while waiting for server(s).
814 */
815static void ceph_umount_begin(struct super_block *sb)
816{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700817 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700818
819 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700820 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700821 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700822 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng12b69d52018-05-11 17:12:02 +0800823 ceph_osdc_abort_requests(&fsc->client->osdc, -EIO);
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800824 ceph_mdsc_force_umount(fsc->mdsc);
Yan, Zheng81f148a2019-07-25 20:16:46 +0800825 fsc->filp_gen++; // invalidate open files
Sage Weil16725b92009-10-06 11:31:07 -0700826}
827
828static const struct super_operations ceph_super_ops = {
829 .alloc_inode = ceph_alloc_inode,
Al Virocfa6d412019-04-10 15:18:50 -0400830 .free_inode = ceph_free_inode,
Sage Weil16725b92009-10-06 11:31:07 -0700831 .write_inode = ceph_write_inode,
Luis Henriques52dd0f12019-07-05 17:14:56 +0100832 .drop_inode = generic_delete_inode,
Yan, Zheng87bc5b82019-06-02 09:45:38 +0800833 .evict_inode = ceph_evict_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700834 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700835 .put_super = ceph_put_super,
836 .show_options = ceph_show_options,
837 .statfs = ceph_statfs,
838 .umount_begin = ceph_umount_begin,
839};
840
Sage Weil16725b92009-10-06 11:31:07 -0700841/*
842 * Bootstrap mount by opening the root directory. Note the mount
843 * @started time from caller, and time out if this takes too long.
844 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700845static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700846 const char *path,
847 unsigned long started)
848{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700849 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700850 struct ceph_mds_request *req = NULL;
851 int err;
852 struct dentry *root;
853
854 /* open dir */
855 dout("open_root_inode opening '%s'\n", path);
856 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
857 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200858 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700859 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400860 if (!req->r_path1) {
861 root = ERR_PTR(-ENOMEM);
862 goto out;
863 }
864
Sage Weil16725b92009-10-06 11:31:07 -0700865 req->r_ino1.ino = CEPH_INO_ROOT;
866 req->r_ino1.snap = CEPH_NOSNAP;
867 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300868 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700869 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
870 req->r_num_caps = 2;
871 err = ceph_mdsc_do_request(mdsc, NULL, req);
872 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500873 struct inode *inode = req->r_target_inode;
874 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700875 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800876 root = d_make_root(inode);
877 if (!root) {
878 root = ERR_PTR(-ENOMEM);
879 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800880 }
Sage Weil16725b92009-10-06 11:31:07 -0700881 dout("open_root_inode success, root dentry is %p\n", root);
882 } else {
883 root = ERR_PTR(err);
884 }
Al Viro3c5184e2012-01-09 16:34:32 -0500885out:
Sage Weil16725b92009-10-06 11:31:07 -0700886 ceph_mdsc_put_request(req);
887 return root;
888}
889
890/*
891 * mount: join the ceph cluster, and open root directory.
892 */
David Howells82995cc2019-03-25 16:38:32 +0000893static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
894 struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -0700895{
Sage Weil16725b92009-10-06 11:31:07 -0700896 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700897 unsigned long started = jiffies; /* note the start time */
898 struct dentry *root;
899
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800900 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700901 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700902
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800903 if (!fsc->sb->s_root) {
Ilya Dryomovb27a9392020-02-10 22:51:08 +0100904 const char *path = fsc->mount_options->server_path ?
905 fsc->mount_options->server_path + 1 : "";
906
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800907 err = __ceph_open_session(fsc->client, started);
908 if (err < 0)
909 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700910
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800911 /* setup fscache */
912 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
David Howells82995cc2019-03-25 16:38:32 +0000913 err = ceph_fscache_register_fs(fsc, fc);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800914 if (err < 0)
915 goto out;
916 }
917
Xiubo Li4fbc0c72019-12-20 09:34:04 -0500918 dout("mount opening path '%s'\n", path);
Chengguang Xu18106732018-02-09 20:40:59 +0800919
Greg Kroah-Hartman1a829ff2019-06-12 16:55:38 +0200920 ceph_fs_debugfs_init(fsc);
Chengguang Xu18106732018-02-09 20:40:59 +0800921
Yan, Zhengce2728a2016-09-14 14:53:05 +0800922 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800923 if (IS_ERR(root)) {
924 err = PTR_ERR(root);
925 goto out;
926 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800927 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200928 } else {
929 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700930 }
Sage Weil16725b92009-10-06 11:31:07 -0700931
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700932 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700933 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400934 mutex_unlock(&fsc->client->mount_mutex);
935 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700936
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800937out:
938 mutex_unlock(&fsc->client->mount_mutex);
939 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700940}
941
David Howells82995cc2019-03-25 16:38:32 +0000942static int ceph_set_super(struct super_block *s, struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -0700943{
David Howells82995cc2019-03-25 16:38:32 +0000944 struct ceph_fs_client *fsc = s->s_fs_info;
Sage Weil16725b92009-10-06 11:31:07 -0700945 int ret;
946
David Howells82995cc2019-03-25 16:38:32 +0000947 dout("set_super %p\n", s);
Sage Weil16725b92009-10-06 11:31:07 -0700948
Chengguang Xu719784b2018-07-19 22:15:24 +0800949 s->s_maxbytes = MAX_LFS_FILESIZE;
Sage Weil16725b92009-10-06 11:31:07 -0700950
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800951 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700952 fsc->sb = s;
Chengguang Xu719784b2018-07-19 22:15:24 +0800953 fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */
Sage Weil16725b92009-10-06 11:31:07 -0700954
955 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400956 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700957 s->s_export_op = &ceph_export_ops;
958
Luis Henriques0f7cf802019-06-27 14:51:22 +0100959 s->s_time_gran = 1;
Deepa Dinamani028ca4d2019-03-21 14:34:38 -0700960 s->s_time_min = 0;
961 s->s_time_max = U32_MAX;
Sage Weil16725b92009-10-06 11:31:07 -0700962
David Howells82995cc2019-03-25 16:38:32 +0000963 ret = set_anon_super_fc(s, fc);
Sage Weil16725b92009-10-06 11:31:07 -0700964 if (ret != 0)
David Howells82995cc2019-03-25 16:38:32 +0000965 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700966 return ret;
967}
968
969/*
970 * share superblock if same fs AND options
971 */
David Howells82995cc2019-03-25 16:38:32 +0000972static int ceph_compare_super(struct super_block *sb, struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -0700973{
David Howells82995cc2019-03-25 16:38:32 +0000974 struct ceph_fs_client *new = fc->s_fs_info;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700975 struct ceph_mount_options *fsopt = new->mount_options;
976 struct ceph_options *opt = new->client->options;
977 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700978
979 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700980
981 if (compare_mount_options(fsopt, opt, other)) {
982 dout("monitor(s)/mount options don't match\n");
983 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700984 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700985 if ((opt->flags & CEPH_OPT_FSID) &&
986 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
987 dout("fsid doesn't match\n");
988 return 0;
989 }
David Howells82995cc2019-03-25 16:38:32 +0000990 if (fc->sb_flags != (sb->s_flags & ~SB_BORN)) {
Sage Weil16725b92009-10-06 11:31:07 -0700991 dout("flags differ\n");
992 return 0;
993 }
994 return 1;
995}
996
997/*
998 * construct our own bdi so we can control readahead, etc.
999 */
Jeff Mahoney00d56432010-06-10 11:13:58 -04001000static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -07001001
Jan Kara09dc9fc2017-04-12 12:24:33 +02001002static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -07001003{
1004 int err;
1005
Jan Kara09dc9fc2017-04-12 12:24:33 +02001006 err = super_setup_bdi_name(sb, "ceph-%ld",
1007 atomic_long_inc_return(&bdi_seq));
1008 if (err)
1009 return err;
1010
Sage Weil83817e32011-08-04 08:03:44 -07001011 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +08001012 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001013
Yan, Zhengaa187922017-07-11 15:56:09 +08001014 /* set io_pages based on max osd read size */
1015 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +01001016
Jan Kara09dc9fc2017-04-12 12:24:33 +02001017 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001018}
1019
David Howells82995cc2019-03-25 16:38:32 +00001020static int ceph_get_tree(struct fs_context *fc)
Sage Weil16725b92009-10-06 11:31:07 -07001021{
David Howells82995cc2019-03-25 16:38:32 +00001022 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
Sage Weil16725b92009-10-06 11:31:07 -07001023 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001024 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001025 struct dentry *res;
David Howells82995cc2019-03-25 16:38:32 +00001026 int (*compare_super)(struct super_block *, struct fs_context *) =
1027 ceph_compare_super;
Sage Weil16725b92009-10-06 11:31:07 -07001028 int err;
Sage Weil16725b92009-10-06 11:31:07 -07001029
David Howells82995cc2019-03-25 16:38:32 +00001030 dout("ceph_get_tree\n");
1031
1032 if (!fc->source)
Al Virod53d0f72019-12-21 21:31:52 -05001033 return invalfc(fc, "No source");
Sage Weil45195e42014-02-16 10:05:29 -08001034
1035#ifdef CONFIG_CEPH_FS_POSIX_ACL
David Howells82995cc2019-03-25 16:38:32 +00001036 fc->sb_flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -08001037#endif
Sage Weil16725b92009-10-06 11:31:07 -07001038
1039 /* create client (which we may/may not use) */
David Howells82995cc2019-03-25 16:38:32 +00001040 fsc = create_fs_client(pctx->opts, pctx->copts);
1041 pctx->opts = NULL;
1042 pctx->copts = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001043 if (IS_ERR(fsc)) {
David Howells82995cc2019-03-25 16:38:32 +00001044 err = PTR_ERR(fsc);
Sage Weil6b805182009-10-27 11:50:50 -07001045 goto out_final;
1046 }
Sage Weil16725b92009-10-06 11:31:07 -07001047
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001048 err = ceph_mdsc_init(fsc);
David Howells82995cc2019-03-25 16:38:32 +00001049 if (err < 0)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001050 goto out;
1051
1052 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001053 compare_super = NULL;
David Howells82995cc2019-03-25 16:38:32 +00001054
1055 fc->s_fs_info = fsc;
1056 sb = sget_fc(fc, compare_super, ceph_set_super);
1057 fc->s_fs_info = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001058 if (IS_ERR(sb)) {
David Howells82995cc2019-03-25 16:38:32 +00001059 err = PTR_ERR(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001060 goto out;
1061 }
1062
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001063 if (ceph_sb_to_client(sb) != fsc) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001064 destroy_fs_client(fsc);
1065 fsc = ceph_sb_to_client(sb);
1066 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001067 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001068 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001069 err = ceph_setup_bdi(sb, fsc);
David Howells82995cc2019-03-25 16:38:32 +00001070 if (err < 0)
Sage Weil16725b92009-10-06 11:31:07 -07001071 goto out_splat;
1072 }
1073
David Howells82995cc2019-03-25 16:38:32 +00001074 res = ceph_real_mount(fsc, fc);
1075 if (IS_ERR(res)) {
1076 err = PTR_ERR(res);
Sage Weil16725b92009-10-06 11:31:07 -07001077 goto out_splat;
David Howells82995cc2019-03-25 16:38:32 +00001078 }
Al Viroa7f9fb22010-07-26 16:17:55 +04001079 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001080 d_inode(res), ceph_vinop(d_inode(res)));
David Howells82995cc2019-03-25 16:38:32 +00001081 fc->root = fsc->sb->s_root;
1082 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001083
1084out_splat:
Xiubo Li97820052019-12-10 20:29:40 -05001085 if (!ceph_mdsmap_is_cluster_available(fsc->mdsc->mdsmap)) {
1086 pr_info("No mds server is up or the cluster is laggy\n");
1087 err = -EHOSTUNREACH;
1088 }
1089
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001090 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001091 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001092 goto out_final;
1093
1094out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001095 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001096out_final:
David Howells82995cc2019-03-25 16:38:32 +00001097 dout("ceph_get_tree fail %d\n", err);
1098 return err;
1099}
1100
1101static void ceph_free_fc(struct fs_context *fc)
1102{
1103 struct ceph_parse_opts_ctx *pctx = fc->fs_private;
1104
1105 if (pctx) {
1106 destroy_mount_options(pctx->opts);
1107 ceph_destroy_options(pctx->copts);
1108 kfree(pctx);
1109 }
1110}
1111
1112static int ceph_reconfigure_fc(struct fs_context *fc)
1113{
1114 sync_filesystem(fc->root->d_sb);
1115 return 0;
1116}
1117
1118static const struct fs_context_operations ceph_context_ops = {
1119 .free = ceph_free_fc,
1120 .parse_param = ceph_parse_mount_param,
1121 .get_tree = ceph_get_tree,
1122 .reconfigure = ceph_reconfigure_fc,
1123};
1124
1125/*
1126 * Set up the filesystem mount context.
1127 */
1128static int ceph_init_fs_context(struct fs_context *fc)
1129{
1130 struct ceph_parse_opts_ctx *pctx;
1131 struct ceph_mount_options *fsopt;
1132
1133 pctx = kzalloc(sizeof(*pctx), GFP_KERNEL);
1134 if (!pctx)
1135 return -ENOMEM;
1136
1137 pctx->copts = ceph_alloc_options();
1138 if (!pctx->copts)
1139 goto nomem;
1140
1141 pctx->opts = kzalloc(sizeof(*pctx->opts), GFP_KERNEL);
1142 if (!pctx->opts)
1143 goto nomem;
1144
1145 fsopt = pctx->opts;
1146 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
1147
1148 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
1149 fsopt->rsize = CEPH_MAX_READ_SIZE;
1150 fsopt->rasize = CEPH_RASIZE_DEFAULT;
1151 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
1152 if (!fsopt->snapdir_name)
1153 goto nomem;
1154
1155 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
1156 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
1157 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
1158 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
1159 fsopt->congestion_kb = default_congestion_kb();
1160
1161 fc->fs_private = pctx;
1162 fc->ops = &ceph_context_ops;
1163 return 0;
1164
1165nomem:
1166 destroy_mount_options(pctx->opts);
1167 ceph_destroy_options(pctx->copts);
1168 kfree(pctx);
1169 return -ENOMEM;
Sage Weil16725b92009-10-06 11:31:07 -07001170}
1171
1172static void ceph_kill_sb(struct super_block *s)
1173{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001174 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001175 dev_t dev = s->s_dev;
1176
Sage Weil16725b92009-10-06 11:31:07 -07001177 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001178
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001179 ceph_mdsc_pre_umount(fsc->mdsc);
Yan, Zhenga57d9062018-05-18 16:05:51 +08001180 flush_fs_workqueues(fsc);
1181
Christoph Hellwige4d27502015-01-14 10:42:38 +01001182 generic_shutdown_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001183
1184 fsc->client->extra_mon_dispatch = NULL;
1185 ceph_fs_debugfs_cleanup(fsc);
1186
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001187 ceph_fscache_unregister_fs(fsc);
1188
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001189 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001190 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001191}
1192
1193static struct file_system_type ceph_fs_type = {
1194 .owner = THIS_MODULE,
1195 .name = "ceph",
David Howells82995cc2019-03-25 16:38:32 +00001196 .init_fs_context = ceph_init_fs_context,
Sage Weil16725b92009-10-06 11:31:07 -07001197 .kill_sb = ceph_kill_sb,
1198 .fs_flags = FS_RENAME_DOES_D_MOVE,
1199};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001200MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001201
Yan, Zhengd468e722019-07-25 20:16:44 +08001202int ceph_force_reconnect(struct super_block *sb)
1203{
1204 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
1205 int err = 0;
1206
1207 ceph_umount_begin(sb);
1208
1209 /* Make sure all page caches get invalidated.
1210 * see remove_session_caps_cb() */
1211 flush_workqueue(fsc->inode_wq);
1212
1213 /* In case that we were blacklisted. This also reset
1214 * all mon/osd connections */
1215 ceph_reset_client_addr(fsc->client);
1216
1217 ceph_osdc_clear_abort_err(&fsc->client->osdc);
Yan, Zheng131d7eb2019-07-25 20:16:47 +08001218
1219 fsc->blacklisted = false;
Yan, Zhengd468e722019-07-25 20:16:44 +08001220 fsc->mount_state = CEPH_MOUNT_MOUNTED;
1221
1222 if (sb->s_root) {
1223 err = __ceph_do_getattr(d_inode(sb->s_root), NULL,
1224 CEPH_STAT_CAP_INODE, true);
1225 }
1226 return err;
1227}
1228
Sage Weil16725b92009-10-06 11:31:07 -07001229static int __init init_ceph(void)
1230{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001231 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001232 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001233 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001234
Yan, Zhengeb13e832014-03-09 23:16:40 +08001235 ceph_flock_init();
Sage Weil16725b92009-10-06 11:31:07 -07001236 ret = register_filesystem(&ceph_fs_type);
1237 if (ret)
David Disseldorpd0f191d2019-04-18 14:15:49 +02001238 goto out_caches;
Sage Weil16725b92009-10-06 11:31:07 -07001239
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001240 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1241
Sage Weil16725b92009-10-06 11:31:07 -07001242 return 0;
1243
David Disseldorpd0f191d2019-04-18 14:15:49 +02001244out_caches:
Sage Weil16725b92009-10-06 11:31:07 -07001245 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001246out:
1247 return ret;
1248}
1249
1250static void __exit exit_ceph(void)
1251{
1252 dout("exit_ceph\n");
1253 unregister_filesystem(&ceph_fs_type);
Sage Weil16725b92009-10-06 11:31:07 -07001254 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001255}
1256
1257module_init(init_ceph);
1258module_exit(exit_ceph);
1259
1260MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1261MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1262MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1263MODULE_DESCRIPTION("Ceph filesystem for Linux");
1264MODULE_LICENSE("GPL");