blob: e4082afedcb15a447ee7fd344aa2a3def391d43c [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;
Sage Weil16725b92009-10-06 11:31:07 -070079 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
Greg Farnum8f04d422011-07-26 11:26:54 -070080 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
Sage Weil16725b92009-10-06 11:31:07 -070081 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
82
83 buf->f_files = le64_to_cpu(st.num_objects);
84 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070085 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070086
87 /* leave fsid little-endian, regardless of host endianness */
88 fsid = *(u64 *)(&monmap->fsid) ^ *((u64 *)&monmap->fsid + 1);
89 buf->f_fsid.val[0] = fsid & 0xffffffff;
90 buf->f_fsid.val[1] = fsid >> 32;
91
92 return 0;
93}
94
95
Sage Weil2d9c98a2010-07-30 09:38:13 -070096static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -070097{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070098 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -070099
100 if (!wait) {
101 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700102 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700103 dout("sync_fs (non-blocking) done\n");
104 return 0;
105 }
106
107 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700108 ceph_osdc_sync(&fsc->client->osdc);
109 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700110 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700111 return 0;
112}
113
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700114/*
115 * mount options
116 */
117enum {
118 Opt_wsize,
119 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700120 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700121 Opt_caps_wanted_delay_min,
122 Opt_caps_wanted_delay_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700123 Opt_readdir_max_entries,
124 Opt_readdir_max_bytes,
125 Opt_congestion_kb,
126 Opt_last_int,
127 /* int args above */
128 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800129 Opt_mds_namespace,
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800130 Opt_fscache_uniq,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700131 Opt_last_string,
132 /* string args above */
133 Opt_dirstat,
134 Opt_nodirstat,
135 Opt_rbytes,
136 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600137 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700138 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800139 Opt_dcache,
140 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800141 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600142 Opt_noino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400143 Opt_fscache,
Sage Weil45195e42014-02-16 10:05:29 -0800144 Opt_nofscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800145 Opt_poolperm,
146 Opt_nopoolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800147 Opt_require_active_mds,
148 Opt_norequire_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800149#ifdef CONFIG_CEPH_FS_POSIX_ACL
150 Opt_acl,
151#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800152 Opt_noacl,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700153};
154
155static match_table_t fsopt_tokens = {
156 {Opt_wsize, "wsize=%d"},
157 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700158 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700159 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
160 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700161 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
162 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
163 {Opt_congestion_kb, "write_congestion_kb=%d"},
164 /* int args above */
165 {Opt_snapdirname, "snapdirname=%s"},
Yan, Zheng430afba2016-07-08 11:25:38 +0800166 {Opt_mds_namespace, "mds_namespace=%s"},
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800167 {Opt_fscache_uniq, "fsc=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700168 /* string args above */
169 {Opt_dirstat, "dirstat"},
170 {Opt_nodirstat, "nodirstat"},
171 {Opt_rbytes, "rbytes"},
172 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600173 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700174 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800175 {Opt_dcache, "dcache"},
176 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800177 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600178 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400179 {Opt_fscache, "fsc"},
180 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800181 {Opt_poolperm, "poolperm"},
182 {Opt_nopoolperm, "nopoolperm"},
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800183 {Opt_require_active_mds, "require_active_mds"},
184 {Opt_norequire_active_mds, "norequire_active_mds"},
Sage Weil45195e42014-02-16 10:05:29 -0800185#ifdef CONFIG_CEPH_FS_POSIX_ACL
186 {Opt_acl, "acl"},
187#endif
188 {Opt_noacl, "noacl"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700189 {-1, NULL}
190};
191
192static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800193{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700194 struct ceph_mount_options *fsopt = private;
195 substring_t argstr[MAX_OPT_ARGS];
196 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800197
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700198 token = match_token((char *)c, fsopt_tokens, argstr);
199 if (token < 0)
200 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800201
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700202 if (token < Opt_last_int) {
203 ret = match_int(&argstr[0], &intval);
204 if (ret < 0) {
205 pr_err("bad mount option arg (not int) "
206 "at '%s'\n", c);
207 return ret;
208 }
209 dout("got int token %d val %d\n", token, intval);
210 } else if (token > Opt_last_int && token < Opt_last_string) {
211 dout("got string token %d val %s\n", token,
212 argstr[0].from);
213 } else {
214 dout("got token %d\n", token);
215 }
216
217 switch (token) {
218 case Opt_snapdirname:
219 kfree(fsopt->snapdir_name);
220 fsopt->snapdir_name = kstrndup(argstr[0].from,
221 argstr[0].to-argstr[0].from,
222 GFP_KERNEL);
223 if (!fsopt->snapdir_name)
224 return -ENOMEM;
225 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800226 case Opt_mds_namespace:
Yan, Zheng430afba2016-07-08 11:25:38 +0800227 fsopt->mds_namespace = kstrndup(argstr[0].from,
228 argstr[0].to-argstr[0].from,
229 GFP_KERNEL);
230 if (!fsopt->mds_namespace)
231 return -ENOMEM;
Yan, Zheng235a0982016-03-30 17:18:34 +0800232 break;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800233 case Opt_fscache_uniq:
234 fsopt->fscache_uniq = kstrndup(argstr[0].from,
235 argstr[0].to-argstr[0].from,
236 GFP_KERNEL);
237 if (!fsopt->fscache_uniq)
238 return -ENOMEM;
239 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
240 break;
Yan, Zheng430afba2016-07-08 11:25:38 +0800241 /* misc */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700242 case Opt_wsize:
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800243 if (intval < PAGE_SIZE || intval > CEPH_MAX_WRITE_SIZE)
244 return -EINVAL;
245 fsopt->wsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700246 break;
247 case Opt_rsize:
Yan, Zhengaa187922017-07-11 15:56:09 +0800248 if (intval < PAGE_SIZE || intval > CEPH_MAX_READ_SIZE)
249 return -EINVAL;
250 fsopt->rsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700251 break;
Sage Weil83817e32011-08-04 08:03:44 -0700252 case Opt_rasize:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800253 if (intval < 0)
254 return -EINVAL;
255 fsopt->rasize = ALIGN(intval + PAGE_SIZE - 1, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700256 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700257 case Opt_caps_wanted_delay_min:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800258 if (intval < 1)
259 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700260 fsopt->caps_wanted_delay_min = intval;
261 break;
262 case Opt_caps_wanted_delay_max:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800263 if (intval < 1)
264 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700265 fsopt->caps_wanted_delay_max = intval;
266 break;
267 case Opt_readdir_max_entries:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800268 if (intval < 1)
269 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700270 fsopt->max_readdir = intval;
271 break;
272 case Opt_readdir_max_bytes:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800273 if (intval < PAGE_SIZE && intval != 0)
274 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700275 fsopt->max_readdir_bytes = intval;
276 break;
277 case Opt_congestion_kb:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800278 if (intval < 1024) /* at least 1M */
279 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700280 fsopt->congestion_kb = intval;
281 break;
282 case Opt_dirstat:
283 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
284 break;
285 case Opt_nodirstat:
286 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
287 break;
288 case Opt_rbytes:
289 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
290 break;
291 case Opt_norbytes:
292 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
293 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600294 case Opt_asyncreaddir:
295 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
296 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700297 case Opt_noasyncreaddir:
298 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
299 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800300 case Opt_dcache:
301 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
302 break;
303 case Opt_nodcache:
304 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
305 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800306 case Opt_ino32:
307 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
308 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600309 case Opt_noino32:
310 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
311 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400312 case Opt_fscache:
313 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
314 break;
315 case Opt_nofscache:
316 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
317 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800318 case Opt_poolperm:
319 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
320 printk ("pool perm");
321 break;
322 case Opt_nopoolperm:
323 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
324 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800325 case Opt_require_active_mds:
326 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
327 break;
328 case Opt_norequire_active_mds:
329 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
330 break;
Sage Weil45195e42014-02-16 10:05:29 -0800331#ifdef CONFIG_CEPH_FS_POSIX_ACL
332 case Opt_acl:
333 fsopt->sb_flags |= MS_POSIXACL;
334 break;
335#endif
336 case Opt_noacl:
337 fsopt->sb_flags &= ~MS_POSIXACL;
338 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700339 default:
340 BUG_ON(token);
341 }
342 return 0;
343}
344
345static void destroy_mount_options(struct ceph_mount_options *args)
346{
347 dout("destroy_mount_options %p\n", args);
348 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800349 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800350 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800351 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700352 kfree(args);
353}
354
355static int strcmp_null(const char *s1, const char *s2)
356{
357 if (!s1 && !s2)
358 return 0;
359 if (s1 && !s2)
360 return -1;
361 if (!s1 && s2)
362 return 1;
363 return strcmp(s1, s2);
364}
365
366static int compare_mount_options(struct ceph_mount_options *new_fsopt,
367 struct ceph_options *new_opt,
368 struct ceph_fs_client *fsc)
369{
370 struct ceph_mount_options *fsopt1 = new_fsopt;
371 struct ceph_mount_options *fsopt2 = fsc->mount_options;
372 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
373 int ret;
374
375 ret = memcmp(fsopt1, fsopt2, ofs);
376 if (ret)
377 return ret;
378
379 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
380 if (ret)
381 return ret;
Yan, Zheng430afba2016-07-08 11:25:38 +0800382 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
383 if (ret)
384 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800385 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
386 if (ret)
387 return ret;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800388 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
389 if (ret)
390 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800391
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700392 return ceph_compare_options(new_opt, fsc->client);
393}
394
395static int parse_mount_options(struct ceph_mount_options **pfsopt,
396 struct ceph_options **popt,
397 int flags, char *options,
Yan, Zheng3f384952016-04-21 11:09:55 +0800398 const char *dev_name)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700399{
400 struct ceph_mount_options *fsopt;
401 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700402 int err;
403
404 if (!dev_name || !*dev_name)
405 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700406
407 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
408 if (!fsopt)
409 return -ENOMEM;
410
411 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
412
Noah Watkins80db8be2011-08-22 13:49:23 -0600413 fsopt->sb_flags = flags;
414 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700415
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800416 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
Yan, Zhengaa187922017-07-11 15:56:09 +0800417 fsopt->rsize = CEPH_MAX_READ_SIZE;
Noah Watkins80db8be2011-08-22 13:49:23 -0600418 fsopt->rasize = CEPH_RASIZE_DEFAULT;
419 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400420 if (!fsopt->snapdir_name) {
421 err = -ENOMEM;
422 goto out;
423 }
424
Sage Weil50aac4f2011-01-18 07:59:40 -0800425 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
426 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600427 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
428 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
429 fsopt->congestion_kb = default_congestion_kb();
430
Alex Elderc98f5332012-08-09 10:33:26 -0700431 /*
432 * Distinguish the server list from the path in "dev_name".
433 * Internally we do not include the leading '/' in the path.
434 *
435 * "dev_name" will look like:
436 * <server_spec>[,<server_spec>...]:[<path>]
437 * where
438 * <server_spec> is <ip>[:<port>]
439 * <path> is optional, but if present must begin with '/'
440 */
441 dev_name_end = strchr(dev_name, '/');
442 if (dev_name_end) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800443 if (strlen(dev_name_end) > 1) {
444 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
445 if (!fsopt->server_path) {
446 err = -ENOMEM;
447 goto out;
448 }
Yan, Zheng3f384952016-04-21 11:09:55 +0800449 }
Alex Elderc98f5332012-08-09 10:33:26 -0700450 } else {
Alex Elderc98f5332012-08-09 10:33:26 -0700451 dev_name_end = dev_name + strlen(dev_name);
Alex Elderc98f5332012-08-09 10:33:26 -0700452 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600453 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700454 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400455 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700456 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600457 dev_name);
458 goto out;
459 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700460 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yan, Zheng3f384952016-04-21 11:09:55 +0800461 if (fsopt->server_path)
462 dout("server path '%s'\n", fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700463
Alex Elderee577412012-01-24 10:08:36 -0600464 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700465 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600466 if (IS_ERR(*popt)) {
467 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700468 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600469 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700470
471 /* success */
472 *pfsopt = fsopt;
473 return 0;
474
475out:
476 destroy_mount_options(fsopt);
477 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800478}
479
Sage Weil6e19a162010-04-29 16:38:32 -0700480/**
481 * ceph_show_options - Show mount options in /proc/mounts
482 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500483 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700484 */
Al Viro34c80b12011-12-08 21:32:45 -0500485static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700486{
Al Viro34c80b12011-12-08 21:32:45 -0500487 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700488 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300489 size_t pos;
490 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700491
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300492 /* a comma between MNT/MS and client options */
493 seq_putc(m, ',');
494 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700495
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300496 ret = ceph_print_client_options(m, fsc->client);
497 if (ret)
498 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700499
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300500 /* retract our comma if no client options */
501 if (m->count == pos)
502 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700503
504 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
505 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800506 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
507 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700508 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700509 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300510 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800511 seq_puts(m, ",nodcache");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800512 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
513 if (fsopt->fscache_uniq)
514 seq_printf(m, ",fsc=%s", fsopt->fscache_uniq);
515 else
516 seq_puts(m, ",fsc");
517 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800518 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
519 seq_puts(m, ",nopoolperm");
Sage Weil6e19a162010-04-29 16:38:32 -0700520
Sage Weil45195e42014-02-16 10:05:29 -0800521#ifdef CONFIG_CEPH_FS_POSIX_ACL
522 if (fsopt->sb_flags & MS_POSIXACL)
523 seq_puts(m, ",acl");
524 else
525 seq_puts(m, ",noacl");
526#endif
527
Yan, Zheng430afba2016-07-08 11:25:38 +0800528 if (fsopt->mds_namespace)
529 seq_printf(m, ",mds_namespace=%s", fsopt->mds_namespace);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700530 if (fsopt->wsize)
531 seq_printf(m, ",wsize=%d", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800532 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700533 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700534 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800535 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700536 if (fsopt->congestion_kb != default_congestion_kb())
537 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
538 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700539 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700540 fsopt->caps_wanted_delay_min);
541 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700542 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700543 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700544 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
545 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
546 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
547 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
548 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700549 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300550
Sage Weil6e19a162010-04-29 16:38:32 -0700551 return 0;
552}
553
554/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700555 * handle any mon messages the standard library doesn't understand.
556 * return error if we don't either.
557 */
558static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
559{
560 struct ceph_fs_client *fsc = client->private;
561 int type = le16_to_cpu(msg->hdr.type);
562
563 switch (type) {
564 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800565 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700566 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800567 case CEPH_MSG_FS_MAP_USER:
568 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
569 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700570 default:
571 return -1;
572 }
573}
574
575/*
576 * create a new fs client
577 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700578static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700579 struct ceph_options *opt)
580{
581 struct ceph_fs_client *fsc;
Alex Elder3bf53332013-04-01 10:48:40 -0500582 int page_count;
583 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700584 int err = -ENOMEM;
585
586 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
587 if (!fsc)
588 return ERR_PTR(-ENOMEM);
589
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100590 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700591 if (IS_ERR(fsc->client)) {
592 err = PTR_ERR(fsc->client);
593 goto fail;
594 }
595 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yan, Zheng430afba2016-07-08 11:25:38 +0800596
Markus Elfringd37b1d92017-08-20 20:22:02 +0200597 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800598 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
599 0, true);
600 } else {
601 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
602 0, false);
603 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700604
605 fsc->mount_options = fsopt;
606
607 fsc->sb = NULL;
608 fsc->mount_state = CEPH_MOUNT_MOUNTING;
609
610 atomic_long_set(&fsc->writeback_count, 0);
611
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700612 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100613 /*
614 * The number of concurrent works can be high but they don't need
615 * to be processed in parallel, limit concurrency.
616 */
617 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200618 if (!fsc->wb_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200619 goto fail_client;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100620 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200621 if (!fsc->pg_inv_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700622 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100623 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200624 if (!fsc->trunc_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700625 goto fail_pg_inv_wq;
626
627 /* set up mempools */
628 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300629 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500630 size = sizeof (struct page *) * (page_count ? page_count : 1);
631 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700632 if (!fsc->wb_pagevec_pool)
633 goto fail_trunc_wq;
634
635 /* caps */
636 fsc->min_caps = fsopt->max_readdir;
637
638 return fsc;
639
640fail_trunc_wq:
641 destroy_workqueue(fsc->trunc_wq);
642fail_pg_inv_wq:
643 destroy_workqueue(fsc->pg_inv_wq);
644fail_wb_wq:
645 destroy_workqueue(fsc->wb_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700646fail_client:
647 ceph_destroy_client(fsc->client);
648fail:
649 kfree(fsc);
650 return ERR_PTR(err);
651}
652
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700653static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700654{
655 dout("destroy_fs_client %p\n", fsc);
656
657 destroy_workqueue(fsc->wb_wq);
658 destroy_workqueue(fsc->pg_inv_wq);
659 destroy_workqueue(fsc->trunc_wq);
660
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700661 mempool_destroy(fsc->wb_pagevec_pool);
662
663 destroy_mount_options(fsc->mount_options);
664
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700665 ceph_destroy_client(fsc->client);
666
667 kfree(fsc);
668 dout("destroy_fs_client %p done\n", fsc);
669}
670
671/*
Sage Weil6e19a162010-04-29 16:38:32 -0700672 * caches
673 */
674struct kmem_cache *ceph_inode_cachep;
675struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800676struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700677struct kmem_cache *ceph_dentry_cachep;
678struct kmem_cache *ceph_file_cachep;
679
680static void ceph_inode_init_once(void *foo)
681{
682 struct ceph_inode_info *ci = foo;
683 inode_init_once(&ci->vfs_inode);
684}
685
Sage Weil16725b92009-10-06 11:31:07 -0700686static int __init init_caches(void)
687{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400688 int error = -ENOMEM;
689
Sage Weil16725b92009-10-06 11:31:07 -0700690 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
691 sizeof(struct ceph_inode_info),
692 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800693 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
694 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200695 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700696 return -ENOMEM;
697
698 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
699 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200700 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700701 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800702 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
703 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200704 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800705 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700706
707 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
708 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200709 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700710 goto bad_dentry;
711
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300712 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
713
Markus Elfringd37b1d92017-08-20 20:22:02 +0200714 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700715 goto bad_file;
716
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400717 if ((error = ceph_fscache_register()))
718 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700719
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400720 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700721bad_file:
722 kmem_cache_destroy(ceph_dentry_cachep);
723bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800724 kmem_cache_destroy(ceph_cap_flush_cachep);
725bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700726 kmem_cache_destroy(ceph_cap_cachep);
727bad_cap:
728 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400729 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700730}
731
732static void destroy_caches(void)
733{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000734 /*
735 * Make sure all delayed rcu free inodes are flushed before we
736 * destroy cache.
737 */
738 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400739
Sage Weil16725b92009-10-06 11:31:07 -0700740 kmem_cache_destroy(ceph_inode_cachep);
741 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800742 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700743 kmem_cache_destroy(ceph_dentry_cachep);
744 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400745
746 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700747}
748
749
750/*
751 * ceph_umount_begin - initiate forced umount. Tear down down the
752 * mount, skipping steps that may hang while waiting for server(s).
753 */
754static void ceph_umount_begin(struct super_block *sb)
755{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700756 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700757
758 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700759 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700760 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700761 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800762 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700763 return;
764}
765
766static const struct super_operations ceph_super_ops = {
767 .alloc_inode = ceph_alloc_inode,
768 .destroy_inode = ceph_destroy_inode,
769 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800770 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700771 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700772 .put_super = ceph_put_super,
773 .show_options = ceph_show_options,
774 .statfs = ceph_statfs,
775 .umount_begin = ceph_umount_begin,
776};
777
Sage Weil16725b92009-10-06 11:31:07 -0700778/*
779 * Bootstrap mount by opening the root directory. Note the mount
780 * @started time from caller, and time out if this takes too long.
781 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700782static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700783 const char *path,
784 unsigned long started)
785{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700786 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700787 struct ceph_mds_request *req = NULL;
788 int err;
789 struct dentry *root;
790
791 /* open dir */
792 dout("open_root_inode opening '%s'\n", path);
793 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
794 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200795 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700796 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400797 if (!req->r_path1) {
798 root = ERR_PTR(-ENOMEM);
799 goto out;
800 }
801
Sage Weil16725b92009-10-06 11:31:07 -0700802 req->r_ino1.ino = CEPH_INO_ROOT;
803 req->r_ino1.snap = CEPH_NOSNAP;
804 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300805 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700806 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
807 req->r_num_caps = 2;
808 err = ceph_mdsc_do_request(mdsc, NULL, req);
809 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500810 struct inode *inode = req->r_target_inode;
811 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700812 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800813 root = d_make_root(inode);
814 if (!root) {
815 root = ERR_PTR(-ENOMEM);
816 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800817 }
Sage Weil16725b92009-10-06 11:31:07 -0700818 dout("open_root_inode success, root dentry is %p\n", root);
819 } else {
820 root = ERR_PTR(err);
821 }
Al Viro3c5184e2012-01-09 16:34:32 -0500822out:
Sage Weil16725b92009-10-06 11:31:07 -0700823 ceph_mdsc_put_request(req);
824 return root;
825}
826
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700827
828
829
Sage Weil16725b92009-10-06 11:31:07 -0700830/*
831 * mount: join the ceph cluster, and open root directory.
832 */
Yan, Zheng3f384952016-04-21 11:09:55 +0800833static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700834{
Sage Weil16725b92009-10-06 11:31:07 -0700835 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700836 unsigned long started = jiffies; /* note the start time */
837 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700838 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700839
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800840 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700841 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700842
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800843 if (!fsc->sb->s_root) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800844 const char *path;
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800845 err = __ceph_open_session(fsc->client, started);
846 if (err < 0)
847 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700848
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800849 /* setup fscache */
850 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
851 err = ceph_fscache_register_fs(fsc);
852 if (err < 0)
853 goto out;
854 }
855
Yan, Zhengce2728a2016-09-14 14:53:05 +0800856 if (!fsc->mount_options->server_path) {
857 path = "";
858 dout("mount opening path \\t\n");
859 } else {
860 path = fsc->mount_options->server_path + 1;
861 dout("mount opening path %s\n", path);
862 }
863 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800864 if (IS_ERR(root)) {
865 err = PTR_ERR(root);
866 goto out;
867 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800868 fsc->sb->s_root = dget(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700869 first = 1;
870
871 err = ceph_fs_debugfs_init(fsc);
872 if (err < 0)
873 goto fail;
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200874 } else {
875 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700876 }
Sage Weil16725b92009-10-06 11:31:07 -0700877
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700878 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700879 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400880 mutex_unlock(&fsc->client->mount_mutex);
881 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700882
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700883fail:
884 if (first) {
885 dput(fsc->sb->s_root);
886 fsc->sb->s_root = NULL;
887 }
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800888out:
889 mutex_unlock(&fsc->client->mount_mutex);
890 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700891}
892
893static int ceph_set_super(struct super_block *s, void *data)
894{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700895 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700896 int ret;
897
898 dout("set_super %p data %p\n", s, data);
899
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700900 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700901 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
902
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800903 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700904 s->s_fs_info = fsc;
905 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700906
907 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400908 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700909 s->s_export_op = &ceph_export_ops;
910
911 s->s_time_gran = 1000; /* 1000 ns == 1 us */
912
913 ret = set_anon_super(s, NULL); /* what is that second arg for? */
914 if (ret != 0)
915 goto fail;
916
917 return ret;
918
919fail:
920 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700921 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700922 return ret;
923}
924
925/*
926 * share superblock if same fs AND options
927 */
928static int ceph_compare_super(struct super_block *sb, void *data)
929{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700930 struct ceph_fs_client *new = data;
931 struct ceph_mount_options *fsopt = new->mount_options;
932 struct ceph_options *opt = new->client->options;
933 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700934
935 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700936
937 if (compare_mount_options(fsopt, opt, other)) {
938 dout("monitor(s)/mount options don't match\n");
939 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700940 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700941 if ((opt->flags & CEPH_OPT_FSID) &&
942 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
943 dout("fsid doesn't match\n");
944 return 0;
945 }
946 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700947 dout("flags differ\n");
948 return 0;
949 }
950 return 1;
951}
952
953/*
954 * construct our own bdi so we can control readahead, etc.
955 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400956static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700957
Jan Kara09dc9fc2017-04-12 12:24:33 +0200958static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700959{
960 int err;
961
Jan Kara09dc9fc2017-04-12 12:24:33 +0200962 err = super_setup_bdi_name(sb, "ceph-%ld",
963 atomic_long_inc_return(&bdi_seq));
964 if (err)
965 return err;
966
Sage Weil83817e32011-08-04 08:03:44 -0700967 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +0800968 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700969
Yan, Zhengaa187922017-07-11 15:56:09 +0800970 /* set io_pages based on max osd read size */
971 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +0100972
Jan Kara09dc9fc2017-04-12 12:24:33 +0200973 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700974}
975
Al Viroa7f9fb22010-07-26 16:17:55 +0400976static struct dentry *ceph_mount(struct file_system_type *fs_type,
977 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700978{
979 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700980 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400981 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700982 int err;
983 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700984 struct ceph_mount_options *fsopt = NULL;
985 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700986
Al Viroa7f9fb22010-07-26 16:17:55 +0400987 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800988
989#ifdef CONFIG_CEPH_FS_POSIX_ACL
990 flags |= MS_POSIXACL;
991#endif
Yan, Zheng3f384952016-04-21 11:09:55 +0800992 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name);
Al Viroa7f9fb22010-07-26 16:17:55 +0400993 if (err < 0) {
994 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700995 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400996 }
Sage Weil16725b92009-10-06 11:31:07 -0700997
998 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700999 fsc = create_fs_client(fsopt, opt);
1000 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001001 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -06001002 destroy_mount_options(fsopt);
1003 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -07001004 goto out_final;
1005 }
Sage Weil16725b92009-10-06 11:31:07 -07001006
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001007 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001008 if (err < 0) {
1009 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001010 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +04001011 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001012
1013 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001014 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +01001015 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001016 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001017 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001018 goto out;
1019 }
1020
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001021 if (ceph_sb_to_client(sb) != fsc) {
1022 ceph_mdsc_destroy(fsc);
1023 destroy_fs_client(fsc);
1024 fsc = ceph_sb_to_client(sb);
1025 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001026 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001027 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001028 err = ceph_setup_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001029 if (err < 0) {
1030 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001031 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001032 }
Sage Weil16725b92009-10-06 11:31:07 -07001033 }
1034
Yan, Zheng3f384952016-04-21 11:09:55 +08001035 res = ceph_real_mount(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001036 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001037 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001038 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001039 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001040 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001041
1042out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001043 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001044 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001045 goto out_final;
1046
1047out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001048 ceph_mdsc_destroy(fsc);
1049 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001050out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001051 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1052 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001053}
1054
1055static void ceph_kill_sb(struct super_block *s)
1056{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001057 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001058 dev_t dev = s->s_dev;
1059
Sage Weil16725b92009-10-06 11:31:07 -07001060 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001061
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001062 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001063 generic_shutdown_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001064
1065 fsc->client->extra_mon_dispatch = NULL;
1066 ceph_fs_debugfs_cleanup(fsc);
1067
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001068 ceph_fscache_unregister_fs(fsc);
1069
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001070 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001071
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001072 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001073 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001074}
1075
1076static struct file_system_type ceph_fs_type = {
1077 .owner = THIS_MODULE,
1078 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001079 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001080 .kill_sb = ceph_kill_sb,
1081 .fs_flags = FS_RENAME_DOES_D_MOVE,
1082};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001083MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001084
Sage Weil16725b92009-10-06 11:31:07 -07001085static int __init init_ceph(void)
1086{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001087 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001088 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001089 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001090
Yan, Zhengeb13e832014-03-09 23:16:40 +08001091 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001092 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001093 ret = register_filesystem(&ceph_fs_type);
1094 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001095 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001096
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001097 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1098
Sage Weil16725b92009-10-06 11:31:07 -07001099 return 0;
1100
Yan, Zheng97c85a82014-11-06 15:09:41 +08001101out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001102 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001103 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001104out:
1105 return ret;
1106}
1107
1108static void __exit exit_ceph(void)
1109{
1110 dout("exit_ceph\n");
1111 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -06001112 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001113 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001114}
1115
1116module_init(init_ceph);
1117module_exit(exit_ceph);
1118
1119MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1120MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1121MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1122MODULE_DESCRIPTION("Ceph filesystem for Linux");
1123MODULE_LICENSE("GPL");