blob: a63997b8bcff8ac6d5967361700d79f1b6e35c3f [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{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070047 struct ceph_fs_client *fsc = ceph_inode_to_client(dentry->d_inode);
48 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;
52
53 dout("statfs\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070054 err = ceph_monc_do_statfs(&fsc->client->monc, &st);
Sage Weil16725b92009-10-06 11:31:07 -070055 if (err < 0)
56 return err;
57
58 /* fill in kstatfs */
59 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
60
61 /*
62 * express utilization in terms of large blocks to avoid
63 * overflow on 32-bit machines.
Sage Weil92a49fb2013-02-22 15:31:00 -080064 *
65 * NOTE: for the time being, we make bsize == frsize to humor
66 * not-yet-ancient versions of glibc that are broken.
67 * Someday, we will probably want to report a real block
68 * size... whatever that may mean for a network file system!
Sage Weil16725b92009-10-06 11:31:07 -070069 */
70 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080071 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil16725b92009-10-06 11:31:07 -070072 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
Greg Farnum8f04d422011-07-26 11:26:54 -070073 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
Sage Weil16725b92009-10-06 11:31:07 -070074 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
75
76 buf->f_files = le64_to_cpu(st.num_objects);
77 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070078 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070079
80 /* leave fsid little-endian, regardless of host endianness */
81 fsid = *(u64 *)(&monmap->fsid) ^ *((u64 *)&monmap->fsid + 1);
82 buf->f_fsid.val[0] = fsid & 0xffffffff;
83 buf->f_fsid.val[1] = fsid >> 32;
84
85 return 0;
86}
87
88
Sage Weil2d9c98a2010-07-30 09:38:13 -070089static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -070090{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070091 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -070092
93 if (!wait) {
94 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070095 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -070096 dout("sync_fs (non-blocking) done\n");
97 return 0;
98 }
99
100 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700101 ceph_osdc_sync(&fsc->client->osdc);
102 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700103 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700104 return 0;
105}
106
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700107/*
108 * mount options
109 */
110enum {
111 Opt_wsize,
112 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700113 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700114 Opt_caps_wanted_delay_min,
115 Opt_caps_wanted_delay_max,
116 Opt_cap_release_safety,
117 Opt_readdir_max_entries,
118 Opt_readdir_max_bytes,
119 Opt_congestion_kb,
120 Opt_last_int,
121 /* int args above */
122 Opt_snapdirname,
123 Opt_last_string,
124 /* string args above */
125 Opt_dirstat,
126 Opt_nodirstat,
127 Opt_rbytes,
128 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600129 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700130 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800131 Opt_dcache,
132 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800133 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600134 Opt_noino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400135 Opt_fscache,
Sage Weil45195e42014-02-16 10:05:29 -0800136 Opt_nofscache,
137#ifdef CONFIG_CEPH_FS_POSIX_ACL
138 Opt_acl,
139#endif
140 Opt_noacl
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700141};
142
143static match_table_t fsopt_tokens = {
144 {Opt_wsize, "wsize=%d"},
145 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700146 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700147 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
148 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
149 {Opt_cap_release_safety, "cap_release_safety=%d"},
150 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
151 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
152 {Opt_congestion_kb, "write_congestion_kb=%d"},
153 /* int args above */
154 {Opt_snapdirname, "snapdirname=%s"},
155 /* string args above */
156 {Opt_dirstat, "dirstat"},
157 {Opt_nodirstat, "nodirstat"},
158 {Opt_rbytes, "rbytes"},
159 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600160 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700161 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800162 {Opt_dcache, "dcache"},
163 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800164 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600165 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400166 {Opt_fscache, "fsc"},
167 {Opt_nofscache, "nofsc"},
Sage Weil45195e42014-02-16 10:05:29 -0800168#ifdef CONFIG_CEPH_FS_POSIX_ACL
169 {Opt_acl, "acl"},
170#endif
171 {Opt_noacl, "noacl"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700172 {-1, NULL}
173};
174
175static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800176{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700177 struct ceph_mount_options *fsopt = private;
178 substring_t argstr[MAX_OPT_ARGS];
179 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800180
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700181 token = match_token((char *)c, fsopt_tokens, argstr);
182 if (token < 0)
183 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800184
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700185 if (token < Opt_last_int) {
186 ret = match_int(&argstr[0], &intval);
187 if (ret < 0) {
188 pr_err("bad mount option arg (not int) "
189 "at '%s'\n", c);
190 return ret;
191 }
192 dout("got int token %d val %d\n", token, intval);
193 } else if (token > Opt_last_int && token < Opt_last_string) {
194 dout("got string token %d val %s\n", token,
195 argstr[0].from);
196 } else {
197 dout("got token %d\n", token);
198 }
199
200 switch (token) {
201 case Opt_snapdirname:
202 kfree(fsopt->snapdir_name);
203 fsopt->snapdir_name = kstrndup(argstr[0].from,
204 argstr[0].to-argstr[0].from,
205 GFP_KERNEL);
206 if (!fsopt->snapdir_name)
207 return -ENOMEM;
208 break;
209
210 /* misc */
211 case Opt_wsize:
212 fsopt->wsize = intval;
213 break;
214 case Opt_rsize:
215 fsopt->rsize = intval;
216 break;
Sage Weil83817e32011-08-04 08:03:44 -0700217 case Opt_rasize:
218 fsopt->rasize = intval;
219 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700220 case Opt_caps_wanted_delay_min:
221 fsopt->caps_wanted_delay_min = intval;
222 break;
223 case Opt_caps_wanted_delay_max:
224 fsopt->caps_wanted_delay_max = intval;
225 break;
226 case Opt_readdir_max_entries:
227 fsopt->max_readdir = intval;
228 break;
229 case Opt_readdir_max_bytes:
230 fsopt->max_readdir_bytes = intval;
231 break;
232 case Opt_congestion_kb:
233 fsopt->congestion_kb = intval;
234 break;
235 case Opt_dirstat:
236 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
237 break;
238 case Opt_nodirstat:
239 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
240 break;
241 case Opt_rbytes:
242 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
243 break;
244 case Opt_norbytes:
245 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
246 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600247 case Opt_asyncreaddir:
248 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
249 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700250 case Opt_noasyncreaddir:
251 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
252 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800253 case Opt_dcache:
254 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
255 break;
256 case Opt_nodcache:
257 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
258 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800259 case Opt_ino32:
260 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
261 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600262 case Opt_noino32:
263 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
264 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400265 case Opt_fscache:
266 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
267 break;
268 case Opt_nofscache:
269 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
270 break;
Sage Weil45195e42014-02-16 10:05:29 -0800271#ifdef CONFIG_CEPH_FS_POSIX_ACL
272 case Opt_acl:
273 fsopt->sb_flags |= MS_POSIXACL;
274 break;
275#endif
276 case Opt_noacl:
277 fsopt->sb_flags &= ~MS_POSIXACL;
278 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700279 default:
280 BUG_ON(token);
281 }
282 return 0;
283}
284
285static void destroy_mount_options(struct ceph_mount_options *args)
286{
287 dout("destroy_mount_options %p\n", args);
288 kfree(args->snapdir_name);
289 kfree(args);
290}
291
292static int strcmp_null(const char *s1, const char *s2)
293{
294 if (!s1 && !s2)
295 return 0;
296 if (s1 && !s2)
297 return -1;
298 if (!s1 && s2)
299 return 1;
300 return strcmp(s1, s2);
301}
302
303static int compare_mount_options(struct ceph_mount_options *new_fsopt,
304 struct ceph_options *new_opt,
305 struct ceph_fs_client *fsc)
306{
307 struct ceph_mount_options *fsopt1 = new_fsopt;
308 struct ceph_mount_options *fsopt2 = fsc->mount_options;
309 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
310 int ret;
311
312 ret = memcmp(fsopt1, fsopt2, ofs);
313 if (ret)
314 return ret;
315
316 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
317 if (ret)
318 return ret;
319
320 return ceph_compare_options(new_opt, fsc->client);
321}
322
323static int parse_mount_options(struct ceph_mount_options **pfsopt,
324 struct ceph_options **popt,
325 int flags, char *options,
326 const char *dev_name,
327 const char **path)
328{
329 struct ceph_mount_options *fsopt;
330 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700331 int err;
332
333 if (!dev_name || !*dev_name)
334 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700335
336 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
337 if (!fsopt)
338 return -ENOMEM;
339
340 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
341
Noah Watkins80db8be2011-08-22 13:49:23 -0600342 fsopt->sb_flags = flags;
343 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700344
Noah Watkins80db8be2011-08-22 13:49:23 -0600345 fsopt->rsize = CEPH_RSIZE_DEFAULT;
346 fsopt->rasize = CEPH_RASIZE_DEFAULT;
347 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sage Weil50aac4f2011-01-18 07:59:40 -0800348 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
349 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600350 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
351 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
352 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
353 fsopt->congestion_kb = default_congestion_kb();
354
Alex Elderc98f5332012-08-09 10:33:26 -0700355 /*
356 * Distinguish the server list from the path in "dev_name".
357 * Internally we do not include the leading '/' in the path.
358 *
359 * "dev_name" will look like:
360 * <server_spec>[,<server_spec>...]:[<path>]
361 * where
362 * <server_spec> is <ip>[:<port>]
363 * <path> is optional, but if present must begin with '/'
364 */
365 dev_name_end = strchr(dev_name, '/');
366 if (dev_name_end) {
367 /* skip over leading '/' for path */
368 *path = dev_name_end + 1;
369 } else {
370 /* path is empty */
371 dev_name_end = dev_name + strlen(dev_name);
372 *path = dev_name_end;
373 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600374 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700375 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400376 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700377 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600378 dev_name);
379 goto out;
380 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700381 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700382 dout("server path '%s'\n", *path);
383
Alex Elderee577412012-01-24 10:08:36 -0600384 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700385 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600386 if (IS_ERR(*popt)) {
387 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700388 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600389 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700390
391 /* success */
392 *pfsopt = fsopt;
393 return 0;
394
395out:
396 destroy_mount_options(fsopt);
397 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800398}
399
Sage Weil6e19a162010-04-29 16:38:32 -0700400/**
401 * ceph_show_options - Show mount options in /proc/mounts
402 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500403 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700404 */
Al Viro34c80b12011-12-08 21:32:45 -0500405static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700406{
Al Viro34c80b12011-12-08 21:32:45 -0500407 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700408 struct ceph_mount_options *fsopt = fsc->mount_options;
409 struct ceph_options *opt = fsc->client->options;
Sage Weil6e19a162010-04-29 16:38:32 -0700410
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700411 if (opt->flags & CEPH_OPT_FSID)
412 seq_printf(m, ",fsid=%pU", &opt->fsid);
413 if (opt->flags & CEPH_OPT_NOSHARE)
Sage Weil6e19a162010-04-29 16:38:32 -0700414 seq_puts(m, ",noshare");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700415 if (opt->flags & CEPH_OPT_NOCRC)
Sage Weil6e19a162010-04-29 16:38:32 -0700416 seq_puts(m, ",nocrc");
Ilya Dryomov2a0b61c2015-02-02 17:54:17 +0300417 if (opt->flags & CEPH_OPT_NOMSGAUTH)
418 seq_puts(m, ",nocephx_require_signatures");
419 if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0)
420 seq_puts(m, ",notcp_nodelay");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700421
422 if (opt->name)
423 seq_printf(m, ",name=%s", opt->name);
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700424 if (opt->key)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700425 seq_puts(m, ",secret=<hidden>");
426
427 if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
428 seq_printf(m, ",mount_timeout=%d", opt->mount_timeout);
429 if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
430 seq_printf(m, ",osd_idle_ttl=%d", opt->osd_idle_ttl);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700431 if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
432 seq_printf(m, ",osdkeepalivetimeout=%d",
433 opt->osd_keepalive_timeout);
434
435 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
436 seq_puts(m, ",dirstat");
437 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES) == 0)
438 seq_puts(m, ",norbytes");
439 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700440 seq_puts(m, ",noasyncreaddir");
Sage Weila40dc6c2012-01-10 09:12:55 -0800441 if (fsopt->flags & CEPH_MOUNT_OPT_DCACHE)
442 seq_puts(m, ",dcache");
443 else
444 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400445 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
446 seq_puts(m, ",fsc");
447 else
448 seq_puts(m, ",nofsc");
Sage Weil6e19a162010-04-29 16:38:32 -0700449
Sage Weil45195e42014-02-16 10:05:29 -0800450#ifdef CONFIG_CEPH_FS_POSIX_ACL
451 if (fsopt->sb_flags & MS_POSIXACL)
452 seq_puts(m, ",acl");
453 else
454 seq_puts(m, ",noacl");
455#endif
456
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700457 if (fsopt->wsize)
458 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800459 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700460 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700461 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800462 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700463 if (fsopt->congestion_kb != default_congestion_kb())
464 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
465 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700466 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700467 fsopt->caps_wanted_delay_min);
468 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700469 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700470 fsopt->caps_wanted_delay_max);
471 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700472 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700473 fsopt->cap_release_safety);
474 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
475 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
476 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
477 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
478 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
479 seq_printf(m, ",snapdirname=%s", fsopt->snapdir_name);
Sage Weil6e19a162010-04-29 16:38:32 -0700480 return 0;
481}
482
483/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700484 * handle any mon messages the standard library doesn't understand.
485 * return error if we don't either.
486 */
487static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
488{
489 struct ceph_fs_client *fsc = client->private;
490 int type = le16_to_cpu(msg->hdr.type);
491
492 switch (type) {
493 case CEPH_MSG_MDS_MAP:
494 ceph_mdsc_handle_map(fsc->mdsc, msg);
495 return 0;
496
497 default:
498 return -1;
499 }
500}
501
502/*
503 * create a new fs client
504 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700505static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700506 struct ceph_options *opt)
507{
508 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200509 const u64 supported_features =
Sage Weil6ab00d42011-08-09 09:41:59 -0700510 CEPH_FEATURE_FLOCK |
Yan, Zheng65a22662014-11-17 10:01:03 +0800511 CEPH_FEATURE_DIRLAYOUTHASH |
512 CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200513 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500514 int page_count;
515 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700516 int err = -ENOMEM;
517
518 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
519 if (!fsc)
520 return ERR_PTR(-ENOMEM);
521
Sage Weil6ab00d42011-08-09 09:41:59 -0700522 fsc->client = ceph_create_client(opt, fsc, supported_features,
523 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700524 if (IS_ERR(fsc->client)) {
525 err = PTR_ERR(fsc->client);
526 goto fail;
527 }
528 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700529 fsc->client->monc.want_mdsmap = 1;
530
531 fsc->mount_options = fsopt;
532
533 fsc->sb = NULL;
534 fsc->mount_state = CEPH_MOUNT_MOUNTING;
535
536 atomic_long_set(&fsc->writeback_count, 0);
537
538 err = bdi_init(&fsc->backing_dev_info);
539 if (err < 0)
540 goto fail_client;
541
542 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100543 /*
544 * The number of concurrent works can be high but they don't need
545 * to be processed in parallel, limit concurrency.
546 */
547 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700548 if (fsc->wb_wq == NULL)
549 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100550 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700551 if (fsc->pg_inv_wq == NULL)
552 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100553 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700554 if (fsc->trunc_wq == NULL)
555 goto fail_pg_inv_wq;
556
557 /* set up mempools */
558 err = -ENOMEM;
Alex Elder3bf53332013-04-01 10:48:40 -0500559 page_count = fsc->mount_options->wsize >> PAGE_CACHE_SHIFT;
560 size = sizeof (struct page *) * (page_count ? page_count : 1);
561 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700562 if (!fsc->wb_pagevec_pool)
563 goto fail_trunc_wq;
564
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400565 /* setup fscache */
566 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
567 (ceph_fscache_register_fs(fsc) != 0))
568 goto fail_fscache;
569
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700570 /* caps */
571 fsc->min_caps = fsopt->max_readdir;
572
573 return fsc;
574
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400575fail_fscache:
576 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577fail_trunc_wq:
578 destroy_workqueue(fsc->trunc_wq);
579fail_pg_inv_wq:
580 destroy_workqueue(fsc->pg_inv_wq);
581fail_wb_wq:
582 destroy_workqueue(fsc->wb_wq);
583fail_bdi:
584 bdi_destroy(&fsc->backing_dev_info);
585fail_client:
586 ceph_destroy_client(fsc->client);
587fail:
588 kfree(fsc);
589 return ERR_PTR(err);
590}
591
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700592static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700593{
594 dout("destroy_fs_client %p\n", fsc);
595
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400596 ceph_fscache_unregister_fs(fsc);
597
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700598 destroy_workqueue(fsc->wb_wq);
599 destroy_workqueue(fsc->pg_inv_wq);
600 destroy_workqueue(fsc->trunc_wq);
601
602 bdi_destroy(&fsc->backing_dev_info);
603
604 mempool_destroy(fsc->wb_pagevec_pool);
605
606 destroy_mount_options(fsc->mount_options);
607
608 ceph_fs_debugfs_cleanup(fsc);
609
610 ceph_destroy_client(fsc->client);
611
612 kfree(fsc);
613 dout("destroy_fs_client %p done\n", fsc);
614}
615
616/*
Sage Weil6e19a162010-04-29 16:38:32 -0700617 * caches
618 */
619struct kmem_cache *ceph_inode_cachep;
620struct kmem_cache *ceph_cap_cachep;
621struct kmem_cache *ceph_dentry_cachep;
622struct kmem_cache *ceph_file_cachep;
623
624static void ceph_inode_init_once(void *foo)
625{
626 struct ceph_inode_info *ci = foo;
627 inode_init_once(&ci->vfs_inode);
628}
629
Sage Weil16725b92009-10-06 11:31:07 -0700630static int __init init_caches(void)
631{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400632 int error = -ENOMEM;
633
Sage Weil16725b92009-10-06 11:31:07 -0700634 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
635 sizeof(struct ceph_inode_info),
636 __alignof__(struct ceph_inode_info),
637 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
638 ceph_inode_init_once);
639 if (ceph_inode_cachep == NULL)
640 return -ENOMEM;
641
642 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
643 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
644 if (ceph_cap_cachep == NULL)
645 goto bad_cap;
646
647 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
648 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
649 if (ceph_dentry_cachep == NULL)
650 goto bad_dentry;
651
652 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
653 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
654 if (ceph_file_cachep == NULL)
655 goto bad_file;
656
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400657 if ((error = ceph_fscache_register()))
658 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700659
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400660 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700661bad_file:
662 kmem_cache_destroy(ceph_dentry_cachep);
663bad_dentry:
664 kmem_cache_destroy(ceph_cap_cachep);
665bad_cap:
666 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400667 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700668}
669
670static void destroy_caches(void)
671{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000672 /*
673 * Make sure all delayed rcu free inodes are flushed before we
674 * destroy cache.
675 */
676 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400677
Sage Weil16725b92009-10-06 11:31:07 -0700678 kmem_cache_destroy(ceph_inode_cachep);
679 kmem_cache_destroy(ceph_cap_cachep);
680 kmem_cache_destroy(ceph_dentry_cachep);
681 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400682
683 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700684}
685
686
687/*
688 * ceph_umount_begin - initiate forced umount. Tear down down the
689 * mount, skipping steps that may hang while waiting for server(s).
690 */
691static void ceph_umount_begin(struct super_block *sb)
692{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700693 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700694
695 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700696 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700697 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700698 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Sage Weil16725b92009-10-06 11:31:07 -0700699 return;
700}
701
702static const struct super_operations ceph_super_ops = {
703 .alloc_inode = ceph_alloc_inode,
704 .destroy_inode = ceph_destroy_inode,
705 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800706 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700707 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700708 .put_super = ceph_put_super,
709 .show_options = ceph_show_options,
710 .statfs = ceph_statfs,
711 .umount_begin = ceph_umount_begin,
712};
713
Sage Weil16725b92009-10-06 11:31:07 -0700714/*
715 * Bootstrap mount by opening the root directory. Note the mount
716 * @started time from caller, and time out if this takes too long.
717 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700718static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700719 const char *path,
720 unsigned long started)
721{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700722 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700723 struct ceph_mds_request *req = NULL;
724 int err;
725 struct dentry *root;
726
727 /* open dir */
728 dout("open_root_inode opening '%s'\n", path);
729 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
730 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200731 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700732 req->r_path1 = kstrdup(path, GFP_NOFS);
733 req->r_ino1.ino = CEPH_INO_ROOT;
734 req->r_ino1.snap = CEPH_NOSNAP;
735 req->r_started = started;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700736 req->r_timeout = fsc->client->options->mount_timeout * HZ;
Sage Weil16725b92009-10-06 11:31:07 -0700737 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
738 req->r_num_caps = 2;
739 err = ceph_mdsc_do_request(mdsc, NULL, req);
740 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500741 struct inode *inode = req->r_target_inode;
742 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700743 dout("open_root_inode success\n");
Al Viro3c5184e2012-01-09 16:34:32 -0500744 if (ceph_ino(inode) == CEPH_INO_ROOT &&
Sage Weil774ac212011-11-11 09:48:08 -0800745 fsc->sb->s_root == NULL) {
Al Viro48fde702012-01-08 22:15:13 -0500746 root = d_make_root(inode);
Al Viro3c5184e2012-01-09 16:34:32 -0500747 if (!root) {
Al Viro3c5184e2012-01-09 16:34:32 -0500748 root = ERR_PTR(-ENOMEM);
749 goto out;
750 }
Sage Weil774ac212011-11-11 09:48:08 -0800751 } else {
J. Bruce Fields1a0a3972014-02-14 17:35:37 -0500752 root = d_obtain_root(inode);
Sage Weil774ac212011-11-11 09:48:08 -0800753 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800754 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700755 dout("open_root_inode success, root dentry is %p\n", root);
756 } else {
757 root = ERR_PTR(err);
758 }
Al Viro3c5184e2012-01-09 16:34:32 -0500759out:
Sage Weil16725b92009-10-06 11:31:07 -0700760 ceph_mdsc_put_request(req);
761 return root;
762}
763
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700764
765
766
Sage Weil16725b92009-10-06 11:31:07 -0700767/*
768 * mount: join the ceph cluster, and open root directory.
769 */
Al Viroa7f9fb22010-07-26 16:17:55 +0400770static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700771 const char *path)
772{
Sage Weil16725b92009-10-06 11:31:07 -0700773 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700774 unsigned long started = jiffies; /* note the start time */
775 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700776 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700777
778 dout("mount start\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700779 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700780
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700781 err = __ceph_open_session(fsc->client, started);
Sage Weil16725b92009-10-06 11:31:07 -0700782 if (err < 0)
783 goto out;
784
Sage Weil16725b92009-10-06 11:31:07 -0700785 dout("mount opening root\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700786 root = open_root_dentry(fsc, "", started);
Sage Weil16725b92009-10-06 11:31:07 -0700787 if (IS_ERR(root)) {
788 err = PTR_ERR(root);
789 goto out;
790 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700791 if (fsc->sb->s_root) {
Sage Weil16725b92009-10-06 11:31:07 -0700792 dput(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700793 } else {
794 fsc->sb->s_root = root;
795 first = 1;
796
797 err = ceph_fs_debugfs_init(fsc);
798 if (err < 0)
799 goto fail;
800 }
Sage Weil16725b92009-10-06 11:31:07 -0700801
802 if (path[0] == 0) {
803 dget(root);
804 } else {
805 dout("mount opening base mountpoint\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700806 root = open_root_dentry(fsc, path, started);
Sage Weil16725b92009-10-06 11:31:07 -0700807 if (IS_ERR(root)) {
808 err = PTR_ERR(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700809 goto fail;
Sage Weil16725b92009-10-06 11:31:07 -0700810 }
811 }
812
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700813 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700814 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400815 mutex_unlock(&fsc->client->mount_mutex);
816 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700817
818out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700819 mutex_unlock(&fsc->client->mount_mutex);
Al Viroa7f9fb22010-07-26 16:17:55 +0400820 return ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700821
822fail:
823 if (first) {
824 dput(fsc->sb->s_root);
825 fsc->sb->s_root = NULL;
826 }
827 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700828}
829
830static int ceph_set_super(struct super_block *s, void *data)
831{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700832 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700833 int ret;
834
835 dout("set_super %p data %p\n", s, data);
836
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700837 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700838 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
839
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800840 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700841 s->s_fs_info = fsc;
842 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700843
844 s->s_op = &ceph_super_ops;
845 s->s_export_op = &ceph_export_ops;
846
847 s->s_time_gran = 1000; /* 1000 ns == 1 us */
848
849 ret = set_anon_super(s, NULL); /* what is that second arg for? */
850 if (ret != 0)
851 goto fail;
852
853 return ret;
854
855fail:
856 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700857 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700858 return ret;
859}
860
861/*
862 * share superblock if same fs AND options
863 */
864static int ceph_compare_super(struct super_block *sb, void *data)
865{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700866 struct ceph_fs_client *new = data;
867 struct ceph_mount_options *fsopt = new->mount_options;
868 struct ceph_options *opt = new->client->options;
869 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700870
871 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700872
873 if (compare_mount_options(fsopt, opt, other)) {
874 dout("monitor(s)/mount options don't match\n");
875 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700876 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700877 if ((opt->flags & CEPH_OPT_FSID) &&
878 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
879 dout("fsid doesn't match\n");
880 return 0;
881 }
882 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700883 dout("flags differ\n");
884 return 0;
885 }
886 return 1;
887}
888
889/*
890 * construct our own bdi so we can control readahead, etc.
891 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400892static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700893
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700894static int ceph_register_bdi(struct super_block *sb,
895 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700896{
897 int err;
898
Sage Weil83817e32011-08-04 08:03:44 -0700899 /* set ra_pages based on rasize mount option? */
900 if (fsc->mount_options->rasize >= PAGE_CACHE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700901 fsc->backing_dev_info.ra_pages =
Sage Weil83817e32011-08-04 08:03:44 -0700902 (fsc->mount_options->rasize + PAGE_CACHE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700903 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700904 else
905 fsc->backing_dev_info.ra_pages =
Christoph Hellwigdf0ce262015-01-14 10:42:41 +0100906 VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700907
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600908 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -0700909 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700910 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700911 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700912 return err;
913}
914
Al Viroa7f9fb22010-07-26 16:17:55 +0400915static struct dentry *ceph_mount(struct file_system_type *fs_type,
916 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700917{
918 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700919 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400920 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700921 int err;
922 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800923 const char *path = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700924 struct ceph_mount_options *fsopt = NULL;
925 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700926
Al Viroa7f9fb22010-07-26 16:17:55 +0400927 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800928
929#ifdef CONFIG_CEPH_FS_POSIX_ACL
930 flags |= MS_POSIXACL;
931#endif
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700932 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name, &path);
Al Viroa7f9fb22010-07-26 16:17:55 +0400933 if (err < 0) {
934 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700935 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400936 }
Sage Weil16725b92009-10-06 11:31:07 -0700937
938 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700939 fsc = create_fs_client(fsopt, opt);
940 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400941 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -0600942 destroy_mount_options(fsopt);
943 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -0700944 goto out_final;
945 }
Sage Weil16725b92009-10-06 11:31:07 -0700946
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700947 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400948 if (err < 0) {
949 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700950 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +0400951 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700952
953 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -0700954 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +0100955 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700956 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400957 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700958 goto out;
959 }
960
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700961 if (ceph_sb_to_client(sb) != fsc) {
962 ceph_mdsc_destroy(fsc);
963 destroy_fs_client(fsc);
964 fsc = ceph_sb_to_client(sb);
965 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700966 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700967 dout("get_sb using new client %p\n", fsc);
968 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400969 if (err < 0) {
970 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700971 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400972 }
Sage Weil16725b92009-10-06 11:31:07 -0700973 }
974
Al Viroa7f9fb22010-07-26 16:17:55 +0400975 res = ceph_real_mount(fsc, path);
976 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -0700977 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400978 dout("root %p inode %p ino %llx.%llx\n", res,
979 res->d_inode, ceph_vinop(res->d_inode));
980 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700981
982out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700983 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -0400984 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700985 goto out_final;
986
987out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700988 ceph_mdsc_destroy(fsc);
989 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700990out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +0400991 dout("ceph_mount fail %ld\n", PTR_ERR(res));
992 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700993}
994
995static void ceph_kill_sb(struct super_block *s)
996{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700997 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +0100998 dev_t dev = s->s_dev;
999
Sage Weil16725b92009-10-06 11:31:07 -07001000 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001001
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001002 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001003 generic_shutdown_super(s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001004 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001005
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001006 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001007 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001008}
1009
1010static struct file_system_type ceph_fs_type = {
1011 .owner = THIS_MODULE,
1012 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001013 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001014 .kill_sb = ceph_kill_sb,
1015 .fs_flags = FS_RENAME_DOES_D_MOVE,
1016};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001017MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001018
Sage Weil16725b92009-10-06 11:31:07 -07001019static int __init init_ceph(void)
1020{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001021 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001022 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001023 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001024
Yan, Zhengeb13e832014-03-09 23:16:40 +08001025 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001026 ceph_xattr_init();
Yan, Zheng97c85a82014-11-06 15:09:41 +08001027 ret = ceph_snap_init();
1028 if (ret)
1029 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001030 ret = register_filesystem(&ceph_fs_type);
1031 if (ret)
Yan, Zheng97c85a82014-11-06 15:09:41 +08001032 goto out_snap;
Sage Weil16725b92009-10-06 11:31:07 -07001033
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001034 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1035
Sage Weil16725b92009-10-06 11:31:07 -07001036 return 0;
1037
Yan, Zheng97c85a82014-11-06 15:09:41 +08001038out_snap:
1039 ceph_snap_exit();
1040out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001041 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001042 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001043out:
1044 return ret;
1045}
1046
1047static void __exit exit_ceph(void)
1048{
1049 dout("exit_ceph\n");
1050 unregister_filesystem(&ceph_fs_type);
Yan, Zheng97c85a82014-11-06 15:09:41 +08001051 ceph_snap_exit();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001052 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001053 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001054}
1055
1056module_init(init_ceph);
1057module_exit(exit_ceph);
1058
1059MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1060MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1061MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1062MODULE_DESCRIPTION("Ceph filesystem for Linux");
1063MODULE_LICENSE("GPL");