blob: d1c833c321b92eff48d9f35bf7171ef0ac59e7bf [file] [log] [blame]
Sage Weil16725b92009-10-06 11:31:07 -07001
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07002#include <linux/ceph/ceph_debug.h>
Sage Weil16725b92009-10-06 11:31:07 -07003
4#include <linux/backing-dev.h>
Sage Weilc309f0a2010-06-30 21:34:01 -07005#include <linux/ctype.h>
Sage Weil16725b92009-10-06 11:31:07 -07006#include <linux/fs.h>
7#include <linux/inet.h>
8#include <linux/in6.h>
9#include <linux/module.h>
10#include <linux/mount.h>
11#include <linux/parser.h>
Sage Weil16725b92009-10-06 11:31:07 -070012#include <linux/sched.h>
13#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Sage Weil16725b92009-10-06 11:31:07 -070015#include <linux/statfs.h>
16#include <linux/string.h>
Sage Weil16725b92009-10-06 11:31:07 -070017
Sage Weil16725b92009-10-06 11:31:07 -070018#include "super.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070019#include "mds_client.h"
Milosz Tanski99ccbd22013-08-21 17:29:54 -040020#include "cache.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070021
Sage Weil1fe60e52012-07-30 16:23:22 -070022#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070023#include <linux/ceph/decode.h>
24#include <linux/ceph/mon_client.h>
25#include <linux/ceph/auth.h>
26#include <linux/ceph/debugfs.h>
Sage Weil16725b92009-10-06 11:31:07 -070027
28/*
29 * Ceph superblock operations
30 *
31 * Handle the basics of mounting, unmounting.
32 */
33
Sage Weil16725b92009-10-06 11:31:07 -070034/*
35 * super ops
36 */
37static void ceph_put_super(struct super_block *s)
38{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070039 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -070040
41 dout("put_super\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070042 ceph_mdsc_close_sessions(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -070043}
44
45static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
46{
David Howells2b0143b2015-03-17 22:25:59 +000047 struct ceph_fs_client *fsc = ceph_inode_to_client(d_inode(dentry));
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070048 struct ceph_monmap *monmap = fsc->client->monc.monmap;
Sage Weil16725b92009-10-06 11:31:07 -070049 struct ceph_statfs st;
50 u64 fsid;
51 int err;
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,
Yan, Zheng10183a62015-04-27 15:33:28 +0800137 Opt_poolperm,
138 Opt_nopoolperm,
Sage Weil45195e42014-02-16 10:05:29 -0800139#ifdef CONFIG_CEPH_FS_POSIX_ACL
140 Opt_acl,
141#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800142 Opt_noacl,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700143};
144
145static match_table_t fsopt_tokens = {
146 {Opt_wsize, "wsize=%d"},
147 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700148 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700149 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
150 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
151 {Opt_cap_release_safety, "cap_release_safety=%d"},
152 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
153 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
154 {Opt_congestion_kb, "write_congestion_kb=%d"},
155 /* int args above */
156 {Opt_snapdirname, "snapdirname=%s"},
157 /* string args above */
158 {Opt_dirstat, "dirstat"},
159 {Opt_nodirstat, "nodirstat"},
160 {Opt_rbytes, "rbytes"},
161 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600162 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700163 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800164 {Opt_dcache, "dcache"},
165 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800166 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600167 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400168 {Opt_fscache, "fsc"},
169 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800170 {Opt_poolperm, "poolperm"},
171 {Opt_nopoolperm, "nopoolperm"},
Sage Weil45195e42014-02-16 10:05:29 -0800172#ifdef CONFIG_CEPH_FS_POSIX_ACL
173 {Opt_acl, "acl"},
174#endif
175 {Opt_noacl, "noacl"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700176 {-1, NULL}
177};
178
179static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800180{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700181 struct ceph_mount_options *fsopt = private;
182 substring_t argstr[MAX_OPT_ARGS];
183 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800184
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700185 token = match_token((char *)c, fsopt_tokens, argstr);
186 if (token < 0)
187 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800188
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700189 if (token < Opt_last_int) {
190 ret = match_int(&argstr[0], &intval);
191 if (ret < 0) {
192 pr_err("bad mount option arg (not int) "
193 "at '%s'\n", c);
194 return ret;
195 }
196 dout("got int token %d val %d\n", token, intval);
197 } else if (token > Opt_last_int && token < Opt_last_string) {
198 dout("got string token %d val %s\n", token,
199 argstr[0].from);
200 } else {
201 dout("got token %d\n", token);
202 }
203
204 switch (token) {
205 case Opt_snapdirname:
206 kfree(fsopt->snapdir_name);
207 fsopt->snapdir_name = kstrndup(argstr[0].from,
208 argstr[0].to-argstr[0].from,
209 GFP_KERNEL);
210 if (!fsopt->snapdir_name)
211 return -ENOMEM;
212 break;
213
214 /* misc */
215 case Opt_wsize:
216 fsopt->wsize = intval;
217 break;
218 case Opt_rsize:
219 fsopt->rsize = intval;
220 break;
Sage Weil83817e32011-08-04 08:03:44 -0700221 case Opt_rasize:
222 fsopt->rasize = intval;
223 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700224 case Opt_caps_wanted_delay_min:
225 fsopt->caps_wanted_delay_min = intval;
226 break;
227 case Opt_caps_wanted_delay_max:
228 fsopt->caps_wanted_delay_max = intval;
229 break;
230 case Opt_readdir_max_entries:
231 fsopt->max_readdir = intval;
232 break;
233 case Opt_readdir_max_bytes:
234 fsopt->max_readdir_bytes = intval;
235 break;
236 case Opt_congestion_kb:
237 fsopt->congestion_kb = intval;
238 break;
239 case Opt_dirstat:
240 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
241 break;
242 case Opt_nodirstat:
243 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
244 break;
245 case Opt_rbytes:
246 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
247 break;
248 case Opt_norbytes:
249 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
250 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600251 case Opt_asyncreaddir:
252 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
253 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700254 case Opt_noasyncreaddir:
255 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
256 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800257 case Opt_dcache:
258 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
259 break;
260 case Opt_nodcache:
261 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
262 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800263 case Opt_ino32:
264 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
265 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600266 case Opt_noino32:
267 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
268 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400269 case Opt_fscache:
270 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
271 break;
272 case Opt_nofscache:
273 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
274 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800275 case Opt_poolperm:
276 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
277 printk ("pool perm");
278 break;
279 case Opt_nopoolperm:
280 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
281 break;
Sage Weil45195e42014-02-16 10:05:29 -0800282#ifdef CONFIG_CEPH_FS_POSIX_ACL
283 case Opt_acl:
284 fsopt->sb_flags |= MS_POSIXACL;
285 break;
286#endif
287 case Opt_noacl:
288 fsopt->sb_flags &= ~MS_POSIXACL;
289 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700290 default:
291 BUG_ON(token);
292 }
293 return 0;
294}
295
296static void destroy_mount_options(struct ceph_mount_options *args)
297{
298 dout("destroy_mount_options %p\n", args);
299 kfree(args->snapdir_name);
300 kfree(args);
301}
302
303static int strcmp_null(const char *s1, const char *s2)
304{
305 if (!s1 && !s2)
306 return 0;
307 if (s1 && !s2)
308 return -1;
309 if (!s1 && s2)
310 return 1;
311 return strcmp(s1, s2);
312}
313
314static int compare_mount_options(struct ceph_mount_options *new_fsopt,
315 struct ceph_options *new_opt,
316 struct ceph_fs_client *fsc)
317{
318 struct ceph_mount_options *fsopt1 = new_fsopt;
319 struct ceph_mount_options *fsopt2 = fsc->mount_options;
320 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
321 int ret;
322
323 ret = memcmp(fsopt1, fsopt2, ofs);
324 if (ret)
325 return ret;
326
327 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
328 if (ret)
329 return ret;
330
331 return ceph_compare_options(new_opt, fsc->client);
332}
333
334static int parse_mount_options(struct ceph_mount_options **pfsopt,
335 struct ceph_options **popt,
336 int flags, char *options,
337 const char *dev_name,
338 const char **path)
339{
340 struct ceph_mount_options *fsopt;
341 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700342 int err;
343
344 if (!dev_name || !*dev_name)
345 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700346
347 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
348 if (!fsopt)
349 return -ENOMEM;
350
351 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
352
Noah Watkins80db8be2011-08-22 13:49:23 -0600353 fsopt->sb_flags = flags;
354 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700355
Noah Watkins80db8be2011-08-22 13:49:23 -0600356 fsopt->rsize = CEPH_RSIZE_DEFAULT;
357 fsopt->rasize = CEPH_RASIZE_DEFAULT;
358 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400359 if (!fsopt->snapdir_name) {
360 err = -ENOMEM;
361 goto out;
362 }
363
Sage Weil50aac4f2011-01-18 07:59:40 -0800364 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
365 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600366 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
367 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
368 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
369 fsopt->congestion_kb = default_congestion_kb();
370
Alex Elderc98f5332012-08-09 10:33:26 -0700371 /*
372 * Distinguish the server list from the path in "dev_name".
373 * Internally we do not include the leading '/' in the path.
374 *
375 * "dev_name" will look like:
376 * <server_spec>[,<server_spec>...]:[<path>]
377 * where
378 * <server_spec> is <ip>[:<port>]
379 * <path> is optional, but if present must begin with '/'
380 */
381 dev_name_end = strchr(dev_name, '/');
382 if (dev_name_end) {
383 /* skip over leading '/' for path */
384 *path = dev_name_end + 1;
385 } else {
386 /* path is empty */
387 dev_name_end = dev_name + strlen(dev_name);
388 *path = dev_name_end;
389 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600390 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700391 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400392 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700393 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600394 dev_name);
395 goto out;
396 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700397 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700398 dout("server path '%s'\n", *path);
399
Alex Elderee577412012-01-24 10:08:36 -0600400 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700401 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600402 if (IS_ERR(*popt)) {
403 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700404 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600405 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700406
407 /* success */
408 *pfsopt = fsopt;
409 return 0;
410
411out:
412 destroy_mount_options(fsopt);
413 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800414}
415
Sage Weil6e19a162010-04-29 16:38:32 -0700416/**
417 * ceph_show_options - Show mount options in /proc/mounts
418 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500419 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700420 */
Al Viro34c80b12011-12-08 21:32:45 -0500421static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700422{
Al Viro34c80b12011-12-08 21:32:45 -0500423 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700424 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300425 size_t pos;
426 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700427
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300428 /* a comma between MNT/MS and client options */
429 seq_putc(m, ',');
430 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700431
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300432 ret = ceph_print_client_options(m, fsc->client);
433 if (ret)
434 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700435
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300436 /* retract our comma if no client options */
437 if (m->count == pos)
438 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700439
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");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300446 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800447 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400448 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
449 seq_puts(m, ",fsc");
Yan, Zheng10183a62015-04-27 15:33:28 +0800450 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
451 seq_puts(m, ",nopoolperm");
Sage Weil6e19a162010-04-29 16:38:32 -0700452
Sage Weil45195e42014-02-16 10:05:29 -0800453#ifdef CONFIG_CEPH_FS_POSIX_ACL
454 if (fsopt->sb_flags & MS_POSIXACL)
455 seq_puts(m, ",acl");
456 else
457 seq_puts(m, ",noacl");
458#endif
459
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700460 if (fsopt->wsize)
461 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800462 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700463 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700464 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800465 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700466 if (fsopt->congestion_kb != default_congestion_kb())
467 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
468 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700469 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700470 fsopt->caps_wanted_delay_min);
471 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700472 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700473 fsopt->caps_wanted_delay_max);
474 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700475 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700476 fsopt->cap_release_safety);
477 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
478 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
479 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
480 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
481 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
482 seq_printf(m, ",snapdirname=%s", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300483
Sage Weil6e19a162010-04-29 16:38:32 -0700484 return 0;
485}
486
487/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700488 * handle any mon messages the standard library doesn't understand.
489 * return error if we don't either.
490 */
491static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
492{
493 struct ceph_fs_client *fsc = client->private;
494 int type = le16_to_cpu(msg->hdr.type);
495
496 switch (type) {
497 case CEPH_MSG_MDS_MAP:
498 ceph_mdsc_handle_map(fsc->mdsc, msg);
499 return 0;
500
501 default:
502 return -1;
503 }
504}
505
506/*
507 * create a new fs client
508 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700509static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700510 struct ceph_options *opt)
511{
512 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200513 const u64 supported_features =
Sage Weil6ab00d42011-08-09 09:41:59 -0700514 CEPH_FEATURE_FLOCK |
Yan, Zheng65a22662014-11-17 10:01:03 +0800515 CEPH_FEATURE_DIRLAYOUTHASH |
516 CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200517 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500518 int page_count;
519 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700520 int err = -ENOMEM;
521
522 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
523 if (!fsc)
524 return ERR_PTR(-ENOMEM);
525
Sage Weil6ab00d42011-08-09 09:41:59 -0700526 fsc->client = ceph_create_client(opt, fsc, supported_features,
527 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700528 if (IS_ERR(fsc->client)) {
529 err = PTR_ERR(fsc->client);
530 goto fail;
531 }
532 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700533 fsc->client->monc.want_mdsmap = 1;
534
535 fsc->mount_options = fsopt;
536
537 fsc->sb = NULL;
538 fsc->mount_state = CEPH_MOUNT_MOUNTING;
539
540 atomic_long_set(&fsc->writeback_count, 0);
541
542 err = bdi_init(&fsc->backing_dev_info);
543 if (err < 0)
544 goto fail_client;
545
546 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100547 /*
548 * The number of concurrent works can be high but they don't need
549 * to be processed in parallel, limit concurrency.
550 */
551 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700552 if (fsc->wb_wq == NULL)
553 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100554 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700555 if (fsc->pg_inv_wq == NULL)
556 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100557 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700558 if (fsc->trunc_wq == NULL)
559 goto fail_pg_inv_wq;
560
561 /* set up mempools */
562 err = -ENOMEM;
Alex Elder3bf53332013-04-01 10:48:40 -0500563 page_count = fsc->mount_options->wsize >> PAGE_CACHE_SHIFT;
564 size = sizeof (struct page *) * (page_count ? page_count : 1);
565 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700566 if (!fsc->wb_pagevec_pool)
567 goto fail_trunc_wq;
568
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400569 /* setup fscache */
570 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
571 (ceph_fscache_register_fs(fsc) != 0))
572 goto fail_fscache;
573
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574 /* caps */
575 fsc->min_caps = fsopt->max_readdir;
576
577 return fsc;
578
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400579fail_fscache:
580 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700581fail_trunc_wq:
582 destroy_workqueue(fsc->trunc_wq);
583fail_pg_inv_wq:
584 destroy_workqueue(fsc->pg_inv_wq);
585fail_wb_wq:
586 destroy_workqueue(fsc->wb_wq);
587fail_bdi:
588 bdi_destroy(&fsc->backing_dev_info);
589fail_client:
590 ceph_destroy_client(fsc->client);
591fail:
592 kfree(fsc);
593 return ERR_PTR(err);
594}
595
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700596static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700597{
598 dout("destroy_fs_client %p\n", fsc);
599
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400600 ceph_fscache_unregister_fs(fsc);
601
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700602 destroy_workqueue(fsc->wb_wq);
603 destroy_workqueue(fsc->pg_inv_wq);
604 destroy_workqueue(fsc->trunc_wq);
605
606 bdi_destroy(&fsc->backing_dev_info);
607
608 mempool_destroy(fsc->wb_pagevec_pool);
609
610 destroy_mount_options(fsc->mount_options);
611
612 ceph_fs_debugfs_cleanup(fsc);
613
614 ceph_destroy_client(fsc->client);
615
616 kfree(fsc);
617 dout("destroy_fs_client %p done\n", fsc);
618}
619
620/*
Sage Weil6e19a162010-04-29 16:38:32 -0700621 * caches
622 */
623struct kmem_cache *ceph_inode_cachep;
624struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800625struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700626struct 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;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800651 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
652 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
653 if (ceph_cap_flush_cachep == NULL)
654 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700655
656 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
657 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
658 if (ceph_dentry_cachep == NULL)
659 goto bad_dentry;
660
661 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
662 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
663 if (ceph_file_cachep == NULL)
664 goto bad_file;
665
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400666 if ((error = ceph_fscache_register()))
667 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700668
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400669 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700670bad_file:
671 kmem_cache_destroy(ceph_dentry_cachep);
672bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800673 kmem_cache_destroy(ceph_cap_flush_cachep);
674bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700675 kmem_cache_destroy(ceph_cap_cachep);
676bad_cap:
677 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400678 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700679}
680
681static void destroy_caches(void)
682{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000683 /*
684 * Make sure all delayed rcu free inodes are flushed before we
685 * destroy cache.
686 */
687 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400688
Sage Weil16725b92009-10-06 11:31:07 -0700689 kmem_cache_destroy(ceph_inode_cachep);
690 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800691 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700692 kmem_cache_destroy(ceph_dentry_cachep);
693 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400694
695 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700696}
697
698
699/*
700 * ceph_umount_begin - initiate forced umount. Tear down down the
701 * mount, skipping steps that may hang while waiting for server(s).
702 */
703static void ceph_umount_begin(struct super_block *sb)
704{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700705 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700706
707 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700708 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700709 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700710 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Sage Weil16725b92009-10-06 11:31:07 -0700711 return;
712}
713
714static const struct super_operations ceph_super_ops = {
715 .alloc_inode = ceph_alloc_inode,
716 .destroy_inode = ceph_destroy_inode,
717 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800718 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700719 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700720 .put_super = ceph_put_super,
721 .show_options = ceph_show_options,
722 .statfs = ceph_statfs,
723 .umount_begin = ceph_umount_begin,
724};
725
Sage Weil16725b92009-10-06 11:31:07 -0700726/*
727 * Bootstrap mount by opening the root directory. Note the mount
728 * @started time from caller, and time out if this takes too long.
729 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700730static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700731 const char *path,
732 unsigned long started)
733{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700734 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700735 struct ceph_mds_request *req = NULL;
736 int err;
737 struct dentry *root;
738
739 /* open dir */
740 dout("open_root_inode opening '%s'\n", path);
741 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
742 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200743 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700744 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400745 if (!req->r_path1) {
746 root = ERR_PTR(-ENOMEM);
747 goto out;
748 }
749
Sage Weil16725b92009-10-06 11:31:07 -0700750 req->r_ino1.ino = CEPH_INO_ROOT;
751 req->r_ino1.snap = CEPH_NOSNAP;
752 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300753 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700754 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
755 req->r_num_caps = 2;
756 err = ceph_mdsc_do_request(mdsc, NULL, req);
757 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500758 struct inode *inode = req->r_target_inode;
759 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700760 dout("open_root_inode success\n");
Al Viro3c5184e2012-01-09 16:34:32 -0500761 if (ceph_ino(inode) == CEPH_INO_ROOT &&
Sage Weil774ac212011-11-11 09:48:08 -0800762 fsc->sb->s_root == NULL) {
Al Viro48fde702012-01-08 22:15:13 -0500763 root = d_make_root(inode);
Al Viro3c5184e2012-01-09 16:34:32 -0500764 if (!root) {
Al Viro3c5184e2012-01-09 16:34:32 -0500765 root = ERR_PTR(-ENOMEM);
766 goto out;
767 }
Sage Weil774ac212011-11-11 09:48:08 -0800768 } else {
J. Bruce Fields1a0a3972014-02-14 17:35:37 -0500769 root = d_obtain_root(inode);
Sage Weil774ac212011-11-11 09:48:08 -0800770 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800771 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700772 dout("open_root_inode success, root dentry is %p\n", root);
773 } else {
774 root = ERR_PTR(err);
775 }
Al Viro3c5184e2012-01-09 16:34:32 -0500776out:
Sage Weil16725b92009-10-06 11:31:07 -0700777 ceph_mdsc_put_request(req);
778 return root;
779}
780
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700781
782
783
Sage Weil16725b92009-10-06 11:31:07 -0700784/*
785 * mount: join the ceph cluster, and open root directory.
786 */
Al Viroa7f9fb22010-07-26 16:17:55 +0400787static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700788 const char *path)
789{
Sage Weil16725b92009-10-06 11:31:07 -0700790 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700791 unsigned long started = jiffies; /* note the start time */
792 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700793 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700794
795 dout("mount start\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700796 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700797
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700798 err = __ceph_open_session(fsc->client, started);
Sage Weil16725b92009-10-06 11:31:07 -0700799 if (err < 0)
800 goto out;
801
Sage Weil16725b92009-10-06 11:31:07 -0700802 dout("mount opening root\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700803 root = open_root_dentry(fsc, "", started);
Sage Weil16725b92009-10-06 11:31:07 -0700804 if (IS_ERR(root)) {
805 err = PTR_ERR(root);
806 goto out;
807 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700808 if (fsc->sb->s_root) {
Sage Weil16725b92009-10-06 11:31:07 -0700809 dput(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700810 } else {
811 fsc->sb->s_root = root;
812 first = 1;
813
814 err = ceph_fs_debugfs_init(fsc);
815 if (err < 0)
816 goto fail;
817 }
Sage Weil16725b92009-10-06 11:31:07 -0700818
819 if (path[0] == 0) {
820 dget(root);
821 } else {
822 dout("mount opening base mountpoint\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700823 root = open_root_dentry(fsc, path, started);
Sage Weil16725b92009-10-06 11:31:07 -0700824 if (IS_ERR(root)) {
825 err = PTR_ERR(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700826 goto fail;
Sage Weil16725b92009-10-06 11:31:07 -0700827 }
828 }
829
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700830 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700831 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400832 mutex_unlock(&fsc->client->mount_mutex);
833 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700834
835out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700836 mutex_unlock(&fsc->client->mount_mutex);
Al Viroa7f9fb22010-07-26 16:17:55 +0400837 return ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700838
839fail:
840 if (first) {
841 dput(fsc->sb->s_root);
842 fsc->sb->s_root = NULL;
843 }
844 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700845}
846
847static int ceph_set_super(struct super_block *s, void *data)
848{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700849 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700850 int ret;
851
852 dout("set_super %p data %p\n", s, data);
853
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700854 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700855 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
856
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800857 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700858 s->s_fs_info = fsc;
859 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700860
861 s->s_op = &ceph_super_ops;
862 s->s_export_op = &ceph_export_ops;
863
864 s->s_time_gran = 1000; /* 1000 ns == 1 us */
865
866 ret = set_anon_super(s, NULL); /* what is that second arg for? */
867 if (ret != 0)
868 goto fail;
869
870 return ret;
871
872fail:
873 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700874 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700875 return ret;
876}
877
878/*
879 * share superblock if same fs AND options
880 */
881static int ceph_compare_super(struct super_block *sb, void *data)
882{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700883 struct ceph_fs_client *new = data;
884 struct ceph_mount_options *fsopt = new->mount_options;
885 struct ceph_options *opt = new->client->options;
886 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700887
888 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700889
890 if (compare_mount_options(fsopt, opt, other)) {
891 dout("monitor(s)/mount options don't match\n");
892 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700893 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700894 if ((opt->flags & CEPH_OPT_FSID) &&
895 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
896 dout("fsid doesn't match\n");
897 return 0;
898 }
899 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700900 dout("flags differ\n");
901 return 0;
902 }
903 return 1;
904}
905
906/*
907 * construct our own bdi so we can control readahead, etc.
908 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400909static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700910
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700911static int ceph_register_bdi(struct super_block *sb,
912 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700913{
914 int err;
915
Sage Weil83817e32011-08-04 08:03:44 -0700916 /* set ra_pages based on rasize mount option? */
917 if (fsc->mount_options->rasize >= PAGE_CACHE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700918 fsc->backing_dev_info.ra_pages =
Sage Weil83817e32011-08-04 08:03:44 -0700919 (fsc->mount_options->rasize + PAGE_CACHE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700920 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700921 else
922 fsc->backing_dev_info.ra_pages =
Christoph Hellwigdf0ce262015-01-14 10:42:41 +0100923 VM_MAX_READAHEAD * 1024 / PAGE_CACHE_SIZE;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700924
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600925 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -0700926 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700927 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700928 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700929 return err;
930}
931
Al Viroa7f9fb22010-07-26 16:17:55 +0400932static struct dentry *ceph_mount(struct file_system_type *fs_type,
933 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700934{
935 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700936 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400937 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700938 int err;
939 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800940 const char *path = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700941 struct ceph_mount_options *fsopt = NULL;
942 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700943
Al Viroa7f9fb22010-07-26 16:17:55 +0400944 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800945
946#ifdef CONFIG_CEPH_FS_POSIX_ACL
947 flags |= MS_POSIXACL;
948#endif
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700949 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name, &path);
Al Viroa7f9fb22010-07-26 16:17:55 +0400950 if (err < 0) {
951 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700952 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400953 }
Sage Weil16725b92009-10-06 11:31:07 -0700954
955 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700956 fsc = create_fs_client(fsopt, opt);
957 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400958 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -0600959 destroy_mount_options(fsopt);
960 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -0700961 goto out_final;
962 }
Sage Weil16725b92009-10-06 11:31:07 -0700963
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700964 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400965 if (err < 0) {
966 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700967 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +0400968 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700969
970 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -0700971 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +0100972 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700973 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400974 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700975 goto out;
976 }
977
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700978 if (ceph_sb_to_client(sb) != fsc) {
979 ceph_mdsc_destroy(fsc);
980 destroy_fs_client(fsc);
981 fsc = ceph_sb_to_client(sb);
982 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700983 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700984 dout("get_sb using new client %p\n", fsc);
985 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400986 if (err < 0) {
987 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700988 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400989 }
Sage Weil16725b92009-10-06 11:31:07 -0700990 }
991
Al Viroa7f9fb22010-07-26 16:17:55 +0400992 res = ceph_real_mount(fsc, path);
993 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -0700994 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400995 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +0000996 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +0400997 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700998
999out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001000 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001001 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001002 goto out_final;
1003
1004out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001005 ceph_mdsc_destroy(fsc);
1006 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001007out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001008 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1009 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001010}
1011
1012static void ceph_kill_sb(struct super_block *s)
1013{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001014 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001015 dev_t dev = s->s_dev;
1016
Sage Weil16725b92009-10-06 11:31:07 -07001017 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001018
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001019 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001020 generic_shutdown_super(s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001021 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001022
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001023 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001024 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001025}
1026
1027static struct file_system_type ceph_fs_type = {
1028 .owner = THIS_MODULE,
1029 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001030 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001031 .kill_sb = ceph_kill_sb,
1032 .fs_flags = FS_RENAME_DOES_D_MOVE,
1033};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001034MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001035
Sage Weil16725b92009-10-06 11:31:07 -07001036static int __init init_ceph(void)
1037{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001038 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001039 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001040 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001041
Yan, Zhengeb13e832014-03-09 23:16:40 +08001042 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001043 ceph_xattr_init();
Yan, Zheng97c85a82014-11-06 15:09:41 +08001044 ret = ceph_snap_init();
1045 if (ret)
1046 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001047 ret = register_filesystem(&ceph_fs_type);
1048 if (ret)
Yan, Zheng97c85a82014-11-06 15:09:41 +08001049 goto out_snap;
Sage Weil16725b92009-10-06 11:31:07 -07001050
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001051 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1052
Sage Weil16725b92009-10-06 11:31:07 -07001053 return 0;
1054
Yan, Zheng97c85a82014-11-06 15:09:41 +08001055out_snap:
1056 ceph_snap_exit();
1057out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001058 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001059 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001060out:
1061 return ret;
1062}
1063
1064static void __exit exit_ceph(void)
1065{
1066 dout("exit_ceph\n");
1067 unregister_filesystem(&ceph_fs_type);
Yan, Zheng97c85a82014-11-06 15:09:41 +08001068 ceph_snap_exit();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001069 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001070 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001071}
1072
1073module_init(init_ceph);
1074module_exit(exit_ceph);
1075
1076MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1077MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1078MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1079MODULE_DESCRIPTION("Ceph filesystem for Linux");
1080MODULE_LICENSE("GPL");