blob: 34a779edd421918284f1c8b325643b18db8e9214 [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;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300414 size_t pos;
415 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700416
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300417 /* a comma between MNT/MS and client options */
418 seq_putc(m, ',');
419 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700420
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300421 ret = ceph_print_client_options(m, fsc->client);
422 if (ret)
423 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700424
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300425 /* retract our comma if no client options */
426 if (m->count == pos)
427 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700428
429 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
430 seq_puts(m, ",dirstat");
431 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES) == 0)
432 seq_puts(m, ",norbytes");
433 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700434 seq_puts(m, ",noasyncreaddir");
Sage Weila40dc6c2012-01-10 09:12:55 -0800435 if (fsopt->flags & CEPH_MOUNT_OPT_DCACHE)
436 seq_puts(m, ",dcache");
437 else
438 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400439 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
440 seq_puts(m, ",fsc");
441 else
442 seq_puts(m, ",nofsc");
Sage Weil6e19a162010-04-29 16:38:32 -0700443
Sage Weil45195e42014-02-16 10:05:29 -0800444#ifdef CONFIG_CEPH_FS_POSIX_ACL
445 if (fsopt->sb_flags & MS_POSIXACL)
446 seq_puts(m, ",acl");
447 else
448 seq_puts(m, ",noacl");
449#endif
450
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700451 if (fsopt->wsize)
452 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800453 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700454 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700455 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800456 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700457 if (fsopt->congestion_kb != default_congestion_kb())
458 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
459 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700460 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700461 fsopt->caps_wanted_delay_min);
462 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700463 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700464 fsopt->caps_wanted_delay_max);
465 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700466 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700467 fsopt->cap_release_safety);
468 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
469 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
470 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
471 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
472 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
473 seq_printf(m, ",snapdirname=%s", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300474
Sage Weil6e19a162010-04-29 16:38:32 -0700475 return 0;
476}
477
478/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700479 * handle any mon messages the standard library doesn't understand.
480 * return error if we don't either.
481 */
482static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
483{
484 struct ceph_fs_client *fsc = client->private;
485 int type = le16_to_cpu(msg->hdr.type);
486
487 switch (type) {
488 case CEPH_MSG_MDS_MAP:
489 ceph_mdsc_handle_map(fsc->mdsc, msg);
490 return 0;
491
492 default:
493 return -1;
494 }
495}
496
497/*
498 * create a new fs client
499 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700500static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700501 struct ceph_options *opt)
502{
503 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200504 const u64 supported_features =
Sage Weil6ab00d42011-08-09 09:41:59 -0700505 CEPH_FEATURE_FLOCK |
Yan, Zheng65a22662014-11-17 10:01:03 +0800506 CEPH_FEATURE_DIRLAYOUTHASH |
507 CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200508 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500509 int page_count;
510 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700511 int err = -ENOMEM;
512
513 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
514 if (!fsc)
515 return ERR_PTR(-ENOMEM);
516
Sage Weil6ab00d42011-08-09 09:41:59 -0700517 fsc->client = ceph_create_client(opt, fsc, supported_features,
518 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700519 if (IS_ERR(fsc->client)) {
520 err = PTR_ERR(fsc->client);
521 goto fail;
522 }
523 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700524 fsc->client->monc.want_mdsmap = 1;
525
526 fsc->mount_options = fsopt;
527
528 fsc->sb = NULL;
529 fsc->mount_state = CEPH_MOUNT_MOUNTING;
530
531 atomic_long_set(&fsc->writeback_count, 0);
532
533 err = bdi_init(&fsc->backing_dev_info);
534 if (err < 0)
535 goto fail_client;
536
537 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100538 /*
539 * The number of concurrent works can be high but they don't need
540 * to be processed in parallel, limit concurrency.
541 */
542 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700543 if (fsc->wb_wq == NULL)
544 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100545 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700546 if (fsc->pg_inv_wq == NULL)
547 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100548 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700549 if (fsc->trunc_wq == NULL)
550 goto fail_pg_inv_wq;
551
552 /* set up mempools */
553 err = -ENOMEM;
Alex Elder3bf53332013-04-01 10:48:40 -0500554 page_count = fsc->mount_options->wsize >> PAGE_CACHE_SHIFT;
555 size = sizeof (struct page *) * (page_count ? page_count : 1);
556 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700557 if (!fsc->wb_pagevec_pool)
558 goto fail_trunc_wq;
559
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400560 /* setup fscache */
561 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
562 (ceph_fscache_register_fs(fsc) != 0))
563 goto fail_fscache;
564
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700565 /* caps */
566 fsc->min_caps = fsopt->max_readdir;
567
568 return fsc;
569
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400570fail_fscache:
571 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700572fail_trunc_wq:
573 destroy_workqueue(fsc->trunc_wq);
574fail_pg_inv_wq:
575 destroy_workqueue(fsc->pg_inv_wq);
576fail_wb_wq:
577 destroy_workqueue(fsc->wb_wq);
578fail_bdi:
579 bdi_destroy(&fsc->backing_dev_info);
580fail_client:
581 ceph_destroy_client(fsc->client);
582fail:
583 kfree(fsc);
584 return ERR_PTR(err);
585}
586
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700587static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700588{
589 dout("destroy_fs_client %p\n", fsc);
590
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400591 ceph_fscache_unregister_fs(fsc);
592
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700593 destroy_workqueue(fsc->wb_wq);
594 destroy_workqueue(fsc->pg_inv_wq);
595 destroy_workqueue(fsc->trunc_wq);
596
597 bdi_destroy(&fsc->backing_dev_info);
598
599 mempool_destroy(fsc->wb_pagevec_pool);
600
601 destroy_mount_options(fsc->mount_options);
602
603 ceph_fs_debugfs_cleanup(fsc);
604
605 ceph_destroy_client(fsc->client);
606
607 kfree(fsc);
608 dout("destroy_fs_client %p done\n", fsc);
609}
610
611/*
Sage Weil6e19a162010-04-29 16:38:32 -0700612 * caches
613 */
614struct kmem_cache *ceph_inode_cachep;
615struct kmem_cache *ceph_cap_cachep;
616struct kmem_cache *ceph_dentry_cachep;
617struct kmem_cache *ceph_file_cachep;
618
619static void ceph_inode_init_once(void *foo)
620{
621 struct ceph_inode_info *ci = foo;
622 inode_init_once(&ci->vfs_inode);
623}
624
Sage Weil16725b92009-10-06 11:31:07 -0700625static int __init init_caches(void)
626{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400627 int error = -ENOMEM;
628
Sage Weil16725b92009-10-06 11:31:07 -0700629 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
630 sizeof(struct ceph_inode_info),
631 __alignof__(struct ceph_inode_info),
632 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
633 ceph_inode_init_once);
634 if (ceph_inode_cachep == NULL)
635 return -ENOMEM;
636
637 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
638 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
639 if (ceph_cap_cachep == NULL)
640 goto bad_cap;
641
642 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
643 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
644 if (ceph_dentry_cachep == NULL)
645 goto bad_dentry;
646
647 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
648 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
649 if (ceph_file_cachep == NULL)
650 goto bad_file;
651
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400652 if ((error = ceph_fscache_register()))
653 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700654
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400655 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700656bad_file:
657 kmem_cache_destroy(ceph_dentry_cachep);
658bad_dentry:
659 kmem_cache_destroy(ceph_cap_cachep);
660bad_cap:
661 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400662 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700663}
664
665static void destroy_caches(void)
666{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000667 /*
668 * Make sure all delayed rcu free inodes are flushed before we
669 * destroy cache.
670 */
671 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400672
Sage Weil16725b92009-10-06 11:31:07 -0700673 kmem_cache_destroy(ceph_inode_cachep);
674 kmem_cache_destroy(ceph_cap_cachep);
675 kmem_cache_destroy(ceph_dentry_cachep);
676 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400677
678 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700679}
680
681
682/*
683 * ceph_umount_begin - initiate forced umount. Tear down down the
684 * mount, skipping steps that may hang while waiting for server(s).
685 */
686static void ceph_umount_begin(struct super_block *sb)
687{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700688 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700689
690 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700691 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700692 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700693 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Sage Weil16725b92009-10-06 11:31:07 -0700694 return;
695}
696
697static const struct super_operations ceph_super_ops = {
698 .alloc_inode = ceph_alloc_inode,
699 .destroy_inode = ceph_destroy_inode,
700 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800701 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700702 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700703 .put_super = ceph_put_super,
704 .show_options = ceph_show_options,
705 .statfs = ceph_statfs,
706 .umount_begin = ceph_umount_begin,
707};
708
Sage Weil16725b92009-10-06 11:31:07 -0700709/*
710 * Bootstrap mount by opening the root directory. Note the mount
711 * @started time from caller, and time out if this takes too long.
712 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700713static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700714 const char *path,
715 unsigned long started)
716{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700717 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700718 struct ceph_mds_request *req = NULL;
719 int err;
720 struct dentry *root;
721
722 /* open dir */
723 dout("open_root_inode opening '%s'\n", path);
724 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
725 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200726 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700727 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400728 if (!req->r_path1) {
729 root = ERR_PTR(-ENOMEM);
730 goto out;
731 }
732
Sage Weil16725b92009-10-06 11:31:07 -0700733 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");