blob: c4314f4492401453debfa4df6bf520dad0ffec10 [file] [log] [blame]
Sage Weil16725b92009-10-06 11:31:07 -07001
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil16725b92009-10-06 11:31:07 -07003
4#include <linux/backing-dev.h>
Sage Weilc309f0a2010-06-30 21:34:01 -07005#include <linux/ctype.h>
Sage Weil16725b92009-10-06 11:31:07 -07006#include <linux/fs.h>
7#include <linux/inet.h>
8#include <linux/in6.h>
9#include <linux/module.h>
10#include <linux/mount.h>
11#include <linux/parser.h>
Sage Weil16725b92009-10-06 11:31:07 -070012#include <linux/sched.h>
13#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Sage Weil16725b92009-10-06 11:31:07 -070015#include <linux/statfs.h>
16#include <linux/string.h>
Sage Weil16725b92009-10-06 11:31:07 -070017
Sage Weil16725b92009-10-06 11:31:07 -070018#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070019#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040020#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070021
Sage Weil1fe60e52012-07-30 16:23:22 -070022#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070023#include <linux/ceph/decode.h>
24#include <linux/ceph/mon_client.h>
25#include <linux/ceph/auth.h>
26#include <linux/ceph/debugfs.h>
Sage Weil16725b92009-10-06 11:31:07 -070027
28/*
29 * Ceph superblock operations
30 *
31 * Handle the basics of mounting, unmounting.
32 */
33
Sage Weil16725b92009-10-06 11:31:07 -070034/*
35 * super ops
36 */
37static void ceph_put_super(struct super_block *s)
38{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070039 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -070040
41 dout("put_super\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070042 ceph_mdsc_close_sessions(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -070043}
44
45static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
46{
David Howells2b0143b2015-03-17 22:25:59 +000047 struct ceph_fs_client *fsc = ceph_inode_to_client(d_inode(dentry));
Luis Henriques73fb0942018-05-28 18:37:40 +010048 struct ceph_mon_client *monc = &fsc->client->monc;
Sage Weil16725b92009-10-06 11:31:07 -070049 struct ceph_statfs st;
50 u64 fsid;
51 int err;
Douglas Fuller06d74372017-08-16 10:19:27 -040052 u64 data_pool;
53
54 if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) {
55 data_pool = fsc->mdsc->mdsmap->m_data_pg_pools[0];
56 } else {
57 data_pool = CEPH_NOPOOL;
58 }
Sage Weil16725b92009-10-06 11:31:07 -070059
60 dout("statfs\n");
Luis Henriques73fb0942018-05-28 18:37:40 +010061 err = ceph_monc_do_statfs(monc, data_pool, &st);
Sage Weil16725b92009-10-06 11:31:07 -070062 if (err < 0)
63 return err;
64
65 /* fill in kstatfs */
66 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
67
68 /*
69 * express utilization in terms of large blocks to avoid
70 * overflow on 32-bit machines.
Sage Weil92a49fb2013-02-22 15:31:00 -080071 *
72 * NOTE: for the time being, we make bsize == frsize to humor
73 * not-yet-ancient versions of glibc that are broken.
74 * Someday, we will probably want to report a real block
75 * size... whatever that may mean for a network file system!
Sage Weil16725b92009-10-06 11:31:07 -070076 */
77 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080078 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Luis Henriques9122eed2018-01-31 10:53:13 +000079
80 /*
81 * By default use root quota for stats; fallback to overall filesystem
82 * usage if using 'noquotadf' mount option or if the root dir doesn't
83 * have max_bytes quota set.
84 */
85 if (ceph_test_mount_opt(fsc, NOQUOTADF) ||
86 !ceph_quota_update_statfs(fsc, buf)) {
87 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
88 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
89 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
90 }
Sage Weil16725b92009-10-06 11:31:07 -070091
92 buf->f_files = le64_to_cpu(st.num_objects);
93 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070094 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070095
Jeff Layton080a3302017-10-23 10:58:40 -040096 /* Must convert the fsid, for consistent values across arches */
Luis Henriques73fb0942018-05-28 18:37:40 +010097 mutex_lock(&monc->mutex);
98 fsid = le64_to_cpu(*(__le64 *)(&monc->monmap->fsid)) ^
99 le64_to_cpu(*((__le64 *)&monc->monmap->fsid + 1));
100 mutex_unlock(&monc->mutex);
101
Sage Weil16725b92009-10-06 11:31:07 -0700102 buf->f_fsid.val[0] = fsid & 0xffffffff;
103 buf->f_fsid.val[1] = fsid >> 32;
104
105 return 0;
106}
107
108
Sage Weil2d9c98a2010-07-30 09:38:13 -0700109static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700110{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700111 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700112
113 if (!wait) {
114 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700115 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700116 dout("sync_fs (non-blocking) done\n");
117 return 0;
118 }
119
120 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700121 ceph_osdc_sync(&fsc->client->osdc);
122 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700123 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700124 return 0;
125}
126
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700127/*
128 * mount options
129 */
130enum {
131 Opt_wsize,
132 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700133 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700134 Opt_caps_wanted_delay_min,
135 Opt_caps_wanted_delay_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700136 Opt_readdir_max_entries,
137 Opt_readdir_max_bytes,
138 Opt_congestion_kb,
139 Opt_last_int,
140 /* int args above */
141 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800142 Opt_mds_namespace,
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800143 Opt_fscache_uniq,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700144 Opt_last_string,
145 /* string args above */
146 Opt_dirstat,
147 Opt_nodirstat,
148 Opt_rbytes,
149 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600150 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700151 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800152 Opt_dcache,
153 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800154 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600155 Opt_noino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400156 Opt_fscache,
Sage Weil45195e42014-02-16 10:05:29 -0800157 Opt_nofscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800158 Opt_poolperm,
159 Opt_nopoolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800160 Opt_require_active_mds,
161 Opt_norequire_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800162#ifdef CONFIG_CEPH_FS_POSIX_ACL
163 Opt_acl,
164#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800165 Opt_noacl,
Luis Henriques9122eed2018-01-31 10:53:13 +0000166 Opt_quotadf,
167 Opt_noquotadf,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700168};
169
170static match_table_t fsopt_tokens = {
171 {Opt_wsize, "wsize=%d"},
172 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700173 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700174 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
175 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700176 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
177 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
178 {Opt_congestion_kb, "write_congestion_kb=%d"},
179 /* int args above */
180 {Opt_snapdirname, "snapdirname=%s"},
Yan, Zheng430afba2016-07-08 11:25:38 +0800181 {Opt_mds_namespace, "mds_namespace=%s"},
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800182 {Opt_fscache_uniq, "fsc=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700183 /* string args above */
184 {Opt_dirstat, "dirstat"},
185 {Opt_nodirstat, "nodirstat"},
186 {Opt_rbytes, "rbytes"},
187 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600188 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700189 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800190 {Opt_dcache, "dcache"},
191 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800192 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600193 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400194 {Opt_fscache, "fsc"},
195 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800196 {Opt_poolperm, "poolperm"},
197 {Opt_nopoolperm, "nopoolperm"},
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800198 {Opt_require_active_mds, "require_active_mds"},
199 {Opt_norequire_active_mds, "norequire_active_mds"},
Sage Weil45195e42014-02-16 10:05:29 -0800200#ifdef CONFIG_CEPH_FS_POSIX_ACL
201 {Opt_acl, "acl"},
202#endif
203 {Opt_noacl, "noacl"},
Luis Henriques9122eed2018-01-31 10:53:13 +0000204 {Opt_quotadf, "quotadf"},
205 {Opt_noquotadf, "noquotadf"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700206 {-1, NULL}
207};
208
209static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800210{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700211 struct ceph_mount_options *fsopt = private;
212 substring_t argstr[MAX_OPT_ARGS];
213 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800214
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700215 token = match_token((char *)c, fsopt_tokens, argstr);
216 if (token < 0)
217 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800218
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700219 if (token < Opt_last_int) {
220 ret = match_int(&argstr[0], &intval);
221 if (ret < 0) {
Ilya Dryomov2f56b6b2018-06-27 16:38:13 +0200222 pr_err("bad option arg (not int) at '%s'\n", c);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700223 return ret;
224 }
225 dout("got int token %d val %d\n", token, intval);
226 } else if (token > Opt_last_int && token < Opt_last_string) {
227 dout("got string token %d val %s\n", token,
228 argstr[0].from);
229 } else {
230 dout("got token %d\n", token);
231 }
232
233 switch (token) {
234 case Opt_snapdirname:
235 kfree(fsopt->snapdir_name);
236 fsopt->snapdir_name = kstrndup(argstr[0].from,
237 argstr[0].to-argstr[0].from,
238 GFP_KERNEL);
239 if (!fsopt->snapdir_name)
240 return -ENOMEM;
241 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800242 case Opt_mds_namespace:
Chengguang Xu937441f2018-02-06 08:25:55 +0800243 kfree(fsopt->mds_namespace);
Yan, Zheng430afba2016-07-08 11:25:38 +0800244 fsopt->mds_namespace = kstrndup(argstr[0].from,
245 argstr[0].to-argstr[0].from,
246 GFP_KERNEL);
247 if (!fsopt->mds_namespace)
248 return -ENOMEM;
Yan, Zheng235a0982016-03-30 17:18:34 +0800249 break;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800250 case Opt_fscache_uniq:
Jeff Laytona8a61f82019-11-07 09:39:32 -0500251#ifdef CONFIG_CEPH_FSCACHE
Chengguang Xu937441f2018-02-06 08:25:55 +0800252 kfree(fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800253 fsopt->fscache_uniq = kstrndup(argstr[0].from,
254 argstr[0].to-argstr[0].from,
255 GFP_KERNEL);
256 if (!fsopt->fscache_uniq)
257 return -ENOMEM;
258 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
259 break;
Jeff Laytona8a61f82019-11-07 09:39:32 -0500260#else
261 pr_err("fscache support is disabled\n");
262 return -EINVAL;
263#endif
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700264 case Opt_wsize:
Chengguang Xu8db0c752018-05-30 16:47:06 +0800265 if (intval < (int)PAGE_SIZE || intval > CEPH_MAX_WRITE_SIZE)
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800266 return -EINVAL;
267 fsopt->wsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700268 break;
269 case Opt_rsize:
Chengguang Xu8db0c752018-05-30 16:47:06 +0800270 if (intval < (int)PAGE_SIZE || intval > CEPH_MAX_READ_SIZE)
Yan, Zhengaa187922017-07-11 15:56:09 +0800271 return -EINVAL;
272 fsopt->rsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700273 break;
Sage Weil83817e32011-08-04 08:03:44 -0700274 case Opt_rasize:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800275 if (intval < 0)
276 return -EINVAL;
Chengguang Xuc36ed502018-05-30 10:13:11 +0800277 fsopt->rasize = ALIGN(intval, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700278 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700279 case Opt_caps_wanted_delay_min:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800280 if (intval < 1)
281 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700282 fsopt->caps_wanted_delay_min = intval;
283 break;
284 case Opt_caps_wanted_delay_max:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800285 if (intval < 1)
286 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700287 fsopt->caps_wanted_delay_max = intval;
288 break;
289 case Opt_readdir_max_entries:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800290 if (intval < 1)
291 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700292 fsopt->max_readdir = intval;
293 break;
294 case Opt_readdir_max_bytes:
Chengguang Xu8db0c752018-05-30 16:47:06 +0800295 if (intval < (int)PAGE_SIZE && intval != 0)
Yan, Zheng4214fb12017-07-11 18:49:44 +0800296 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700297 fsopt->max_readdir_bytes = intval;
298 break;
299 case Opt_congestion_kb:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800300 if (intval < 1024) /* at least 1M */
301 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700302 fsopt->congestion_kb = intval;
303 break;
304 case Opt_dirstat:
305 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
306 break;
307 case Opt_nodirstat:
308 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
309 break;
310 case Opt_rbytes:
311 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
312 break;
313 case Opt_norbytes:
314 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
315 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600316 case Opt_asyncreaddir:
317 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
318 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700319 case Opt_noasyncreaddir:
320 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
321 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800322 case Opt_dcache:
323 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
324 break;
325 case Opt_nodcache:
326 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
327 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800328 case Opt_ino32:
329 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
330 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600331 case Opt_noino32:
332 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
333 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400334 case Opt_fscache:
Jeff Laytona8a61f82019-11-07 09:39:32 -0500335#ifdef CONFIG_CEPH_FSCACHE
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400336 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800337 kfree(fsopt->fscache_uniq);
338 fsopt->fscache_uniq = NULL;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400339 break;
Jeff Laytona8a61f82019-11-07 09:39:32 -0500340#else
341 pr_err("fscache support is disabled\n");
342 return -EINVAL;
343#endif
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400344 case Opt_nofscache:
345 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800346 kfree(fsopt->fscache_uniq);
347 fsopt->fscache_uniq = NULL;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400348 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800349 case Opt_poolperm:
350 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
Yan, Zheng10183a62015-04-27 15:33:28 +0800351 break;
352 case Opt_nopoolperm:
353 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
354 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800355 case Opt_require_active_mds:
356 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
357 break;
358 case Opt_norequire_active_mds:
359 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
360 break;
Luis Henriques9122eed2018-01-31 10:53:13 +0000361 case Opt_quotadf:
362 fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
363 break;
364 case Opt_noquotadf:
365 fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
366 break;
Sage Weil45195e42014-02-16 10:05:29 -0800367#ifdef CONFIG_CEPH_FS_POSIX_ACL
368 case Opt_acl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800369 fsopt->sb_flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -0800370 break;
371#endif
372 case Opt_noacl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800373 fsopt->sb_flags &= ~SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -0800374 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700375 default:
376 BUG_ON(token);
377 }
378 return 0;
379}
380
381static void destroy_mount_options(struct ceph_mount_options *args)
382{
383 dout("destroy_mount_options %p\n", args);
384 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800385 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800386 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800387 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700388 kfree(args);
389}
390
391static int strcmp_null(const char *s1, const char *s2)
392{
393 if (!s1 && !s2)
394 return 0;
395 if (s1 && !s2)
396 return -1;
397 if (!s1 && s2)
398 return 1;
399 return strcmp(s1, s2);
400}
401
402static int compare_mount_options(struct ceph_mount_options *new_fsopt,
403 struct ceph_options *new_opt,
404 struct ceph_fs_client *fsc)
405{
406 struct ceph_mount_options *fsopt1 = new_fsopt;
407 struct ceph_mount_options *fsopt2 = fsc->mount_options;
408 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
409 int ret;
410
411 ret = memcmp(fsopt1, fsopt2, ofs);
412 if (ret)
413 return ret;
414
415 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
416 if (ret)
417 return ret;
Yan, Zheng430afba2016-07-08 11:25:38 +0800418 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
419 if (ret)
420 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800421 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
422 if (ret)
423 return ret;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800424 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
425 if (ret)
426 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800427
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700428 return ceph_compare_options(new_opt, fsc->client);
429}
430
431static int parse_mount_options(struct ceph_mount_options **pfsopt,
432 struct ceph_options **popt,
433 int flags, char *options,
Yan, Zheng3f384952016-04-21 11:09:55 +0800434 const char *dev_name)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700435{
436 struct ceph_mount_options *fsopt;
437 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700438 int err;
439
440 if (!dev_name || !*dev_name)
441 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700442
443 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
444 if (!fsopt)
445 return -ENOMEM;
446
447 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
448
Noah Watkins80db8be2011-08-22 13:49:23 -0600449 fsopt->sb_flags = flags;
450 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700451
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800452 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
Yan, Zhengaa187922017-07-11 15:56:09 +0800453 fsopt->rsize = CEPH_MAX_READ_SIZE;
Noah Watkins80db8be2011-08-22 13:49:23 -0600454 fsopt->rasize = CEPH_RASIZE_DEFAULT;
455 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400456 if (!fsopt->snapdir_name) {
457 err = -ENOMEM;
458 goto out;
459 }
460
Sage Weil50aac4f2011-01-18 07:59:40 -0800461 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
462 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600463 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
464 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
465 fsopt->congestion_kb = default_congestion_kb();
466
Alex Elderc98f5332012-08-09 10:33:26 -0700467 /*
468 * Distinguish the server list from the path in "dev_name".
469 * Internally we do not include the leading '/' in the path.
470 *
471 * "dev_name" will look like:
472 * <server_spec>[,<server_spec>...]:[<path>]
473 * where
474 * <server_spec> is <ip>[:<port>]
475 * <path> is optional, but if present must begin with '/'
476 */
477 dev_name_end = strchr(dev_name, '/');
478 if (dev_name_end) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800479 if (strlen(dev_name_end) > 1) {
480 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
481 if (!fsopt->server_path) {
482 err = -ENOMEM;
483 goto out;
484 }
Yan, Zheng3f384952016-04-21 11:09:55 +0800485 }
Alex Elderc98f5332012-08-09 10:33:26 -0700486 } else {
Alex Elderc98f5332012-08-09 10:33:26 -0700487 dev_name_end = dev_name + strlen(dev_name);
Alex Elderc98f5332012-08-09 10:33:26 -0700488 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600489 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700490 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400491 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700492 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600493 dev_name);
494 goto out;
495 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700496 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yan, Zheng3f384952016-04-21 11:09:55 +0800497 if (fsopt->server_path)
498 dout("server path '%s'\n", fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700499
Alex Elderee577412012-01-24 10:08:36 -0600500 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700501 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600502 if (IS_ERR(*popt)) {
503 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700504 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600505 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700506
507 /* success */
508 *pfsopt = fsopt;
509 return 0;
510
511out:
512 destroy_mount_options(fsopt);
513 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800514}
515
Sage Weil6e19a162010-04-29 16:38:32 -0700516/**
517 * ceph_show_options - Show mount options in /proc/mounts
518 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500519 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700520 */
Al Viro34c80b12011-12-08 21:32:45 -0500521static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700522{
Al Viro34c80b12011-12-08 21:32:45 -0500523 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700524 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300525 size_t pos;
526 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700527
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300528 /* a comma between MNT/MS and client options */
529 seq_putc(m, ',');
530 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700531
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300532 ret = ceph_print_client_options(m, fsc->client);
533 if (ret)
534 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700535
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300536 /* retract our comma if no client options */
537 if (m->count == pos)
538 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700539
540 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
541 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800542 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
543 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700544 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700545 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300546 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800547 seq_puts(m, ",nodcache");
Chengguang Xu3619aa82018-06-04 16:03:51 +0800548 if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
549 seq_puts(m, ",ino32");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800550 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800551 seq_show_option(m, "fsc", fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800552 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800553 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
554 seq_puts(m, ",nopoolperm");
Luis Henriques9122eed2018-01-31 10:53:13 +0000555 if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
556 seq_puts(m, ",noquotadf");
Sage Weil6e19a162010-04-29 16:38:32 -0700557
Sage Weil45195e42014-02-16 10:05:29 -0800558#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800559 if (fsopt->sb_flags & SB_POSIXACL)
Sage Weil45195e42014-02-16 10:05:29 -0800560 seq_puts(m, ",acl");
561 else
562 seq_puts(m, ",noacl");
563#endif
564
Yan, Zheng430afba2016-07-08 11:25:38 +0800565 if (fsopt->mds_namespace)
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800566 seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
Ilya Dryomov6dd49402018-05-03 16:26:55 +0200567 if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700568 seq_printf(m, ",wsize=%d", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800569 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700570 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700571 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800572 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700573 if (fsopt->congestion_kb != default_congestion_kb())
574 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
575 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700576 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577 fsopt->caps_wanted_delay_min);
578 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700579 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700580 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700581 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
582 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
583 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
584 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
585 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700586 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300587
Sage Weil6e19a162010-04-29 16:38:32 -0700588 return 0;
589}
590
591/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700592 * handle any mon messages the standard library doesn't understand.
593 * return error if we don't either.
594 */
595static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
596{
597 struct ceph_fs_client *fsc = client->private;
598 int type = le16_to_cpu(msg->hdr.type);
599
600 switch (type) {
601 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800602 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700603 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800604 case CEPH_MSG_FS_MAP_USER:
605 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
606 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700607 default:
608 return -1;
609 }
610}
611
612/*
613 * create a new fs client
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200614 *
615 * Success or not, this function consumes @fsopt and @opt.
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700616 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700617static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700618 struct ceph_options *opt)
619{
620 struct ceph_fs_client *fsc;
Alex Elder3bf53332013-04-01 10:48:40 -0500621 int page_count;
622 size_t size;
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200623 int err;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700624
625 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200626 if (!fsc) {
627 err = -ENOMEM;
628 goto fail;
629 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700630
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100631 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700632 if (IS_ERR(fsc->client)) {
633 err = PTR_ERR(fsc->client);
634 goto fail;
635 }
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200636 opt = NULL; /* fsc->client now owns this */
Ilya Dryomovc843d132018-05-30 16:29:14 +0200637
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700638 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Ilya Dryomovc843d132018-05-30 16:29:14 +0200639 fsc->client->osdc.abort_on_full = true;
Yan, Zheng430afba2016-07-08 11:25:38 +0800640
Markus Elfringd37b1d92017-08-20 20:22:02 +0200641 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800642 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
643 0, true);
644 } else {
645 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
646 0, false);
647 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700648
649 fsc->mount_options = fsopt;
650
651 fsc->sb = NULL;
652 fsc->mount_state = CEPH_MOUNT_MOUNTING;
653
654 atomic_long_set(&fsc->writeback_count, 0);
655
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700656 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100657 /*
658 * The number of concurrent works can be high but they don't need
659 * to be processed in parallel, limit concurrency.
660 */
661 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200662 if (!fsc->wb_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200663 goto fail_client;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100664 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200665 if (!fsc->pg_inv_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700666 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100667 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200668 if (!fsc->trunc_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700669 goto fail_pg_inv_wq;
670
671 /* set up mempools */
672 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300673 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500674 size = sizeof (struct page *) * (page_count ? page_count : 1);
675 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700676 if (!fsc->wb_pagevec_pool)
677 goto fail_trunc_wq;
678
679 /* caps */
680 fsc->min_caps = fsopt->max_readdir;
681
682 return fsc;
683
684fail_trunc_wq:
685 destroy_workqueue(fsc->trunc_wq);
686fail_pg_inv_wq:
687 destroy_workqueue(fsc->pg_inv_wq);
688fail_wb_wq:
689 destroy_workqueue(fsc->wb_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700690fail_client:
691 ceph_destroy_client(fsc->client);
692fail:
693 kfree(fsc);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200694 if (opt)
695 ceph_destroy_options(opt);
696 destroy_mount_options(fsopt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700697 return ERR_PTR(err);
698}
699
Yan, Zhenga57d9062018-05-18 16:05:51 +0800700static void flush_fs_workqueues(struct ceph_fs_client *fsc)
701{
702 flush_workqueue(fsc->wb_wq);
703 flush_workqueue(fsc->pg_inv_wq);
704 flush_workqueue(fsc->trunc_wq);
705}
706
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700707static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700708{
709 dout("destroy_fs_client %p\n", fsc);
710
711 destroy_workqueue(fsc->wb_wq);
712 destroy_workqueue(fsc->pg_inv_wq);
713 destroy_workqueue(fsc->trunc_wq);
714
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700715 mempool_destroy(fsc->wb_pagevec_pool);
716
717 destroy_mount_options(fsc->mount_options);
718
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700719 ceph_destroy_client(fsc->client);
720
721 kfree(fsc);
722 dout("destroy_fs_client %p done\n", fsc);
723}
724
725/*
Sage Weil6e19a162010-04-29 16:38:32 -0700726 * caches
727 */
728struct kmem_cache *ceph_inode_cachep;
729struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800730struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700731struct kmem_cache *ceph_dentry_cachep;
732struct kmem_cache *ceph_file_cachep;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800733struct kmem_cache *ceph_dir_file_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700734
735static void ceph_inode_init_once(void *foo)
736{
737 struct ceph_inode_info *ci = foo;
738 inode_init_once(&ci->vfs_inode);
739}
740
Sage Weil16725b92009-10-06 11:31:07 -0700741static int __init init_caches(void)
742{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400743 int error = -ENOMEM;
744
Sage Weil16725b92009-10-06 11:31:07 -0700745 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
746 sizeof(struct ceph_inode_info),
747 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800748 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
749 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200750 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700751 return -ENOMEM;
752
Chengguang Xubc4b5ad2018-02-27 13:49:44 +0800753 ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200754 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700755 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800756 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
757 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200758 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800759 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700760
761 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
762 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200763 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700764 goto bad_dentry;
765
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300766 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200767 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700768 goto bad_file;
769
Chengguang Xubb48bd42018-03-13 10:42:44 +0800770 ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, SLAB_MEM_SPREAD);
771 if (!ceph_dir_file_cachep)
772 goto bad_dir_file;
773
Chengguang Xu1c789242018-03-01 14:24:51 +0800774 error = ceph_fscache_register();
775 if (error)
776 goto bad_fscache;
Sage Weil16725b92009-10-06 11:31:07 -0700777
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400778 return 0;
Chengguang Xu1c789242018-03-01 14:24:51 +0800779
780bad_fscache:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800781 kmem_cache_destroy(ceph_dir_file_cachep);
782bad_dir_file:
Chengguang Xu1c789242018-03-01 14:24:51 +0800783 kmem_cache_destroy(ceph_file_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700784bad_file:
785 kmem_cache_destroy(ceph_dentry_cachep);
786bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800787 kmem_cache_destroy(ceph_cap_flush_cachep);
788bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700789 kmem_cache_destroy(ceph_cap_cachep);
790bad_cap:
791 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400792 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700793}
794
795static void destroy_caches(void)
796{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000797 /*
798 * Make sure all delayed rcu free inodes are flushed before we
799 * destroy cache.
800 */
801 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400802
Sage Weil16725b92009-10-06 11:31:07 -0700803 kmem_cache_destroy(ceph_inode_cachep);
804 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800805 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700806 kmem_cache_destroy(ceph_dentry_cachep);
807 kmem_cache_destroy(ceph_file_cachep);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800808 kmem_cache_destroy(ceph_dir_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400809
810 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700811}
812
813
814/*
815 * ceph_umount_begin - initiate forced umount. Tear down down the
816 * mount, skipping steps that may hang while waiting for server(s).
817 */
818static void ceph_umount_begin(struct super_block *sb)
819{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700820 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700821
822 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700823 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700824 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700825 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng12b69d52018-05-11 17:12:02 +0800826 ceph_osdc_abort_requests(&fsc->client->osdc, -EIO);
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800827 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700828 return;
829}
830
Jeff Layton77ca9142019-05-07 09:20:54 -0400831static int ceph_remount(struct super_block *sb, int *flags, char *data)
832{
833 sync_filesystem(sb);
834 return 0;
835}
836
Sage Weil16725b92009-10-06 11:31:07 -0700837static const struct super_operations ceph_super_ops = {
838 .alloc_inode = ceph_alloc_inode,
Sasha Levin72f0fff2019-10-01 18:01:07 -0400839 .destroy_inode = ceph_destroy_inode,
Sage Weil16725b92009-10-06 11:31:07 -0700840 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800841 .drop_inode = ceph_drop_inode,
Yan, Zhenge9bcaf82019-10-01 17:24:25 -0400842 .evict_inode = ceph_evict_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700843 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700844 .put_super = ceph_put_super,
Jeff Layton77ca9142019-05-07 09:20:54 -0400845 .remount_fs = ceph_remount,
Sage Weil16725b92009-10-06 11:31:07 -0700846 .show_options = ceph_show_options,
847 .statfs = ceph_statfs,
848 .umount_begin = ceph_umount_begin,
849};
850
Sage Weil16725b92009-10-06 11:31:07 -0700851/*
852 * Bootstrap mount by opening the root directory. Note the mount
853 * @started time from caller, and time out if this takes too long.
854 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700855static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700856 const char *path,
857 unsigned long started)
858{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700859 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700860 struct ceph_mds_request *req = NULL;
861 int err;
862 struct dentry *root;
863
864 /* open dir */
865 dout("open_root_inode opening '%s'\n", path);
866 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
867 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200868 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700869 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400870 if (!req->r_path1) {
871 root = ERR_PTR(-ENOMEM);
872 goto out;
873 }
874
Sage Weil16725b92009-10-06 11:31:07 -0700875 req->r_ino1.ino = CEPH_INO_ROOT;
876 req->r_ino1.snap = CEPH_NOSNAP;
877 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300878 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700879 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
880 req->r_num_caps = 2;
881 err = ceph_mdsc_do_request(mdsc, NULL, req);
882 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500883 struct inode *inode = req->r_target_inode;
884 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700885 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800886 root = d_make_root(inode);
887 if (!root) {
888 root = ERR_PTR(-ENOMEM);
889 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800890 }
Sage Weil16725b92009-10-06 11:31:07 -0700891 dout("open_root_inode success, root dentry is %p\n", root);
892 } else {
893 root = ERR_PTR(err);
894 }
Al Viro3c5184e2012-01-09 16:34:32 -0500895out:
Sage Weil16725b92009-10-06 11:31:07 -0700896 ceph_mdsc_put_request(req);
897 return root;
898}
899
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700900
901
902
Sage Weil16725b92009-10-06 11:31:07 -0700903/*
904 * mount: join the ceph cluster, and open root directory.
905 */
Yan, Zheng3f384952016-04-21 11:09:55 +0800906static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700907{
Sage Weil16725b92009-10-06 11:31:07 -0700908 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700909 unsigned long started = jiffies; /* note the start time */
910 struct dentry *root;
911
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800912 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700913 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700914
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800915 if (!fsc->sb->s_root) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800916 const char *path;
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800917 err = __ceph_open_session(fsc->client, started);
918 if (err < 0)
919 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700920
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800921 /* setup fscache */
922 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
923 err = ceph_fscache_register_fs(fsc);
924 if (err < 0)
925 goto out;
926 }
927
Yan, Zhengce2728a2016-09-14 14:53:05 +0800928 if (!fsc->mount_options->server_path) {
929 path = "";
930 dout("mount opening path \\t\n");
931 } else {
932 path = fsc->mount_options->server_path + 1;
933 dout("mount opening path %s\n", path);
934 }
Chengguang Xu18106732018-02-09 20:40:59 +0800935
936 err = ceph_fs_debugfs_init(fsc);
937 if (err < 0)
938 goto out;
939
Yan, Zhengce2728a2016-09-14 14:53:05 +0800940 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800941 if (IS_ERR(root)) {
942 err = PTR_ERR(root);
943 goto out;
944 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800945 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200946 } else {
947 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700948 }
Sage Weil16725b92009-10-06 11:31:07 -0700949
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700950 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700951 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400952 mutex_unlock(&fsc->client->mount_mutex);
953 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700954
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800955out:
956 mutex_unlock(&fsc->client->mount_mutex);
957 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700958}
959
960static int ceph_set_super(struct super_block *s, void *data)
961{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700962 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700963 int ret;
964
965 dout("set_super %p data %p\n", s, data);
966
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700967 s->s_flags = fsc->mount_options->sb_flags;
Chengguang Xu719784b2018-07-19 22:15:24 +0800968 s->s_maxbytes = MAX_LFS_FILESIZE;
Sage Weil16725b92009-10-06 11:31:07 -0700969
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800970 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700971 s->s_fs_info = fsc;
972 fsc->sb = s;
Chengguang Xu719784b2018-07-19 22:15:24 +0800973 fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */
Sage Weil16725b92009-10-06 11:31:07 -0700974
975 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400976 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700977 s->s_export_op = &ceph_export_ops;
978
979 s->s_time_gran = 1000; /* 1000 ns == 1 us */
980
981 ret = set_anon_super(s, NULL); /* what is that second arg for? */
982 if (ret != 0)
983 goto fail;
984
985 return ret;
986
987fail:
988 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700989 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700990 return ret;
991}
992
993/*
994 * share superblock if same fs AND options
995 */
996static int ceph_compare_super(struct super_block *sb, void *data)
997{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700998 struct ceph_fs_client *new = data;
999 struct ceph_mount_options *fsopt = new->mount_options;
1000 struct ceph_options *opt = new->client->options;
1001 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001002
1003 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001004
1005 if (compare_mount_options(fsopt, opt, other)) {
1006 dout("monitor(s)/mount options don't match\n");
1007 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001008 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001009 if ((opt->flags & CEPH_OPT_FSID) &&
1010 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
1011 dout("fsid doesn't match\n");
1012 return 0;
1013 }
1014 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -07001015 dout("flags differ\n");
1016 return 0;
1017 }
1018 return 1;
1019}
1020
1021/*
1022 * construct our own bdi so we can control readahead, etc.
1023 */
Jeff Mahoney00d56432010-06-10 11:13:58 -04001024static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -07001025
Jan Kara09dc9fc2017-04-12 12:24:33 +02001026static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -07001027{
1028 int err;
1029
Jan Kara09dc9fc2017-04-12 12:24:33 +02001030 err = super_setup_bdi_name(sb, "ceph-%ld",
1031 atomic_long_inc_return(&bdi_seq));
1032 if (err)
1033 return err;
1034
Sage Weil83817e32011-08-04 08:03:44 -07001035 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +08001036 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001037
Yan, Zhengaa187922017-07-11 15:56:09 +08001038 /* set io_pages based on max osd read size */
1039 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +01001040
Jan Kara09dc9fc2017-04-12 12:24:33 +02001041 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001042}
1043
Al Viroa7f9fb22010-07-26 16:17:55 +04001044static struct dentry *ceph_mount(struct file_system_type *fs_type,
1045 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -07001046{
1047 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001048 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001049 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -07001050 int err;
1051 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001052 struct ceph_mount_options *fsopt = NULL;
1053 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001054
Al Viroa7f9fb22010-07-26 16:17:55 +04001055 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -08001056
1057#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001058 flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -08001059#endif
Yan, Zheng3f384952016-04-21 11:09:55 +08001060 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name);
Al Viroa7f9fb22010-07-26 16:17:55 +04001061 if (err < 0) {
1062 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -07001063 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +04001064 }
Sage Weil16725b92009-10-06 11:31:07 -07001065
1066 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001067 fsc = create_fs_client(fsopt, opt);
1068 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001069 res = ERR_CAST(fsc);
Sage Weil6b805182009-10-27 11:50:50 -07001070 goto out_final;
1071 }
Sage Weil16725b92009-10-06 11:31:07 -07001072
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001073 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001074 if (err < 0) {
1075 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001076 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +04001077 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001078
1079 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001080 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +01001081 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001082 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001083 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001084 goto out;
1085 }
1086
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001087 if (ceph_sb_to_client(sb) != fsc) {
1088 ceph_mdsc_destroy(fsc);
1089 destroy_fs_client(fsc);
1090 fsc = ceph_sb_to_client(sb);
1091 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001092 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001093 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001094 err = ceph_setup_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001095 if (err < 0) {
1096 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001097 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001098 }
Sage Weil16725b92009-10-06 11:31:07 -07001099 }
1100
Yan, Zheng3f384952016-04-21 11:09:55 +08001101 res = ceph_real_mount(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001102 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001103 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001104 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001105 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001106 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001107
1108out_splat:
Xiubo Li68983ba2019-12-10 20:29:40 -05001109 if (!ceph_mdsmap_is_cluster_available(fsc->mdsc->mdsmap)) {
1110 pr_info("No mds server is up or the cluster is laggy\n");
1111 err = -EHOSTUNREACH;
1112 }
1113
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001114 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001115 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001116 goto out_final;
1117
1118out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001119 ceph_mdsc_destroy(fsc);
1120 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001121out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001122 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1123 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001124}
1125
1126static void ceph_kill_sb(struct super_block *s)
1127{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001128 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001129 dev_t dev = s->s_dev;
1130
Sage Weil16725b92009-10-06 11:31:07 -07001131 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001132
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001133 ceph_mdsc_pre_umount(fsc->mdsc);
Yan, Zhenga57d9062018-05-18 16:05:51 +08001134 flush_fs_workqueues(fsc);
1135
Christoph Hellwige4d27502015-01-14 10:42:38 +01001136 generic_shutdown_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001137
1138 fsc->client->extra_mon_dispatch = NULL;
1139 ceph_fs_debugfs_cleanup(fsc);
1140
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001141 ceph_fscache_unregister_fs(fsc);
1142
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001143 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001144
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001145 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001146 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001147}
1148
1149static struct file_system_type ceph_fs_type = {
1150 .owner = THIS_MODULE,
1151 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001152 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001153 .kill_sb = ceph_kill_sb,
1154 .fs_flags = FS_RENAME_DOES_D_MOVE,
1155};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001156MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001157
Sage Weil16725b92009-10-06 11:31:07 -07001158static int __init init_ceph(void)
1159{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001160 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001161 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001162 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001163
Yan, Zhengeb13e832014-03-09 23:16:40 +08001164 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001165 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001166 ret = register_filesystem(&ceph_fs_type);
1167 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001168 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001169
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001170 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1171
Sage Weil16725b92009-10-06 11:31:07 -07001172 return 0;
1173
Yan, Zheng97c85a82014-11-06 15:09:41 +08001174out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001175 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001176 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001177out:
1178 return ret;
1179}
1180
1181static void __exit exit_ceph(void)
1182{
1183 dout("exit_ceph\n");
1184 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -06001185 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001186 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001187}
1188
1189module_init(init_ceph);
1190module_exit(exit_ceph);
1191
1192MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1193MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1194MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1195MODULE_DESCRIPTION("Ceph filesystem for Linux");
1196MODULE_LICENSE("GPL");