blob: e350cc1611e4d0ac842d99d76ba324b98659ef44 [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");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700417
418 if (opt->name)
419 seq_printf(m, ",name=%s", opt->name);
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700420 if (opt->key)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700421 seq_puts(m, ",secret=<hidden>");
422
423 if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
424 seq_printf(m, ",mount_timeout=%d", opt->mount_timeout);
425 if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
426 seq_printf(m, ",osd_idle_ttl=%d", opt->osd_idle_ttl);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700427 if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
428 seq_printf(m, ",osdkeepalivetimeout=%d",
429 opt->osd_keepalive_timeout);
430
431 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
432 seq_puts(m, ",dirstat");
433 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES) == 0)
434 seq_puts(m, ",norbytes");
435 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700436 seq_puts(m, ",noasyncreaddir");
Sage Weila40dc6c2012-01-10 09:12:55 -0800437 if (fsopt->flags & CEPH_MOUNT_OPT_DCACHE)
438 seq_puts(m, ",dcache");
439 else
440 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400441 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
442 seq_puts(m, ",fsc");
443 else
444 seq_puts(m, ",nofsc");
Sage Weil6e19a162010-04-29 16:38:32 -0700445
Sage Weil45195e42014-02-16 10:05:29 -0800446#ifdef CONFIG_CEPH_FS_POSIX_ACL
447 if (fsopt->sb_flags & MS_POSIXACL)
448 seq_puts(m, ",acl");
449 else
450 seq_puts(m, ",noacl");
451#endif
452
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700453 if (fsopt->wsize)
454 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800455 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700456 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700457 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800458 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700459 if (fsopt->congestion_kb != default_congestion_kb())
460 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
461 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700462 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700463 fsopt->caps_wanted_delay_min);
464 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700465 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700466 fsopt->caps_wanted_delay_max);
467 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700468 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700469 fsopt->cap_release_safety);
470 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
471 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
472 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
473 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
474 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
475 seq_printf(m, ",snapdirname=%s", fsopt->snapdir_name);
Sage Weil6e19a162010-04-29 16:38:32 -0700476 return 0;
477}
478
479/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700480 * handle any mon messages the standard library doesn't understand.
481 * return error if we don't either.
482 */
483static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
484{
485 struct ceph_fs_client *fsc = client->private;
486 int type = le16_to_cpu(msg->hdr.type);
487
488 switch (type) {
489 case CEPH_MSG_MDS_MAP:
490 ceph_mdsc_handle_map(fsc->mdsc, msg);
491 return 0;
492
493 default:
494 return -1;
495 }
496}
497
498/*
499 * create a new fs client
500 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700501static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700502 struct ceph_options *opt)
503{
504 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200505 const u64 supported_features =
Sage Weil6ab00d42011-08-09 09:41:59 -0700506 CEPH_FEATURE_FLOCK |
Yan, Zheng65a22662014-11-17 10:01:03 +0800507 CEPH_FEATURE_DIRLAYOUTHASH |
508 CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200509 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500510 int page_count;
511 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700512 int err = -ENOMEM;
513
514 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
515 if (!fsc)
516 return ERR_PTR(-ENOMEM);
517
Sage Weil6ab00d42011-08-09 09:41:59 -0700518 fsc->client = ceph_create_client(opt, fsc, supported_features,
519 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700520 if (IS_ERR(fsc->client)) {
521 err = PTR_ERR(fsc->client);
522 goto fail;
523 }
524 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700525 fsc->client->monc.want_mdsmap = 1;
526
527 fsc->mount_options = fsopt;
528
529 fsc->sb = NULL;
530 fsc->mount_state = CEPH_MOUNT_MOUNTING;
531
532 atomic_long_set(&fsc->writeback_count, 0);
533
534 err = bdi_init(&fsc->backing_dev_info);
535 if (err < 0)
536 goto fail_client;
537
538 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100539 /*
540 * The number of concurrent works can be high but they don't need
541 * to be processed in parallel, limit concurrency.
542 */
543 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700544 if (fsc->wb_wq == NULL)
545 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100546 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700547 if (fsc->pg_inv_wq == NULL)
548 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100549 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700550 if (fsc->trunc_wq == NULL)
551 goto fail_pg_inv_wq;
552
553 /* set up mempools */
554 err = -ENOMEM;
Alex Elder3bf53332013-04-01 10:48:40 -0500555 page_count = fsc->mount_options->wsize >> PAGE_CACHE_SHIFT;
556 size = sizeof (struct page *) * (page_count ? page_count : 1);
557 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700558 if (!fsc->wb_pagevec_pool)
559 goto fail_trunc_wq;
560
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400561 /* setup fscache */
562 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
563 (ceph_fscache_register_fs(fsc) != 0))
564 goto fail_fscache;
565
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700566 /* caps */
567 fsc->min_caps = fsopt->max_readdir;
568
569 return fsc;
570
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400571fail_fscache:
572 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700573fail_trunc_wq:
574 destroy_workqueue(fsc->trunc_wq);
575fail_pg_inv_wq:
576 destroy_workqueue(fsc->pg_inv_wq);
577fail_wb_wq:
578 destroy_workqueue(fsc->wb_wq);
579fail_bdi:
580 bdi_destroy(&fsc->backing_dev_info);
581fail_client:
582 ceph_destroy_client(fsc->client);
583fail:
584 kfree(fsc);
585 return ERR_PTR(err);
586}
587
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700588static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700589{
590 dout("destroy_fs_client %p\n", fsc);
591
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400592 ceph_fscache_unregister_fs(fsc);
593
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700594 destroy_workqueue(fsc->wb_wq);
595 destroy_workqueue(fsc->pg_inv_wq);
596 destroy_workqueue(fsc->trunc_wq);
597
598 bdi_destroy(&fsc->backing_dev_info);
599
600 mempool_destroy(fsc->wb_pagevec_pool);
601
602 destroy_mount_options(fsc->mount_options);
603
604 ceph_fs_debugfs_cleanup(fsc);
605
606 ceph_destroy_client(fsc->client);
607
608 kfree(fsc);
609 dout("destroy_fs_client %p done\n", fsc);
610}
611
612/*
Sage Weil6e19a162010-04-29 16:38:32 -0700613 * caches
614 */
615struct kmem_cache *ceph_inode_cachep;
616struct kmem_cache *ceph_cap_cachep;
617struct kmem_cache *ceph_dentry_cachep;
618struct kmem_cache *ceph_file_cachep;
619
620static void ceph_inode_init_once(void *foo)
621{
622 struct ceph_inode_info *ci = foo;
623 inode_init_once(&ci->vfs_inode);
624}
625
Sage Weil16725b92009-10-06 11:31:07 -0700626static int __init init_caches(void)
627{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400628 int error = -ENOMEM;
629
Sage Weil16725b92009-10-06 11:31:07 -0700630 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
631 sizeof(struct ceph_inode_info),
632 __alignof__(struct ceph_inode_info),
633 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
634 ceph_inode_init_once);
635 if (ceph_inode_cachep == NULL)
636 return -ENOMEM;
637
638 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
639 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
640 if (ceph_cap_cachep == NULL)
641 goto bad_cap;
642
643 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
644 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
645 if (ceph_dentry_cachep == NULL)
646 goto bad_dentry;
647
648 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
649 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
650 if (ceph_file_cachep == NULL)
651 goto bad_file;
652
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400653 if ((error = ceph_fscache_register()))
654 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700655
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400656 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700657bad_file:
658 kmem_cache_destroy(ceph_dentry_cachep);
659bad_dentry:
660 kmem_cache_destroy(ceph_cap_cachep);
661bad_cap:
662 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400663 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700664}
665
666static void destroy_caches(void)
667{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000668 /*
669 * Make sure all delayed rcu free inodes are flushed before we
670 * destroy cache.
671 */
672 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400673
Sage Weil16725b92009-10-06 11:31:07 -0700674 kmem_cache_destroy(ceph_inode_cachep);
675 kmem_cache_destroy(ceph_cap_cachep);
676 kmem_cache_destroy(ceph_dentry_cachep);
677 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400678
679 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700680}
681
682
683/*
684 * ceph_umount_begin - initiate forced umount. Tear down down the
685 * mount, skipping steps that may hang while waiting for server(s).
686 */
687static void ceph_umount_begin(struct super_block *sb)
688{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700689 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700690
691 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700692 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700693 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700694 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Sage Weil16725b92009-10-06 11:31:07 -0700695 return;
696}
697
698static const struct super_operations ceph_super_ops = {
699 .alloc_inode = ceph_alloc_inode,
700 .destroy_inode = ceph_destroy_inode,
701 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800702 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700703 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700704 .put_super = ceph_put_super,
705 .show_options = ceph_show_options,
706 .statfs = ceph_statfs,
707 .umount_begin = ceph_umount_begin,
708};
709
Sage Weil16725b92009-10-06 11:31:07 -0700710/*
711 * Bootstrap mount by opening the root directory. Note the mount
712 * @started time from caller, and time out if this takes too long.
713 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700714static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700715 const char *path,
716 unsigned long started)
717{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700718 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700719 struct ceph_mds_request *req = NULL;
720 int err;
721 struct dentry *root;
722
723 /* open dir */
724 dout("open_root_inode opening '%s'\n", path);
725 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
726 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200727 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700728 req->r_path1 = kstrdup(path, GFP_NOFS);
729 req->r_ino1.ino = CEPH_INO_ROOT;
730 req->r_ino1.snap = CEPH_NOSNAP;
731 req->r_started = started;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700732 req->r_timeout = fsc->client->options->mount_timeout * HZ;
Sage Weil16725b92009-10-06 11:31:07 -0700733 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
734 req->r_num_caps = 2;
735 err = ceph_mdsc_do_request(mdsc, NULL, req);
736 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500737 struct inode *inode = req->r_target_inode;
738 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700739 dout("open_root_inode success\n");
Al Viro3c5184e2012-01-09 16:34:32 -0500740 if (ceph_ino(inode) == CEPH_INO_ROOT &&
Sage Weil774ac212011-11-11 09:48:08 -0800741 fsc->sb->s_root == NULL) {
Al Viro48fde702012-01-08 22:15:13 -0500742 root = d_make_root(inode);
Al Viro3c5184e2012-01-09 16:34:32 -0500743 if (!root) {
Al Viro3c5184e2012-01-09 16:34:32 -0500744 root = ERR_PTR(-ENOMEM);
745 goto out;
746 }
Sage Weil774ac212011-11-11 09:48:08 -0800747 } else {
J. Bruce Fields1a0a3972014-02-14 17:35:37 -0500748 root = d_obtain_root(inode);
Sage Weil774ac212011-11-11 09:48:08 -0800749 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800750 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700751 dout("open_root_inode success, root dentry is %p\n", root);
752 } else {
753 root = ERR_PTR(err);
754 }
Al Viro3c5184e2012-01-09 16:34:32 -0500755out:
Sage Weil16725b92009-10-06 11:31:07 -0700756 ceph_mdsc_put_request(req);
757 return root;
758}
759
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700760
761
762
Sage Weil16725b92009-10-06 11:31:07 -0700763/*
764 * mount: join the ceph cluster, and open root directory.
765 */
Al Viroa7f9fb22010-07-26 16:17:55 +0400766static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700767 const char *path)
768{
Sage Weil16725b92009-10-06 11:31:07 -0700769 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700770 unsigned long started = jiffies; /* note the start time */
771 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700772 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700773
774 dout("mount start\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700775 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700776
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700777 err = __ceph_open_session(fsc->client, started);
Sage Weil16725b92009-10-06 11:31:07 -0700778 if (err < 0)
779 goto out;
780
Sage Weil16725b92009-10-06 11:31:07 -0700781 dout("mount opening root\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700782 root = open_root_dentry(fsc, "", started);
Sage Weil16725b92009-10-06 11:31:07 -0700783 if (IS_ERR(root)) {
784 err = PTR_ERR(root);
785 goto out;
786 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700787 if (fsc->sb->s_root) {
Sage Weil16725b92009-10-06 11:31:07 -0700788 dput(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700789 } else {
790 fsc->sb->s_root = root;
791 first = 1;
792
793 err = ceph_fs_debugfs_init(fsc);
794 if (err < 0)
795 goto fail;
796 }
Sage Weil16725b92009-10-06 11:31:07 -0700797
798 if (path[0] == 0) {
799 dget(root);
800 } else {
801 dout("mount opening base mountpoint\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700802 root = open_root_dentry(fsc, path, started);
Sage Weil16725b92009-10-06 11:31:07 -0700803 if (IS_ERR(root)) {
804 err = PTR_ERR(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700805 goto fail;
Sage Weil16725b92009-10-06 11:31:07 -0700806 }
807 }
808
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700809 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700810 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400811 mutex_unlock(&fsc->client->mount_mutex);
812 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700813
814out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700815 mutex_unlock(&fsc->client->mount_mutex);
Al Viroa7f9fb22010-07-26 16:17:55 +0400816 return ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700817
818fail:
819 if (first) {
820 dput(fsc->sb->s_root);
821 fsc->sb->s_root = NULL;
822 }
823 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700824}
825
826static int ceph_set_super(struct super_block *s, void *data)
827{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700828 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700829 int ret;
830
831 dout("set_super %p data %p\n", s, data);
832
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700833 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700834 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
835
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800836 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700837 s->s_fs_info = fsc;
838 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700839
840 s->s_op = &ceph_super_ops;
841 s->s_export_op = &ceph_export_ops;
842
843 s->s_time_gran = 1000; /* 1000 ns == 1 us */
844
845 ret = set_anon_super(s, NULL); /* what is that second arg for? */
846 if (ret != 0)
847 goto fail;
848
849 return ret;
850
851fail:
852 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700853 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700854 return ret;
855}
856
857/*
858 * share superblock if same fs AND options
859 */
860static int ceph_compare_super(struct super_block *sb, void *data)
861{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700862 struct ceph_fs_client *new = data;
863 struct ceph_mount_options *fsopt = new->mount_options;
864 struct ceph_options *opt = new->client->options;
865 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700866
867 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700868
869 if (compare_mount_options(fsopt, opt, other)) {
870 dout("monitor(s)/mount options don't match\n");
871 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700872 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700873 if ((opt->flags & CEPH_OPT_FSID) &&
874 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
875 dout("fsid doesn't match\n");
876 return 0;
877 }
878 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700879 dout("flags differ\n");
880 return 0;
881 }
882 return 1;
883}
884
885/*
886 * construct our own bdi so we can control readahead, etc.
887 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400888static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700889
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700890static int ceph_register_bdi(struct super_block *sb,
891 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700892{
893 int err;
894
Sage Weil83817e32011-08-04 08:03:44 -0700895 /* set ra_pages based on rasize mount option? */
896 if (fsc->mount_options->rasize >= PAGE_CACHE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700897 fsc->backing_dev_info.ra_pages =
Sage Weil83817e32011-08-04 08:03:44 -0700898 (fsc->mount_options->rasize + PAGE_CACHE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700899 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700900 else
901 fsc->backing_dev_info.ra_pages =
902 default_backing_dev_info.ra_pages;
903
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600904 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -0700905 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700906 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700907 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700908 return err;
909}
910
Al Viroa7f9fb22010-07-26 16:17:55 +0400911static struct dentry *ceph_mount(struct file_system_type *fs_type,
912 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700913{
914 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700915 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400916 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700917 int err;
918 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800919 const char *path = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700920 struct ceph_mount_options *fsopt = NULL;
921 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700922
Al Viroa7f9fb22010-07-26 16:17:55 +0400923 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800924
925#ifdef CONFIG_CEPH_FS_POSIX_ACL
926 flags |= MS_POSIXACL;
927#endif
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700928 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name, &path);
Al Viroa7f9fb22010-07-26 16:17:55 +0400929 if (err < 0) {
930 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700931 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400932 }
Sage Weil16725b92009-10-06 11:31:07 -0700933
934 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700935 fsc = create_fs_client(fsopt, opt);
936 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400937 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -0600938 destroy_mount_options(fsopt);
939 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -0700940 goto out_final;
941 }
Sage Weil16725b92009-10-06 11:31:07 -0700942
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700943 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400944 if (err < 0) {
945 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700946 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +0400947 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700948
949 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -0700950 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +0100951 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700952 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400953 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700954 goto out;
955 }
956
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700957 if (ceph_sb_to_client(sb) != fsc) {
958 ceph_mdsc_destroy(fsc);
959 destroy_fs_client(fsc);
960 fsc = ceph_sb_to_client(sb);
961 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700962 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700963 dout("get_sb using new client %p\n", fsc);
964 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400965 if (err < 0) {
966 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700967 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400968 }
Sage Weil16725b92009-10-06 11:31:07 -0700969 }
970
Al Viroa7f9fb22010-07-26 16:17:55 +0400971 res = ceph_real_mount(fsc, path);
972 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -0700973 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400974 dout("root %p inode %p ino %llx.%llx\n", res,
975 res->d_inode, ceph_vinop(res->d_inode));
976 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700977
978out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700979 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -0400980 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700981 goto out_final;
982
983out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700984 ceph_mdsc_destroy(fsc);
985 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700986out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +0400987 dout("ceph_mount fail %ld\n", PTR_ERR(res));
988 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700989}
990
991static void ceph_kill_sb(struct super_block *s)
992{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700993 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +0100994 dev_t dev = s->s_dev;
995
Sage Weil16725b92009-10-06 11:31:07 -0700996 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +0100997
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700998 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +0100999 generic_shutdown_super(s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001000 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001001
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001002 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001003 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001004}
1005
1006static struct file_system_type ceph_fs_type = {
1007 .owner = THIS_MODULE,
1008 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001009 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001010 .kill_sb = ceph_kill_sb,
1011 .fs_flags = FS_RENAME_DOES_D_MOVE,
1012};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001013MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001014
Sage Weil16725b92009-10-06 11:31:07 -07001015static int __init init_ceph(void)
1016{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001017 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001018 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001019 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001020
Yan, Zhengeb13e832014-03-09 23:16:40 +08001021 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001022 ceph_xattr_init();
Yan, Zheng97c85a82014-11-06 15:09:41 +08001023 ret = ceph_snap_init();
1024 if (ret)
1025 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001026 ret = register_filesystem(&ceph_fs_type);
1027 if (ret)
Yan, Zheng97c85a82014-11-06 15:09:41 +08001028 goto out_snap;
Sage Weil16725b92009-10-06 11:31:07 -07001029
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001030 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1031
Sage Weil16725b92009-10-06 11:31:07 -07001032 return 0;
1033
Yan, Zheng97c85a82014-11-06 15:09:41 +08001034out_snap:
1035 ceph_snap_exit();
1036out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001037 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001038 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001039out:
1040 return ret;
1041}
1042
1043static void __exit exit_ceph(void)
1044{
1045 dout("exit_ceph\n");
1046 unregister_filesystem(&ceph_fs_type);
Yan, Zheng97c85a82014-11-06 15:09:41 +08001047 ceph_snap_exit();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001048 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001049 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001050}
1051
1052module_init(init_ceph);
1053module_exit(exit_ceph);
1054
1055MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1056MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1057MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1058MODULE_DESCRIPTION("Ceph filesystem for Linux");
1059MODULE_LICENSE("GPL");