blob: 9f035ccb6191e3c169c297ba96ee039d0dca1b1e [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);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400348 if (!fsopt->snapdir_name) {
349 err = -ENOMEM;
350 goto out;
351 }
352
Sage Weil50aac4f2011-01-18 07:59:40 -0800353 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
354 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600355 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
356 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
357 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
358 fsopt->congestion_kb = default_congestion_kb();
359
Alex Elderc98f5332012-08-09 10:33:26 -0700360 /*
361 * Distinguish the server list from the path in "dev_name".
362 * Internally we do not include the leading '/' in the path.
363 *
364 * "dev_name" will look like:
365 * <server_spec>[,<server_spec>...]:[<path>]
366 * where
367 * <server_spec> is <ip>[:<port>]
368 * <path> is optional, but if present must begin with '/'
369 */
370 dev_name_end = strchr(dev_name, '/');
371 if (dev_name_end) {
372 /* skip over leading '/' for path */
373 *path = dev_name_end + 1;
374 } else {
375 /* path is empty */
376 dev_name_end = dev_name + strlen(dev_name);
377 *path = dev_name_end;
378 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600379 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700380 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400381 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700382 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600383 dev_name);
384 goto out;
385 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700386 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700387 dout("server path '%s'\n", *path);
388
Alex Elderee577412012-01-24 10:08:36 -0600389 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700390 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600391 if (IS_ERR(*popt)) {
392 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700393 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600394 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700395
396 /* success */
397 *pfsopt = fsopt;
398 return 0;
399
400out:
401 destroy_mount_options(fsopt);
402 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800403}
404
Sage Weil6e19a162010-04-29 16:38:32 -0700405/**
406 * ceph_show_options - Show mount options in /proc/mounts
407 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500408 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700409 */
Al Viro34c80b12011-12-08 21:32:45 -0500410static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700411{
Al Viro34c80b12011-12-08 21:32:45 -0500412 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700413 struct ceph_mount_options *fsopt = fsc->mount_options;
414 struct ceph_options *opt = fsc->client->options;
Sage Weil6e19a162010-04-29 16:38:32 -0700415
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700416 if (opt->flags & CEPH_OPT_FSID)
417 seq_printf(m, ",fsid=%pU", &opt->fsid);
418 if (opt->flags & CEPH_OPT_NOSHARE)
Sage Weil6e19a162010-04-29 16:38:32 -0700419 seq_puts(m, ",noshare");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700420 if (opt->flags & CEPH_OPT_NOCRC)
Sage Weil6e19a162010-04-29 16:38:32 -0700421 seq_puts(m, ",nocrc");
Ilya Dryomov2a0b61c2015-02-02 17:54:17 +0300422 if (opt->flags & CEPH_OPT_NOMSGAUTH)
423 seq_puts(m, ",nocephx_require_signatures");
424 if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0)
425 seq_puts(m, ",notcp_nodelay");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700426
427 if (opt->name)
428 seq_printf(m, ",name=%s", opt->name);
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700429 if (opt->key)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700430 seq_puts(m, ",secret=<hidden>");
431
432 if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
433 seq_printf(m, ",mount_timeout=%d", opt->mount_timeout);
434 if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
435 seq_printf(m, ",osd_idle_ttl=%d", opt->osd_idle_ttl);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700436 if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
437 seq_printf(m, ",osdkeepalivetimeout=%d",
438 opt->osd_keepalive_timeout);
439
440 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
441 seq_puts(m, ",dirstat");
442 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES) == 0)
443 seq_puts(m, ",norbytes");
444 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700445 seq_puts(m, ",noasyncreaddir");
Sage Weila40dc6c2012-01-10 09:12:55 -0800446 if (fsopt->flags & CEPH_MOUNT_OPT_DCACHE)
447 seq_puts(m, ",dcache");
448 else
449 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400450 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
451 seq_puts(m, ",fsc");
452 else
453 seq_puts(m, ",nofsc");
Sage Weil6e19a162010-04-29 16:38:32 -0700454
Sage Weil45195e42014-02-16 10:05:29 -0800455#ifdef CONFIG_CEPH_FS_POSIX_ACL
456 if (fsopt->sb_flags & MS_POSIXACL)
457 seq_puts(m, ",acl");
458 else
459 seq_puts(m, ",noacl");
460#endif
461
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700462 if (fsopt->wsize)
463 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800464 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700465 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700466 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800467 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700468 if (fsopt->congestion_kb != default_congestion_kb())
469 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
470 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700471 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700472 fsopt->caps_wanted_delay_min);
473 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700474 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700475 fsopt->caps_wanted_delay_max);
476 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700477 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700478 fsopt->cap_release_safety);
479 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
480 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
481 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
482 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
483 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
484 seq_printf(m, ",snapdirname=%s", fsopt->snapdir_name);
Sage Weil6e19a162010-04-29 16:38:32 -0700485 return 0;
486}
487
488/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700489 * handle any mon messages the standard library doesn't understand.
490 * return error if we don't either.
491 */
492static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
493{
494 struct ceph_fs_client *fsc = client->private;
495 int type = le16_to_cpu(msg->hdr.type);
496
497 switch (type) {
498 case CEPH_MSG_MDS_MAP:
499 ceph_mdsc_handle_map(fsc->mdsc, msg);
500 return 0;
501
502 default:
503 return -1;
504 }
505}
506
507/*
508 * create a new fs client
509 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700510static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700511 struct ceph_options *opt)
512{
513 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200514 const u64 supported_features =
Sage Weil6ab00d42011-08-09 09:41:59 -0700515 CEPH_FEATURE_FLOCK |
Yan, Zheng65a22662014-11-17 10:01:03 +0800516 CEPH_FEATURE_DIRLAYOUTHASH |
517 CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200518 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500519 int page_count;
520 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700521 int err = -ENOMEM;
522
523 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
524 if (!fsc)
525 return ERR_PTR(-ENOMEM);
526
Sage Weil6ab00d42011-08-09 09:41:59 -0700527 fsc->client = ceph_create_client(opt, fsc, supported_features,
528 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700529 if (IS_ERR(fsc->client)) {
530 err = PTR_ERR(fsc->client);
531 goto fail;
532 }
533 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700534 fsc->client->monc.want_mdsmap = 1;
535
536 fsc->mount_options = fsopt;
537
538 fsc->sb = NULL;
539 fsc->mount_state = CEPH_MOUNT_MOUNTING;
540
541 atomic_long_set(&fsc->writeback_count, 0);
542
543 err = bdi_init(&fsc->backing_dev_info);
544 if (err < 0)
545 goto fail_client;
546
547 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100548 /*
549 * The number of concurrent works can be high but they don't need
550 * to be processed in parallel, limit concurrency.
551 */
552 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700553 if (fsc->wb_wq == NULL)
554 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100555 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700556 if (fsc->pg_inv_wq == NULL)
557 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100558 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700559 if (fsc->trunc_wq == NULL)
560 goto fail_pg_inv_wq;
561
562 /* set up mempools */
563 err = -ENOMEM;
Alex Elder3bf53332013-04-01 10:48:40 -0500564 page_count = fsc->mount_options->wsize >> PAGE_CACHE_SHIFT;
565 size = sizeof (struct page *) * (page_count ? page_count : 1);
566 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700567 if (!fsc->wb_pagevec_pool)
568 goto fail_trunc_wq;
569
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400570 /* setup fscache */
571 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
572 (ceph_fscache_register_fs(fsc) != 0))
573 goto fail_fscache;
574
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700575 /* caps */
576 fsc->min_caps = fsopt->max_readdir;
577
578 return fsc;
579
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400580fail_fscache:
581 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700582fail_trunc_wq:
583 destroy_workqueue(fsc->trunc_wq);
584fail_pg_inv_wq:
585 destroy_workqueue(fsc->pg_inv_wq);
586fail_wb_wq:
587 destroy_workqueue(fsc->wb_wq);
588fail_bdi:
589 bdi_destroy(&fsc->backing_dev_info);
590fail_client:
591 ceph_destroy_client(fsc->client);
592fail:
593 kfree(fsc);
594 return ERR_PTR(err);
595}
596
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700597static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700598{
599 dout("destroy_fs_client %p\n", fsc);
600
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400601 ceph_fscache_unregister_fs(fsc);
602
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700603 destroy_workqueue(fsc->wb_wq);
604 destroy_workqueue(fsc->pg_inv_wq);
605 destroy_workqueue(fsc->trunc_wq);
606
607 bdi_destroy(&fsc->backing_dev_info);
608
609 mempool_destroy(fsc->wb_pagevec_pool);
610
611 destroy_mount_options(fsc->mount_options);
612
613 ceph_fs_debugfs_cleanup(fsc);
614
615 ceph_destroy_client(fsc->client);
616
617 kfree(fsc);
618 dout("destroy_fs_client %p done\n", fsc);
619}
620
621/*
Sage Weil6e19a162010-04-29 16:38:32 -0700622 * caches
623 */
624struct kmem_cache *ceph_inode_cachep;
625struct kmem_cache *ceph_cap_cachep;
626struct kmem_cache *ceph_dentry_cachep;
627struct kmem_cache *ceph_file_cachep;
628
629static void ceph_inode_init_once(void *foo)
630{
631 struct ceph_inode_info *ci = foo;
632 inode_init_once(&ci->vfs_inode);
633}
634
Sage Weil16725b92009-10-06 11:31:07 -0700635static int __init init_caches(void)
636{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400637 int error = -ENOMEM;
638
Sage Weil16725b92009-10-06 11:31:07 -0700639 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
640 sizeof(struct ceph_inode_info),
641 __alignof__(struct ceph_inode_info),
642 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
643 ceph_inode_init_once);
644 if (ceph_inode_cachep == NULL)
645 return -ENOMEM;
646
647 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
648 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
649 if (ceph_cap_cachep == NULL)
650 goto bad_cap;
651
652 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
653 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
654 if (ceph_dentry_cachep == NULL)
655 goto bad_dentry;
656
657 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
658 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
659 if (ceph_file_cachep == NULL)
660 goto bad_file;
661
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400662 if ((error = ceph_fscache_register()))
663 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700664
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400665 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700666bad_file:
667 kmem_cache_destroy(ceph_dentry_cachep);
668bad_dentry:
669 kmem_cache_destroy(ceph_cap_cachep);
670bad_cap:
671 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400672 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700673}
674
675static void destroy_caches(void)
676{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000677 /*
678 * Make sure all delayed rcu free inodes are flushed before we
679 * destroy cache.
680 */
681 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400682
Sage Weil16725b92009-10-06 11:31:07 -0700683 kmem_cache_destroy(ceph_inode_cachep);
684 kmem_cache_destroy(ceph_cap_cachep);
685 kmem_cache_destroy(ceph_dentry_cachep);
686 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400687
688 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700689}
690
691
692/*
693 * ceph_umount_begin - initiate forced umount. Tear down down the
694 * mount, skipping steps that may hang while waiting for server(s).
695 */
696static void ceph_umount_begin(struct super_block *sb)
697{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700698 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700699
700 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700701 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700702 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700703 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Sage Weil16725b92009-10-06 11:31:07 -0700704 return;
705}
706
707static const struct super_operations ceph_super_ops = {
708 .alloc_inode = ceph_alloc_inode,
709 .destroy_inode = ceph_destroy_inode,
710 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800711 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700712 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700713 .put_super = ceph_put_super,
714 .show_options = ceph_show_options,
715 .statfs = ceph_statfs,
716 .umount_begin = ceph_umount_begin,
717};
718
Sage Weil16725b92009-10-06 11:31:07 -0700719/*
720 * Bootstrap mount by opening the root directory. Note the mount
721 * @started time from caller, and time out if this takes too long.
722 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700723static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700724 const char *path,
725 unsigned long started)
726{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700727 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700728 struct ceph_mds_request *req = NULL;
729 int err;
730 struct dentry *root;
731
732 /* open dir */
733 dout("open_root_inode opening '%s'\n", path);
734 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
735 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200736 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700737 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400738 if (!req->r_path1) {
739 root = ERR_PTR(-ENOMEM);
740 goto out;
741 }
742
Sage Weil16725b92009-10-06 11:31:07 -0700743 req->r_ino1.ino = CEPH_INO_ROOT;
744 req->r_ino1.snap = CEPH_NOSNAP;
745 req->r_started = started;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700746 req->r_timeout = fsc->client->options->mount_timeout * HZ;
Sage Weil16725b92009-10-06 11:31:07 -0700747 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
748 req->r_num_caps = 2;
749 err = ceph_mdsc_do_request(mdsc, NULL, req);
750 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500751 struct inode *inode = req->r_target_inode;
752 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700753 dout("open_root_inode success\n");
Al Viro3c5184e2012-01-09 16:34:32 -0500754 if (ceph_ino(inode) == CEPH_INO_ROOT &&
Sage Weil774ac212011-11-11 09:48:08 -0800755 fsc->sb->s_root == NULL) {
Al Viro48fde702012-01-08 22:15:13 -0500756 root = d_make_root(inode);
Al Viro3c5184e2012-01-09 16:34:32 -0500757 if (!root) {
Al Viro3c5184e2012-01-09 16:34:32 -0500758 root = ERR_PTR(-ENOMEM);
759 goto out;
760 }
Sage Weil774ac212011-11-11 09:48:08 -0800761 } else {
J. Bruce Fields1a0a3972014-02-14 17:35:37 -0500762 root = d_obtain_root(inode);
Sage Weil774ac212011-11-11 09:48:08 -0800763 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800764 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700765 dout("open_root_inode success, root dentry is %p\n", root);
766 } else {
767 root = ERR_PTR(err);
768 }
Al Viro3c5184e2012-01-09 16:34:32 -0500769out:
Sage Weil16725b92009-10-06 11:31:07 -0700770 ceph_mdsc_put_request(req);
771 return root;
772}
773
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700774
775
776
Sage Weil16725b92009-10-06 11:31:07 -0700777/*
778 * mount: join the ceph cluster, and open root directory.
779 */
Al Viroa7f9fb22010-07-26 16:17:55 +0400780static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700781 const char *path)
782{
Sage Weil16725b92009-10-06 11:31:07 -0700783 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700784 unsigned long started = jiffies; /* note the start time */
785 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700786 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700787
788 dout("mount start\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700789 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700790
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700791 err = __ceph_open_session(fsc->client, started);
Sage Weil16725b92009-10-06 11:31:07 -0700792 if (err < 0)
793 goto out;
794
Sage Weil16725b92009-10-06 11:31:07 -0700795 dout("mount opening root\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700796 root = open_root_dentry(fsc, "", started);
Sage Weil16725b92009-10-06 11:31:07 -0700797 if (IS_ERR(root)) {
798 err = PTR_ERR(root);
799 goto out;
800 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700801 if (fsc->sb->s_root) {
Sage Weil16725b92009-10-06 11:31:07 -0700802 dput(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700803 } else {
804 fsc->sb->s_root = root;
805 first = 1;
806
807 err = ceph_fs_debugfs_init(fsc);
808 if (err < 0)
809 goto fail;
810 }
Sage Weil16725b92009-10-06 11:31:07 -0700811
812 if (path[0] == 0) {
813 dget(root);
814 } else {
815 dout("mount opening base mountpoint\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700816 root = open_root_dentry(fsc, path, started);
Sage Weil16725b92009-10-06 11:31:07 -0700817 if (IS_ERR(root)) {
818 err = PTR_ERR(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700819 goto fail;
Sage Weil16725b92009-10-06 11:31:07 -0700820 }
821 }
822
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700823 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700824 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400825 mutex_unlock(&fsc->client->mount_mutex);
826 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700827
828out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700829 mutex_unlock(&fsc->client->mount_mutex);
Al Viroa7f9fb22010-07-26 16:17:55 +0400830 return ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700831
832fail:
833 if (first) {
834 dput(fsc->sb->s_root);
835 fsc->sb->s_root = NULL;
836 }
837 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700838}
839
840static int ceph_set_super(struct super_block *s, void *data)
841{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700842 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700843 int ret;
844
845 dout("set_super %p data %p\n", s, data);
846
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700847 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700848 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
849
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800850 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700851 s->s_fs_info = fsc;
852 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700853
854 s->s_op = &ceph_super_ops;
855 s->s_export_op = &ceph_export_ops;
856
857 s->s_time_gran = 1000; /* 1000 ns == 1 us */
858
859 ret = set_anon_super(s, NULL); /* what is that second arg for? */
860 if (ret != 0)
861 goto fail;
862
863 return ret;
864
865fail:
866 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700867 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700868 return ret;
869}
870
871/*
872 * share superblock if same fs AND options
873 */
874static int ceph_compare_super(struct super_block *sb, void *data)
875{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700876 struct ceph_fs_client *new = data;
877 struct ceph_mount_options *fsopt = new->mount_options;
878 struct ceph_options *opt = new->client->options;
879 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700880
881 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700882
883 if (compare_mount_options(fsopt, opt, other)) {
884 dout("monitor(s)/mount options don't match\n");
885 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700886 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700887 if ((opt->flags & CEPH_OPT_FSID) &&
888 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
889 dout("fsid doesn't match\n");
890 return 0;
891 }
892 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700893 dout("flags differ\n");
894 return 0;
895 }
896 return 1;
897}
898
899/*
900 * construct our own bdi so we can control readahead, etc.
901 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400902static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700903
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700904static int ceph_register_bdi(struct super_block *sb,
905 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700906{
907 int err;
908
Sage Weil83817e32011-08-04 08:03:44 -0700909 /* set ra_pages based on rasize mount option? */
910 if (fsc->mount_options->rasize >= PAGE_CACHE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700911 fsc->backing_dev_info.ra_pages =
Sage Weil83817e32011-08-04 08:03:44 -0700912 (fsc->mount_options->rasize + PAGE_CACHE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700913 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700914 else
915 fsc->backing_dev_info.ra_pages =
Christoph Hellwigdf0ce262015-01-14 10:42:41 +0100916 VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700917
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600918 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -0700919 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700920 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700921 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700922 return err;
923}
924
Al Viroa7f9fb22010-07-26 16:17:55 +0400925static struct dentry *ceph_mount(struct file_system_type *fs_type,
926 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700927{
928 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700929 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400930 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700931 int err;
932 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800933 const char *path = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700934 struct ceph_mount_options *fsopt = NULL;
935 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700936
Al Viroa7f9fb22010-07-26 16:17:55 +0400937 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800938
939#ifdef CONFIG_CEPH_FS_POSIX_ACL
940 flags |= MS_POSIXACL;
941#endif
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700942 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name, &path);
Al Viroa7f9fb22010-07-26 16:17:55 +0400943 if (err < 0) {
944 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700945 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400946 }
Sage Weil16725b92009-10-06 11:31:07 -0700947
948 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700949 fsc = create_fs_client(fsopt, opt);
950 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400951 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -0600952 destroy_mount_options(fsopt);
953 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -0700954 goto out_final;
955 }
Sage Weil16725b92009-10-06 11:31:07 -0700956
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700957 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400958 if (err < 0) {
959 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700960 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +0400961 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700962
963 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -0700964 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +0100965 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700966 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400967 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700968 goto out;
969 }
970
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700971 if (ceph_sb_to_client(sb) != fsc) {
972 ceph_mdsc_destroy(fsc);
973 destroy_fs_client(fsc);
974 fsc = ceph_sb_to_client(sb);
975 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700976 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700977 dout("get_sb using new client %p\n", fsc);
978 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400979 if (err < 0) {
980 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700981 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400982 }
Sage Weil16725b92009-10-06 11:31:07 -0700983 }
984
Al Viroa7f9fb22010-07-26 16:17:55 +0400985 res = ceph_real_mount(fsc, path);
986 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -0700987 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400988 dout("root %p inode %p ino %llx.%llx\n", res,
989 res->d_inode, ceph_vinop(res->d_inode));
990 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700991
992out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700993 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -0400994 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700995 goto out_final;
996
997out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700998 ceph_mdsc_destroy(fsc);
999 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001000out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001001 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1002 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001003}
1004
1005static void ceph_kill_sb(struct super_block *s)
1006{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001007 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001008 dev_t dev = s->s_dev;
1009
Sage Weil16725b92009-10-06 11:31:07 -07001010 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001011
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001012 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001013 generic_shutdown_super(s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001014 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001015
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001016 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001017 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001018}
1019
1020static struct file_system_type ceph_fs_type = {
1021 .owner = THIS_MODULE,
1022 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001023 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001024 .kill_sb = ceph_kill_sb,
1025 .fs_flags = FS_RENAME_DOES_D_MOVE,
1026};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001027MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001028
Sage Weil16725b92009-10-06 11:31:07 -07001029static int __init init_ceph(void)
1030{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001031 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001032 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001033 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001034
Yan, Zhengeb13e832014-03-09 23:16:40 +08001035 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001036 ceph_xattr_init();
Yan, Zheng97c85a82014-11-06 15:09:41 +08001037 ret = ceph_snap_init();
1038 if (ret)
1039 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001040 ret = register_filesystem(&ceph_fs_type);
1041 if (ret)
Yan, Zheng97c85a82014-11-06 15:09:41 +08001042 goto out_snap;
Sage Weil16725b92009-10-06 11:31:07 -07001043
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001044 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1045
Sage Weil16725b92009-10-06 11:31:07 -07001046 return 0;
1047
Yan, Zheng97c85a82014-11-06 15:09:41 +08001048out_snap:
1049 ceph_snap_exit();
1050out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001051 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001052 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001053out:
1054 return ret;
1055}
1056
1057static void __exit exit_ceph(void)
1058{
1059 dout("exit_ceph\n");
1060 unregister_filesystem(&ceph_fs_type);
Yan, Zheng97c85a82014-11-06 15:09:41 +08001061 ceph_snap_exit();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001062 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001063 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001064}
1065
1066module_init(init_ceph);
1067module_exit(exit_ceph);
1068
1069MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1070MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1071MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1072MODULE_DESCRIPTION("Ceph filesystem for Linux");
1073MODULE_LICENSE("GPL");