blob: 6627b26a800ca0e74649ecf439076bb9c6a4b095 [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"
20
Sage Weil1fe60e52012-07-30 16:23:22 -070021#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070022#include <linux/ceph/decode.h>
23#include <linux/ceph/mon_client.h>
24#include <linux/ceph/auth.h>
25#include <linux/ceph/debugfs.h>
Sage Weil16725b92009-10-06 11:31:07 -070026
27/*
28 * Ceph superblock operations
29 *
30 * Handle the basics of mounting, unmounting.
31 */
32
Sage Weil16725b92009-10-06 11:31:07 -070033/*
34 * super ops
35 */
36static void ceph_put_super(struct super_block *s)
37{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070038 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -070039
40 dout("put_super\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070041 ceph_mdsc_close_sessions(fsc->mdsc);
Sage Weil5dfc5892010-05-04 16:14:46 -070042
43 /*
44 * ensure we release the bdi before put_anon_super releases
45 * the device name.
46 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070047 if (s->s_bdi == &fsc->backing_dev_info) {
48 bdi_unregister(&fsc->backing_dev_info);
Sage Weil5dfc5892010-05-04 16:14:46 -070049 s->s_bdi = NULL;
50 }
51
Sage Weil16725b92009-10-06 11:31:07 -070052 return;
53}
54
55static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
56{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070057 struct ceph_fs_client *fsc = ceph_inode_to_client(dentry->d_inode);
58 struct ceph_monmap *monmap = fsc->client->monc.monmap;
Sage Weil16725b92009-10-06 11:31:07 -070059 struct ceph_statfs st;
60 u64 fsid;
61 int err;
62
63 dout("statfs\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070064 err = ceph_monc_do_statfs(&fsc->client->monc, &st);
Sage Weil16725b92009-10-06 11:31:07 -070065 if (err < 0)
66 return err;
67
68 /* fill in kstatfs */
69 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
70
71 /*
72 * express utilization in terms of large blocks to avoid
73 * overflow on 32-bit machines.
Sage Weil92a49fb2013-02-22 15:31:00 -080074 *
75 * NOTE: for the time being, we make bsize == frsize to humor
76 * not-yet-ancient versions of glibc that are broken.
77 * Someday, we will probably want to report a real block
78 * size... whatever that may mean for a network file system!
Sage Weil16725b92009-10-06 11:31:07 -070079 */
80 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil92a49fb2013-02-22 15:31:00 -080081 buf->f_frsize = 1 << CEPH_BLOCK_SHIFT;
Sage Weil16725b92009-10-06 11:31:07 -070082 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
Greg Farnum8f04d422011-07-26 11:26:54 -070083 buf->f_bfree = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
Sage Weil16725b92009-10-06 11:31:07 -070084 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
85
86 buf->f_files = le64_to_cpu(st.num_objects);
87 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070088 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070089
90 /* leave fsid little-endian, regardless of host endianness */
91 fsid = *(u64 *)(&monmap->fsid) ^ *((u64 *)&monmap->fsid + 1);
92 buf->f_fsid.val[0] = fsid & 0xffffffff;
93 buf->f_fsid.val[1] = fsid >> 32;
94
95 return 0;
96}
97
98
Sage Weil2d9c98a2010-07-30 09:38:13 -070099static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700100{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700101 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700102
103 if (!wait) {
104 dout("sync_fs (non-blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700105 ceph_flush_dirty_caps(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700106 dout("sync_fs (non-blocking) done\n");
107 return 0;
108 }
109
110 dout("sync_fs (blocking)\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700111 ceph_osdc_sync(&fsc->client->osdc);
112 ceph_mdsc_sync(fsc->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700113 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700114 return 0;
115}
116
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700117/*
118 * mount options
119 */
120enum {
121 Opt_wsize,
122 Opt_rsize,
Sage Weil83817e32011-08-04 08:03:44 -0700123 Opt_rasize,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700124 Opt_caps_wanted_delay_min,
125 Opt_caps_wanted_delay_max,
126 Opt_cap_release_safety,
127 Opt_readdir_max_entries,
128 Opt_readdir_max_bytes,
129 Opt_congestion_kb,
130 Opt_last_int,
131 /* int args above */
132 Opt_snapdirname,
133 Opt_last_string,
134 /* string args above */
135 Opt_dirstat,
136 Opt_nodirstat,
137 Opt_rbytes,
138 Opt_norbytes,
Alex Eldercffaba12012-02-15 07:43:54 -0600139 Opt_asyncreaddir,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700140 Opt_noasyncreaddir,
Sage Weila40dc6c2012-01-10 09:12:55 -0800141 Opt_dcache,
142 Opt_nodcache,
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800143 Opt_ino32,
Alex Eldercffaba12012-02-15 07:43:54 -0600144 Opt_noino32,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700145};
146
147static match_table_t fsopt_tokens = {
148 {Opt_wsize, "wsize=%d"},
149 {Opt_rsize, "rsize=%d"},
Sage Weil83817e32011-08-04 08:03:44 -0700150 {Opt_rasize, "rasize=%d"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700151 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
152 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
153 {Opt_cap_release_safety, "cap_release_safety=%d"},
154 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
155 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
156 {Opt_congestion_kb, "write_congestion_kb=%d"},
157 /* int args above */
158 {Opt_snapdirname, "snapdirname=%s"},
159 /* string args above */
160 {Opt_dirstat, "dirstat"},
161 {Opt_nodirstat, "nodirstat"},
162 {Opt_rbytes, "rbytes"},
163 {Opt_norbytes, "norbytes"},
Alex Eldercffaba12012-02-15 07:43:54 -0600164 {Opt_asyncreaddir, "asyncreaddir"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700165 {Opt_noasyncreaddir, "noasyncreaddir"},
Sage Weila40dc6c2012-01-10 09:12:55 -0800166 {Opt_dcache, "dcache"},
167 {Opt_nodcache, "nodcache"},
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800168 {Opt_ino32, "ino32"},
Alex Eldercffaba12012-02-15 07:43:54 -0600169 {Opt_noino32, "noino32"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700170 {-1, NULL}
171};
172
173static int parse_fsopt_token(char *c, void *private)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800174{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700175 struct ceph_mount_options *fsopt = private;
176 substring_t argstr[MAX_OPT_ARGS];
177 int token, intval, ret;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800178
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700179 token = match_token((char *)c, fsopt_tokens, argstr);
180 if (token < 0)
181 return -EINVAL;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800182
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700183 if (token < Opt_last_int) {
184 ret = match_int(&argstr[0], &intval);
185 if (ret < 0) {
186 pr_err("bad mount option arg (not int) "
187 "at '%s'\n", c);
188 return ret;
189 }
190 dout("got int token %d val %d\n", token, intval);
191 } else if (token > Opt_last_int && token < Opt_last_string) {
192 dout("got string token %d val %s\n", token,
193 argstr[0].from);
194 } else {
195 dout("got token %d\n", token);
196 }
197
198 switch (token) {
199 case Opt_snapdirname:
200 kfree(fsopt->snapdir_name);
201 fsopt->snapdir_name = kstrndup(argstr[0].from,
202 argstr[0].to-argstr[0].from,
203 GFP_KERNEL);
204 if (!fsopt->snapdir_name)
205 return -ENOMEM;
206 break;
207
208 /* misc */
209 case Opt_wsize:
210 fsopt->wsize = intval;
211 break;
212 case Opt_rsize:
213 fsopt->rsize = intval;
214 break;
Sage Weil83817e32011-08-04 08:03:44 -0700215 case Opt_rasize:
216 fsopt->rasize = intval;
217 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700218 case Opt_caps_wanted_delay_min:
219 fsopt->caps_wanted_delay_min = intval;
220 break;
221 case Opt_caps_wanted_delay_max:
222 fsopt->caps_wanted_delay_max = intval;
223 break;
224 case Opt_readdir_max_entries:
225 fsopt->max_readdir = intval;
226 break;
227 case Opt_readdir_max_bytes:
228 fsopt->max_readdir_bytes = intval;
229 break;
230 case Opt_congestion_kb:
231 fsopt->congestion_kb = intval;
232 break;
233 case Opt_dirstat:
234 fsopt->flags |= CEPH_MOUNT_OPT_DIRSTAT;
235 break;
236 case Opt_nodirstat:
237 fsopt->flags &= ~CEPH_MOUNT_OPT_DIRSTAT;
238 break;
239 case Opt_rbytes:
240 fsopt->flags |= CEPH_MOUNT_OPT_RBYTES;
241 break;
242 case Opt_norbytes:
243 fsopt->flags &= ~CEPH_MOUNT_OPT_RBYTES;
244 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600245 case Opt_asyncreaddir:
246 fsopt->flags &= ~CEPH_MOUNT_OPT_NOASYNCREADDIR;
247 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700248 case Opt_noasyncreaddir:
249 fsopt->flags |= CEPH_MOUNT_OPT_NOASYNCREADDIR;
250 break;
Sage Weila40dc6c2012-01-10 09:12:55 -0800251 case Opt_dcache:
252 fsopt->flags |= CEPH_MOUNT_OPT_DCACHE;
253 break;
254 case Opt_nodcache:
255 fsopt->flags &= ~CEPH_MOUNT_OPT_DCACHE;
256 break;
Yehuda Sadehad1fee92011-01-21 16:44:03 -0800257 case Opt_ino32:
258 fsopt->flags |= CEPH_MOUNT_OPT_INO32;
259 break;
Alex Eldercffaba12012-02-15 07:43:54 -0600260 case Opt_noino32:
261 fsopt->flags &= ~CEPH_MOUNT_OPT_INO32;
262 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700263 default:
264 BUG_ON(token);
265 }
266 return 0;
267}
268
269static void destroy_mount_options(struct ceph_mount_options *args)
270{
271 dout("destroy_mount_options %p\n", args);
272 kfree(args->snapdir_name);
273 kfree(args);
274}
275
276static int strcmp_null(const char *s1, const char *s2)
277{
278 if (!s1 && !s2)
279 return 0;
280 if (s1 && !s2)
281 return -1;
282 if (!s1 && s2)
283 return 1;
284 return strcmp(s1, s2);
285}
286
287static int compare_mount_options(struct ceph_mount_options *new_fsopt,
288 struct ceph_options *new_opt,
289 struct ceph_fs_client *fsc)
290{
291 struct ceph_mount_options *fsopt1 = new_fsopt;
292 struct ceph_mount_options *fsopt2 = fsc->mount_options;
293 int ofs = offsetof(struct ceph_mount_options, snapdir_name);
294 int ret;
295
296 ret = memcmp(fsopt1, fsopt2, ofs);
297 if (ret)
298 return ret;
299
300 ret = strcmp_null(fsopt1->snapdir_name, fsopt2->snapdir_name);
301 if (ret)
302 return ret;
303
304 return ceph_compare_options(new_opt, fsc->client);
305}
306
307static int parse_mount_options(struct ceph_mount_options **pfsopt,
308 struct ceph_options **popt,
309 int flags, char *options,
310 const char *dev_name,
311 const char **path)
312{
313 struct ceph_mount_options *fsopt;
314 const char *dev_name_end;
Alex Elderc98f5332012-08-09 10:33:26 -0700315 int err;
316
317 if (!dev_name || !*dev_name)
318 return -EINVAL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700319
320 fsopt = kzalloc(sizeof(*fsopt), GFP_KERNEL);
321 if (!fsopt)
322 return -ENOMEM;
323
324 dout("parse_mount_options %p, dev_name '%s'\n", fsopt, dev_name);
325
Noah Watkins80db8be2011-08-22 13:49:23 -0600326 fsopt->sb_flags = flags;
327 fsopt->flags = CEPH_MOUNT_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700328
Noah Watkins80db8be2011-08-22 13:49:23 -0600329 fsopt->rsize = CEPH_RSIZE_DEFAULT;
330 fsopt->rasize = CEPH_RASIZE_DEFAULT;
331 fsopt->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sage Weil50aac4f2011-01-18 07:59:40 -0800332 fsopt->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
333 fsopt->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Noah Watkins80db8be2011-08-22 13:49:23 -0600334 fsopt->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
335 fsopt->max_readdir = CEPH_MAX_READDIR_DEFAULT;
336 fsopt->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
337 fsopt->congestion_kb = default_congestion_kb();
338
Alex Elderc98f5332012-08-09 10:33:26 -0700339 /*
340 * Distinguish the server list from the path in "dev_name".
341 * Internally we do not include the leading '/' in the path.
342 *
343 * "dev_name" will look like:
344 * <server_spec>[,<server_spec>...]:[<path>]
345 * where
346 * <server_spec> is <ip>[:<port>]
347 * <path> is optional, but if present must begin with '/'
348 */
349 dev_name_end = strchr(dev_name, '/');
350 if (dev_name_end) {
351 /* skip over leading '/' for path */
352 *path = dev_name_end + 1;
353 } else {
354 /* path is empty */
355 dev_name_end = dev_name + strlen(dev_name);
356 *path = dev_name_end;
357 }
Noah Watkins80db8be2011-08-22 13:49:23 -0600358 err = -EINVAL;
Alex Elderc98f5332012-08-09 10:33:26 -0700359 dev_name_end--; /* back up to ':' separator */
Sasha Levin54464292013-07-01 18:33:39 -0400360 if (dev_name_end < dev_name || *dev_name_end != ':') {
Alex Elderc98f5332012-08-09 10:33:26 -0700361 pr_err("device name is missing path (no : separator in %s)\n",
Noah Watkins80db8be2011-08-22 13:49:23 -0600362 dev_name);
363 goto out;
364 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700365 dout("device name '%.*s'\n", (int)(dev_name_end - dev_name), dev_name);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700366 dout("server path '%s'\n", *path);
367
Alex Elderee577412012-01-24 10:08:36 -0600368 *popt = ceph_parse_options(options, dev_name, dev_name_end,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700369 parse_fsopt_token, (void *)fsopt);
Alex Elderee577412012-01-24 10:08:36 -0600370 if (IS_ERR(*popt)) {
371 err = PTR_ERR(*popt);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700372 goto out;
Alex Elderee577412012-01-24 10:08:36 -0600373 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700374
375 /* success */
376 *pfsopt = fsopt;
377 return 0;
378
379out:
380 destroy_mount_options(fsopt);
381 return err;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800382}
383
Sage Weil6e19a162010-04-29 16:38:32 -0700384/**
385 * ceph_show_options - Show mount options in /proc/mounts
386 * @m: seq_file to write to
Al Viro34c80b12011-12-08 21:32:45 -0500387 * @root: root of that (sub)tree
Sage Weil6e19a162010-04-29 16:38:32 -0700388 */
Al Viro34c80b12011-12-08 21:32:45 -0500389static int ceph_show_options(struct seq_file *m, struct dentry *root)
Sage Weil6e19a162010-04-29 16:38:32 -0700390{
Al Viro34c80b12011-12-08 21:32:45 -0500391 struct ceph_fs_client *fsc = ceph_sb_to_client(root->d_sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700392 struct ceph_mount_options *fsopt = fsc->mount_options;
393 struct ceph_options *opt = fsc->client->options;
Sage Weil6e19a162010-04-29 16:38:32 -0700394
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700395 if (opt->flags & CEPH_OPT_FSID)
396 seq_printf(m, ",fsid=%pU", &opt->fsid);
397 if (opt->flags & CEPH_OPT_NOSHARE)
Sage Weil6e19a162010-04-29 16:38:32 -0700398 seq_puts(m, ",noshare");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700399 if (opt->flags & CEPH_OPT_NOCRC)
Sage Weil6e19a162010-04-29 16:38:32 -0700400 seq_puts(m, ",nocrc");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700401
402 if (opt->name)
403 seq_printf(m, ",name=%s", opt->name);
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700404 if (opt->key)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700405 seq_puts(m, ",secret=<hidden>");
406
407 if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
408 seq_printf(m, ",mount_timeout=%d", opt->mount_timeout);
409 if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
410 seq_printf(m, ",osd_idle_ttl=%d", opt->osd_idle_ttl);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700411 if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
412 seq_printf(m, ",osdkeepalivetimeout=%d",
413 opt->osd_keepalive_timeout);
414
415 if (fsopt->flags & CEPH_MOUNT_OPT_DIRSTAT)
416 seq_puts(m, ",dirstat");
417 if ((fsopt->flags & CEPH_MOUNT_OPT_RBYTES) == 0)
418 seq_puts(m, ",norbytes");
419 if (fsopt->flags & CEPH_MOUNT_OPT_NOASYNCREADDIR)
Sage Weil6e19a162010-04-29 16:38:32 -0700420 seq_puts(m, ",noasyncreaddir");
Sage Weila40dc6c2012-01-10 09:12:55 -0800421 if (fsopt->flags & CEPH_MOUNT_OPT_DCACHE)
422 seq_puts(m, ",dcache");
423 else
424 seq_puts(m, ",nodcache");
Sage Weil6e19a162010-04-29 16:38:32 -0700425
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700426 if (fsopt->wsize)
427 seq_printf(m, ",wsize=%d", fsopt->wsize);
Sage Weil80456f82011-03-10 13:33:26 -0800428 if (fsopt->rsize != CEPH_RSIZE_DEFAULT)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700429 seq_printf(m, ",rsize=%d", fsopt->rsize);
Sage Weil83817e32011-08-04 08:03:44 -0700430 if (fsopt->rasize != CEPH_RASIZE_DEFAULT)
Sage Weil21519372011-12-01 08:06:52 -0800431 seq_printf(m, ",rasize=%d", fsopt->rasize);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700432 if (fsopt->congestion_kb != default_congestion_kb())
433 seq_printf(m, ",write_congestion_kb=%d", fsopt->congestion_kb);
434 if (fsopt->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700435 seq_printf(m, ",caps_wanted_delay_min=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700436 fsopt->caps_wanted_delay_min);
437 if (fsopt->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700438 seq_printf(m, ",caps_wanted_delay_max=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700439 fsopt->caps_wanted_delay_max);
440 if (fsopt->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
Sage Weil6e19a162010-04-29 16:38:32 -0700441 seq_printf(m, ",cap_release_safety=%d",
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700442 fsopt->cap_release_safety);
443 if (fsopt->max_readdir != CEPH_MAX_READDIR_DEFAULT)
444 seq_printf(m, ",readdir_max_entries=%d", fsopt->max_readdir);
445 if (fsopt->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
446 seq_printf(m, ",readdir_max_bytes=%d", fsopt->max_readdir_bytes);
447 if (strcmp(fsopt->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
448 seq_printf(m, ",snapdirname=%s", fsopt->snapdir_name);
Sage Weil6e19a162010-04-29 16:38:32 -0700449 return 0;
450}
451
452/*
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700453 * handle any mon messages the standard library doesn't understand.
454 * return error if we don't either.
455 */
456static int extra_mon_dispatch(struct ceph_client *client, struct ceph_msg *msg)
457{
458 struct ceph_fs_client *fsc = client->private;
459 int type = le16_to_cpu(msg->hdr.type);
460
461 switch (type) {
462 case CEPH_MSG_MDS_MAP:
463 ceph_mdsc_handle_map(fsc->mdsc, msg);
464 return 0;
465
466 default:
467 return -1;
468 }
469}
470
471/*
472 * create a new fs client
473 */
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700474static struct ceph_fs_client *create_fs_client(struct ceph_mount_options *fsopt,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700475 struct ceph_options *opt)
476{
477 struct ceph_fs_client *fsc;
Sage Weil6ab00d42011-08-09 09:41:59 -0700478 const unsigned supported_features =
479 CEPH_FEATURE_FLOCK |
480 CEPH_FEATURE_DIRLAYOUTHASH;
481 const unsigned required_features = 0;
Alex Elder3bf53332013-04-01 10:48:40 -0500482 int page_count;
483 size_t size;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700484 int err = -ENOMEM;
485
486 fsc = kzalloc(sizeof(*fsc), GFP_KERNEL);
487 if (!fsc)
488 return ERR_PTR(-ENOMEM);
489
Sage Weil6ab00d42011-08-09 09:41:59 -0700490 fsc->client = ceph_create_client(opt, fsc, supported_features,
491 required_features);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700492 if (IS_ERR(fsc->client)) {
493 err = PTR_ERR(fsc->client);
494 goto fail;
495 }
496 fsc->client->extra_mon_dispatch = extra_mon_dispatch;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700497 fsc->client->monc.want_mdsmap = 1;
498
499 fsc->mount_options = fsopt;
500
501 fsc->sb = NULL;
502 fsc->mount_state = CEPH_MOUNT_MOUNTING;
503
504 atomic_long_set(&fsc->writeback_count, 0);
505
506 err = bdi_init(&fsc->backing_dev_info);
507 if (err < 0)
508 goto fail_client;
509
510 err = -ENOMEM;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100511 /*
512 * The number of concurrent works can be high but they don't need
513 * to be processed in parallel, limit concurrency.
514 */
515 fsc->wb_wq = alloc_workqueue("ceph-writeback", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700516 if (fsc->wb_wq == NULL)
517 goto fail_bdi;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100518 fsc->pg_inv_wq = alloc_workqueue("ceph-pg-invalid", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700519 if (fsc->pg_inv_wq == NULL)
520 goto fail_wb_wq;
Tejun Heo01e6acc2011-01-03 14:49:45 +0100521 fsc->trunc_wq = alloc_workqueue("ceph-trunc", 0, 1);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700522 if (fsc->trunc_wq == NULL)
523 goto fail_pg_inv_wq;
524
525 /* set up mempools */
526 err = -ENOMEM;
Alex Elder3bf53332013-04-01 10:48:40 -0500527 page_count = fsc->mount_options->wsize >> PAGE_CACHE_SHIFT;
528 size = sizeof (struct page *) * (page_count ? page_count : 1);
529 fsc->wb_pagevec_pool = mempool_create_kmalloc_pool(10, size);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700530 if (!fsc->wb_pagevec_pool)
531 goto fail_trunc_wq;
532
533 /* caps */
534 fsc->min_caps = fsopt->max_readdir;
535
536 return fsc;
537
538fail_trunc_wq:
539 destroy_workqueue(fsc->trunc_wq);
540fail_pg_inv_wq:
541 destroy_workqueue(fsc->pg_inv_wq);
542fail_wb_wq:
543 destroy_workqueue(fsc->wb_wq);
544fail_bdi:
545 bdi_destroy(&fsc->backing_dev_info);
546fail_client:
547 ceph_destroy_client(fsc->client);
548fail:
549 kfree(fsc);
550 return ERR_PTR(err);
551}
552
H Hartley Sweeten0c6d4b4e22011-09-23 11:53:30 -0700553static void destroy_fs_client(struct ceph_fs_client *fsc)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700554{
555 dout("destroy_fs_client %p\n", fsc);
556
557 destroy_workqueue(fsc->wb_wq);
558 destroy_workqueue(fsc->pg_inv_wq);
559 destroy_workqueue(fsc->trunc_wq);
560
561 bdi_destroy(&fsc->backing_dev_info);
562
563 mempool_destroy(fsc->wb_pagevec_pool);
564
565 destroy_mount_options(fsc->mount_options);
566
567 ceph_fs_debugfs_cleanup(fsc);
568
569 ceph_destroy_client(fsc->client);
570
571 kfree(fsc);
572 dout("destroy_fs_client %p done\n", fsc);
573}
574
575/*
Sage Weil6e19a162010-04-29 16:38:32 -0700576 * caches
577 */
578struct kmem_cache *ceph_inode_cachep;
579struct kmem_cache *ceph_cap_cachep;
580struct kmem_cache *ceph_dentry_cachep;
581struct kmem_cache *ceph_file_cachep;
582
583static void ceph_inode_init_once(void *foo)
584{
585 struct ceph_inode_info *ci = foo;
586 inode_init_once(&ci->vfs_inode);
587}
588
Sage Weil16725b92009-10-06 11:31:07 -0700589static int __init init_caches(void)
590{
591 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
592 sizeof(struct ceph_inode_info),
593 __alignof__(struct ceph_inode_info),
594 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
595 ceph_inode_init_once);
596 if (ceph_inode_cachep == NULL)
597 return -ENOMEM;
598
599 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
600 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
601 if (ceph_cap_cachep == NULL)
602 goto bad_cap;
603
604 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
605 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
606 if (ceph_dentry_cachep == NULL)
607 goto bad_dentry;
608
609 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
610 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
611 if (ceph_file_cachep == NULL)
612 goto bad_file;
613
614 return 0;
615
616bad_file:
617 kmem_cache_destroy(ceph_dentry_cachep);
618bad_dentry:
619 kmem_cache_destroy(ceph_cap_cachep);
620bad_cap:
621 kmem_cache_destroy(ceph_inode_cachep);
622 return -ENOMEM;
623}
624
625static void destroy_caches(void)
626{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000627 /*
628 * Make sure all delayed rcu free inodes are flushed before we
629 * destroy cache.
630 */
631 rcu_barrier();
Sage Weil16725b92009-10-06 11:31:07 -0700632 kmem_cache_destroy(ceph_inode_cachep);
633 kmem_cache_destroy(ceph_cap_cachep);
634 kmem_cache_destroy(ceph_dentry_cachep);
635 kmem_cache_destroy(ceph_file_cachep);
636}
637
638
639/*
640 * ceph_umount_begin - initiate forced umount. Tear down down the
641 * mount, skipping steps that may hang while waiting for server(s).
642 */
643static void ceph_umount_begin(struct super_block *sb)
644{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700645 struct ceph_fs_client *fsc = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700646
647 dout("ceph_umount_begin - starting forced umount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700648 if (!fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700649 return;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700650 fsc->mount_state = CEPH_MOUNT_SHUTDOWN;
Sage Weil16725b92009-10-06 11:31:07 -0700651 return;
652}
653
654static const struct super_operations ceph_super_ops = {
655 .alloc_inode = ceph_alloc_inode,
656 .destroy_inode = ceph_destroy_inode,
657 .write_inode = ceph_write_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700658 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700659 .put_super = ceph_put_super,
660 .show_options = ceph_show_options,
661 .statfs = ceph_statfs,
662 .umount_begin = ceph_umount_begin,
663};
664
Sage Weil16725b92009-10-06 11:31:07 -0700665/*
666 * Bootstrap mount by opening the root directory. Note the mount
667 * @started time from caller, and time out if this takes too long.
668 */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700669static struct dentry *open_root_dentry(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700670 const char *path,
671 unsigned long started)
672{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700673 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil16725b92009-10-06 11:31:07 -0700674 struct ceph_mds_request *req = NULL;
675 int err;
676 struct dentry *root;
677
678 /* open dir */
679 dout("open_root_inode opening '%s'\n", path);
680 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
681 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200682 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700683 req->r_path1 = kstrdup(path, GFP_NOFS);
684 req->r_ino1.ino = CEPH_INO_ROOT;
685 req->r_ino1.snap = CEPH_NOSNAP;
686 req->r_started = started;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700687 req->r_timeout = fsc->client->options->mount_timeout * HZ;
Sage Weil16725b92009-10-06 11:31:07 -0700688 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
689 req->r_num_caps = 2;
690 err = ceph_mdsc_do_request(mdsc, NULL, req);
691 if (err == 0) {
Al Viro3c5184e2012-01-09 16:34:32 -0500692 struct inode *inode = req->r_target_inode;
693 req->r_target_inode = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700694 dout("open_root_inode success\n");
Al Viro3c5184e2012-01-09 16:34:32 -0500695 if (ceph_ino(inode) == CEPH_INO_ROOT &&
Sage Weil774ac212011-11-11 09:48:08 -0800696 fsc->sb->s_root == NULL) {
Al Viro48fde702012-01-08 22:15:13 -0500697 root = d_make_root(inode);
Al Viro3c5184e2012-01-09 16:34:32 -0500698 if (!root) {
Al Viro3c5184e2012-01-09 16:34:32 -0500699 root = ERR_PTR(-ENOMEM);
700 goto out;
701 }
Sage Weil774ac212011-11-11 09:48:08 -0800702 } else {
Al Viro3c5184e2012-01-09 16:34:32 -0500703 root = d_obtain_alias(inode);
Sage Weil774ac212011-11-11 09:48:08 -0800704 }
Linus Torvalds1a52bb02012-01-13 10:29:21 -0800705 ceph_init_dentry(root);
Sage Weil16725b92009-10-06 11:31:07 -0700706 dout("open_root_inode success, root dentry is %p\n", root);
707 } else {
708 root = ERR_PTR(err);
709 }
Al Viro3c5184e2012-01-09 16:34:32 -0500710out:
Sage Weil16725b92009-10-06 11:31:07 -0700711 ceph_mdsc_put_request(req);
712 return root;
713}
714
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700715
716
717
Sage Weil16725b92009-10-06 11:31:07 -0700718/*
719 * mount: join the ceph cluster, and open root directory.
720 */
Al Viroa7f9fb22010-07-26 16:17:55 +0400721static struct dentry *ceph_real_mount(struct ceph_fs_client *fsc,
Sage Weil16725b92009-10-06 11:31:07 -0700722 const char *path)
723{
Sage Weil16725b92009-10-06 11:31:07 -0700724 int err;
Sage Weil16725b92009-10-06 11:31:07 -0700725 unsigned long started = jiffies; /* note the start time */
726 struct dentry *root;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700727 int first = 0; /* first vfsmount for this super_block */
Sage Weil16725b92009-10-06 11:31:07 -0700728
729 dout("mount start\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700730 mutex_lock(&fsc->client->mount_mutex);
Sage Weil16725b92009-10-06 11:31:07 -0700731
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700732 err = __ceph_open_session(fsc->client, started);
Sage Weil16725b92009-10-06 11:31:07 -0700733 if (err < 0)
734 goto out;
735
Sage Weil16725b92009-10-06 11:31:07 -0700736 dout("mount opening root\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700737 root = open_root_dentry(fsc, "", started);
Sage Weil16725b92009-10-06 11:31:07 -0700738 if (IS_ERR(root)) {
739 err = PTR_ERR(root);
740 goto out;
741 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700742 if (fsc->sb->s_root) {
Sage Weil16725b92009-10-06 11:31:07 -0700743 dput(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700744 } else {
745 fsc->sb->s_root = root;
746 first = 1;
747
748 err = ceph_fs_debugfs_init(fsc);
749 if (err < 0)
750 goto fail;
751 }
Sage Weil16725b92009-10-06 11:31:07 -0700752
753 if (path[0] == 0) {
754 dget(root);
755 } else {
756 dout("mount opening base mountpoint\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700757 root = open_root_dentry(fsc, path, started);
Sage Weil16725b92009-10-06 11:31:07 -0700758 if (IS_ERR(root)) {
759 err = PTR_ERR(root);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700760 goto fail;
Sage Weil16725b92009-10-06 11:31:07 -0700761 }
762 }
763
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700764 fsc->mount_state = CEPH_MOUNT_MOUNTED;
Sage Weil16725b92009-10-06 11:31:07 -0700765 dout("mount success\n");
Al Viroa7f9fb22010-07-26 16:17:55 +0400766 mutex_unlock(&fsc->client->mount_mutex);
767 return root;
Sage Weil16725b92009-10-06 11:31:07 -0700768
769out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700770 mutex_unlock(&fsc->client->mount_mutex);
Al Viroa7f9fb22010-07-26 16:17:55 +0400771 return ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700772
773fail:
774 if (first) {
775 dput(fsc->sb->s_root);
776 fsc->sb->s_root = NULL;
777 }
778 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700779}
780
781static int ceph_set_super(struct super_block *s, void *data)
782{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700783 struct ceph_fs_client *fsc = data;
Sage Weil16725b92009-10-06 11:31:07 -0700784 int ret;
785
786 dout("set_super %p data %p\n", s, data);
787
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700788 s->s_flags = fsc->mount_options->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700789 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
790
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700791 s->s_fs_info = fsc;
792 fsc->sb = s;
Sage Weil16725b92009-10-06 11:31:07 -0700793
794 s->s_op = &ceph_super_ops;
795 s->s_export_op = &ceph_export_ops;
796
797 s->s_time_gran = 1000; /* 1000 ns == 1 us */
798
799 ret = set_anon_super(s, NULL); /* what is that second arg for? */
800 if (ret != 0)
801 goto fail;
802
803 return ret;
804
805fail:
806 s->s_fs_info = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700807 fsc->sb = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700808 return ret;
809}
810
811/*
812 * share superblock if same fs AND options
813 */
814static int ceph_compare_super(struct super_block *sb, void *data)
815{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700816 struct ceph_fs_client *new = data;
817 struct ceph_mount_options *fsopt = new->mount_options;
818 struct ceph_options *opt = new->client->options;
819 struct ceph_fs_client *other = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700820
821 dout("ceph_compare_super %p\n", sb);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700822
823 if (compare_mount_options(fsopt, opt, other)) {
824 dout("monitor(s)/mount options don't match\n");
825 return 0;
Sage Weil16725b92009-10-06 11:31:07 -0700826 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700827 if ((opt->flags & CEPH_OPT_FSID) &&
828 ceph_fsid_compare(&opt->fsid, &other->client->fsid)) {
829 dout("fsid doesn't match\n");
830 return 0;
831 }
832 if (fsopt->sb_flags != other->mount_options->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700833 dout("flags differ\n");
834 return 0;
835 }
836 return 1;
837}
838
839/*
840 * construct our own bdi so we can control readahead, etc.
841 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400842static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700843
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700844static int ceph_register_bdi(struct super_block *sb,
845 struct ceph_fs_client *fsc)
Sage Weil16725b92009-10-06 11:31:07 -0700846{
847 int err;
848
Sage Weil83817e32011-08-04 08:03:44 -0700849 /* set ra_pages based on rasize mount option? */
850 if (fsc->mount_options->rasize >= PAGE_CACHE_SIZE)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700851 fsc->backing_dev_info.ra_pages =
Sage Weil83817e32011-08-04 08:03:44 -0700852 (fsc->mount_options->rasize + PAGE_CACHE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700853 >> PAGE_SHIFT;
Yehuda Sadehe9852222011-07-22 11:12:28 -0700854 else
855 fsc->backing_dev_info.ra_pages =
856 default_backing_dev_info.ra_pages;
857
Joe Perchesd2cc4dd2012-11-29 08:37:03 -0600858 err = bdi_register(&fsc->backing_dev_info, NULL, "ceph-%ld",
Sage Weil31e0cf82010-05-04 16:39:35 -0700859 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700860 if (!err)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700861 sb->s_bdi = &fsc->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700862 return err;
863}
864
Al Viroa7f9fb22010-07-26 16:17:55 +0400865static struct dentry *ceph_mount(struct file_system_type *fs_type,
866 int flags, const char *dev_name, void *data)
Sage Weil16725b92009-10-06 11:31:07 -0700867{
868 struct super_block *sb;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700869 struct ceph_fs_client *fsc;
Al Viroa7f9fb22010-07-26 16:17:55 +0400870 struct dentry *res;
Sage Weil16725b92009-10-06 11:31:07 -0700871 int err;
872 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800873 const char *path = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700874 struct ceph_mount_options *fsopt = NULL;
875 struct ceph_options *opt = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700876
Al Viroa7f9fb22010-07-26 16:17:55 +0400877 dout("ceph_mount\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700878 err = parse_mount_options(&fsopt, &opt, flags, data, dev_name, &path);
Al Viroa7f9fb22010-07-26 16:17:55 +0400879 if (err < 0) {
880 res = ERR_PTR(err);
Sage Weil6b805182009-10-27 11:50:50 -0700881 goto out_final;
Al Viroa7f9fb22010-07-26 16:17:55 +0400882 }
Sage Weil16725b92009-10-06 11:31:07 -0700883
884 /* create client (which we may/may not use) */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700885 fsc = create_fs_client(fsopt, opt);
886 if (IS_ERR(fsc)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400887 res = ERR_CAST(fsc);
Noah Watkins259a1872011-08-22 13:49:41 -0600888 destroy_mount_options(fsopt);
889 ceph_destroy_options(opt);
Sage Weil6b805182009-10-27 11:50:50 -0700890 goto out_final;
891 }
Sage Weil16725b92009-10-06 11:31:07 -0700892
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700893 err = ceph_mdsc_init(fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400894 if (err < 0) {
895 res = ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700896 goto out;
Al Viroa7f9fb22010-07-26 16:17:55 +0400897 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700898
899 if (ceph_test_opt(fsc->client, NOSHARE))
Sage Weil16725b92009-10-06 11:31:07 -0700900 compare_super = NULL;
David Howells9249e172012-06-25 12:55:37 +0100901 sb = sget(fs_type, compare_super, ceph_set_super, flags, fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700902 if (IS_ERR(sb)) {
Al Viroa7f9fb22010-07-26 16:17:55 +0400903 res = ERR_CAST(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700904 goto out;
905 }
906
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700907 if (ceph_sb_to_client(sb) != fsc) {
908 ceph_mdsc_destroy(fsc);
909 destroy_fs_client(fsc);
910 fsc = ceph_sb_to_client(sb);
911 dout("get_sb got existing client %p\n", fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700912 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700913 dout("get_sb using new client %p\n", fsc);
914 err = ceph_register_bdi(sb, fsc);
Al Viroa7f9fb22010-07-26 16:17:55 +0400915 if (err < 0) {
916 res = ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700917 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400918 }
Sage Weil16725b92009-10-06 11:31:07 -0700919 }
920
Al Viroa7f9fb22010-07-26 16:17:55 +0400921 res = ceph_real_mount(fsc, path);
922 if (IS_ERR(res))
Sage Weil16725b92009-10-06 11:31:07 -0700923 goto out_splat;
Al Viroa7f9fb22010-07-26 16:17:55 +0400924 dout("root %p inode %p ino %llx.%llx\n", res,
925 res->d_inode, ceph_vinop(res->d_inode));
926 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700927
928out_splat:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700929 ceph_mdsc_close_sessions(fsc->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -0400930 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -0700931 goto out_final;
932
933out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700934 ceph_mdsc_destroy(fsc);
935 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700936out_final:
Al Viroa7f9fb22010-07-26 16:17:55 +0400937 dout("ceph_mount fail %ld\n", PTR_ERR(res));
938 return res;
Sage Weil16725b92009-10-06 11:31:07 -0700939}
940
941static void ceph_kill_sb(struct super_block *s)
942{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700943 struct ceph_fs_client *fsc = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -0700944 dout("kill_sb %p\n", s);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700945 ceph_mdsc_pre_umount(fsc->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700946 kill_anon_super(s); /* will call put_super after sb is r/o */
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700947 ceph_mdsc_destroy(fsc);
948 destroy_fs_client(fsc);
Sage Weil16725b92009-10-06 11:31:07 -0700949}
950
951static struct file_system_type ceph_fs_type = {
952 .owner = THIS_MODULE,
953 .name = "ceph",
Al Viroa7f9fb22010-07-26 16:17:55 +0400954 .mount = ceph_mount,
Sage Weil16725b92009-10-06 11:31:07 -0700955 .kill_sb = ceph_kill_sb,
956 .fs_flags = FS_RENAME_DOES_D_MOVE,
957};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800958MODULE_ALIAS_FS("ceph");
Sage Weil16725b92009-10-06 11:31:07 -0700959
960#define _STRINGIFY(x) #x
961#define STRINGIFY(x) _STRINGIFY(x)
962
963static int __init init_ceph(void)
964{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700965 int ret = init_caches();
Sage Weil16725b92009-10-06 11:31:07 -0700966 if (ret)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700967 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700968
Alex Elder3ce6cd12012-01-23 15:49:28 -0600969 ceph_xattr_init();
Sage Weil16725b92009-10-06 11:31:07 -0700970 ret = register_filesystem(&ceph_fs_type);
971 if (ret)
972 goto out_icache;
973
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700974 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL);
975
Sage Weil16725b92009-10-06 11:31:07 -0700976 return 0;
977
978out_icache:
Alex Elder3ce6cd12012-01-23 15:49:28 -0600979 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -0700980 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -0700981out:
982 return ret;
983}
984
985static void __exit exit_ceph(void)
986{
987 dout("exit_ceph\n");
988 unregister_filesystem(&ceph_fs_type);
Alex Elder3ce6cd12012-01-23 15:49:28 -0600989 ceph_xattr_exit();
Sage Weil16725b92009-10-06 11:31:07 -0700990 destroy_caches();
Sage Weil16725b92009-10-06 11:31:07 -0700991}
992
993module_init(init_ceph);
994module_exit(exit_ceph);
995
996MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
997MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
998MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
999MODULE_DESCRIPTION("Ceph filesystem for Linux");
1000MODULE_LICENSE("GPL");