blob: d714ab20ad24e27d10a4f0a93b8355113a88a507 [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 {
Yan, Zheng235a0982016-03-30 17:18:34 +0800111 Opt_mds_namespace,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700112 Opt_wsize,
113 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700114 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700115 Opt_caps_wanted_delay_min,
116 Opt_caps_wanted_delay_max,
117 Opt_cap_release_safety,
118 Opt_readdir_max_entries,
119 Opt_readdir_max_bytes,
120 Opt_congestion_kb,
121 Opt_last_int,
122 /* int args above */
123 Opt_snapdirname,
124 Opt_last_string,
125 /* string args above */
126 Opt_dirstat,
127 Opt_nodirstat,
128 Opt_rbytes,
129 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600130 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700131 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800132 Opt_dcache,
133 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800134 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600135 Opt_noino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400136 Opt_fscache,
Sage Weil45195e42014-02-16 10:05:29 -0800137 Opt_nofscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800138 Opt_poolperm,
139 Opt_nopoolperm,
Sage Weil45195e42014-02-16 10:05:29 -0800140#ifdef CONFIG_CEPH_FS_POSIX_ACL
141 Opt_acl,
142#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800143 Opt_noacl,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700144};
145
146static match_table_t fsopt_tokens = {
Yan, Zheng235a0982016-03-30 17:18:34 +0800147 {Opt_mds_namespace, "mds_namespace=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700148 {Opt_wsize, "wsize=%d"},
149 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700150 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700151 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
152 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
153 {Opt_cap_release_safety, "cap_release_safety=%d"},
154 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
155 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
156 {Opt_congestion_kb, "write_congestion_kb=%d"},
157 /* int args above */
158 {Opt_snapdirname, "snapdirname=%s"},
159 /* string args above */
160 {Opt_dirstat, "dirstat"},
161 {Opt_nodirstat, "nodirstat"},
162 {Opt_rbytes, "rbytes"},
163 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600164 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700165 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800166 {Opt_dcache, "dcache"},
167 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800168 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600169 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400170 {Opt_fscache, "fsc"},
171 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800172 {Opt_poolperm, "poolperm"},
173 {Opt_nopoolperm, "nopoolperm"},
Sage Weil45195e42014-02-16 10:05:29 -0800174#ifdef CONFIG_CEPH_FS_POSIX_ACL
175 {Opt_acl, "acl"},
176#endif
177 {Opt_noacl, "noacl"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700178 {-1, NULL}
179};
180
181static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800182{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700183 struct ceph_mount_options *fsopt = private;
184 substring_t argstr[MAX_OPT_ARGS];
185 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800186
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700187 token = match_token((char *)c, fsopt_tokens, argstr);
188 if (token < 0)
189 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800190
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700191 if (token < Opt_last_int) {
192 ret = match_int(&argstr[0], &intval);
193 if (ret < 0) {
194 pr_err("bad mount option arg (not int) "
195 "at '%s'\n", c);
196 return ret;
197 }
198 dout("got int token %d val %d\n", token, intval);
199 } else if (token > Opt_last_int && token < Opt_last_string) {
200 dout("got string token %d val %s\n", token,
201 argstr[0].from);
202 } else {
203 dout("got token %d\n", token);
204 }
205
206 switch (token) {
207 case Opt_snapdirname:
208 kfree(fsopt->snapdir_name);
209 fsopt->snapdir_name = kstrndup(argstr[0].from,
210 argstr[0].to-argstr[0].from,
211 GFP_KERNEL);
212 if (!fsopt->snapdir_name)
213 return -ENOMEM;
214 break;
215
216 /* misc */
Yan, Zheng235a0982016-03-30 17:18:34 +0800217 case Opt_mds_namespace:
218 fsopt->mds_namespace = intval;
219 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700220 case Opt_wsize:
221 fsopt->wsize = intval;
222 break;
223 case Opt_rsize:
224 fsopt->rsize = intval;
225 break;
Sage Weil83817e32011-08-04 08:03:44 -0700226 case Opt_rasize:
227 fsopt->rasize = intval;
228 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700229 case Opt_caps_wanted_delay_min:
230 fsopt->caps_wanted_delay_min = intval;
231 break;
232 case Opt_caps_wanted_delay_max:
233 fsopt->caps_wanted_delay_max = intval;
234 break;
235 case Opt_readdir_max_entries:
236 fsopt->max_readdir = intval;
237 break;
238 case Opt_readdir_max_bytes:
239 fsopt->max_readdir_bytes = intval;
240 break;
241 case Opt_congestion_kb:
242 fsopt->congestion_kb = intval;
243 break;
244 case Opt_dirstat:
245 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
246 break;
247 case Opt_nodirstat:
248 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
249 break;
250 case Opt_rbytes:
251 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
252 break;
253 case Opt_norbytes:
254 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
255 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600256 case Opt_asyncreaddir:
257 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
258 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700259 case Opt_noasyncreaddir:
260 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
261 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800262 case Opt_dcache:
263 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
264 break;
265 case Opt_nodcache:
266 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
267 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800268 case Opt_ino32:
269 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
270 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600271 case Opt_noino32:
272 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
273 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400274 case Opt_fscache:
275 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
276 break;
277 case Opt_nofscache:
278 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
279 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800280 case Opt_poolperm:
281 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
282 printk ("pool perm");
283 break;
284 case Opt_nopoolperm:
285 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
286 break;
Sage Weil45195e42014-02-16 10:05:29 -0800287#ifdef CONFIG_CEPH_FS_POSIX_ACL
288 case Opt_acl:
289 fsopt->sb_flags |= MS_POSIXACL;
290 break;
291#endif
292 case Opt_noacl:
293 fsopt->sb_flags &= ~MS_POSIXACL;
294 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700295 default:
296 BUG_ON(token);
297 }
298 return 0;
299}
300
301static void destroy_mount_options(struct ceph_mount_options *args)
302{
303 dout("destroy_mount_options %p\n", args);
304 kfree(args->snapdir_name);
305 kfree(args);
306}
307
308static int strcmp_null(const char *s1, const char *s2)
309{
310 if (!s1 && !s2)
311 return 0;
312 if (s1 && !s2)
313 return -1;
314 if (!s1 && s2)
315 return 1;
316 return strcmp(s1, s2);
317}
318
319static int compare_mount_options(struct ceph_mount_options *new_fsopt,
320 struct ceph_options *new_opt,
321 struct ceph_fs_client *fsc)
322{
323 struct ceph_mount_options *fsopt1 = new_fsopt;
324 struct ceph_mount_options *fsopt2 = fsc->mount_options;
325 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
326 int ret;
327
328 ret = memcmp(fsopt1, fsopt2, ofs);
329 if (ret)
330 return ret;
331
332 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
333 if (ret)
334 return ret;
335
336 return ceph_compare_options(new_opt, fsc->client);
337}
338
339static int parse_mount_options(struct ceph_mount_options **pfsopt,
340 struct ceph_options **popt,
341 int flags, char *options,
342 const char *dev_name,
343 const char **path)
344{
345 struct ceph_mount_options *fsopt;
346 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700347 int err;
348
349 if (!dev_name || !*dev_name)
350 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700351
352 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
353 if (!fsopt)
354 return -ENOMEM;
355
356 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
357
Noah Watkins80db8be2011-08-22 13:49:23 -0600358 fsopt->sb_flags = flags;
359 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700360
Noah Watkins80db8be2011-08-22 13:49:23 -0600361 fsopt->rsize = CEPH_RSIZE_DEFAULT;
362 fsopt->rasize = CEPH_RASIZE_DEFAULT;
363 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400364 if (!fsopt->snapdir_name) {
365 err = -ENOMEM;
366 goto out;
367 }
368
Sage Weil50aac4f2011-01-18 07:59:40 -0800369 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
370 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600371 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
372 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
373 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
374 fsopt->congestion_kb = default_congestion_kb();
Yan, Zheng235a0982016-03-30 17:18:34 +0800375 fsopt->mds_namespace = CEPH_FS_CLUSTER_ID_NONE;
Noah Watkins80db8be2011-08-22 13:49:23 -0600376
Alex Elderc98f5332012-08-09 10:33:26 -0700377 /*
378 * Distinguish the server list from the path in "dev_name".
379 * Internally we do not include the leading '/' in the path.
380 *
381 * "dev_name" will look like:
382 * <server_spec>[,<server_spec>...]:[<path>]
383 * where
384 * <server_spec> is <ip>[:<port>]
385 * <path> is optional, but if present must begin with '/'
386 */
387 dev_name_end = strchr(dev_name, '/');
388 if (dev_name_end) {
389 /* skip over leading '/' for path */
390 *path = dev_name_end + 1;
391 } else {
392 /* path is empty */
393 dev_name_end = dev_name + strlen(dev_name);
394 *path = dev_name_end;
395 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600396 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700397 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400398 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700399 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600400 dev_name);
401 goto out;
402 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700403 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700404 dout("server path '%s'\n", *path);
405
Alex Elderee577412012-01-24 10:08:36 -0600406 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700407 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600408 if (IS_ERR(*popt)) {
409 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700410 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600411 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700412
413 /* success */
414 *pfsopt = fsopt;
415 return 0;
416
417out:
418 destroy_mount_options(fsopt);
419 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800420}
421
Sage Weil6e19a162010-04-29 16:38:32 -0700422/**
423 * ceph_show_options - Show mount options in /proc/mounts
424 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500425 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700426 */
Al Viro34c80b12011-12-08 21:32:45 -0500427static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700428{
Al Viro34c80b12011-12-08 21:32:45 -0500429 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700430 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300431 size_t pos;
432 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700433
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300434 /* a comma between MNT/MS and client options */
435 seq_putc(m, ',');
436 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700437
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300438 ret = ceph_print_client_options(m, fsc->client);
439 if (ret)
440 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700441
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300442 /* retract our comma if no client options */
443 if (m->count == pos)
444 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700445
446 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
447 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800448 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
449 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700450 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700451 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300452 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800453 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400454 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
455 seq_puts(m, ",fsc");
Yan, Zheng10183a62015-04-27 15:33:28 +0800456 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
457 seq_puts(m, ",nopoolperm");
Sage Weil6e19a162010-04-29 16:38:32 -0700458
Sage Weil45195e42014-02-16 10:05:29 -0800459#ifdef CONFIG_CEPH_FS_POSIX_ACL
460 if (fsopt->sb_flags & MS_POSIXACL)
461 seq_puts(m, ",acl");
462 else
463 seq_puts(m, ",noacl");
464#endif
465
Yan, Zheng235a0982016-03-30 17:18:34 +0800466 if (fsopt->mds_namespace != CEPH_FS_CLUSTER_ID_NONE)
467 seq_printf(m, ",mds_namespace=%d", fsopt->mds_namespace);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700468 if (fsopt->wsize)
469 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800470 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700471 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700472 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800473 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700474 if (fsopt->congestion_kb != default_congestion_kb())
475 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
476 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700477 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700478 fsopt->caps_wanted_delay_min);
479 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700480 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700481 fsopt->caps_wanted_delay_max);
482 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700483 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700484 fsopt->cap_release_safety);
485 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
486 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
487 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
488 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
489 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700490 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300491
Sage Weil6e19a162010-04-29 16:38:32 -0700492 return 0;
493}
494
495/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700496 * handle any mon messages the standard library doesn't understand.
497 * return error if we don't either.
498 */
499static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
500{
501 struct ceph_fs_client *fsc = client->private;
502 int type = le16_to_cpu(msg->hdr.type);
503
504 switch (type) {
505 case CEPH_MSG_MDS_MAP:
506 ceph_mdsc_handle_map(fsc->mdsc, msg);
507 return 0;
508
509 default:
510 return -1;
511 }
512}
513
514/*
515 * create a new fs client
516 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700517static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700518 struct ceph_options *opt)
519{
520 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200521 const u64 supported_features =
Yan, Zhengd463a432016-03-31 15:53:01 +0800522 CEPH_FEATURE_FLOCK | CEPH_FEATURE_DIRLAYOUTHASH |
523 CEPH_FEATURE_MDSENC | CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200524 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500525 int page_count;
526 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700527 int err = -ENOMEM;
528
529 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
530 if (!fsc)
531 return ERR_PTR(-ENOMEM);
532
Sage Weil6ab00d42011-08-09 09:41:59 -0700533 fsc->client = ceph_create_client(opt, fsc, supported_features,
534 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700535 if (IS_ERR(fsc->client)) {
536 err = PTR_ERR(fsc->client);
537 goto fail;
538 }
539 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yan, Zheng235a0982016-03-30 17:18:34 +0800540 fsc->client->monc.fs_cluster_id = fsopt->mds_namespace;
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100541 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP, 0, true);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700542
543 fsc->mount_options = fsopt;
544
545 fsc->sb = NULL;
546 fsc->mount_state = CEPH_MOUNT_MOUNTING;
547
548 atomic_long_set(&fsc->writeback_count, 0);
549
550 err = bdi_init(&fsc->backing_dev_info);
551 if (err < 0)
552 goto fail_client;
553
554 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100555 /*
556 * The number of concurrent works can be high but they don't need
557 * to be processed in parallel, limit concurrency.
558 */
559 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700560 if (fsc->wb_wq == NULL)
561 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100562 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700563 if (fsc->pg_inv_wq == NULL)
564 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100565 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700566 if (fsc->trunc_wq == NULL)
567 goto fail_pg_inv_wq;
568
569 /* set up mempools */
570 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300571 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500572 size = sizeof (struct page *) * (page_count ? page_count : 1);
573 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574 if (!fsc->wb_pagevec_pool)
575 goto fail_trunc_wq;
576
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400577 /* setup fscache */
578 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
579 (ceph_fscache_register_fs(fsc) != 0))
580 goto fail_fscache;
581
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700582 /* caps */
583 fsc->min_caps = fsopt->max_readdir;
584
585 return fsc;
586
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400587fail_fscache:
588 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700589fail_trunc_wq:
590 destroy_workqueue(fsc->trunc_wq);
591fail_pg_inv_wq:
592 destroy_workqueue(fsc->pg_inv_wq);
593fail_wb_wq:
594 destroy_workqueue(fsc->wb_wq);
595fail_bdi:
596 bdi_destroy(&fsc->backing_dev_info);
597fail_client:
598 ceph_destroy_client(fsc->client);
599fail:
600 kfree(fsc);
601 return ERR_PTR(err);
602}
603
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700604static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700605{
606 dout("destroy_fs_client %p\n", fsc);
607
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400608 ceph_fscache_unregister_fs(fsc);
609
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700610 destroy_workqueue(fsc->wb_wq);
611 destroy_workqueue(fsc->pg_inv_wq);
612 destroy_workqueue(fsc->trunc_wq);
613
614 bdi_destroy(&fsc->backing_dev_info);
615
616 mempool_destroy(fsc->wb_pagevec_pool);
617
618 destroy_mount_options(fsc->mount_options);
619
620 ceph_fs_debugfs_cleanup(fsc);
621
622 ceph_destroy_client(fsc->client);
623
624 kfree(fsc);
625 dout("destroy_fs_client %p done\n", fsc);
626}
627
628/*
Sage Weil6e19a162010-04-29 16:38:32 -0700629 * caches
630 */
631struct kmem_cache *ceph_inode_cachep;
632struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800633struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700634struct kmem_cache *ceph_dentry_cachep;
635struct kmem_cache *ceph_file_cachep;
636
637static void ceph_inode_init_once(void *foo)
638{
639 struct ceph_inode_info *ci = foo;
640 inode_init_once(&ci->vfs_inode);
641}
642
Sage Weil16725b92009-10-06 11:31:07 -0700643static int __init init_caches(void)
644{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400645 int error = -ENOMEM;
646
Sage Weil16725b92009-10-06 11:31:07 -0700647 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
648 sizeof(struct ceph_inode_info),
649 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800650 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
651 SLAB_ACCOUNT, ceph_inode_init_once);
Sage Weil16725b92009-10-06 11:31:07 -0700652 if (ceph_inode_cachep == NULL)
653 return -ENOMEM;
654
655 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
656 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
657 if (ceph_cap_cachep == NULL)
658 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800659 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
660 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
661 if (ceph_cap_flush_cachep == NULL)
662 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700663
664 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
665 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
666 if (ceph_dentry_cachep == NULL)
667 goto bad_dentry;
668
669 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
670 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
671 if (ceph_file_cachep == NULL)
672 goto bad_file;
673
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400674 if ((error = ceph_fscache_register()))
675 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700676
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400677 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700678bad_file:
679 kmem_cache_destroy(ceph_dentry_cachep);
680bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800681 kmem_cache_destroy(ceph_cap_flush_cachep);
682bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700683 kmem_cache_destroy(ceph_cap_cachep);
684bad_cap:
685 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400686 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700687}
688
689static void destroy_caches(void)
690{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000691 /*
692 * Make sure all delayed rcu free inodes are flushed before we
693 * destroy cache.
694 */
695 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400696
Sage Weil16725b92009-10-06 11:31:07 -0700697 kmem_cache_destroy(ceph_inode_cachep);
698 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800699 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700700 kmem_cache_destroy(ceph_dentry_cachep);
701 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400702
703 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700704}
705
706
707/*
708 * ceph_umount_begin - initiate forced umount. Tear down down the
709 * mount, skipping steps that may hang while waiting for server(s).
710 */
711static void ceph_umount_begin(struct super_block *sb)
712{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700713 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700714
715 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700716 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700717 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700718 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800719 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700720 return;
721}
722
723static const struct super_operations ceph_super_ops = {
724 .alloc_inode = ceph_alloc_inode,
725 .destroy_inode = ceph_destroy_inode,
726 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800727 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700728 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700729 .put_super = ceph_put_super,
730 .show_options = ceph_show_options,
731 .statfs = ceph_statfs,
732 .umount_begin = ceph_umount_begin,
733};
734
Sage Weil16725b92009-10-06 11:31:07 -0700735/*
736 * Bootstrap mount by opening the root directory. Note the mount
737 * @started time from caller, and time out if this takes too long.
738 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700739static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700740 const char *path,
741 unsigned long started)
742{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700743 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700744 struct ceph_mds_request *req = NULL;
745 int err;
746 struct dentry *root;
747
748 /* open dir */
749 dout("open_root_inode opening '%s'\n", path);
750 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
751 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200752 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700753 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400754 if (!req->r_path1) {
755 root = ERR_PTR(-ENOMEM);
756 goto out;
757 }
758
Sage Weil16725b92009-10-06 11:31:07 -0700759 req->r_ino1.ino = CEPH_INO_ROOT;
760 req->r_ino1.snap = CEPH_NOSNAP;
761 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300762 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700763 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
764 req->r_num_caps = 2;
765 err = ceph_mdsc_do_request(mdsc, NULL, req);
766 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500767 struct inode *inode = req->r_target_inode;
768 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700769 dout("open_root_inode success\n");
Al Viro3c5184e2012-01-09 16:34:32 -0500770 if (ceph_ino(inode) == CEPH_INO_ROOT &&
Sage Weil774ac212011-11-11 09:48:08 -0800771 fsc->sb->s_root == NULL) {
Al Viro48fde702012-01-08 22:15:13 -0500772 root = d_make_root(inode);
Al Viro3c5184e2012-01-09 16:34:32 -0500773 if (!root) {
Al Viro3c5184e2012-01-09 16:34:32 -0500774 root = ERR_PTR(-ENOMEM);
775 goto out;
776 }
Sage Weil774ac212011-11-11 09:48:08 -0800777 } else {
J. Bruce Fields1a0a3972014-02-14 17:35:37 -0500778 root = d_obtain_root(inode);
Sage Weil774ac212011-11-11 09:48:08 -0800779 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800780 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700781 dout("open_root_inode success, root dentry is %p\n", root);
782 } else {
783 root = ERR_PTR(err);
784 }
Al Viro3c5184e2012-01-09 16:34:32 -0500785out:
Sage Weil16725b92009-10-06 11:31:07 -0700786 ceph_mdsc_put_request(req);
787 return root;
788}
789
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700790
791
792
Sage Weil16725b92009-10-06 11:31:07 -0700793/*
794 * mount: join the ceph cluster, and open root directory.
795 */
Al Viroa7f9fb22010-07-26 16:17:55 +0400796static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700797 const char *path)
798{
Sage Weil16725b92009-10-06 11:31:07 -0700799 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700800 unsigned long started = jiffies; /* note the start time */
801 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700802 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700803
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800804 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700805 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700806
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800807 if (!fsc->sb->s_root) {
808 err = __ceph_open_session(fsc->client, started);
809 if (err < 0)
810 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700811
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800812 dout("mount opening root\n");
813 root = open_root_dentry(fsc, "", started);
814 if (IS_ERR(root)) {
815 err = PTR_ERR(root);
816 goto out;
817 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700818 fsc->sb->s_root = root;
819 first = 1;
820
821 err = ceph_fs_debugfs_init(fsc);
822 if (err < 0)
823 goto fail;
824 }
Sage Weil16725b92009-10-06 11:31:07 -0700825
826 if (path[0] == 0) {
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800827 root = fsc->sb->s_root;
Sage Weil16725b92009-10-06 11:31:07 -0700828 dget(root);
829 } else {
830 dout("mount opening base mountpoint\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700831 root = open_root_dentry(fsc, path, started);
Sage Weil16725b92009-10-06 11:31:07 -0700832 if (IS_ERR(root)) {
833 err = PTR_ERR(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700834 goto fail;
Sage Weil16725b92009-10-06 11:31:07 -0700835 }
836 }
837
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700838 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700839 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400840 mutex_unlock(&fsc->client->mount_mutex);
841 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700842
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700843fail:
844 if (first) {
845 dput(fsc->sb->s_root);
846 fsc->sb->s_root = NULL;
847 }
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800848out:
849 mutex_unlock(&fsc->client->mount_mutex);
850 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700851}
852
853static int ceph_set_super(struct super_block *s, void *data)
854{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700855 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700856 int ret;
857
858 dout("set_super %p data %p\n", s, data);
859
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700860 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700861 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
862
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800863 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700864 s->s_fs_info = fsc;
865 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700866
867 s->s_op = &ceph_super_ops;
868 s->s_export_op = &ceph_export_ops;
869
870 s->s_time_gran = 1000; /* 1000 ns == 1 us */
871
872 ret = set_anon_super(s, NULL); /* what is that second arg for? */
873 if (ret != 0)
874 goto fail;
875
876 return ret;
877
878fail:
879 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700880 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700881 return ret;
882}
883
884/*
885 * share superblock if same fs AND options
886 */
887static int ceph_compare_super(struct super_block *sb, void *data)
888{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700889 struct ceph_fs_client *new = data;
890 struct ceph_mount_options *fsopt = new->mount_options;
891 struct ceph_options *opt = new->client->options;
892 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700893
894 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700895
896 if (compare_mount_options(fsopt, opt, other)) {
897 dout("monitor(s)/mount options don't match\n");
898 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700899 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700900 if ((opt->flags & CEPH_OPT_FSID) &&
901 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
902 dout("fsid doesn't match\n");
903 return 0;
904 }
905 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700906 dout("flags differ\n");
907 return 0;
908 }
909 return 1;
910}
911
912/*
913 * construct our own bdi so we can control readahead, etc.
914 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400915static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700916
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700917static int ceph_register_bdi(struct super_block *sb,
918 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700919{
920 int err;
921
Sage Weil83817e32011-08-04 08:03:44 -0700922 /* set ra_pages based on rasize mount option? */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300923 if (fsc->mount_options->rasize >= PAGE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700924 fsc->backing_dev_info.ra_pages =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300925 (fsc->mount_options->rasize + PAGE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700926 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700927 else
928 fsc->backing_dev_info.ra_pages =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300929 VM_MAX_READAHEAD * 1024 / PAGE_SIZE;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700930
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600931 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -0700932 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700933 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700934 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700935 return err;
936}
937
Al Viroa7f9fb22010-07-26 16:17:55 +0400938static struct dentry *ceph_mount(struct file_system_type *fs_type,
939 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700940{
941 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700942 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400943 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700944 int err;
945 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800946 const char *path = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700947 struct ceph_mount_options *fsopt = NULL;
948 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700949
Al Viroa7f9fb22010-07-26 16:17:55 +0400950 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800951
952#ifdef CONFIG_CEPH_FS_POSIX_ACL
953 flags |= MS_POSIXACL;
954#endif
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700955 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name, &path);
Al Viroa7f9fb22010-07-26 16:17:55 +0400956 if (err < 0) {
957 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700958 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400959 }
Sage Weil16725b92009-10-06 11:31:07 -0700960
961 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700962 fsc = create_fs_client(fsopt, opt);
963 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400964 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -0600965 destroy_mount_options(fsopt);
966 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -0700967 goto out_final;
968 }
Sage Weil16725b92009-10-06 11:31:07 -0700969
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700970 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400971 if (err < 0) {
972 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700973 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +0400974 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700975
976 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -0700977 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +0100978 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700979 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400980 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700981 goto out;
982 }
983
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700984 if (ceph_sb_to_client(sb) != fsc) {
985 ceph_mdsc_destroy(fsc);
986 destroy_fs_client(fsc);
987 fsc = ceph_sb_to_client(sb);
988 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700989 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700990 dout("get_sb using new client %p\n", fsc);
991 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400992 if (err < 0) {
993 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700994 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400995 }
Sage Weil16725b92009-10-06 11:31:07 -0700996 }
997
Al Viroa7f9fb22010-07-26 16:17:55 +0400998 res = ceph_real_mount(fsc, path);
999 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001000 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001001 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001002 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001003 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001004
1005out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001006 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001007 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001008 goto out_final;
1009
1010out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001011 ceph_mdsc_destroy(fsc);
1012 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001013out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001014 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1015 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001016}
1017
1018static void ceph_kill_sb(struct super_block *s)
1019{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001020 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001021 dev_t dev = s->s_dev;
1022
Sage Weil16725b92009-10-06 11:31:07 -07001023 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001024
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001025 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001026 generic_shutdown_super(s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001027 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001028
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001029 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001030 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001031}
1032
1033static struct file_system_type ceph_fs_type = {
1034 .owner = THIS_MODULE,
1035 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001036 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001037 .kill_sb = ceph_kill_sb,
1038 .fs_flags = FS_RENAME_DOES_D_MOVE,
1039};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001040MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001041
Sage Weil16725b92009-10-06 11:31:07 -07001042static int __init init_ceph(void)
1043{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001044 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001045 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001046 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001047
Yan, Zhengeb13e832014-03-09 23:16:40 +08001048 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001049 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001050 ret = register_filesystem(&ceph_fs_type);
1051 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001052 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001053
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001054 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1055
Sage Weil16725b92009-10-06 11:31:07 -07001056 return 0;
1057
Yan, Zheng97c85a82014-11-06 15:09:41 +08001058out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001059 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001060 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001061out:
1062 return ret;
1063}
1064
1065static void __exit exit_ceph(void)
1066{
1067 dout("exit_ceph\n");
1068 unregister_filesystem(&ceph_fs_type);
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");