blob: b5ecd6f50360d53e0fe24c4ea79416722e93fc6c [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,
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100168 Opt_copyfrom,
169 Opt_nocopyfrom,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700170};
171
172static match_table_t fsopt_tokens = {
173 {Opt_wsize, "wsize=%d"},
174 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700175 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700176 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
177 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700178 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
179 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
180 {Opt_congestion_kb, "write_congestion_kb=%d"},
181 /* int args above */
182 {Opt_snapdirname, "snapdirname=%s"},
Yan, Zheng430afba2016-07-08 11:25:38 +0800183 {Opt_mds_namespace, "mds_namespace=%s"},
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800184 {Opt_fscache_uniq, "fsc=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700185 /* string args above */
186 {Opt_dirstat, "dirstat"},
187 {Opt_nodirstat, "nodirstat"},
188 {Opt_rbytes, "rbytes"},
189 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600190 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700191 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800192 {Opt_dcache, "dcache"},
193 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800194 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600195 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400196 {Opt_fscache, "fsc"},
197 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800198 {Opt_poolperm, "poolperm"},
199 {Opt_nopoolperm, "nopoolperm"},
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800200 {Opt_require_active_mds, "require_active_mds"},
201 {Opt_norequire_active_mds, "norequire_active_mds"},
Sage Weil45195e42014-02-16 10:05:29 -0800202#ifdef CONFIG_CEPH_FS_POSIX_ACL
203 {Opt_acl, "acl"},
204#endif
205 {Opt_noacl, "noacl"},
Luis Henriques9122eed2018-01-31 10:53:13 +0000206 {Opt_quotadf, "quotadf"},
207 {Opt_noquotadf, "noquotadf"},
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100208 {Opt_copyfrom, "copyfrom"},
209 {Opt_nocopyfrom, "nocopyfrom"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700210 {-1, NULL}
211};
212
213static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800214{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700215 struct ceph_mount_options *fsopt = private;
216 substring_t argstr[MAX_OPT_ARGS];
217 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800218
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700219 token = match_token((char *)c, fsopt_tokens, argstr);
220 if (token < 0)
221 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800222
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700223 if (token < Opt_last_int) {
224 ret = match_int(&argstr[0], &intval);
225 if (ret < 0) {
Ilya Dryomov2f56b6b2018-06-27 16:38:13 +0200226 pr_err("bad option arg (not int) at '%s'\n", c);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700227 return ret;
228 }
229 dout("got int token %d val %d\n", token, intval);
230 } else if (token > Opt_last_int && token < Opt_last_string) {
231 dout("got string token %d val %s\n", token,
232 argstr[0].from);
233 } else {
234 dout("got token %d\n", token);
235 }
236
237 switch (token) {
238 case Opt_snapdirname:
239 kfree(fsopt->snapdir_name);
240 fsopt->snapdir_name = kstrndup(argstr[0].from,
241 argstr[0].to-argstr[0].from,
242 GFP_KERNEL);
243 if (!fsopt->snapdir_name)
244 return -ENOMEM;
245 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800246 case Opt_mds_namespace:
Chengguang Xu937441f2018-02-06 08:25:55 +0800247 kfree(fsopt->mds_namespace);
Yan, Zheng430afba2016-07-08 11:25:38 +0800248 fsopt->mds_namespace = kstrndup(argstr[0].from,
249 argstr[0].to-argstr[0].from,
250 GFP_KERNEL);
251 if (!fsopt->mds_namespace)
252 return -ENOMEM;
Yan, Zheng235a0982016-03-30 17:18:34 +0800253 break;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800254 case Opt_fscache_uniq:
Chengguang Xu937441f2018-02-06 08:25:55 +0800255 kfree(fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800256 fsopt->fscache_uniq = kstrndup(argstr[0].from,
257 argstr[0].to-argstr[0].from,
258 GFP_KERNEL);
259 if (!fsopt->fscache_uniq)
260 return -ENOMEM;
261 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
262 break;
Yan, Zheng430afba2016-07-08 11:25:38 +0800263 /* misc */
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:
335 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800336 kfree(fsopt->fscache_uniq);
337 fsopt->fscache_uniq = NULL;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400338 break;
339 case Opt_nofscache:
340 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800341 kfree(fsopt->fscache_uniq);
342 fsopt->fscache_uniq = NULL;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400343 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800344 case Opt_poolperm:
345 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
Yan, Zheng10183a62015-04-27 15:33:28 +0800346 break;
347 case Opt_nopoolperm:
348 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
349 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800350 case Opt_require_active_mds:
351 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
352 break;
353 case Opt_norequire_active_mds:
354 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
355 break;
Luis Henriques9122eed2018-01-31 10:53:13 +0000356 case Opt_quotadf:
357 fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
358 break;
359 case Opt_noquotadf:
360 fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
361 break;
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100362 case Opt_copyfrom:
363 fsopt->flags &= ~CEPH_MOUNT_OPT_NOCOPYFROM;
364 break;
365 case Opt_nocopyfrom:
366 fsopt->flags |= CEPH_MOUNT_OPT_NOCOPYFROM;
367 break;
Sage Weil45195e42014-02-16 10:05:29 -0800368#ifdef CONFIG_CEPH_FS_POSIX_ACL
369 case Opt_acl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800370 fsopt->sb_flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -0800371 break;
372#endif
373 case Opt_noacl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800374 fsopt->sb_flags &= ~SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -0800375 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700376 default:
377 BUG_ON(token);
378 }
379 return 0;
380}
381
382static void destroy_mount_options(struct ceph_mount_options *args)
383{
384 dout("destroy_mount_options %p\n", args);
385 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800386 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800387 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800388 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700389 kfree(args);
390}
391
392static int strcmp_null(const char *s1, const char *s2)
393{
394 if (!s1 && !s2)
395 return 0;
396 if (s1 && !s2)
397 return -1;
398 if (!s1 && s2)
399 return 1;
400 return strcmp(s1, s2);
401}
402
403static int compare_mount_options(struct ceph_mount_options *new_fsopt,
404 struct ceph_options *new_opt,
405 struct ceph_fs_client *fsc)
406{
407 struct ceph_mount_options *fsopt1 = new_fsopt;
408 struct ceph_mount_options *fsopt2 = fsc->mount_options;
409 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
410 int ret;
411
412 ret = memcmp(fsopt1, fsopt2, ofs);
413 if (ret)
414 return ret;
415
416 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
417 if (ret)
418 return ret;
Yan, Zheng430afba2016-07-08 11:25:38 +0800419 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
420 if (ret)
421 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800422 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
423 if (ret)
424 return ret;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800425 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
426 if (ret)
427 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800428
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700429 return ceph_compare_options(new_opt, fsc->client);
430}
431
432static int parse_mount_options(struct ceph_mount_options **pfsopt,
433 struct ceph_options **popt,
434 int flags, char *options,
Yan, Zheng3f384952016-04-21 11:09:55 +0800435 const char *dev_name)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700436{
437 struct ceph_mount_options *fsopt;
438 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700439 int err;
440
441 if (!dev_name || !*dev_name)
442 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700443
444 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
445 if (!fsopt)
446 return -ENOMEM;
447
448 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
449
Noah Watkins80db8be2011-08-22 13:49:23 -0600450 fsopt->sb_flags = flags;
451 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700452
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800453 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
Yan, Zhengaa187922017-07-11 15:56:09 +0800454 fsopt->rsize = CEPH_MAX_READ_SIZE;
Noah Watkins80db8be2011-08-22 13:49:23 -0600455 fsopt->rasize = CEPH_RASIZE_DEFAULT;
456 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400457 if (!fsopt->snapdir_name) {
458 err = -ENOMEM;
459 goto out;
460 }
461
Sage Weil50aac4f2011-01-18 07:59:40 -0800462 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
463 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600464 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
465 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
466 fsopt->congestion_kb = default_congestion_kb();
467
Alex Elderc98f5332012-08-09 10:33:26 -0700468 /*
469 * Distinguish the server list from the path in "dev_name".
470 * Internally we do not include the leading '/' in the path.
471 *
472 * "dev_name" will look like:
473 * <server_spec>[,<server_spec>...]:[<path>]
474 * where
475 * <server_spec> is <ip>[:<port>]
476 * <path> is optional, but if present must begin with '/'
477 */
478 dev_name_end = strchr(dev_name, '/');
479 if (dev_name_end) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800480 if (strlen(dev_name_end) > 1) {
481 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
482 if (!fsopt->server_path) {
483 err = -ENOMEM;
484 goto out;
485 }
Yan, Zheng3f384952016-04-21 11:09:55 +0800486 }
Alex Elderc98f5332012-08-09 10:33:26 -0700487 } else {
Alex Elderc98f5332012-08-09 10:33:26 -0700488 dev_name_end = dev_name + strlen(dev_name);
Alex Elderc98f5332012-08-09 10:33:26 -0700489 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600490 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700491 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400492 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700493 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600494 dev_name);
495 goto out;
496 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700497 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yan, Zheng3f384952016-04-21 11:09:55 +0800498 if (fsopt->server_path)
499 dout("server path '%s'\n", fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700500
Alex Elderee577412012-01-24 10:08:36 -0600501 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700502 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600503 if (IS_ERR(*popt)) {
504 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700505 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600506 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700507
508 /* success */
509 *pfsopt = fsopt;
510 return 0;
511
512out:
513 destroy_mount_options(fsopt);
514 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800515}
516
Sage Weil6e19a162010-04-29 16:38:32 -0700517/**
518 * ceph_show_options - Show mount options in /proc/mounts
519 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500520 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700521 */
Al Viro34c80b12011-12-08 21:32:45 -0500522static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700523{
Al Viro34c80b12011-12-08 21:32:45 -0500524 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700525 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300526 size_t pos;
527 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700528
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300529 /* a comma between MNT/MS and client options */
530 seq_putc(m, ',');
531 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700532
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300533 ret = ceph_print_client_options(m, fsc->client);
534 if (ret)
535 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700536
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300537 /* retract our comma if no client options */
538 if (m->count == pos)
539 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700540
541 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
542 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800543 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
544 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700545 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700546 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300547 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800548 seq_puts(m, ",nodcache");
Chengguang Xu3619aa82018-06-04 16:03:51 +0800549 if (fsopt->flags & CEPH_MOUNT_OPT_INO32)
550 seq_puts(m, ",ino32");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800551 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800552 seq_show_option(m, "fsc", fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800553 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800554 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
555 seq_puts(m, ",nopoolperm");
Luis Henriques9122eed2018-01-31 10:53:13 +0000556 if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
557 seq_puts(m, ",noquotadf");
Sage Weil6e19a162010-04-29 16:38:32 -0700558
Sage Weil45195e42014-02-16 10:05:29 -0800559#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800560 if (fsopt->sb_flags & SB_POSIXACL)
Sage Weil45195e42014-02-16 10:05:29 -0800561 seq_puts(m, ",acl");
562 else
563 seq_puts(m, ",noacl");
564#endif
565
Luis Henriquesea4cdc52018-10-15 16:46:00 +0100566 if (fsopt->flags & CEPH_MOUNT_OPT_NOCOPYFROM)
567 seq_puts(m, ",nocopyfrom");
568
Yan, Zheng430afba2016-07-08 11:25:38 +0800569 if (fsopt->mds_namespace)
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800570 seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
Ilya Dryomov6dd49402018-05-03 16:26:55 +0200571 if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700572 seq_printf(m, ",wsize=%d", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800573 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700575 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800576 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577 if (fsopt->congestion_kb != default_congestion_kb())
578 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
579 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700580 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700581 fsopt->caps_wanted_delay_min);
582 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700583 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700584 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700585 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
586 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
587 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
588 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
589 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700590 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300591
Sage Weil6e19a162010-04-29 16:38:32 -0700592 return 0;
593}
594
595/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700596 * handle any mon messages the standard library doesn't understand.
597 * return error if we don't either.
598 */
599static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
600{
601 struct ceph_fs_client *fsc = client->private;
602 int type = le16_to_cpu(msg->hdr.type);
603
604 switch (type) {
605 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800606 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700607 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800608 case CEPH_MSG_FS_MAP_USER:
609 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
610 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700611 default:
612 return -1;
613 }
614}
615
616/*
617 * create a new fs client
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200618 *
619 * Success or not, this function consumes @fsopt and @opt.
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700620 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700621static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700622 struct ceph_options *opt)
623{
624 struct ceph_fs_client *fsc;
Alex Elder3bf53332013-04-01 10:48:40 -0500625 int page_count;
626 size_t size;
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200627 int err;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700628
629 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200630 if (!fsc) {
631 err = -ENOMEM;
632 goto fail;
633 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700634
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100635 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700636 if (IS_ERR(fsc->client)) {
637 err = PTR_ERR(fsc->client);
638 goto fail;
639 }
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200640 opt = NULL; /* fsc->client now owns this */
Ilya Dryomovc843d132018-05-30 16:29:14 +0200641
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700642 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Ilya Dryomovc843d132018-05-30 16:29:14 +0200643 fsc->client->osdc.abort_on_full = true;
Yan, Zheng430afba2016-07-08 11:25:38 +0800644
Markus Elfringd37b1d92017-08-20 20:22:02 +0200645 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800646 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
647 0, true);
648 } else {
649 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
650 0, false);
651 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700652
653 fsc->mount_options = fsopt;
654
655 fsc->sb = NULL;
656 fsc->mount_state = CEPH_MOUNT_MOUNTING;
657
658 atomic_long_set(&fsc->writeback_count, 0);
659
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700660 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100661 /*
662 * The number of concurrent works can be high but they don't need
663 * to be processed in parallel, limit concurrency.
664 */
665 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200666 if (!fsc->wb_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200667 goto fail_client;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100668 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200669 if (!fsc->pg_inv_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700670 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100671 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200672 if (!fsc->trunc_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700673 goto fail_pg_inv_wq;
674
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)
681 goto fail_trunc_wq;
682
683 /* caps */
684 fsc->min_caps = fsopt->max_readdir;
685
686 return fsc;
687
688fail_trunc_wq:
689 destroy_workqueue(fsc->trunc_wq);
690fail_pg_inv_wq:
691 destroy_workqueue(fsc->pg_inv_wq);
692fail_wb_wq:
693 destroy_workqueue(fsc->wb_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700694fail_client:
695 ceph_destroy_client(fsc->client);
696fail:
697 kfree(fsc);
Ilya Dryomov8aaff152018-08-24 15:32:43 +0200698 if (opt)
699 ceph_destroy_options(opt);
700 destroy_mount_options(fsopt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700701 return ERR_PTR(err);
702}
703
Yan, Zhenga57d9062018-05-18 16:05:51 +0800704static void flush_fs_workqueues(struct ceph_fs_client *fsc)
705{
706 flush_workqueue(fsc->wb_wq);
707 flush_workqueue(fsc->pg_inv_wq);
708 flush_workqueue(fsc->trunc_wq);
709}
710
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700711static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700712{
713 dout("destroy_fs_client %p\n", fsc);
714
715 destroy_workqueue(fsc->wb_wq);
716 destroy_workqueue(fsc->pg_inv_wq);
717 destroy_workqueue(fsc->trunc_wq);
718
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700719 mempool_destroy(fsc->wb_pagevec_pool);
720
721 destroy_mount_options(fsc->mount_options);
722
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700723 ceph_destroy_client(fsc->client);
724
725 kfree(fsc);
726 dout("destroy_fs_client %p done\n", fsc);
727}
728
729/*
Sage Weil6e19a162010-04-29 16:38:32 -0700730 * caches
731 */
732struct kmem_cache *ceph_inode_cachep;
733struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800734struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700735struct kmem_cache *ceph_dentry_cachep;
736struct kmem_cache *ceph_file_cachep;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800737struct kmem_cache *ceph_dir_file_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700738
739static void ceph_inode_init_once(void *foo)
740{
741 struct ceph_inode_info *ci = foo;
742 inode_init_once(&ci->vfs_inode);
743}
744
Sage Weil16725b92009-10-06 11:31:07 -0700745static int __init init_caches(void)
746{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400747 int error = -ENOMEM;
748
Sage Weil16725b92009-10-06 11:31:07 -0700749 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
750 sizeof(struct ceph_inode_info),
751 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800752 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
753 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200754 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700755 return -ENOMEM;
756
Chengguang Xubc4b5ad2018-02-27 13:49:44 +0800757 ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200758 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700759 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800760 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
761 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200762 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800763 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700764
765 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
766 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200767 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700768 goto bad_dentry;
769
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300770 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200771 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700772 goto bad_file;
773
Chengguang Xubb48bd42018-03-13 10:42:44 +0800774 ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, SLAB_MEM_SPREAD);
775 if (!ceph_dir_file_cachep)
776 goto bad_dir_file;
777
Chengguang Xu1c789242018-03-01 14:24:51 +0800778 error = ceph_fscache_register();
779 if (error)
780 goto bad_fscache;
Sage Weil16725b92009-10-06 11:31:07 -0700781
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400782 return 0;
Chengguang Xu1c789242018-03-01 14:24:51 +0800783
784bad_fscache:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800785 kmem_cache_destroy(ceph_dir_file_cachep);
786bad_dir_file:
Chengguang Xu1c789242018-03-01 14:24:51 +0800787 kmem_cache_destroy(ceph_file_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700788bad_file:
789 kmem_cache_destroy(ceph_dentry_cachep);
790bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800791 kmem_cache_destroy(ceph_cap_flush_cachep);
792bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700793 kmem_cache_destroy(ceph_cap_cachep);
794bad_cap:
795 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400796 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700797}
798
799static void destroy_caches(void)
800{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000801 /*
802 * Make sure all delayed rcu free inodes are flushed before we
803 * destroy cache.
804 */
805 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400806
Sage Weil16725b92009-10-06 11:31:07 -0700807 kmem_cache_destroy(ceph_inode_cachep);
808 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800809 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700810 kmem_cache_destroy(ceph_dentry_cachep);
811 kmem_cache_destroy(ceph_file_cachep);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800812 kmem_cache_destroy(ceph_dir_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400813
814 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700815}
816
817
818/*
819 * ceph_umount_begin - initiate forced umount. Tear down down the
820 * mount, skipping steps that may hang while waiting for server(s).
821 */
822static void ceph_umount_begin(struct super_block *sb)
823{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700824 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700825
826 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700827 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700828 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700829 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng12b69d52018-05-11 17:12:02 +0800830 ceph_osdc_abort_requests(&fsc->client->osdc, -EIO);
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800831 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700832 return;
833}
834
835static const struct super_operations ceph_super_ops = {
836 .alloc_inode = ceph_alloc_inode,
837 .destroy_inode = ceph_destroy_inode,
838 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800839 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700840 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700841 .put_super = ceph_put_super,
842 .show_options = ceph_show_options,
843 .statfs = ceph_statfs,
844 .umount_begin = ceph_umount_begin,
845};
846
Sage Weil16725b92009-10-06 11:31:07 -0700847/*
848 * Bootstrap mount by opening the root directory. Note the mount
849 * @started time from caller, and time out if this takes too long.
850 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700851static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700852 const char *path,
853 unsigned long started)
854{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700855 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700856 struct ceph_mds_request *req = NULL;
857 int err;
858 struct dentry *root;
859
860 /* open dir */
861 dout("open_root_inode opening '%s'\n", path);
862 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
863 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200864 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700865 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400866 if (!req->r_path1) {
867 root = ERR_PTR(-ENOMEM);
868 goto out;
869 }
870
Sage Weil16725b92009-10-06 11:31:07 -0700871 req->r_ino1.ino = CEPH_INO_ROOT;
872 req->r_ino1.snap = CEPH_NOSNAP;
873 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300874 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700875 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
876 req->r_num_caps = 2;
877 err = ceph_mdsc_do_request(mdsc, NULL, req);
878 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500879 struct inode *inode = req->r_target_inode;
880 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700881 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800882 root = d_make_root(inode);
883 if (!root) {
884 root = ERR_PTR(-ENOMEM);
885 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800886 }
Sage Weil16725b92009-10-06 11:31:07 -0700887 dout("open_root_inode success, root dentry is %p\n", root);
888 } else {
889 root = ERR_PTR(err);
890 }
Al Viro3c5184e2012-01-09 16:34:32 -0500891out:
Sage Weil16725b92009-10-06 11:31:07 -0700892 ceph_mdsc_put_request(req);
893 return root;
894}
895
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700896
897
898
Sage Weil16725b92009-10-06 11:31:07 -0700899/*
900 * mount: join the ceph cluster, and open root directory.
901 */
Yan, Zheng3f384952016-04-21 11:09:55 +0800902static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700903{
Sage Weil16725b92009-10-06 11:31:07 -0700904 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700905 unsigned long started = jiffies; /* note the start time */
906 struct dentry *root;
907
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800908 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700909 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700910
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800911 if (!fsc->sb->s_root) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800912 const char *path;
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800913 err = __ceph_open_session(fsc->client, started);
914 if (err < 0)
915 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700916
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800917 /* setup fscache */
918 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
919 err = ceph_fscache_register_fs(fsc);
920 if (err < 0)
921 goto out;
922 }
923
Yan, Zhengce2728a2016-09-14 14:53:05 +0800924 if (!fsc->mount_options->server_path) {
925 path = "";
926 dout("mount opening path \\t\n");
927 } else {
928 path = fsc->mount_options->server_path + 1;
929 dout("mount opening path %s\n", path);
930 }
Chengguang Xu18106732018-02-09 20:40:59 +0800931
932 err = ceph_fs_debugfs_init(fsc);
933 if (err < 0)
934 goto out;
935
Yan, Zhengce2728a2016-09-14 14:53:05 +0800936 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800937 if (IS_ERR(root)) {
938 err = PTR_ERR(root);
939 goto out;
940 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800941 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200942 } else {
943 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700944 }
Sage Weil16725b92009-10-06 11:31:07 -0700945
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700946 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700947 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400948 mutex_unlock(&fsc->client->mount_mutex);
949 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700950
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800951out:
952 mutex_unlock(&fsc->client->mount_mutex);
953 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700954}
955
956static int ceph_set_super(struct super_block *s, void *data)
957{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700958 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700959 int ret;
960
961 dout("set_super %p data %p\n", s, data);
962
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700963 s->s_flags = fsc->mount_options->sb_flags;
Chengguang Xu719784b2018-07-19 22:15:24 +0800964 s->s_maxbytes = MAX_LFS_FILESIZE;
Sage Weil16725b92009-10-06 11:31:07 -0700965
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800966 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700967 s->s_fs_info = fsc;
968 fsc->sb = s;
Chengguang Xu719784b2018-07-19 22:15:24 +0800969 fsc->max_file_size = 1ULL << 40; /* temp value until we get mdsmap */
Sage Weil16725b92009-10-06 11:31:07 -0700970
971 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400972 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700973 s->s_export_op = &ceph_export_ops;
974
975 s->s_time_gran = 1000; /* 1000 ns == 1 us */
976
977 ret = set_anon_super(s, NULL); /* what is that second arg for? */
978 if (ret != 0)
979 goto fail;
980
981 return ret;
982
983fail:
984 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700985 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700986 return ret;
987}
988
989/*
990 * share superblock if same fs AND options
991 */
992static int ceph_compare_super(struct super_block *sb, void *data)
993{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700994 struct ceph_fs_client *new = data;
995 struct ceph_mount_options *fsopt = new->mount_options;
996 struct ceph_options *opt = new->client->options;
997 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700998
999 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001000
1001 if (compare_mount_options(fsopt, opt, other)) {
1002 dout("monitor(s)/mount options don't match\n");
1003 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001004 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001005 if ((opt->flags & CEPH_OPT_FSID) &&
1006 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
1007 dout("fsid doesn't match\n");
1008 return 0;
1009 }
1010 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -07001011 dout("flags differ\n");
1012 return 0;
1013 }
1014 return 1;
1015}
1016
1017/*
1018 * construct our own bdi so we can control readahead, etc.
1019 */
Jeff Mahoney00d56432010-06-10 11:13:58 -04001020static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -07001021
Jan Kara09dc9fc2017-04-12 12:24:33 +02001022static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -07001023{
1024 int err;
1025
Jan Kara09dc9fc2017-04-12 12:24:33 +02001026 err = super_setup_bdi_name(sb, "ceph-%ld",
1027 atomic_long_inc_return(&bdi_seq));
1028 if (err)
1029 return err;
1030
Sage Weil83817e32011-08-04 08:03:44 -07001031 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +08001032 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001033
Yan, Zhengaa187922017-07-11 15:56:09 +08001034 /* set io_pages based on max osd read size */
1035 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +01001036
Jan Kara09dc9fc2017-04-12 12:24:33 +02001037 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001038}
1039
Al Viroa7f9fb22010-07-26 16:17:55 +04001040static struct dentry *ceph_mount(struct file_system_type *fs_type,
1041 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -07001042{
1043 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001044 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001045 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -07001046 int err;
1047 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001048 struct ceph_mount_options *fsopt = NULL;
1049 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001050
Al Viroa7f9fb22010-07-26 16:17:55 +04001051 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -08001052
1053#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001054 flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -08001055#endif
Yan, Zheng3f384952016-04-21 11:09:55 +08001056 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name);
Al Viroa7f9fb22010-07-26 16:17:55 +04001057 if (err < 0) {
1058 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -07001059 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +04001060 }
Sage Weil16725b92009-10-06 11:31:07 -07001061
1062 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001063 fsc = create_fs_client(fsopt, opt);
1064 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001065 res = ERR_CAST(fsc);
Sage Weil6b805182009-10-27 11:50:50 -07001066 goto out_final;
1067 }
Sage Weil16725b92009-10-06 11:31:07 -07001068
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001069 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001070 if (err < 0) {
1071 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001072 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +04001073 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001074
1075 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001076 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +01001077 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001078 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001079 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001080 goto out;
1081 }
1082
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001083 if (ceph_sb_to_client(sb) != fsc) {
1084 ceph_mdsc_destroy(fsc);
1085 destroy_fs_client(fsc);
1086 fsc = ceph_sb_to_client(sb);
1087 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001088 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001089 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001090 err = ceph_setup_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001091 if (err < 0) {
1092 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001093 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001094 }
Sage Weil16725b92009-10-06 11:31:07 -07001095 }
1096
Yan, Zheng3f384952016-04-21 11:09:55 +08001097 res = ceph_real_mount(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001098 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001099 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001100 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001101 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001102 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001103
1104out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001105 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001106 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001107 goto out_final;
1108
1109out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001110 ceph_mdsc_destroy(fsc);
1111 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001112out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001113 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1114 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001115}
1116
1117static void ceph_kill_sb(struct super_block *s)
1118{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001119 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001120 dev_t dev = s->s_dev;
1121
Sage Weil16725b92009-10-06 11:31:07 -07001122 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001123
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001124 ceph_mdsc_pre_umount(fsc->mdsc);
Yan, Zhenga57d9062018-05-18 16:05:51 +08001125 flush_fs_workqueues(fsc);
1126
Christoph Hellwige4d27502015-01-14 10:42:38 +01001127 generic_shutdown_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001128
1129 fsc->client->extra_mon_dispatch = NULL;
1130 ceph_fs_debugfs_cleanup(fsc);
1131
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001132 ceph_fscache_unregister_fs(fsc);
1133
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001134 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001135
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001136 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001137 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001138}
1139
1140static struct file_system_type ceph_fs_type = {
1141 .owner = THIS_MODULE,
1142 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001143 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001144 .kill_sb = ceph_kill_sb,
1145 .fs_flags = FS_RENAME_DOES_D_MOVE,
1146};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001147MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001148
Sage Weil16725b92009-10-06 11:31:07 -07001149static int __init init_ceph(void)
1150{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001151 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001152 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001153 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001154
Yan, Zhengeb13e832014-03-09 23:16:40 +08001155 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001156 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001157 ret = register_filesystem(&ceph_fs_type);
1158 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001159 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001160
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001161 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1162
Sage Weil16725b92009-10-06 11:31:07 -07001163 return 0;
1164
Yan, Zheng97c85a82014-11-06 15:09:41 +08001165out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001166 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001167 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001168out:
1169 return ret;
1170}
1171
1172static void __exit exit_ceph(void)
1173{
1174 dout("exit_ceph\n");
1175 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -06001176 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001177 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001178}
1179
1180module_init(init_ceph);
1181module_exit(exit_ceph);
1182
1183MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1184MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1185MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1186MODULE_DESCRIPTION("Ceph filesystem for Linux");
1187MODULE_LICENSE("GPL");