blob: a092cdb6928828bc2f7d072baa8e3de63129a087 [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));
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070048 struct ceph_monmap *monmap = fsc->client->monc.monmap;
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");
Douglas Fuller06d74372017-08-16 10:19:27 -040061 err = ceph_monc_do_statfs(&fsc->client->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 */
97 fsid = le64_to_cpu(*(__le64 *)(&monmap->fsid)) ^
98 le64_to_cpu(*((__le64 *)&monmap->fsid + 1));
Sage Weil16725b92009-10-06 11:31:07 -070099 buf->f_fsid.val[0] = fsid & 0xffffffff;
100 buf->f_fsid.val[1] = fsid >> 32;
101
102 return 0;
103}
104
105
Sage Weil2d9c98a2010-07-30 09:38:13 -0700106static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700107{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700108 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700109
110 if (!wait) {
111 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700112 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700113 dout("sync_fs (non-blocking) done\n");
114 return 0;
115 }
116
117 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700118 ceph_osdc_sync(&fsc->client->osdc);
119 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700120 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700121 return 0;
122}
123
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700124/*
125 * mount options
126 */
127enum {
128 Opt_wsize,
129 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700130 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700131 Opt_caps_wanted_delay_min,
132 Opt_caps_wanted_delay_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700133 Opt_readdir_max_entries,
134 Opt_readdir_max_bytes,
135 Opt_congestion_kb,
136 Opt_last_int,
137 /* int args above */
138 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800139 Opt_mds_namespace,
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800140 Opt_fscache_uniq,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700141 Opt_last_string,
142 /* string args above */
143 Opt_dirstat,
144 Opt_nodirstat,
145 Opt_rbytes,
146 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600147 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700148 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800149 Opt_dcache,
150 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800151 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600152 Opt_noino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400153 Opt_fscache,
Sage Weil45195e42014-02-16 10:05:29 -0800154 Opt_nofscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800155 Opt_poolperm,
156 Opt_nopoolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800157 Opt_require_active_mds,
158 Opt_norequire_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800159#ifdef CONFIG_CEPH_FS_POSIX_ACL
160 Opt_acl,
161#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800162 Opt_noacl,
Luis Henriques9122eed2018-01-31 10:53:13 +0000163 Opt_quotadf,
164 Opt_noquotadf,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700165};
166
167static match_table_t fsopt_tokens = {
168 {Opt_wsize, "wsize=%d"},
169 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700170 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700171 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
172 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700173 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
174 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
175 {Opt_congestion_kb, "write_congestion_kb=%d"},
176 /* int args above */
177 {Opt_snapdirname, "snapdirname=%s"},
Yan, Zheng430afba2016-07-08 11:25:38 +0800178 {Opt_mds_namespace, "mds_namespace=%s"},
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800179 {Opt_fscache_uniq, "fsc=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700180 /* string args above */
181 {Opt_dirstat, "dirstat"},
182 {Opt_nodirstat, "nodirstat"},
183 {Opt_rbytes, "rbytes"},
184 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600185 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700186 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800187 {Opt_dcache, "dcache"},
188 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800189 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600190 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400191 {Opt_fscache, "fsc"},
192 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800193 {Opt_poolperm, "poolperm"},
194 {Opt_nopoolperm, "nopoolperm"},
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800195 {Opt_require_active_mds, "require_active_mds"},
196 {Opt_norequire_active_mds, "norequire_active_mds"},
Sage Weil45195e42014-02-16 10:05:29 -0800197#ifdef CONFIG_CEPH_FS_POSIX_ACL
198 {Opt_acl, "acl"},
199#endif
200 {Opt_noacl, "noacl"},
Luis Henriques9122eed2018-01-31 10:53:13 +0000201 {Opt_quotadf, "quotadf"},
202 {Opt_noquotadf, "noquotadf"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700203 {-1, NULL}
204};
205
206static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800207{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700208 struct ceph_mount_options *fsopt = private;
209 substring_t argstr[MAX_OPT_ARGS];
210 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800211
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700212 token = match_token((char *)c, fsopt_tokens, argstr);
213 if (token < 0)
214 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800215
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700216 if (token < Opt_last_int) {
217 ret = match_int(&argstr[0], &intval);
218 if (ret < 0) {
219 pr_err("bad mount option arg (not int) "
220 "at '%s'\n", c);
221 return ret;
222 }
223 dout("got int token %d val %d\n", token, intval);
224 } else if (token > Opt_last_int && token < Opt_last_string) {
225 dout("got string token %d val %s\n", token,
226 argstr[0].from);
227 } else {
228 dout("got token %d\n", token);
229 }
230
231 switch (token) {
232 case Opt_snapdirname:
233 kfree(fsopt->snapdir_name);
234 fsopt->snapdir_name = kstrndup(argstr[0].from,
235 argstr[0].to-argstr[0].from,
236 GFP_KERNEL);
237 if (!fsopt->snapdir_name)
238 return -ENOMEM;
239 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800240 case Opt_mds_namespace:
Chengguang Xu937441f2018-02-06 08:25:55 +0800241 kfree(fsopt->mds_namespace);
Yan, Zheng430afba2016-07-08 11:25:38 +0800242 fsopt->mds_namespace = kstrndup(argstr[0].from,
243 argstr[0].to-argstr[0].from,
244 GFP_KERNEL);
245 if (!fsopt->mds_namespace)
246 return -ENOMEM;
Yan, Zheng235a0982016-03-30 17:18:34 +0800247 break;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800248 case Opt_fscache_uniq:
Chengguang Xu937441f2018-02-06 08:25:55 +0800249 kfree(fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800250 fsopt->fscache_uniq = kstrndup(argstr[0].from,
251 argstr[0].to-argstr[0].from,
252 GFP_KERNEL);
253 if (!fsopt->fscache_uniq)
254 return -ENOMEM;
255 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
256 break;
Yan, Zheng430afba2016-07-08 11:25:38 +0800257 /* misc */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700258 case Opt_wsize:
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800259 if (intval < PAGE_SIZE || intval > CEPH_MAX_WRITE_SIZE)
260 return -EINVAL;
261 fsopt->wsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700262 break;
263 case Opt_rsize:
Yan, Zhengaa187922017-07-11 15:56:09 +0800264 if (intval < PAGE_SIZE || intval > CEPH_MAX_READ_SIZE)
265 return -EINVAL;
266 fsopt->rsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700267 break;
Sage Weil83817e32011-08-04 08:03:44 -0700268 case Opt_rasize:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800269 if (intval < 0)
270 return -EINVAL;
271 fsopt->rasize = ALIGN(intval + PAGE_SIZE - 1, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700272 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700273 case Opt_caps_wanted_delay_min:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800274 if (intval < 1)
275 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700276 fsopt->caps_wanted_delay_min = intval;
277 break;
278 case Opt_caps_wanted_delay_max:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800279 if (intval < 1)
280 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700281 fsopt->caps_wanted_delay_max = intval;
282 break;
283 case Opt_readdir_max_entries:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800284 if (intval < 1)
285 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700286 fsopt->max_readdir = intval;
287 break;
288 case Opt_readdir_max_bytes:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800289 if (intval < PAGE_SIZE && intval != 0)
290 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700291 fsopt->max_readdir_bytes = intval;
292 break;
293 case Opt_congestion_kb:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800294 if (intval < 1024) /* at least 1M */
295 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700296 fsopt->congestion_kb = intval;
297 break;
298 case Opt_dirstat:
299 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
300 break;
301 case Opt_nodirstat:
302 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
303 break;
304 case Opt_rbytes:
305 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
306 break;
307 case Opt_norbytes:
308 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
309 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600310 case Opt_asyncreaddir:
311 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
312 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700313 case Opt_noasyncreaddir:
314 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
315 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800316 case Opt_dcache:
317 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
318 break;
319 case Opt_nodcache:
320 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
321 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800322 case Opt_ino32:
323 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
324 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600325 case Opt_noino32:
326 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
327 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400328 case Opt_fscache:
329 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800330 kfree(fsopt->fscache_uniq);
331 fsopt->fscache_uniq = NULL;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400332 break;
333 case Opt_nofscache:
334 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
Chengguang Xu7ae7a822018-02-07 10:27:06 +0800335 kfree(fsopt->fscache_uniq);
336 fsopt->fscache_uniq = NULL;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400337 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800338 case Opt_poolperm:
339 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
Yan, Zheng10183a62015-04-27 15:33:28 +0800340 break;
341 case Opt_nopoolperm:
342 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
343 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800344 case Opt_require_active_mds:
345 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
346 break;
347 case Opt_norequire_active_mds:
348 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
349 break;
Luis Henriques9122eed2018-01-31 10:53:13 +0000350 case Opt_quotadf:
351 fsopt->flags &= ~CEPH_MOUNT_OPT_NOQUOTADF;
352 break;
353 case Opt_noquotadf:
354 fsopt->flags |= CEPH_MOUNT_OPT_NOQUOTADF;
355 break;
Sage Weil45195e42014-02-16 10:05:29 -0800356#ifdef CONFIG_CEPH_FS_POSIX_ACL
357 case Opt_acl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800358 fsopt->sb_flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -0800359 break;
360#endif
361 case Opt_noacl:
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800362 fsopt->sb_flags &= ~SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -0800363 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700364 default:
365 BUG_ON(token);
366 }
367 return 0;
368}
369
370static void destroy_mount_options(struct ceph_mount_options *args)
371{
372 dout("destroy_mount_options %p\n", args);
373 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800374 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800375 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800376 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700377 kfree(args);
378}
379
380static int strcmp_null(const char *s1, const char *s2)
381{
382 if (!s1 && !s2)
383 return 0;
384 if (s1 && !s2)
385 return -1;
386 if (!s1 && s2)
387 return 1;
388 return strcmp(s1, s2);
389}
390
391static int compare_mount_options(struct ceph_mount_options *new_fsopt,
392 struct ceph_options *new_opt,
393 struct ceph_fs_client *fsc)
394{
395 struct ceph_mount_options *fsopt1 = new_fsopt;
396 struct ceph_mount_options *fsopt2 = fsc->mount_options;
397 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
398 int ret;
399
400 ret = memcmp(fsopt1, fsopt2, ofs);
401 if (ret)
402 return ret;
403
404 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
405 if (ret)
406 return ret;
Yan, Zheng430afba2016-07-08 11:25:38 +0800407 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
408 if (ret)
409 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800410 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
411 if (ret)
412 return ret;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800413 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
414 if (ret)
415 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800416
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700417 return ceph_compare_options(new_opt, fsc->client);
418}
419
420static int parse_mount_options(struct ceph_mount_options **pfsopt,
421 struct ceph_options **popt,
422 int flags, char *options,
Yan, Zheng3f384952016-04-21 11:09:55 +0800423 const char *dev_name)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700424{
425 struct ceph_mount_options *fsopt;
426 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700427 int err;
428
429 if (!dev_name || !*dev_name)
430 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700431
432 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
433 if (!fsopt)
434 return -ENOMEM;
435
436 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
437
Noah Watkins80db8be2011-08-22 13:49:23 -0600438 fsopt->sb_flags = flags;
439 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700440
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800441 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
Yan, Zhengaa187922017-07-11 15:56:09 +0800442 fsopt->rsize = CEPH_MAX_READ_SIZE;
Noah Watkins80db8be2011-08-22 13:49:23 -0600443 fsopt->rasize = CEPH_RASIZE_DEFAULT;
444 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400445 if (!fsopt->snapdir_name) {
446 err = -ENOMEM;
447 goto out;
448 }
449
Sage Weil50aac4f2011-01-18 07:59:40 -0800450 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
451 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600452 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
453 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
454 fsopt->congestion_kb = default_congestion_kb();
455
Alex Elderc98f5332012-08-09 10:33:26 -0700456 /*
457 * Distinguish the server list from the path in "dev_name".
458 * Internally we do not include the leading '/' in the path.
459 *
460 * "dev_name" will look like:
461 * <server_spec>[,<server_spec>...]:[<path>]
462 * where
463 * <server_spec> is <ip>[:<port>]
464 * <path> is optional, but if present must begin with '/'
465 */
466 dev_name_end = strchr(dev_name, '/');
467 if (dev_name_end) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800468 if (strlen(dev_name_end) > 1) {
469 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
470 if (!fsopt->server_path) {
471 err = -ENOMEM;
472 goto out;
473 }
Yan, Zheng3f384952016-04-21 11:09:55 +0800474 }
Alex Elderc98f5332012-08-09 10:33:26 -0700475 } else {
Alex Elderc98f5332012-08-09 10:33:26 -0700476 dev_name_end = dev_name + strlen(dev_name);
Alex Elderc98f5332012-08-09 10:33:26 -0700477 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600478 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700479 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400480 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700481 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600482 dev_name);
483 goto out;
484 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700485 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yan, Zheng3f384952016-04-21 11:09:55 +0800486 if (fsopt->server_path)
487 dout("server path '%s'\n", fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700488
Alex Elderee577412012-01-24 10:08:36 -0600489 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700490 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600491 if (IS_ERR(*popt)) {
492 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700493 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600494 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700495
496 /* success */
497 *pfsopt = fsopt;
498 return 0;
499
500out:
501 destroy_mount_options(fsopt);
502 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800503}
504
Sage Weil6e19a162010-04-29 16:38:32 -0700505/**
506 * ceph_show_options - Show mount options in /proc/mounts
507 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500508 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700509 */
Al Viro34c80b12011-12-08 21:32:45 -0500510static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700511{
Al Viro34c80b12011-12-08 21:32:45 -0500512 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700513 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300514 size_t pos;
515 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700516
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300517 /* a comma between MNT/MS and client options */
518 seq_putc(m, ',');
519 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700520
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300521 ret = ceph_print_client_options(m, fsc->client);
522 if (ret)
523 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700524
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300525 /* retract our comma if no client options */
526 if (m->count == pos)
527 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700528
529 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
530 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800531 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
532 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700533 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700534 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300535 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800536 seq_puts(m, ",nodcache");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800537 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800538 seq_show_option(m, "fsc", fsopt->fscache_uniq);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800539 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800540 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
541 seq_puts(m, ",nopoolperm");
Luis Henriques9122eed2018-01-31 10:53:13 +0000542 if (fsopt->flags & CEPH_MOUNT_OPT_NOQUOTADF)
543 seq_puts(m, ",noquotadf");
Sage Weil6e19a162010-04-29 16:38:32 -0700544
Sage Weil45195e42014-02-16 10:05:29 -0800545#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800546 if (fsopt->sb_flags & SB_POSIXACL)
Sage Weil45195e42014-02-16 10:05:29 -0800547 seq_puts(m, ",acl");
548 else
549 seq_puts(m, ",noacl");
550#endif
551
Yan, Zheng430afba2016-07-08 11:25:38 +0800552 if (fsopt->mds_namespace)
Chengguang Xu4d8969a2018-02-15 15:39:05 +0800553 seq_show_option(m, "mds_namespace", fsopt->mds_namespace);
Ilya Dryomov6dd49402018-05-03 16:26:55 +0200554 if (fsopt->wsize != CEPH_MAX_WRITE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700555 seq_printf(m, ",wsize=%d", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800556 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700557 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700558 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800559 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700560 if (fsopt->congestion_kb != default_congestion_kb())
561 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
562 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700563 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700564 fsopt->caps_wanted_delay_min);
565 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700566 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700567 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700568 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
569 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
570 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
571 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
572 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700573 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300574
Sage Weil6e19a162010-04-29 16:38:32 -0700575 return 0;
576}
577
578/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700579 * handle any mon messages the standard library doesn't understand.
580 * return error if we don't either.
581 */
582static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
583{
584 struct ceph_fs_client *fsc = client->private;
585 int type = le16_to_cpu(msg->hdr.type);
586
587 switch (type) {
588 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800589 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700590 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800591 case CEPH_MSG_FS_MAP_USER:
592 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
593 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700594 default:
595 return -1;
596 }
597}
598
599/*
600 * create a new fs client
601 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700602static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700603 struct ceph_options *opt)
604{
605 struct ceph_fs_client *fsc;
Alex Elder3bf53332013-04-01 10:48:40 -0500606 int page_count;
607 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700608 int err = -ENOMEM;
609
610 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
611 if (!fsc)
612 return ERR_PTR(-ENOMEM);
613
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100614 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700615 if (IS_ERR(fsc->client)) {
616 err = PTR_ERR(fsc->client);
617 goto fail;
618 }
619 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yan, Zheng430afba2016-07-08 11:25:38 +0800620
Markus Elfringd37b1d92017-08-20 20:22:02 +0200621 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800622 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
623 0, true);
624 } else {
625 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
626 0, false);
627 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700628
629 fsc->mount_options = fsopt;
630
631 fsc->sb = NULL;
632 fsc->mount_state = CEPH_MOUNT_MOUNTING;
633
634 atomic_long_set(&fsc->writeback_count, 0);
635
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700636 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100637 /*
638 * The number of concurrent works can be high but they don't need
639 * to be processed in parallel, limit concurrency.
640 */
641 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200642 if (!fsc->wb_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200643 goto fail_client;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100644 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200645 if (!fsc->pg_inv_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700646 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100647 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200648 if (!fsc->trunc_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700649 goto fail_pg_inv_wq;
650
651 /* set up mempools */
652 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300653 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500654 size = sizeof (struct page *) * (page_count ? page_count : 1);
655 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700656 if (!fsc->wb_pagevec_pool)
657 goto fail_trunc_wq;
658
659 /* caps */
660 fsc->min_caps = fsopt->max_readdir;
661
662 return fsc;
663
664fail_trunc_wq:
665 destroy_workqueue(fsc->trunc_wq);
666fail_pg_inv_wq:
667 destroy_workqueue(fsc->pg_inv_wq);
668fail_wb_wq:
669 destroy_workqueue(fsc->wb_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700670fail_client:
671 ceph_destroy_client(fsc->client);
672fail:
673 kfree(fsc);
674 return ERR_PTR(err);
675}
676
Yan, Zhenga57d9062018-05-18 16:05:51 +0800677static void flush_fs_workqueues(struct ceph_fs_client *fsc)
678{
679 flush_workqueue(fsc->wb_wq);
680 flush_workqueue(fsc->pg_inv_wq);
681 flush_workqueue(fsc->trunc_wq);
682}
683
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700684static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700685{
686 dout("destroy_fs_client %p\n", fsc);
687
688 destroy_workqueue(fsc->wb_wq);
689 destroy_workqueue(fsc->pg_inv_wq);
690 destroy_workqueue(fsc->trunc_wq);
691
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700692 mempool_destroy(fsc->wb_pagevec_pool);
693
694 destroy_mount_options(fsc->mount_options);
695
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700696 ceph_destroy_client(fsc->client);
697
698 kfree(fsc);
699 dout("destroy_fs_client %p done\n", fsc);
700}
701
702/*
Sage Weil6e19a162010-04-29 16:38:32 -0700703 * caches
704 */
705struct kmem_cache *ceph_inode_cachep;
706struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800707struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700708struct kmem_cache *ceph_dentry_cachep;
709struct kmem_cache *ceph_file_cachep;
Chengguang Xubb48bd42018-03-13 10:42:44 +0800710struct kmem_cache *ceph_dir_file_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700711
712static void ceph_inode_init_once(void *foo)
713{
714 struct ceph_inode_info *ci = foo;
715 inode_init_once(&ci->vfs_inode);
716}
717
Sage Weil16725b92009-10-06 11:31:07 -0700718static int __init init_caches(void)
719{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400720 int error = -ENOMEM;
721
Sage Weil16725b92009-10-06 11:31:07 -0700722 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
723 sizeof(struct ceph_inode_info),
724 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800725 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
726 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200727 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700728 return -ENOMEM;
729
Chengguang Xubc4b5ad2018-02-27 13:49:44 +0800730 ceph_cap_cachep = KMEM_CACHE(ceph_cap, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200731 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700732 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800733 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
734 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200735 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800736 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700737
738 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
739 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200740 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700741 goto bad_dentry;
742
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300743 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200744 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700745 goto bad_file;
746
Chengguang Xubb48bd42018-03-13 10:42:44 +0800747 ceph_dir_file_cachep = KMEM_CACHE(ceph_dir_file_info, SLAB_MEM_SPREAD);
748 if (!ceph_dir_file_cachep)
749 goto bad_dir_file;
750
Chengguang Xu1c789242018-03-01 14:24:51 +0800751 error = ceph_fscache_register();
752 if (error)
753 goto bad_fscache;
Sage Weil16725b92009-10-06 11:31:07 -0700754
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400755 return 0;
Chengguang Xu1c789242018-03-01 14:24:51 +0800756
757bad_fscache:
Chengguang Xubb48bd42018-03-13 10:42:44 +0800758 kmem_cache_destroy(ceph_dir_file_cachep);
759bad_dir_file:
Chengguang Xu1c789242018-03-01 14:24:51 +0800760 kmem_cache_destroy(ceph_file_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700761bad_file:
762 kmem_cache_destroy(ceph_dentry_cachep);
763bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800764 kmem_cache_destroy(ceph_cap_flush_cachep);
765bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700766 kmem_cache_destroy(ceph_cap_cachep);
767bad_cap:
768 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400769 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700770}
771
772static void destroy_caches(void)
773{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000774 /*
775 * Make sure all delayed rcu free inodes are flushed before we
776 * destroy cache.
777 */
778 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400779
Sage Weil16725b92009-10-06 11:31:07 -0700780 kmem_cache_destroy(ceph_inode_cachep);
781 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800782 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700783 kmem_cache_destroy(ceph_dentry_cachep);
784 kmem_cache_destroy(ceph_file_cachep);
Chengguang Xubb48bd42018-03-13 10:42:44 +0800785 kmem_cache_destroy(ceph_dir_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400786
787 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700788}
789
790
791/*
792 * ceph_umount_begin - initiate forced umount. Tear down down the
793 * mount, skipping steps that may hang while waiting for server(s).
794 */
795static void ceph_umount_begin(struct super_block *sb)
796{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700797 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700798
799 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700800 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700801 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700802 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng12b69d52018-05-11 17:12:02 +0800803 ceph_osdc_abort_requests(&fsc->client->osdc, -EIO);
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800804 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700805 return;
806}
807
808static const struct super_operations ceph_super_ops = {
809 .alloc_inode = ceph_alloc_inode,
810 .destroy_inode = ceph_destroy_inode,
811 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800812 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700813 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700814 .put_super = ceph_put_super,
815 .show_options = ceph_show_options,
816 .statfs = ceph_statfs,
817 .umount_begin = ceph_umount_begin,
818};
819
Sage Weil16725b92009-10-06 11:31:07 -0700820/*
821 * Bootstrap mount by opening the root directory. Note the mount
822 * @started time from caller, and time out if this takes too long.
823 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700824static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700825 const char *path,
826 unsigned long started)
827{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700828 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700829 struct ceph_mds_request *req = NULL;
830 int err;
831 struct dentry *root;
832
833 /* open dir */
834 dout("open_root_inode opening '%s'\n", path);
835 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
836 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200837 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700838 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400839 if (!req->r_path1) {
840 root = ERR_PTR(-ENOMEM);
841 goto out;
842 }
843
Sage Weil16725b92009-10-06 11:31:07 -0700844 req->r_ino1.ino = CEPH_INO_ROOT;
845 req->r_ino1.snap = CEPH_NOSNAP;
846 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300847 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700848 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
849 req->r_num_caps = 2;
850 err = ceph_mdsc_do_request(mdsc, NULL, req);
851 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500852 struct inode *inode = req->r_target_inode;
853 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700854 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800855 root = d_make_root(inode);
856 if (!root) {
857 root = ERR_PTR(-ENOMEM);
858 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800859 }
Sage Weil16725b92009-10-06 11:31:07 -0700860 dout("open_root_inode success, root dentry is %p\n", root);
861 } else {
862 root = ERR_PTR(err);
863 }
Al Viro3c5184e2012-01-09 16:34:32 -0500864out:
Sage Weil16725b92009-10-06 11:31:07 -0700865 ceph_mdsc_put_request(req);
866 return root;
867}
868
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700869
870
871
Sage Weil16725b92009-10-06 11:31:07 -0700872/*
873 * mount: join the ceph cluster, and open root directory.
874 */
Yan, Zheng3f384952016-04-21 11:09:55 +0800875static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700876{
Sage Weil16725b92009-10-06 11:31:07 -0700877 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700878 unsigned long started = jiffies; /* note the start time */
879 struct dentry *root;
880
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800881 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700882 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700883
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800884 if (!fsc->sb->s_root) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800885 const char *path;
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800886 err = __ceph_open_session(fsc->client, started);
887 if (err < 0)
888 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700889
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800890 /* setup fscache */
891 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
892 err = ceph_fscache_register_fs(fsc);
893 if (err < 0)
894 goto out;
895 }
896
Yan, Zhengce2728a2016-09-14 14:53:05 +0800897 if (!fsc->mount_options->server_path) {
898 path = "";
899 dout("mount opening path \\t\n");
900 } else {
901 path = fsc->mount_options->server_path + 1;
902 dout("mount opening path %s\n", path);
903 }
Chengguang Xu18106732018-02-09 20:40:59 +0800904
905 err = ceph_fs_debugfs_init(fsc);
906 if (err < 0)
907 goto out;
908
Yan, Zhengce2728a2016-09-14 14:53:05 +0800909 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800910 if (IS_ERR(root)) {
911 err = PTR_ERR(root);
912 goto out;
913 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800914 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200915 } else {
916 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700917 }
Sage Weil16725b92009-10-06 11:31:07 -0700918
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700919 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700920 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400921 mutex_unlock(&fsc->client->mount_mutex);
922 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700923
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800924out:
925 mutex_unlock(&fsc->client->mount_mutex);
926 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700927}
928
929static int ceph_set_super(struct super_block *s, void *data)
930{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700931 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700932 int ret;
933
934 dout("set_super %p data %p\n", s, data);
935
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700936 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700937 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
938
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800939 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700940 s->s_fs_info = fsc;
941 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700942
943 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400944 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700945 s->s_export_op = &ceph_export_ops;
946
947 s->s_time_gran = 1000; /* 1000 ns == 1 us */
948
949 ret = set_anon_super(s, NULL); /* what is that second arg for? */
950 if (ret != 0)
951 goto fail;
952
953 return ret;
954
955fail:
956 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700957 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700958 return ret;
959}
960
961/*
962 * share superblock if same fs AND options
963 */
964static int ceph_compare_super(struct super_block *sb, void *data)
965{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700966 struct ceph_fs_client *new = data;
967 struct ceph_mount_options *fsopt = new->mount_options;
968 struct ceph_options *opt = new->client->options;
969 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700970
971 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700972
973 if (compare_mount_options(fsopt, opt, other)) {
974 dout("monitor(s)/mount options don't match\n");
975 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700976 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700977 if ((opt->flags & CEPH_OPT_FSID) &&
978 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
979 dout("fsid doesn't match\n");
980 return 0;
981 }
982 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700983 dout("flags differ\n");
984 return 0;
985 }
986 return 1;
987}
988
989/*
990 * construct our own bdi so we can control readahead, etc.
991 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400992static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700993
Jan Kara09dc9fc2017-04-12 12:24:33 +0200994static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700995{
996 int err;
997
Jan Kara09dc9fc2017-04-12 12:24:33 +0200998 err = super_setup_bdi_name(sb, "ceph-%ld",
999 atomic_long_inc_return(&bdi_seq));
1000 if (err)
1001 return err;
1002
Sage Weil83817e32011-08-04 08:03:44 -07001003 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +08001004 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001005
Yan, Zhengaa187922017-07-11 15:56:09 +08001006 /* set io_pages based on max osd read size */
1007 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +01001008
Jan Kara09dc9fc2017-04-12 12:24:33 +02001009 return 0;
Sage Weil16725b92009-10-06 11:31:07 -07001010}
1011
Al Viroa7f9fb22010-07-26 16:17:55 +04001012static struct dentry *ceph_mount(struct file_system_type *fs_type,
1013 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -07001014{
1015 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001016 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001017 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -07001018 int err;
1019 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001020 struct ceph_mount_options *fsopt = NULL;
1021 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001022
Al Viroa7f9fb22010-07-26 16:17:55 +04001023 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -08001024
1025#ifdef CONFIG_CEPH_FS_POSIX_ACL
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001026 flags |= SB_POSIXACL;
Sage Weil45195e42014-02-16 10:05:29 -08001027#endif
Yan, Zheng3f384952016-04-21 11:09:55 +08001028 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name);
Al Viroa7f9fb22010-07-26 16:17:55 +04001029 if (err < 0) {
1030 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -07001031 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +04001032 }
Sage Weil16725b92009-10-06 11:31:07 -07001033
1034 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001035 fsc = create_fs_client(fsopt, opt);
1036 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001037 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -06001038 destroy_mount_options(fsopt);
1039 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -07001040 goto out_final;
1041 }
Sage Weil16725b92009-10-06 11:31:07 -07001042
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001043 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001044 if (err < 0) {
1045 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001046 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +04001047 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001048
1049 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001050 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +01001051 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001052 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001053 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001054 goto out;
1055 }
1056
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001057 if (ceph_sb_to_client(sb) != fsc) {
1058 ceph_mdsc_destroy(fsc);
1059 destroy_fs_client(fsc);
1060 fsc = ceph_sb_to_client(sb);
1061 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001062 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001063 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001064 err = ceph_setup_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001065 if (err < 0) {
1066 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001067 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001068 }
Sage Weil16725b92009-10-06 11:31:07 -07001069 }
1070
Yan, Zheng3f384952016-04-21 11:09:55 +08001071 res = ceph_real_mount(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001072 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001073 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001074 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001075 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001076 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001077
1078out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001079 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001080 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001081 goto out_final;
1082
1083out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001084 ceph_mdsc_destroy(fsc);
1085 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001086out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001087 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1088 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001089}
1090
1091static void ceph_kill_sb(struct super_block *s)
1092{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001093 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001094 dev_t dev = s->s_dev;
1095
Sage Weil16725b92009-10-06 11:31:07 -07001096 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001097
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001098 ceph_mdsc_pre_umount(fsc->mdsc);
Yan, Zhenga57d9062018-05-18 16:05:51 +08001099 flush_fs_workqueues(fsc);
1100
Christoph Hellwige4d27502015-01-14 10:42:38 +01001101 generic_shutdown_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001102
1103 fsc->client->extra_mon_dispatch = NULL;
1104 ceph_fs_debugfs_cleanup(fsc);
1105
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001106 ceph_fscache_unregister_fs(fsc);
1107
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001108 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001109
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001110 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001111 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001112}
1113
1114static struct file_system_type ceph_fs_type = {
1115 .owner = THIS_MODULE,
1116 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001117 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001118 .kill_sb = ceph_kill_sb,
1119 .fs_flags = FS_RENAME_DOES_D_MOVE,
1120};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001121MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001122
Sage Weil16725b92009-10-06 11:31:07 -07001123static int __init init_ceph(void)
1124{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001125 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001126 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001127 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001128
Yan, Zhengeb13e832014-03-09 23:16:40 +08001129 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001130 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001131 ret = register_filesystem(&ceph_fs_type);
1132 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001133 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001134
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001135 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1136
Sage Weil16725b92009-10-06 11:31:07 -07001137 return 0;
1138
Yan, Zheng97c85a82014-11-06 15:09:41 +08001139out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001140 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001141 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001142out:
1143 return ret;
1144}
1145
1146static void __exit exit_ceph(void)
1147{
1148 dout("exit_ceph\n");
1149 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -06001150 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001151 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001152}
1153
1154module_init(init_ceph);
1155module_exit(exit_ceph);
1156
1157MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1158MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1159MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1160MODULE_DESCRIPTION("Ceph filesystem for Linux");
1161MODULE_LICENSE("GPL");