blob: 20e62749bbb721fde4762b4c2f943f4fb0ba8602 [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
Sage Weil2d9c98a2010-07-30 09:38:13 -070088static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -070089{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070090 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -070091
92 if (!wait) {
93 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070094 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -070095 dout("sync_fs (non-blocking) done\n");
96 return 0;
97 }
98
99 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700100 ceph_osdc_sync(&fsc->client->osdc);
101 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700102 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700103 return 0;
104}
105
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700106/*
107 * mount options
108 */
109enum {
110 Opt_wsize,
111 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700112 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700113 Opt_caps_wanted_delay_min,
114 Opt_caps_wanted_delay_max,
115 Opt_cap_release_safety,
116 Opt_readdir_max_entries,
117 Opt_readdir_max_bytes,
118 Opt_congestion_kb,
119 Opt_last_int,
120 /* int args above */
121 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800122 Opt_mds_namespace,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700123 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"},
Yan, Zheng430afba2016-07-08 11:25:38 +0800157 {Opt_mds_namespace, "mds_namespace=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700158 /* string args above */
159 {Opt_dirstat, "dirstat"},
160 {Opt_nodirstat, "nodirstat"},
161 {Opt_rbytes, "rbytes"},
162 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600163 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700164 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800165 {Opt_dcache, "dcache"},
166 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800167 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600168 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400169 {Opt_fscache, "fsc"},
170 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800171 {Opt_poolperm, "poolperm"},
172 {Opt_nopoolperm, "nopoolperm"},
Sage Weil45195e42014-02-16 10:05:29 -0800173#ifdef CONFIG_CEPH_FS_POSIX_ACL
174 {Opt_acl, "acl"},
175#endif
176 {Opt_noacl, "noacl"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700177 {-1, NULL}
178};
179
180static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800181{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700182 struct ceph_mount_options *fsopt = private;
183 substring_t argstr[MAX_OPT_ARGS];
184 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800185
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700186 token = match_token((char *)c, fsopt_tokens, argstr);
187 if (token < 0)
188 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800189
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700190 if (token < Opt_last_int) {
191 ret = match_int(&argstr[0], &intval);
192 if (ret < 0) {
193 pr_err("bad mount option arg (not int) "
194 "at '%s'\n", c);
195 return ret;
196 }
197 dout("got int token %d val %d\n", token, intval);
198 } else if (token > Opt_last_int && token < Opt_last_string) {
199 dout("got string token %d val %s\n", token,
200 argstr[0].from);
201 } else {
202 dout("got token %d\n", token);
203 }
204
205 switch (token) {
206 case Opt_snapdirname:
207 kfree(fsopt->snapdir_name);
208 fsopt->snapdir_name = kstrndup(argstr[0].from,
209 argstr[0].to-argstr[0].from,
210 GFP_KERNEL);
211 if (!fsopt->snapdir_name)
212 return -ENOMEM;
213 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800214 case Opt_mds_namespace:
Yan, Zheng430afba2016-07-08 11:25:38 +0800215 fsopt->mds_namespace = kstrndup(argstr[0].from,
216 argstr[0].to-argstr[0].from,
217 GFP_KERNEL);
218 if (!fsopt->mds_namespace)
219 return -ENOMEM;
Yan, Zheng235a0982016-03-30 17:18:34 +0800220 break;
Yan, Zheng430afba2016-07-08 11:25:38 +0800221 /* misc */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700222 case Opt_wsize:
223 fsopt->wsize = intval;
224 break;
225 case Opt_rsize:
226 fsopt->rsize = intval;
227 break;
Sage Weil83817e32011-08-04 08:03:44 -0700228 case Opt_rasize:
229 fsopt->rasize = intval;
230 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700231 case Opt_caps_wanted_delay_min:
232 fsopt->caps_wanted_delay_min = intval;
233 break;
234 case Opt_caps_wanted_delay_max:
235 fsopt->caps_wanted_delay_max = intval;
236 break;
237 case Opt_readdir_max_entries:
238 fsopt->max_readdir = intval;
239 break;
240 case Opt_readdir_max_bytes:
241 fsopt->max_readdir_bytes = intval;
242 break;
243 case Opt_congestion_kb:
244 fsopt->congestion_kb = intval;
245 break;
246 case Opt_dirstat:
247 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
248 break;
249 case Opt_nodirstat:
250 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
251 break;
252 case Opt_rbytes:
253 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
254 break;
255 case Opt_norbytes:
256 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
257 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600258 case Opt_asyncreaddir:
259 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
260 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700261 case Opt_noasyncreaddir:
262 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
263 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800264 case Opt_dcache:
265 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
266 break;
267 case Opt_nodcache:
268 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
269 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800270 case Opt_ino32:
271 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
272 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600273 case Opt_noino32:
274 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
275 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400276 case Opt_fscache:
277 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
278 break;
279 case Opt_nofscache:
280 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
281 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800282 case Opt_poolperm:
283 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
284 printk ("pool perm");
285 break;
286 case Opt_nopoolperm:
287 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
288 break;
Sage Weil45195e42014-02-16 10:05:29 -0800289#ifdef CONFIG_CEPH_FS_POSIX_ACL
290 case Opt_acl:
291 fsopt->sb_flags |= MS_POSIXACL;
292 break;
293#endif
294 case Opt_noacl:
295 fsopt->sb_flags &= ~MS_POSIXACL;
296 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700297 default:
298 BUG_ON(token);
299 }
300 return 0;
301}
302
303static void destroy_mount_options(struct ceph_mount_options *args)
304{
305 dout("destroy_mount_options %p\n", args);
306 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800307 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800308 kfree(args->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700309 kfree(args);
310}
311
312static int strcmp_null(const char *s1, const char *s2)
313{
314 if (!s1 && !s2)
315 return 0;
316 if (s1 && !s2)
317 return -1;
318 if (!s1 && s2)
319 return 1;
320 return strcmp(s1, s2);
321}
322
Xiubo Li68d87662019-12-20 09:34:04 -0500323/**
324 * path_remove_extra_slash - Remove the extra slashes in the server path
325 * @server_path: the server path and could be NULL
326 *
327 * Return NULL if the path is NULL or only consists of "/", or a string
328 * without any extra slashes including the leading slash(es) and the
329 * slash(es) at the end of the server path, such as:
330 * "//dir1////dir2///" --> "dir1/dir2"
331 */
332static char *path_remove_extra_slash(const char *server_path)
333{
334 const char *path = server_path;
335 const char *cur, *end;
336 char *buf, *p;
337 int len;
338
339 /* if the server path is omitted */
340 if (!path)
341 return NULL;
342
343 /* remove all the leading slashes */
344 while (*path == '/')
345 path++;
346
347 /* if the server path only consists of slashes */
348 if (*path == '\0')
349 return NULL;
350
351 len = strlen(path);
352
353 buf = kmalloc(len + 1, GFP_KERNEL);
354 if (!buf)
355 return ERR_PTR(-ENOMEM);
356
357 end = path + len;
358 p = buf;
359 do {
360 cur = strchr(path, '/');
361 if (!cur)
362 cur = end;
363
364 len = cur - path;
365
366 /* including one '/' */
367 if (cur != end)
368 len += 1;
369
370 memcpy(p, path, len);
371 p += len;
372
373 while (cur <= end && *cur == '/')
374 cur++;
375 path = cur;
376 } while (path < end);
377
378 *p = '\0';
379
380 /*
381 * remove the last slash if there has and just to make sure that
382 * we will get something like "dir1/dir2"
383 */
384 if (*(--p) == '/')
385 *p = '\0';
386
387 return buf;
388}
389
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700390static int compare_mount_options(struct ceph_mount_options *new_fsopt,
391 struct ceph_options *new_opt,
392 struct ceph_fs_client *fsc)
393{
394 struct ceph_mount_options *fsopt1 = new_fsopt;
395 struct ceph_mount_options *fsopt2 = fsc->mount_options;
396 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
Xiubo Li68d87662019-12-20 09:34:04 -0500397 char *p1, *p2;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700398 int ret;
399
400 ret = memcmp(fsopt1, fsopt2, ofs);
401 if (ret)
402 return ret;
403
404 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
405 if (ret)
406 return ret;
Yan, Zheng430afba2016-07-08 11:25:38 +0800407 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
408 if (ret)
409 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700410
Xiubo Li68d87662019-12-20 09:34:04 -0500411 p1 = path_remove_extra_slash(fsopt1->server_path);
412 if (IS_ERR(p1))
413 return PTR_ERR(p1);
414 p2 = path_remove_extra_slash(fsopt2->server_path);
415 if (IS_ERR(p2)) {
416 kfree(p1);
417 return PTR_ERR(p2);
418 }
419 ret = strcmp_null(p1, p2);
420 kfree(p1);
421 kfree(p2);
Yan, Zheng3f384952016-04-21 11:09:55 +0800422 if (ret)
423 return ret;
424
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700425 return ceph_compare_options(new_opt, fsc->client);
426}
427
428static int parse_mount_options(struct ceph_mount_options **pfsopt,
429 struct ceph_options **popt,
430 int flags, char *options,
Yan, Zheng3f384952016-04-21 11:09:55 +0800431 const char *dev_name)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700432{
433 struct ceph_mount_options *fsopt;
434 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700435 int err;
436
437 if (!dev_name || !*dev_name)
438 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700439
440 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
441 if (!fsopt)
442 return -ENOMEM;
443
444 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
445
Noah Watkins80db8be2011-08-22 13:49:23 -0600446 fsopt->sb_flags = flags;
447 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700448
Noah Watkins80db8be2011-08-22 13:49:23 -0600449 fsopt->rsize = CEPH_RSIZE_DEFAULT;
450 fsopt->rasize = CEPH_RASIZE_DEFAULT;
451 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400452 if (!fsopt->snapdir_name) {
453 err = -ENOMEM;
454 goto out;
455 }
456
Sage Weil50aac4f2011-01-18 07:59:40 -0800457 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
458 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600459 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
460 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
461 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
462 fsopt->congestion_kb = default_congestion_kb();
463
Alex Elderc98f5332012-08-09 10:33:26 -0700464 /*
465 * Distinguish the server list from the path in "dev_name".
466 * Internally we do not include the leading '/' in the path.
467 *
468 * "dev_name" will look like:
469 * <server_spec>[,<server_spec>...]:[<path>]
470 * where
471 * <server_spec> is <ip>[:<port>]
472 * <path> is optional, but if present must begin with '/'
473 */
474 dev_name_end = strchr(dev_name, '/');
475 if (dev_name_end) {
Xiubo Li68d87662019-12-20 09:34:04 -0500476 /*
477 * The server_path will include the whole chars from userland
478 * including the leading '/'.
479 */
480 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
481 if (!fsopt->server_path) {
482 err = -ENOMEM;
483 goto out;
Yan, Zheng3f384952016-04-21 11:09:55 +0800484 }
Alex Elderc98f5332012-08-09 10:33:26 -0700485 } else {
Alex Elderc98f5332012-08-09 10:33:26 -0700486 dev_name_end = dev_name + strlen(dev_name);
Alex Elderc98f5332012-08-09 10:33:26 -0700487 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600488 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700489 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400490 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700491 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600492 dev_name);
493 goto out;
494 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700495 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yan, Zheng3f384952016-04-21 11:09:55 +0800496 if (fsopt->server_path)
497 dout("server path '%s'\n", fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700498
Alex Elderee577412012-01-24 10:08:36 -0600499 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700500 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600501 if (IS_ERR(*popt)) {
502 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700503 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600504 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700505
506 /* success */
507 *pfsopt = fsopt;
508 return 0;
509
510out:
511 destroy_mount_options(fsopt);
512 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800513}
514
Sage Weil6e19a162010-04-29 16:38:32 -0700515/**
516 * ceph_show_options - Show mount options in /proc/mounts
517 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500518 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700519 */
Al Viro34c80b12011-12-08 21:32:45 -0500520static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700521{
Al Viro34c80b12011-12-08 21:32:45 -0500522 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700523 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300524 size_t pos;
525 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700526
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300527 /* a comma between MNT/MS and client options */
528 seq_putc(m, ',');
529 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700530
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300531 ret = ceph_print_client_options(m, fsc->client);
532 if (ret)
533 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700534
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300535 /* retract our comma if no client options */
536 if (m->count == pos)
537 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700538
539 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
540 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800541 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
542 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700543 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700544 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300545 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800546 seq_puts(m, ",nodcache");
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400547 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE)
548 seq_puts(m, ",fsc");
Yan, Zheng10183a62015-04-27 15:33:28 +0800549 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
550 seq_puts(m, ",nopoolperm");
Sage Weil6e19a162010-04-29 16:38:32 -0700551
Sage Weil45195e42014-02-16 10:05:29 -0800552#ifdef CONFIG_CEPH_FS_POSIX_ACL
553 if (fsopt->sb_flags & MS_POSIXACL)
554 seq_puts(m, ",acl");
555 else
556 seq_puts(m, ",noacl");
557#endif
558
Yan, Zheng430afba2016-07-08 11:25:38 +0800559 if (fsopt->mds_namespace)
560 seq_printf(m, ",mds_namespace=%s", fsopt->mds_namespace);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700561 if (fsopt->wsize)
562 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800563 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700564 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700565 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800566 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700567 if (fsopt->congestion_kb != default_congestion_kb())
568 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
569 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700570 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700571 fsopt->caps_wanted_delay_min);
572 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700573 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574 fsopt->caps_wanted_delay_max);
575 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700576 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577 fsopt->cap_release_safety);
578 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
579 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
580 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
581 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
582 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700583 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300584
Sage Weil6e19a162010-04-29 16:38:32 -0700585 return 0;
586}
587
588/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700589 * handle any mon messages the standard library doesn't understand.
590 * return error if we don't either.
591 */
592static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
593{
594 struct ceph_fs_client *fsc = client->private;
595 int type = le16_to_cpu(msg->hdr.type);
596
597 switch (type) {
598 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800599 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700600 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800601 case CEPH_MSG_FS_MAP_USER:
602 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
603 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700604 default:
605 return -1;
606 }
607}
608
609/*
610 * create a new fs client
611 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700612static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700613 struct ceph_options *opt)
614{
615 struct ceph_fs_client *fsc;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200616 const u64 supported_features =
Yan, Zhengd463a432016-03-31 15:53:01 +0800617 CEPH_FEATURE_FLOCK | CEPH_FEATURE_DIRLAYOUTHASH |
618 CEPH_FEATURE_MDSENC | CEPH_FEATURE_MDS_INLINE_DATA;
Ilya Dryomov12b46292013-12-24 21:19:23 +0200619 const u64 required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500620 int page_count;
621 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700622 int err = -ENOMEM;
623
624 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
625 if (!fsc)
626 return ERR_PTR(-ENOMEM);
627
Sage Weil6ab00d42011-08-09 09:41:59 -0700628 fsc->client = ceph_create_client(opt, fsc, supported_features,
629 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700630 if (IS_ERR(fsc->client)) {
631 err = PTR_ERR(fsc->client);
632 goto fail;
633 }
634 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yan, Zheng430afba2016-07-08 11:25:38 +0800635
636 if (fsopt->mds_namespace == NULL) {
637 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
638 0, true);
639 } else {
640 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
641 0, false);
642 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700643
644 fsc->mount_options = fsopt;
645
646 fsc->sb = NULL;
647 fsc->mount_state = CEPH_MOUNT_MOUNTING;
648
649 atomic_long_set(&fsc->writeback_count, 0);
650
651 err = bdi_init(&fsc->backing_dev_info);
652 if (err < 0)
653 goto fail_client;
654
655 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100656 /*
657 * The number of concurrent works can be high but they don't need
658 * to be processed in parallel, limit concurrency.
659 */
660 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700661 if (fsc->wb_wq == NULL)
662 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100663 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700664 if (fsc->pg_inv_wq == NULL)
665 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100666 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700667 if (fsc->trunc_wq == NULL)
668 goto fail_pg_inv_wq;
669
670 /* set up mempools */
671 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300672 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500673 size = sizeof (struct page *) * (page_count ? page_count : 1);
674 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700675 if (!fsc->wb_pagevec_pool)
676 goto fail_trunc_wq;
677
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400678 /* setup fscache */
679 if ((fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) &&
680 (ceph_fscache_register_fs(fsc) != 0))
681 goto fail_fscache;
682
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700683 /* caps */
684 fsc->min_caps = fsopt->max_readdir;
685
686 return fsc;
687
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400688fail_fscache:
689 ceph_fscache_unregister_fs(fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700690fail_trunc_wq:
691 destroy_workqueue(fsc->trunc_wq);
692fail_pg_inv_wq:
693 destroy_workqueue(fsc->pg_inv_wq);
694fail_wb_wq:
695 destroy_workqueue(fsc->wb_wq);
696fail_bdi:
697 bdi_destroy(&fsc->backing_dev_info);
698fail_client:
699 ceph_destroy_client(fsc->client);
700fail:
701 kfree(fsc);
702 return ERR_PTR(err);
703}
704
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700705static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700706{
707 dout("destroy_fs_client %p\n", fsc);
708
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400709 ceph_fscache_unregister_fs(fsc);
710
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700711 destroy_workqueue(fsc->wb_wq);
712 destroy_workqueue(fsc->pg_inv_wq);
713 destroy_workqueue(fsc->trunc_wq);
714
715 bdi_destroy(&fsc->backing_dev_info);
716
717 mempool_destroy(fsc->wb_pagevec_pool);
718
719 destroy_mount_options(fsc->mount_options);
720
721 ceph_fs_debugfs_cleanup(fsc);
722
723 ceph_destroy_client(fsc->client);
724
725 kfree(fsc);
726 dout("destroy_fs_client %p done\n", fsc);
727}
728
729/*
Sage Weil6e19a162010-04-29 16:38:32 -0700730 * caches
731 */
732struct kmem_cache *ceph_inode_cachep;
733struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800734struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700735struct kmem_cache *ceph_dentry_cachep;
736struct kmem_cache *ceph_file_cachep;
737
738static void ceph_inode_init_once(void *foo)
739{
740 struct ceph_inode_info *ci = foo;
741 inode_init_once(&ci->vfs_inode);
742}
743
Sage Weil16725b92009-10-06 11:31:07 -0700744static int __init init_caches(void)
745{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400746 int error = -ENOMEM;
747
Sage Weil16725b92009-10-06 11:31:07 -0700748 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
749 sizeof(struct ceph_inode_info),
750 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800751 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
752 SLAB_ACCOUNT, ceph_inode_init_once);
Sage Weil16725b92009-10-06 11:31:07 -0700753 if (ceph_inode_cachep == NULL)
754 return -ENOMEM;
755
756 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
757 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
758 if (ceph_cap_cachep == NULL)
759 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800760 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
761 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
762 if (ceph_cap_flush_cachep == NULL)
763 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700764
765 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
766 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
767 if (ceph_dentry_cachep == NULL)
768 goto bad_dentry;
769
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300770 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
771
Sage Weil16725b92009-10-06 11:31:07 -0700772 if (ceph_file_cachep == NULL)
773 goto bad_file;
774
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400775 if ((error = ceph_fscache_register()))
776 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700777
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400778 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700779bad_file:
780 kmem_cache_destroy(ceph_dentry_cachep);
781bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800782 kmem_cache_destroy(ceph_cap_flush_cachep);
783bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700784 kmem_cache_destroy(ceph_cap_cachep);
785bad_cap:
786 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400787 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700788}
789
790static void destroy_caches(void)
791{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000792 /*
793 * Make sure all delayed rcu free inodes are flushed before we
794 * destroy cache.
795 */
796 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400797
Sage Weil16725b92009-10-06 11:31:07 -0700798 kmem_cache_destroy(ceph_inode_cachep);
799 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800800 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700801 kmem_cache_destroy(ceph_dentry_cachep);
802 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400803
804 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700805}
806
Sage Weil16725b92009-10-06 11:31:07 -0700807/*
808 * ceph_umount_begin - initiate forced umount. Tear down down the
809 * mount, skipping steps that may hang while waiting for server(s).
810 */
811static void ceph_umount_begin(struct super_block *sb)
812{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700813 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700814
815 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700816 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700817 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700818 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800819 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700820 return;
821}
822
Jeff Layton304902e2019-05-07 09:20:54 -0400823static int ceph_remount(struct super_block *sb, int *flags, char *data)
824{
825 sync_filesystem(sb);
826 return 0;
827}
828
Sage Weil16725b92009-10-06 11:31:07 -0700829static const struct super_operations ceph_super_ops = {
830 .alloc_inode = ceph_alloc_inode,
831 .destroy_inode = ceph_destroy_inode,
832 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800833 .drop_inode = ceph_drop_inode,
Yan, Zheng9a5530c2016-06-15 16:29:18 +0800834 .evict_inode = ceph_evict_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700835 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700836 .put_super = ceph_put_super,
Jeff Layton304902e2019-05-07 09:20:54 -0400837 .remount_fs = ceph_remount,
Sage Weil16725b92009-10-06 11:31:07 -0700838 .show_options = ceph_show_options,
839 .statfs = ceph_statfs,
840 .umount_begin = ceph_umount_begin,
841};
842
Sage Weil16725b92009-10-06 11:31:07 -0700843/*
844 * Bootstrap mount by opening the root directory. Note the mount
845 * @started time from caller, and time out if this takes too long.
846 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700847static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700848 const char *path,
849 unsigned long started)
850{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700851 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700852 struct ceph_mds_request *req = NULL;
853 int err;
854 struct dentry *root;
855
856 /* open dir */
857 dout("open_root_inode opening '%s'\n", path);
858 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
859 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200860 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700861 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400862 if (!req->r_path1) {
863 root = ERR_PTR(-ENOMEM);
864 goto out;
865 }
866
Sage Weil16725b92009-10-06 11:31:07 -0700867 req->r_ino1.ino = CEPH_INO_ROOT;
868 req->r_ino1.snap = CEPH_NOSNAP;
869 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300870 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700871 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
872 req->r_num_caps = 2;
873 err = ceph_mdsc_do_request(mdsc, NULL, req);
874 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500875 struct inode *inode = req->r_target_inode;
876 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700877 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800878 root = d_make_root(inode);
879 if (!root) {
880 root = ERR_PTR(-ENOMEM);
881 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800882 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800883 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700884 dout("open_root_inode success, root dentry is %p\n", root);
885 } else {
886 root = ERR_PTR(err);
887 }
Al Viro3c5184e2012-01-09 16:34:32 -0500888out:
Sage Weil16725b92009-10-06 11:31:07 -0700889 ceph_mdsc_put_request(req);
890 return root;
891}
892
893/*
894 * mount: join the ceph cluster, and open root directory.
895 */
Yan, Zheng3f384952016-04-21 11:09:55 +0800896static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700897{
Sage Weil16725b92009-10-06 11:31:07 -0700898 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700899 unsigned long started = jiffies; /* note the start time */
900 struct dentry *root;
901
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800902 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700903 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700904
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800905 if (!fsc->sb->s_root) {
Xiubo Li68d87662019-12-20 09:34:04 -0500906 const char *path, *p;
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800907 err = __ceph_open_session(fsc->client, started);
908 if (err < 0)
909 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700910
Xiubo Li68d87662019-12-20 09:34:04 -0500911 p = path_remove_extra_slash(fsc->mount_options->server_path);
912 if (IS_ERR(p)) {
913 err = PTR_ERR(p);
914 goto out;
Yan, Zhengce2728a2016-09-14 14:53:05 +0800915 }
Xiubo Li68d87662019-12-20 09:34:04 -0500916 /* if the server path is omitted or just consists of '/' */
917 if (!p)
918 path = "";
919 else
920 path = p;
921 dout("mount opening path '%s'\n", path);
Chengguang Xu087d2682018-02-09 20:40:59 +0800922
923 err = ceph_fs_debugfs_init(fsc);
924 if (err < 0)
925 goto out;
926
Yan, Zhengce2728a2016-09-14 14:53:05 +0800927 root = open_root_dentry(fsc, path, started);
Xiubo Li68d87662019-12-20 09:34:04 -0500928 kfree(p);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800929 if (IS_ERR(root)) {
930 err = PTR_ERR(root);
931 goto out;
932 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800933 fsc->sb->s_root = dget(root);
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200934 } else {
935 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700936 }
Sage Weil16725b92009-10-06 11:31:07 -0700937
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700938 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700939 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400940 mutex_unlock(&fsc->client->mount_mutex);
941 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700942
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800943out:
944 mutex_unlock(&fsc->client->mount_mutex);
945 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700946}
947
948static int ceph_set_super(struct super_block *s, void *data)
949{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700950 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700951 int ret;
952
953 dout("set_super %p data %p\n", s, data);
954
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700955 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700956 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
957
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800958 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700959 s->s_fs_info = fsc;
960 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700961
962 s->s_op = &ceph_super_ops;
963 s->s_export_op = &ceph_export_ops;
964
965 s->s_time_gran = 1000; /* 1000 ns == 1 us */
966
967 ret = set_anon_super(s, NULL); /* what is that second arg for? */
968 if (ret != 0)
969 goto fail;
970
971 return ret;
972
973fail:
974 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700975 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700976 return ret;
977}
978
979/*
980 * share superblock if same fs AND options
981 */
982static int ceph_compare_super(struct super_block *sb, void *data)
983{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700984 struct ceph_fs_client *new = data;
985 struct ceph_mount_options *fsopt = new->mount_options;
986 struct ceph_options *opt = new->client->options;
987 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700988
989 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700990
991 if (compare_mount_options(fsopt, opt, other)) {
992 dout("monitor(s)/mount options don't match\n");
993 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700994 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700995 if ((opt->flags & CEPH_OPT_FSID) &&
996 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
997 dout("fsid doesn't match\n");
998 return 0;
999 }
1000 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -07001001 dout("flags differ\n");
1002 return 0;
1003 }
1004 return 1;
1005}
1006
1007/*
1008 * construct our own bdi so we can control readahead, etc.
1009 */
Jeff Mahoney00d56432010-06-10 11:13:58 -04001010static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -07001011
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001012static int ceph_register_bdi(struct super_block *sb,
1013 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -07001014{
1015 int err;
1016
Sage Weil83817e32011-08-04 08:03:44 -07001017 /* set ra_pages based on rasize mount option? */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001018 if (fsc->mount_options->rasize >= PAGE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001019 fsc->backing_dev_info.ra_pages =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001020 (fsc->mount_options->rasize + PAGE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -07001021 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001022 else
1023 fsc->backing_dev_info.ra_pages =
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001024 VM_MAX_READAHEAD * 1024 / PAGE_SIZE;
Yehuda Sadehe9852222011-07-22 11:12:28 -07001025
Joe Perchesd2cc4dd2012-11-29 08:37:03 -06001026 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -07001027 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -07001028 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001029 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -07001030 return err;
1031}
1032
Al Viroa7f9fb22010-07-26 16:17:55 +04001033static struct dentry *ceph_mount(struct file_system_type *fs_type,
1034 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -07001035{
1036 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001037 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +04001038 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -07001039 int err;
1040 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001041 struct ceph_mount_options *fsopt = NULL;
1042 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -07001043
Al Viroa7f9fb22010-07-26 16:17:55 +04001044 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -08001045
1046#ifdef CONFIG_CEPH_FS_POSIX_ACL
1047 flags |= MS_POSIXACL;
1048#endif
Yan, Zheng3f384952016-04-21 11:09:55 +08001049 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name);
Al Viroa7f9fb22010-07-26 16:17:55 +04001050 if (err < 0) {
1051 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -07001052 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +04001053 }
Sage Weil16725b92009-10-06 11:31:07 -07001054
1055 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001056 fsc = create_fs_client(fsopt, opt);
1057 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001058 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -06001059 destroy_mount_options(fsopt);
1060 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -07001061 goto out_final;
1062 }
Sage Weil16725b92009-10-06 11:31:07 -07001063
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001064 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001065 if (err < 0) {
1066 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001067 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +04001068 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001069
1070 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001071 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +01001072 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001073 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001074 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001075 goto out;
1076 }
1077
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001078 if (ceph_sb_to_client(sb) != fsc) {
1079 ceph_mdsc_destroy(fsc);
1080 destroy_fs_client(fsc);
1081 fsc = ceph_sb_to_client(sb);
1082 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001083 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001084 dout("get_sb using new client %p\n", fsc);
1085 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001086 if (err < 0) {
1087 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001088 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001089 }
Sage Weil16725b92009-10-06 11:31:07 -07001090 }
1091
Yan, Zheng3f384952016-04-21 11:09:55 +08001092 res = ceph_real_mount(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001093 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001094 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001095 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001096 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001097 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001098
1099out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001100 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001101 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001102 goto out_final;
1103
1104out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001105 ceph_mdsc_destroy(fsc);
1106 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001107out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001108 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1109 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001110}
1111
1112static void ceph_kill_sb(struct super_block *s)
1113{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001114 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001115 dev_t dev = s->s_dev;
1116
Sage Weil16725b92009-10-06 11:31:07 -07001117 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001118
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001119 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001120 generic_shutdown_super(s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001121 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001122
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001123 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001124 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001125}
1126
1127static struct file_system_type ceph_fs_type = {
1128 .owner = THIS_MODULE,
1129 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001130 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001131 .kill_sb = ceph_kill_sb,
1132 .fs_flags = FS_RENAME_DOES_D_MOVE,
1133};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001134MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001135
Sage Weil16725b92009-10-06 11:31:07 -07001136static int __init init_ceph(void)
1137{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001138 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001139 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001140 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001141
Yan, Zhengeb13e832014-03-09 23:16:40 +08001142 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001143 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001144 ret = register_filesystem(&ceph_fs_type);
1145 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001146 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001147
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001148 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1149
Sage Weil16725b92009-10-06 11:31:07 -07001150 return 0;
1151
Yan, Zheng97c85a82014-11-06 15:09:41 +08001152out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001153 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001154 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001155out:
1156 return ret;
1157}
1158
1159static void __exit exit_ceph(void)
1160{
1161 dout("exit_ceph\n");
1162 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -06001163 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001164 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001165}
1166
1167module_init(init_ceph);
1168module_exit(exit_ceph);
1169
1170MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1171MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1172MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1173MODULE_DESCRIPTION("Ceph filesystem for Linux");
1174MODULE_LICENSE("GPL");