blob: fe9fbb3f13f7c7128c00e103888cbbd8d1136717 [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;
Douglas Fuller06d74372017-08-16 10:19:27 -040052 u64 data_pool;
53
54 if (fsc->mdsc->mdsmap->m_num_data_pg_pools == 1) {
55 data_pool = fsc->mdsc->mdsmap->m_data_pg_pools[0];
56 } else {
57 data_pool = CEPH_NOPOOL;
58 }
Sage Weil16725b92009-10-06 11:31:07 -070059
60 dout("statfs\n");
Douglas Fuller06d74372017-08-16 10:19:27 -040061 err = ceph_monc_do_statfs(&fsc->client->monc, data_pool, &st);
Sage Weil16725b92009-10-06 11:31:07 -070062 if (err < 0)
63 return err;
64
65 /* fill in kstatfs */
66 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
67
68 /*
69 * express utilization in terms of large blocks to avoid
70 * overflow on 32-bit machines.
Sage Weil92a49fb2013-02-22 15:31:00 -080071 *
72 * NOTE: for the time being, we make bsize == frsize to humor
73 * not-yet-ancient versions of glibc that are broken.
74 * Someday, we will probably want to report a real block
75 * size... whatever that may mean for a network file system!
Sage Weil16725b92009-10-06 11:31:07 -070076 */
77 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080078 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil16725b92009-10-06 11:31:07 -070079 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
Greg Farnum8f04d422011-07-26 11:26:54 -070080 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
Sage Weil16725b92009-10-06 11:31:07 -070081 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
82
83 buf->f_files = le64_to_cpu(st.num_objects);
84 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070085 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070086
Jeff Layton080a3302017-10-23 10:58:40 -040087 /* Must convert the fsid, for consistent values across arches */
88 fsid = le64_to_cpu(*(__le64 *)(&monmap->fsid)) ^
89 le64_to_cpu(*((__le64 *)&monmap->fsid + 1));
Sage Weil16725b92009-10-06 11:31:07 -070090 buf->f_fsid.val[0] = fsid & 0xffffffff;
91 buf->f_fsid.val[1] = fsid >> 32;
92
93 return 0;
94}
95
96
Sage Weil2d9c98a2010-07-30 09:38:13 -070097static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -070098{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070099 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700100
101 if (!wait) {
102 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700103 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700104 dout("sync_fs (non-blocking) done\n");
105 return 0;
106 }
107
108 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700109 ceph_osdc_sync(&fsc->client->osdc);
110 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700111 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700112 return 0;
113}
114
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700115/*
116 * mount options
117 */
118enum {
119 Opt_wsize,
120 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700121 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700122 Opt_caps_wanted_delay_min,
123 Opt_caps_wanted_delay_max,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700124 Opt_readdir_max_entries,
125 Opt_readdir_max_bytes,
126 Opt_congestion_kb,
127 Opt_last_int,
128 /* int args above */
129 Opt_snapdirname,
Yan, Zheng430afba2016-07-08 11:25:38 +0800130 Opt_mds_namespace,
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800131 Opt_fscache_uniq,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700132 Opt_last_string,
133 /* string args above */
134 Opt_dirstat,
135 Opt_nodirstat,
136 Opt_rbytes,
137 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600138 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700139 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800140 Opt_dcache,
141 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800142 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600143 Opt_noino32,
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400144 Opt_fscache,
Sage Weil45195e42014-02-16 10:05:29 -0800145 Opt_nofscache,
Yan, Zheng10183a62015-04-27 15:33:28 +0800146 Opt_poolperm,
147 Opt_nopoolperm,
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800148 Opt_require_active_mds,
149 Opt_norequire_active_mds,
Sage Weil45195e42014-02-16 10:05:29 -0800150#ifdef CONFIG_CEPH_FS_POSIX_ACL
151 Opt_acl,
152#endif
Yan, Zheng10183a62015-04-27 15:33:28 +0800153 Opt_noacl,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700154};
155
156static match_table_t fsopt_tokens = {
157 {Opt_wsize, "wsize=%d"},
158 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700159 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700160 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
161 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700162 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
163 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
164 {Opt_congestion_kb, "write_congestion_kb=%d"},
165 /* int args above */
166 {Opt_snapdirname, "snapdirname=%s"},
Yan, Zheng430afba2016-07-08 11:25:38 +0800167 {Opt_mds_namespace, "mds_namespace=%s"},
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800168 {Opt_fscache_uniq, "fsc=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700169 /* string args above */
170 {Opt_dirstat, "dirstat"},
171 {Opt_nodirstat, "nodirstat"},
172 {Opt_rbytes, "rbytes"},
173 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600174 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700175 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800176 {Opt_dcache, "dcache"},
177 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800178 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600179 {Opt_noino32, "noino32"},
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400180 {Opt_fscache, "fsc"},
181 {Opt_nofscache, "nofsc"},
Yan, Zheng10183a62015-04-27 15:33:28 +0800182 {Opt_poolperm, "poolperm"},
183 {Opt_nopoolperm, "nopoolperm"},
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800184 {Opt_require_active_mds, "require_active_mds"},
185 {Opt_norequire_active_mds, "norequire_active_mds"},
Sage Weil45195e42014-02-16 10:05:29 -0800186#ifdef CONFIG_CEPH_FS_POSIX_ACL
187 {Opt_acl, "acl"},
188#endif
189 {Opt_noacl, "noacl"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700190 {-1, NULL}
191};
192
193static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800194{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700195 struct ceph_mount_options *fsopt = private;
196 substring_t argstr[MAX_OPT_ARGS];
197 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800198
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700199 token = match_token((char *)c, fsopt_tokens, argstr);
200 if (token < 0)
201 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800202
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700203 if (token < Opt_last_int) {
204 ret = match_int(&argstr[0], &intval);
205 if (ret < 0) {
206 pr_err("bad mount option arg (not int) "
207 "at '%s'\n", c);
208 return ret;
209 }
210 dout("got int token %d val %d\n", token, intval);
211 } else if (token > Opt_last_int && token < Opt_last_string) {
212 dout("got string token %d val %s\n", token,
213 argstr[0].from);
214 } else {
215 dout("got token %d\n", token);
216 }
217
218 switch (token) {
219 case Opt_snapdirname:
220 kfree(fsopt->snapdir_name);
221 fsopt->snapdir_name = kstrndup(argstr[0].from,
222 argstr[0].to-argstr[0].from,
223 GFP_KERNEL);
224 if (!fsopt->snapdir_name)
225 return -ENOMEM;
226 break;
Yan, Zheng235a0982016-03-30 17:18:34 +0800227 case Opt_mds_namespace:
Yan, Zheng430afba2016-07-08 11:25:38 +0800228 fsopt->mds_namespace = kstrndup(argstr[0].from,
229 argstr[0].to-argstr[0].from,
230 GFP_KERNEL);
231 if (!fsopt->mds_namespace)
232 return -ENOMEM;
Yan, Zheng235a0982016-03-30 17:18:34 +0800233 break;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800234 case Opt_fscache_uniq:
235 fsopt->fscache_uniq = kstrndup(argstr[0].from,
236 argstr[0].to-argstr[0].from,
237 GFP_KERNEL);
238 if (!fsopt->fscache_uniq)
239 return -ENOMEM;
240 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
241 break;
Yan, Zheng430afba2016-07-08 11:25:38 +0800242 /* misc */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700243 case Opt_wsize:
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800244 if (intval < PAGE_SIZE || intval > CEPH_MAX_WRITE_SIZE)
245 return -EINVAL;
246 fsopt->wsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700247 break;
248 case Opt_rsize:
Yan, Zhengaa187922017-07-11 15:56:09 +0800249 if (intval < PAGE_SIZE || intval > CEPH_MAX_READ_SIZE)
250 return -EINVAL;
251 fsopt->rsize = ALIGN(intval, PAGE_SIZE);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700252 break;
Sage Weil83817e32011-08-04 08:03:44 -0700253 case Opt_rasize:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800254 if (intval < 0)
255 return -EINVAL;
256 fsopt->rasize = ALIGN(intval + PAGE_SIZE - 1, PAGE_SIZE);
Sage Weil83817e32011-08-04 08:03:44 -0700257 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700258 case Opt_caps_wanted_delay_min:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800259 if (intval < 1)
260 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700261 fsopt->caps_wanted_delay_min = intval;
262 break;
263 case Opt_caps_wanted_delay_max:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800264 if (intval < 1)
265 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700266 fsopt->caps_wanted_delay_max = intval;
267 break;
268 case Opt_readdir_max_entries:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800269 if (intval < 1)
270 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700271 fsopt->max_readdir = intval;
272 break;
273 case Opt_readdir_max_bytes:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800274 if (intval < PAGE_SIZE && intval != 0)
275 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700276 fsopt->max_readdir_bytes = intval;
277 break;
278 case Opt_congestion_kb:
Yan, Zheng4214fb12017-07-11 18:49:44 +0800279 if (intval < 1024) /* at least 1M */
280 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700281 fsopt->congestion_kb = intval;
282 break;
283 case Opt_dirstat:
284 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
285 break;
286 case Opt_nodirstat:
287 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
288 break;
289 case Opt_rbytes:
290 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
291 break;
292 case Opt_norbytes:
293 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
294 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600295 case Opt_asyncreaddir:
296 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
297 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700298 case Opt_noasyncreaddir:
299 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
300 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800301 case Opt_dcache:
302 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
303 break;
304 case Opt_nodcache:
305 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
306 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800307 case Opt_ino32:
308 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
309 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600310 case Opt_noino32:
311 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
312 break;
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400313 case Opt_fscache:
314 fsopt->flags |= CEPH_MOUNT_OPT_FSCACHE;
315 break;
316 case Opt_nofscache:
317 fsopt->flags &= ~CEPH_MOUNT_OPT_FSCACHE;
318 break;
Yan, Zheng10183a62015-04-27 15:33:28 +0800319 case Opt_poolperm:
320 fsopt->flags &= ~CEPH_MOUNT_OPT_NOPOOLPERM;
321 printk ("pool perm");
322 break;
323 case Opt_nopoolperm:
324 fsopt->flags |= CEPH_MOUNT_OPT_NOPOOLPERM;
325 break;
Yan, Zhenge9e427f2016-11-10 16:02:06 +0800326 case Opt_require_active_mds:
327 fsopt->flags &= ~CEPH_MOUNT_OPT_MOUNTWAIT;
328 break;
329 case Opt_norequire_active_mds:
330 fsopt->flags |= CEPH_MOUNT_OPT_MOUNTWAIT;
331 break;
Sage Weil45195e42014-02-16 10:05:29 -0800332#ifdef CONFIG_CEPH_FS_POSIX_ACL
333 case Opt_acl:
334 fsopt->sb_flags |= MS_POSIXACL;
335 break;
336#endif
337 case Opt_noacl:
338 fsopt->sb_flags &= ~MS_POSIXACL;
339 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700340 default:
341 BUG_ON(token);
342 }
343 return 0;
344}
345
346static void destroy_mount_options(struct ceph_mount_options *args)
347{
348 dout("destroy_mount_options %p\n", args);
349 kfree(args->snapdir_name);
Yan, Zheng430afba2016-07-08 11:25:38 +0800350 kfree(args->mds_namespace);
Yan, Zheng3f384952016-04-21 11:09:55 +0800351 kfree(args->server_path);
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800352 kfree(args->fscache_uniq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700353 kfree(args);
354}
355
356static int strcmp_null(const char *s1, const char *s2)
357{
358 if (!s1 && !s2)
359 return 0;
360 if (s1 && !s2)
361 return -1;
362 if (!s1 && s2)
363 return 1;
364 return strcmp(s1, s2);
365}
366
367static int compare_mount_options(struct ceph_mount_options *new_fsopt,
368 struct ceph_options *new_opt,
369 struct ceph_fs_client *fsc)
370{
371 struct ceph_mount_options *fsopt1 = new_fsopt;
372 struct ceph_mount_options *fsopt2 = fsc->mount_options;
373 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
374 int ret;
375
376 ret = memcmp(fsopt1, fsopt2, ofs);
377 if (ret)
378 return ret;
379
380 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
381 if (ret)
382 return ret;
Yan, Zheng430afba2016-07-08 11:25:38 +0800383 ret = strcmp_null(fsopt1->mds_namespace, fsopt2->mds_namespace);
384 if (ret)
385 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800386 ret = strcmp_null(fsopt1->server_path, fsopt2->server_path);
387 if (ret)
388 return ret;
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800389 ret = strcmp_null(fsopt1->fscache_uniq, fsopt2->fscache_uniq);
390 if (ret)
391 return ret;
Yan, Zheng3f384952016-04-21 11:09:55 +0800392
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700393 return ceph_compare_options(new_opt, fsc->client);
394}
395
396static int parse_mount_options(struct ceph_mount_options **pfsopt,
397 struct ceph_options **popt,
398 int flags, char *options,
Yan, Zheng3f384952016-04-21 11:09:55 +0800399 const char *dev_name)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700400{
401 struct ceph_mount_options *fsopt;
402 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700403 int err;
404
405 if (!dev_name || !*dev_name)
406 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700407
408 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
409 if (!fsopt)
410 return -ENOMEM;
411
412 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
413
Noah Watkins80db8be2011-08-22 13:49:23 -0600414 fsopt->sb_flags = flags;
415 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700416
Yan, Zheng95cca2b2017-07-11 17:34:46 +0800417 fsopt->wsize = CEPH_MAX_WRITE_SIZE;
Yan, Zhengaa187922017-07-11 15:56:09 +0800418 fsopt->rsize = CEPH_MAX_READ_SIZE;
Noah Watkins80db8be2011-08-22 13:49:23 -0600419 fsopt->rasize = CEPH_RASIZE_DEFAULT;
420 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400421 if (!fsopt->snapdir_name) {
422 err = -ENOMEM;
423 goto out;
424 }
425
Sage Weil50aac4f2011-01-18 07:59:40 -0800426 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
427 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600428 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
429 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
430 fsopt->congestion_kb = default_congestion_kb();
431
Alex Elderc98f5332012-08-09 10:33:26 -0700432 /*
433 * Distinguish the server list from the path in "dev_name".
434 * Internally we do not include the leading '/' in the path.
435 *
436 * "dev_name" will look like:
437 * <server_spec>[,<server_spec>...]:[<path>]
438 * where
439 * <server_spec> is <ip>[:<port>]
440 * <path> is optional, but if present must begin with '/'
441 */
442 dev_name_end = strchr(dev_name, '/');
443 if (dev_name_end) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800444 if (strlen(dev_name_end) > 1) {
445 fsopt->server_path = kstrdup(dev_name_end, GFP_KERNEL);
446 if (!fsopt->server_path) {
447 err = -ENOMEM;
448 goto out;
449 }
Yan, Zheng3f384952016-04-21 11:09:55 +0800450 }
Alex Elderc98f5332012-08-09 10:33:26 -0700451 } else {
Alex Elderc98f5332012-08-09 10:33:26 -0700452 dev_name_end = dev_name + strlen(dev_name);
Alex Elderc98f5332012-08-09 10:33:26 -0700453 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600454 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700455 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400456 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700457 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600458 dev_name);
459 goto out;
460 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700461 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yan, Zheng3f384952016-04-21 11:09:55 +0800462 if (fsopt->server_path)
463 dout("server path '%s'\n", fsopt->server_path);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700464
Alex Elderee577412012-01-24 10:08:36 -0600465 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700466 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600467 if (IS_ERR(*popt)) {
468 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700469 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600470 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700471
472 /* success */
473 *pfsopt = fsopt;
474 return 0;
475
476out:
477 destroy_mount_options(fsopt);
478 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800479}
480
Sage Weil6e19a162010-04-29 16:38:32 -0700481/**
482 * ceph_show_options - Show mount options in /proc/mounts
483 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500484 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700485 */
Al Viro34c80b12011-12-08 21:32:45 -0500486static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700487{
Al Viro34c80b12011-12-08 21:32:45 -0500488 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700489 struct ceph_mount_options *fsopt = fsc->mount_options;
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300490 size_t pos;
491 int ret;
Sage Weil6e19a162010-04-29 16:38:32 -0700492
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300493 /* a comma between MNT/MS and client options */
494 seq_putc(m, ',');
495 pos = m->count;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700496
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300497 ret = ceph_print_client_options(m, fsc->client);
498 if (ret)
499 return ret;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700500
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300501 /* retract our comma if no client options */
502 if (m->count == pos)
503 m->count--;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700504
505 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
506 seq_puts(m, ",dirstat");
Yan, Zheng133e9152016-01-25 10:44:33 +0800507 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES))
508 seq_puts(m, ",rbytes");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700509 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700510 seq_puts(m, ",noasyncreaddir");
Ilya Dryomovff7eeb82015-03-25 21:10:09 +0300511 if ((fsopt->flags & CEPH_MOUNT_OPT_DCACHE) == 0)
Sage Weila40dc6c2012-01-10 09:12:55 -0800512 seq_puts(m, ",nodcache");
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800513 if (fsopt->flags & CEPH_MOUNT_OPT_FSCACHE) {
514 if (fsopt->fscache_uniq)
515 seq_printf(m, ",fsc=%s", fsopt->fscache_uniq);
516 else
517 seq_puts(m, ",fsc");
518 }
Yan, Zheng10183a62015-04-27 15:33:28 +0800519 if (fsopt->flags & CEPH_MOUNT_OPT_NOPOOLPERM)
520 seq_puts(m, ",nopoolperm");
Sage Weil6e19a162010-04-29 16:38:32 -0700521
Sage Weil45195e42014-02-16 10:05:29 -0800522#ifdef CONFIG_CEPH_FS_POSIX_ACL
523 if (fsopt->sb_flags & MS_POSIXACL)
524 seq_puts(m, ",acl");
525 else
526 seq_puts(m, ",noacl");
527#endif
528
Yan, Zheng430afba2016-07-08 11:25:38 +0800529 if (fsopt->mds_namespace)
530 seq_printf(m, ",mds_namespace=%s", fsopt->mds_namespace);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700531 if (fsopt->wsize)
532 seq_printf(m, ",wsize=%d", fsopt->wsize);
Yan, Zhengaa187922017-07-11 15:56:09 +0800533 if (fsopt->rsize != CEPH_MAX_READ_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700534 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700535 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800536 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700537 if (fsopt->congestion_kb != default_congestion_kb())
538 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
539 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700540 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700541 fsopt->caps_wanted_delay_min);
542 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700543 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700544 fsopt->caps_wanted_delay_max);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700545 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
546 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
547 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
548 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
549 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
Kees Cooka068acf2015-09-04 15:44:57 -0700550 seq_show_option(m, "snapdirname", fsopt->snapdir_name);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300551
Sage Weil6e19a162010-04-29 16:38:32 -0700552 return 0;
553}
554
555/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700556 * handle any mon messages the standard library doesn't understand.
557 * return error if we don't either.
558 */
559static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
560{
561 struct ceph_fs_client *fsc = client->private;
562 int type = le16_to_cpu(msg->hdr.type);
563
564 switch (type) {
565 case CEPH_MSG_MDS_MAP:
Yan, Zheng430afba2016-07-08 11:25:38 +0800566 ceph_mdsc_handle_mdsmap(fsc->mdsc, msg);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700567 return 0;
Yan, Zheng430afba2016-07-08 11:25:38 +0800568 case CEPH_MSG_FS_MAP_USER:
569 ceph_mdsc_handle_fsmap(fsc->mdsc, msg);
570 return 0;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700571 default:
572 return -1;
573 }
574}
575
576/*
577 * create a new fs client
578 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700579static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700580 struct ceph_options *opt)
581{
582 struct ceph_fs_client *fsc;
Alex Elder3bf53332013-04-01 10:48:40 -0500583 int page_count;
584 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700585 int err = -ENOMEM;
586
587 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
588 if (!fsc)
589 return ERR_PTR(-ENOMEM);
590
Ilya Dryomov74da4a0f2017-03-03 18:16:07 +0100591 fsc->client = ceph_create_client(opt, fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700592 if (IS_ERR(fsc->client)) {
593 err = PTR_ERR(fsc->client);
594 goto fail;
595 }
596 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yan, Zheng430afba2016-07-08 11:25:38 +0800597
Markus Elfringd37b1d92017-08-20 20:22:02 +0200598 if (!fsopt->mds_namespace) {
Yan, Zheng430afba2016-07-08 11:25:38 +0800599 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_MDSMAP,
600 0, true);
601 } else {
602 ceph_monc_want_map(&fsc->client->monc, CEPH_SUB_FSMAP,
603 0, false);
604 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700605
606 fsc->mount_options = fsopt;
607
608 fsc->sb = NULL;
609 fsc->mount_state = CEPH_MOUNT_MOUNTING;
610
611 atomic_long_set(&fsc->writeback_count, 0);
612
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700613 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100614 /*
615 * The number of concurrent works can be high but they don't need
616 * to be processed in parallel, limit concurrency.
617 */
618 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200619 if (!fsc->wb_wq)
Jan Kara09dc9fc2017-04-12 12:24:33 +0200620 goto fail_client;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100621 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200622 if (!fsc->pg_inv_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700623 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100624 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200625 if (!fsc->trunc_wq)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700626 goto fail_pg_inv_wq;
627
628 /* set up mempools */
629 err = -ENOMEM;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300630 page_count = fsc->mount_options->wsize >> PAGE_SHIFT;
Alex Elder3bf53332013-04-01 10:48:40 -0500631 size = sizeof (struct page *) * (page_count ? page_count : 1);
632 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700633 if (!fsc->wb_pagevec_pool)
634 goto fail_trunc_wq;
635
636 /* caps */
637 fsc->min_caps = fsopt->max_readdir;
638
639 return fsc;
640
641fail_trunc_wq:
642 destroy_workqueue(fsc->trunc_wq);
643fail_pg_inv_wq:
644 destroy_workqueue(fsc->pg_inv_wq);
645fail_wb_wq:
646 destroy_workqueue(fsc->wb_wq);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700647fail_client:
648 ceph_destroy_client(fsc->client);
649fail:
650 kfree(fsc);
651 return ERR_PTR(err);
652}
653
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700654static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700655{
656 dout("destroy_fs_client %p\n", fsc);
657
658 destroy_workqueue(fsc->wb_wq);
659 destroy_workqueue(fsc->pg_inv_wq);
660 destroy_workqueue(fsc->trunc_wq);
661
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700662 mempool_destroy(fsc->wb_pagevec_pool);
663
664 destroy_mount_options(fsc->mount_options);
665
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700666 ceph_destroy_client(fsc->client);
667
668 kfree(fsc);
669 dout("destroy_fs_client %p done\n", fsc);
670}
671
672/*
Sage Weil6e19a162010-04-29 16:38:32 -0700673 * caches
674 */
675struct kmem_cache *ceph_inode_cachep;
676struct kmem_cache *ceph_cap_cachep;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800677struct kmem_cache *ceph_cap_flush_cachep;
Sage Weil6e19a162010-04-29 16:38:32 -0700678struct kmem_cache *ceph_dentry_cachep;
679struct kmem_cache *ceph_file_cachep;
680
681static void ceph_inode_init_once(void *foo)
682{
683 struct ceph_inode_info *ci = foo;
684 inode_init_once(&ci->vfs_inode);
685}
686
Sage Weil16725b92009-10-06 11:31:07 -0700687static int __init init_caches(void)
688{
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400689 int error = -ENOMEM;
690
Sage Weil16725b92009-10-06 11:31:07 -0700691 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
692 sizeof(struct ceph_inode_info),
693 __alignof__(struct ceph_inode_info),
Vladimir Davydov5d097052016-01-14 15:18:21 -0800694 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD|
695 SLAB_ACCOUNT, ceph_inode_init_once);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200696 if (!ceph_inode_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700697 return -ENOMEM;
698
699 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
700 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200701 if (!ceph_cap_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700702 goto bad_cap;
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800703 ceph_cap_flush_cachep = KMEM_CACHE(ceph_cap_flush,
704 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200705 if (!ceph_cap_flush_cachep)
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800706 goto bad_cap_flush;
Sage Weil16725b92009-10-06 11:31:07 -0700707
708 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
709 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
Markus Elfringd37b1d92017-08-20 20:22:02 +0200710 if (!ceph_dentry_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700711 goto bad_dentry;
712
Nikolay Borisov6b1a9a62016-07-25 20:12:13 +0300713 ceph_file_cachep = KMEM_CACHE(ceph_file_info, SLAB_MEM_SPREAD);
714
Markus Elfringd37b1d92017-08-20 20:22:02 +0200715 if (!ceph_file_cachep)
Sage Weil16725b92009-10-06 11:31:07 -0700716 goto bad_file;
717
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400718 if ((error = ceph_fscache_register()))
719 goto bad_file;
Sage Weil16725b92009-10-06 11:31:07 -0700720
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400721 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700722bad_file:
723 kmem_cache_destroy(ceph_dentry_cachep);
724bad_dentry:
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800725 kmem_cache_destroy(ceph_cap_flush_cachep);
726bad_cap_flush:
Sage Weil16725b92009-10-06 11:31:07 -0700727 kmem_cache_destroy(ceph_cap_cachep);
728bad_cap:
729 kmem_cache_destroy(ceph_inode_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400730 return error;
Sage Weil16725b92009-10-06 11:31:07 -0700731}
732
733static void destroy_caches(void)
734{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000735 /*
736 * Make sure all delayed rcu free inodes are flushed before we
737 * destroy cache.
738 */
739 rcu_barrier();
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400740
Sage Weil16725b92009-10-06 11:31:07 -0700741 kmem_cache_destroy(ceph_inode_cachep);
742 kmem_cache_destroy(ceph_cap_cachep);
Yan, Zhengf66fd9f2015-06-10 17:26:13 +0800743 kmem_cache_destroy(ceph_cap_flush_cachep);
Sage Weil16725b92009-10-06 11:31:07 -0700744 kmem_cache_destroy(ceph_dentry_cachep);
745 kmem_cache_destroy(ceph_file_cachep);
Milosz Tanski99ccbd22013-08-21 17:29:54 -0400746
747 ceph_fscache_unregister();
Sage Weil16725b92009-10-06 11:31:07 -0700748}
749
750
751/*
752 * ceph_umount_begin - initiate forced umount. Tear down down the
753 * mount, skipping steps that may hang while waiting for server(s).
754 */
755static void ceph_umount_begin(struct super_block *sb)
756{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700757 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700758
759 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700760 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700761 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700762 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Yan, Zheng48fec5d2015-07-01 16:27:46 +0800763 ceph_mdsc_force_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700764 return;
765}
766
767static const struct super_operations ceph_super_ops = {
768 .alloc_inode = ceph_alloc_inode,
769 .destroy_inode = ceph_destroy_inode,
770 .write_inode = ceph_write_inode,
Yan, Zheng9f12bd12013-09-20 19:55:31 +0800771 .drop_inode = ceph_drop_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700772 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700773 .put_super = ceph_put_super,
774 .show_options = ceph_show_options,
775 .statfs = ceph_statfs,
776 .umount_begin = ceph_umount_begin,
777};
778
Sage Weil16725b92009-10-06 11:31:07 -0700779/*
780 * Bootstrap mount by opening the root directory. Note the mount
781 * @started time from caller, and time out if this takes too long.
782 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700783static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700784 const char *path,
785 unsigned long started)
786{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700787 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700788 struct ceph_mds_request *req = NULL;
789 int err;
790 struct dentry *root;
791
792 /* open dir */
793 dout("open_root_inode opening '%s'\n", path);
794 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
795 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200796 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700797 req->r_path1 = kstrdup(path, GFP_NOFS);
Sanidhya Kashyapa149bb92015-03-21 12:54:58 -0400798 if (!req->r_path1) {
799 root = ERR_PTR(-ENOMEM);
800 goto out;
801 }
802
Sage Weil16725b92009-10-06 11:31:07 -0700803 req->r_ino1.ino = CEPH_INO_ROOT;
804 req->r_ino1.snap = CEPH_NOSNAP;
805 req->r_started = started;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300806 req->r_timeout = fsc->client->options->mount_timeout;
Sage Weil16725b92009-10-06 11:31:07 -0700807 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
808 req->r_num_caps = 2;
809 err = ceph_mdsc_do_request(mdsc, NULL, req);
810 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500811 struct inode *inode = req->r_target_inode;
812 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700813 dout("open_root_inode success\n");
Yan, Zhengce2728a2016-09-14 14:53:05 +0800814 root = d_make_root(inode);
815 if (!root) {
816 root = ERR_PTR(-ENOMEM);
817 goto out;
Sage Weil774ac212011-11-11 09:48:08 -0800818 }
Sage Weil16725b92009-10-06 11:31:07 -0700819 dout("open_root_inode success, root dentry is %p\n", root);
820 } else {
821 root = ERR_PTR(err);
822 }
Al Viro3c5184e2012-01-09 16:34:32 -0500823out:
Sage Weil16725b92009-10-06 11:31:07 -0700824 ceph_mdsc_put_request(req);
825 return root;
826}
827
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700828
829
830
Sage Weil16725b92009-10-06 11:31:07 -0700831/*
832 * mount: join the ceph cluster, and open root directory.
833 */
Yan, Zheng3f384952016-04-21 11:09:55 +0800834static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700835{
Sage Weil16725b92009-10-06 11:31:07 -0700836 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700837 unsigned long started = jiffies; /* note the start time */
838 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700839 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700840
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800841 dout("mount start %p\n", fsc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700842 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700843
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800844 if (!fsc->sb->s_root) {
Yan, Zhengce2728a2016-09-14 14:53:05 +0800845 const char *path;
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800846 err = __ceph_open_session(fsc->client, started);
847 if (err < 0)
848 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700849
Yan, Zheng1d8f8362017-06-27 11:57:56 +0800850 /* setup fscache */
851 if (fsc->mount_options->flags & CEPH_MOUNT_OPT_FSCACHE) {
852 err = ceph_fscache_register_fs(fsc);
853 if (err < 0)
854 goto out;
855 }
856
Yan, Zhengce2728a2016-09-14 14:53:05 +0800857 if (!fsc->mount_options->server_path) {
858 path = "";
859 dout("mount opening path \\t\n");
860 } else {
861 path = fsc->mount_options->server_path + 1;
862 dout("mount opening path %s\n", path);
863 }
864 root = open_root_dentry(fsc, path, started);
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800865 if (IS_ERR(root)) {
866 err = PTR_ERR(root);
867 goto out;
868 }
Yan, Zhengce2728a2016-09-14 14:53:05 +0800869 fsc->sb->s_root = dget(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700870 first = 1;
871
872 err = ceph_fs_debugfs_init(fsc);
873 if (err < 0)
874 goto fail;
Geert Uytterhoeven31ca5872016-10-13 17:15:37 +0200875 } else {
876 root = dget(fsc->sb->s_root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700877 }
Sage Weil16725b92009-10-06 11:31:07 -0700878
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700879 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700880 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400881 mutex_unlock(&fsc->client->mount_mutex);
882 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700883
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700884fail:
885 if (first) {
886 dput(fsc->sb->s_root);
887 fsc->sb->s_root = NULL;
888 }
Yan, Zheng132ca7e2016-03-12 13:20:48 +0800889out:
890 mutex_unlock(&fsc->client->mount_mutex);
891 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700892}
893
894static int ceph_set_super(struct super_block *s, void *data)
895{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700896 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700897 int ret;
898
899 dout("set_super %p data %p\n", s, data);
900
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700901 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700902 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
903
Guangliang Zhao7221fe42013-11-11 15:18:03 +0800904 s->s_xattr = ceph_xattr_handlers;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700905 s->s_fs_info = fsc;
906 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700907
908 s->s_op = &ceph_super_ops;
Al Viro18fc8ab2016-10-28 21:52:50 -0400909 s->s_d_op = &ceph_dentry_ops;
Sage Weil16725b92009-10-06 11:31:07 -0700910 s->s_export_op = &ceph_export_ops;
911
912 s->s_time_gran = 1000; /* 1000 ns == 1 us */
913
914 ret = set_anon_super(s, NULL); /* what is that second arg for? */
915 if (ret != 0)
916 goto fail;
917
918 return ret;
919
920fail:
921 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700922 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700923 return ret;
924}
925
926/*
927 * share superblock if same fs AND options
928 */
929static int ceph_compare_super(struct super_block *sb, void *data)
930{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700931 struct ceph_fs_client *new = data;
932 struct ceph_mount_options *fsopt = new->mount_options;
933 struct ceph_options *opt = new->client->options;
934 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700935
936 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700937
938 if (compare_mount_options(fsopt, opt, other)) {
939 dout("monitor(s)/mount options don't match\n");
940 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700941 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700942 if ((opt->flags & CEPH_OPT_FSID) &&
943 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
944 dout("fsid doesn't match\n");
945 return 0;
946 }
947 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700948 dout("flags differ\n");
949 return 0;
950 }
951 return 1;
952}
953
954/*
955 * construct our own bdi so we can control readahead, etc.
956 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400957static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700958
Jan Kara09dc9fc2017-04-12 12:24:33 +0200959static int ceph_setup_bdi(struct super_block *sb, struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700960{
961 int err;
962
Jan Kara09dc9fc2017-04-12 12:24:33 +0200963 err = super_setup_bdi_name(sb, "ceph-%ld",
964 atomic_long_inc_return(&bdi_seq));
965 if (err)
966 return err;
967
Sage Weil83817e32011-08-04 08:03:44 -0700968 /* set ra_pages based on rasize mount option? */
Yan, Zheng4214fb12017-07-11 18:49:44 +0800969 sb->s_bdi->ra_pages = fsc->mount_options->rasize >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700970
Yan, Zhengaa187922017-07-11 15:56:09 +0800971 /* set io_pages based on max osd read size */
972 sb->s_bdi->io_pages = fsc->mount_options->rsize >> PAGE_SHIFT;
Andreas Gerstmayr7c94ba22017-01-10 14:17:56 +0100973
Jan Kara09dc9fc2017-04-12 12:24:33 +0200974 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700975}
976
Al Viroa7f9fb22010-07-26 16:17:55 +0400977static struct dentry *ceph_mount(struct file_system_type *fs_type,
978 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700979{
980 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700981 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400982 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700983 int err;
984 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700985 struct ceph_mount_options *fsopt = NULL;
986 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700987
Al Viroa7f9fb22010-07-26 16:17:55 +0400988 dout("ceph_mount\n");
Sage Weil45195e42014-02-16 10:05:29 -0800989
990#ifdef CONFIG_CEPH_FS_POSIX_ACL
991 flags |= MS_POSIXACL;
992#endif
Yan, Zheng3f384952016-04-21 11:09:55 +0800993 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name);
Al Viroa7f9fb22010-07-26 16:17:55 +0400994 if (err < 0) {
995 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700996 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400997 }
Sage Weil16725b92009-10-06 11:31:07 -0700998
999 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001000 fsc = create_fs_client(fsopt, opt);
1001 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001002 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -06001003 destroy_mount_options(fsopt);
1004 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -07001005 goto out_final;
1006 }
Sage Weil16725b92009-10-06 11:31:07 -07001007
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001008 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001009 if (err < 0) {
1010 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001011 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +04001012 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001013
1014 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -07001015 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +01001016 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001017 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +04001018 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001019 goto out;
1020 }
1021
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001022 if (ceph_sb_to_client(sb) != fsc) {
1023 ceph_mdsc_destroy(fsc);
1024 destroy_fs_client(fsc);
1025 fsc = ceph_sb_to_client(sb);
1026 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001027 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001028 dout("get_sb using new client %p\n", fsc);
Jan Kara09dc9fc2017-04-12 12:24:33 +02001029 err = ceph_setup_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001030 if (err < 0) {
1031 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -07001032 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001033 }
Sage Weil16725b92009-10-06 11:31:07 -07001034 }
1035
Yan, Zheng3f384952016-04-21 11:09:55 +08001036 res = ceph_real_mount(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +04001037 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -07001038 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +04001039 dout("root %p inode %p ino %llx.%llx\n", res,
David Howells2b0143b2015-03-17 22:25:59 +00001040 d_inode(res), ceph_vinop(d_inode(res)));
Al Viroa7f9fb22010-07-26 16:17:55 +04001041 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001042
1043out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001044 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001045 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001046 goto out_final;
1047
1048out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001049 ceph_mdsc_destroy(fsc);
1050 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -07001051out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +04001052 dout("ceph_mount fail %ld\n", PTR_ERR(res));
1053 return res;
Sage Weil16725b92009-10-06 11:31:07 -07001054}
1055
1056static void ceph_kill_sb(struct super_block *s)
1057{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001058 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001059 dev_t dev = s->s_dev;
1060
Sage Weil16725b92009-10-06 11:31:07 -07001061 dout("kill_sb %p\n", s);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001062
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001063 ceph_mdsc_pre_umount(fsc->mdsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001064 generic_shutdown_super(s);
Yan, Zheng62a65f32017-06-22 16:26:34 +08001065
1066 fsc->client->extra_mon_dispatch = NULL;
1067 ceph_fs_debugfs_cleanup(fsc);
1068
Yan, Zheng1d8f8362017-06-27 11:57:56 +08001069 ceph_fscache_unregister_fs(fsc);
1070
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001071 ceph_mdsc_destroy(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001072
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001073 destroy_fs_client(fsc);
Christoph Hellwige4d27502015-01-14 10:42:38 +01001074 free_anon_bdev(dev);
Sage Weil16725b92009-10-06 11:31:07 -07001075}
1076
1077static struct file_system_type ceph_fs_type = {
1078 .owner = THIS_MODULE,
1079 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +04001080 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -07001081 .kill_sb = ceph_kill_sb,
1082 .fs_flags = FS_RENAME_DOES_D_MOVE,
1083};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001084MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -07001085
Sage Weil16725b92009-10-06 11:31:07 -07001086static int __init init_ceph(void)
1087{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001088 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001089 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001090 goto out;
Sage Weil16725b92009-10-06 11:31:07 -07001091
Yan, Zhengeb13e832014-03-09 23:16:40 +08001092 ceph_flock_init();
Alex Elder3ce6cd12012-01-23 15:49:28 -06001093 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -07001094 ret = register_filesystem(&ceph_fs_type);
1095 if (ret)
Ilya Dryomov34b759b2016-02-16 15:00:24 +01001096 goto out_xattr;
Sage Weil16725b92009-10-06 11:31:07 -07001097
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001098 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
1099
Sage Weil16725b92009-10-06 11:31:07 -07001100 return 0;
1101
Yan, Zheng97c85a82014-11-06 15:09:41 +08001102out_xattr:
Alex Elder3ce6cd12012-01-23 15:49:28 -06001103 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001104 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001105out:
1106 return ret;
1107}
1108
1109static void __exit exit_ceph(void)
1110{
1111 dout("exit_ceph\n");
1112 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -06001113 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -07001114 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -07001115}
1116
1117module_init(init_ceph);
1118module_exit(exit_ceph);
1119
1120MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1121MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1122MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1123MODULE_DESCRIPTION("Ceph filesystem for Linux");
1124MODULE_LICENSE("GPL");