ceph: remove unused 'monport' mount option
[deliverable/linux.git] / fs / ceph / super.c
CommitLineData
16725b9d
SW
1
2#include "ceph_debug.h"
3
4#include <linux/backing-dev.h>
5#include <linux/fs.h>
6#include <linux/inet.h>
7#include <linux/in6.h>
8#include <linux/module.h>
9#include <linux/mount.h>
10#include <linux/parser.h>
16725b9d
SW
11#include <linux/sched.h>
12#include <linux/seq_file.h>
5a0e3ad6 13#include <linux/slab.h>
16725b9d
SW
14#include <linux/statfs.h>
15#include <linux/string.h>
16725b9d 16
16725b9d
SW
17#include "decode.h"
18#include "super.h"
19#include "mon_client.h"
0743304d 20#include "auth.h"
16725b9d
SW
21
22/*
23 * Ceph superblock operations
24 *
25 * Handle the basics of mounting, unmounting.
26 */
27
28
29/*
30 * find filename portion of a path (/foo/bar/baz -> baz)
31 */
32const char *ceph_file_part(const char *s, int len)
33{
34 const char *e = s + len;
35
36 while (e != s && *(e-1) != '/')
37 e--;
38 return e;
39}
40
41
42/*
43 * super ops
44 */
45static void ceph_put_super(struct super_block *s)
46{
5dfc589a 47 struct ceph_client *client = ceph_sb_to_client(s);
16725b9d
SW
48
49 dout("put_super\n");
5dfc589a
SW
50 ceph_mdsc_close_sessions(&client->mdsc);
51
52 /*
53 * ensure we release the bdi before put_anon_super releases
54 * the device name.
55 */
56 if (s->s_bdi == &client->backing_dev_info) {
57 bdi_unregister(&client->backing_dev_info);
58 s->s_bdi = NULL;
59 }
60
16725b9d
SW
61 return;
62}
63
64static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
65{
66 struct ceph_client *client = ceph_inode_to_client(dentry->d_inode);
67 struct ceph_monmap *monmap = client->monc.monmap;
68 struct ceph_statfs st;
69 u64 fsid;
70 int err;
71
72 dout("statfs\n");
73 err = ceph_monc_do_statfs(&client->monc, &st);
74 if (err < 0)
75 return err;
76
77 /* fill in kstatfs */
78 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
79
80 /*
81 * express utilization in terms of large blocks to avoid
82 * overflow on 32-bit machines.
83 */
84 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
85 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
86 buf->f_bfree = (le64_to_cpu(st.kb) - le64_to_cpu(st.kb_used)) >>
87 (CEPH_BLOCK_SHIFT-10);
88 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
89
90 buf->f_files = le64_to_cpu(st.num_objects);
91 buf->f_ffree = -1;
558d3499 92 buf->f_namelen = NAME_MAX;
16725b9d
SW
93 buf->f_frsize = PAGE_CACHE_SIZE;
94
95 /* leave fsid little-endian, regardless of host endianness */
96 fsid = *(u64 *)(&monmap->fsid) ^ *((u64 *)&monmap->fsid + 1);
97 buf->f_fsid.val[0] = fsid & 0xffffffff;
98 buf->f_fsid.val[1] = fsid >> 32;
99
100 return 0;
101}
102
103
104static int ceph_syncfs(struct super_block *sb, int wait)
105{
106 dout("sync_fs %d\n", wait);
640ef79d
CR
107 ceph_osdc_sync(&ceph_sb_to_client(sb)->osdc);
108 ceph_mdsc_sync(&ceph_sb_to_client(sb)->mdsc);
f2cf418c 109 dout("sync_fs %d done\n", wait);
16725b9d
SW
110 return 0;
111}
112
6e19a16e
SW
113static int default_congestion_kb(void)
114{
115 int congestion_kb;
116
117 /*
118 * Copied from NFS
119 *
120 * congestion size, scale with available memory.
121 *
122 * 64MB: 8192k
123 * 128MB: 11585k
124 * 256MB: 16384k
125 * 512MB: 23170k
126 * 1GB: 32768k
127 * 2GB: 46340k
128 * 4GB: 65536k
129 * 8GB: 92681k
130 * 16GB: 131072k
131 *
132 * This allows larger machines to have larger/more transfers.
133 * Limit the default to 256M
134 */
135 congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
136 if (congestion_kb > 256*1024)
137 congestion_kb = 256*1024;
138
139 return congestion_kb;
140}
16725b9d
SW
141
142/**
143 * ceph_show_options - Show mount options in /proc/mounts
144 * @m: seq_file to write to
145 * @mnt: mount descriptor
146 */
147static int ceph_show_options(struct seq_file *m, struct vfsmount *mnt)
148{
149 struct ceph_client *client = ceph_sb_to_client(mnt->mnt_sb);
6b805185 150 struct ceph_mount_args *args = client->mount_args;
16725b9d
SW
151
152 if (args->flags & CEPH_OPT_FSID)
153 seq_printf(m, ",fsidmajor=%llu,fsidminor%llu",
154 le64_to_cpu(*(__le64 *)&args->fsid.fsid[0]),
155 le64_to_cpu(*(__le64 *)&args->fsid.fsid[8]));
156 if (args->flags & CEPH_OPT_NOSHARE)
157 seq_puts(m, ",noshare");
158 if (args->flags & CEPH_OPT_DIRSTAT)
159 seq_puts(m, ",dirstat");
160 if ((args->flags & CEPH_OPT_RBYTES) == 0)
161 seq_puts(m, ",norbytes");
162 if (args->flags & CEPH_OPT_NOCRC)
163 seq_puts(m, ",nocrc");
164 if (args->flags & CEPH_OPT_NOASYNCREADDIR)
165 seq_puts(m, ",noasyncreaddir");
6e19a16e
SW
166
167 if (args->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
168 seq_printf(m, ",mount_timeout=%d", args->mount_timeout);
169 if (args->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
170 seq_printf(m, ",osd_idle_ttl=%d", args->osd_idle_ttl);
171 if (args->osd_timeout != CEPH_OSD_TIMEOUT_DEFAULT)
172 seq_printf(m, ",osdtimeout=%d", args->osd_timeout);
173 if (args->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
174 seq_printf(m, ",osdkeepalivetimeout=%d",
175 args->osd_keepalive_timeout);
176 if (args->wsize)
177 seq_printf(m, ",wsize=%d", args->wsize);
178 if (args->rsize != CEPH_MOUNT_RSIZE_DEFAULT)
179 seq_printf(m, ",rsize=%d", args->rsize);
180 if (args->congestion_kb != default_congestion_kb())
181 seq_printf(m, ",write_congestion_kb=%d", args->congestion_kb);
182 if (args->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
183 seq_printf(m, ",caps_wanted_delay_min=%d",
184 args->caps_wanted_delay_min);
185 if (args->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
186 seq_printf(m, ",caps_wanted_delay_max=%d",
187 args->caps_wanted_delay_max);
188 if (args->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
189 seq_printf(m, ",cap_release_safety=%d",
190 args->cap_release_safety);
191 if (args->max_readdir != CEPH_MAX_READDIR_DEFAULT)
192 seq_printf(m, ",readdir_max_entries=%d", args->max_readdir);
23804d91
SW
193 if (args->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
194 seq_printf(m, ",readdir_max_bytes=%d", args->max_readdir_bytes);
16725b9d
SW
195 if (strcmp(args->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
196 seq_printf(m, ",snapdirname=%s", args->snapdir_name);
4e7a5dcd
SW
197 if (args->name)
198 seq_printf(m, ",name=%s", args->name);
16725b9d
SW
199 if (args->secret)
200 seq_puts(m, ",secret=<hidden>");
201 return 0;
202}
203
204/*
205 * caches
206 */
207struct kmem_cache *ceph_inode_cachep;
208struct kmem_cache *ceph_cap_cachep;
209struct kmem_cache *ceph_dentry_cachep;
210struct kmem_cache *ceph_file_cachep;
211
212static void ceph_inode_init_once(void *foo)
213{
214 struct ceph_inode_info *ci = foo;
215 inode_init_once(&ci->vfs_inode);
216}
217
218static int __init init_caches(void)
219{
220 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
221 sizeof(struct ceph_inode_info),
222 __alignof__(struct ceph_inode_info),
223 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
224 ceph_inode_init_once);
225 if (ceph_inode_cachep == NULL)
226 return -ENOMEM;
227
228 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
229 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
230 if (ceph_cap_cachep == NULL)
231 goto bad_cap;
232
233 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
234 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
235 if (ceph_dentry_cachep == NULL)
236 goto bad_dentry;
237
238 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
239 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
240 if (ceph_file_cachep == NULL)
241 goto bad_file;
242
243 return 0;
244
245bad_file:
246 kmem_cache_destroy(ceph_dentry_cachep);
247bad_dentry:
248 kmem_cache_destroy(ceph_cap_cachep);
249bad_cap:
250 kmem_cache_destroy(ceph_inode_cachep);
251 return -ENOMEM;
252}
253
254static void destroy_caches(void)
255{
256 kmem_cache_destroy(ceph_inode_cachep);
257 kmem_cache_destroy(ceph_cap_cachep);
258 kmem_cache_destroy(ceph_dentry_cachep);
259 kmem_cache_destroy(ceph_file_cachep);
260}
261
262
263/*
264 * ceph_umount_begin - initiate forced umount. Tear down down the
265 * mount, skipping steps that may hang while waiting for server(s).
266 */
267static void ceph_umount_begin(struct super_block *sb)
268{
269 struct ceph_client *client = ceph_sb_to_client(sb);
270
271 dout("ceph_umount_begin - starting forced umount\n");
272 if (!client)
273 return;
274 client->mount_state = CEPH_MOUNT_SHUTDOWN;
275 return;
276}
277
278static const struct super_operations ceph_super_ops = {
279 .alloc_inode = ceph_alloc_inode,
280 .destroy_inode = ceph_destroy_inode,
281 .write_inode = ceph_write_inode,
282 .sync_fs = ceph_syncfs,
283 .put_super = ceph_put_super,
284 .show_options = ceph_show_options,
285 .statfs = ceph_statfs,
286 .umount_begin = ceph_umount_begin,
287};
288
289
290const char *ceph_msg_type_name(int type)
291{
292 switch (type) {
293 case CEPH_MSG_SHUTDOWN: return "shutdown";
294 case CEPH_MSG_PING: return "ping";
4e7a5dcd
SW
295 case CEPH_MSG_AUTH: return "auth";
296 case CEPH_MSG_AUTH_REPLY: return "auth_reply";
16725b9d
SW
297 case CEPH_MSG_MON_MAP: return "mon_map";
298 case CEPH_MSG_MON_GET_MAP: return "mon_get_map";
299 case CEPH_MSG_MON_SUBSCRIBE: return "mon_subscribe";
300 case CEPH_MSG_MON_SUBSCRIBE_ACK: return "mon_subscribe_ack";
16725b9d
SW
301 case CEPH_MSG_STATFS: return "statfs";
302 case CEPH_MSG_STATFS_REPLY: return "statfs_reply";
16725b9d
SW
303 case CEPH_MSG_MDS_MAP: return "mds_map";
304 case CEPH_MSG_CLIENT_SESSION: return "client_session";
305 case CEPH_MSG_CLIENT_RECONNECT: return "client_reconnect";
306 case CEPH_MSG_CLIENT_REQUEST: return "client_request";
307 case CEPH_MSG_CLIENT_REQUEST_FORWARD: return "client_request_forward";
308 case CEPH_MSG_CLIENT_REPLY: return "client_reply";
309 case CEPH_MSG_CLIENT_CAPS: return "client_caps";
310 case CEPH_MSG_CLIENT_CAPRELEASE: return "client_cap_release";
311 case CEPH_MSG_CLIENT_SNAP: return "client_snap";
312 case CEPH_MSG_CLIENT_LEASE: return "client_lease";
16725b9d
SW
313 case CEPH_MSG_OSD_MAP: return "osd_map";
314 case CEPH_MSG_OSD_OP: return "osd_op";
315 case CEPH_MSG_OSD_OPREPLY: return "osd_opreply";
316 default: return "unknown";
317 }
318}
319
320
321/*
322 * mount options
323 */
324enum {
325 Opt_fsidmajor,
326 Opt_fsidminor,
16725b9d
SW
327 Opt_wsize,
328 Opt_rsize,
329 Opt_osdtimeout,
422d2cb8 330 Opt_osdkeepalivetimeout,
16725b9d 331 Opt_mount_timeout,
f5a2041b 332 Opt_osd_idle_ttl,
16725b9d
SW
333 Opt_caps_wanted_delay_min,
334 Opt_caps_wanted_delay_max,
6e19a16e 335 Opt_cap_release_safety,
16725b9d 336 Opt_readdir_max_entries,
23804d91 337 Opt_readdir_max_bytes,
2baba250 338 Opt_congestion_kb,
e53c2fe0 339 Opt_last_int,
16725b9d
SW
340 /* int args above */
341 Opt_snapdirname,
4e7a5dcd 342 Opt_name,
16725b9d 343 Opt_secret,
e53c2fe0 344 Opt_last_string,
16725b9d
SW
345 /* string args above */
346 Opt_ip,
347 Opt_noshare,
348 Opt_dirstat,
349 Opt_nodirstat,
350 Opt_rbytes,
351 Opt_norbytes,
352 Opt_nocrc,
353 Opt_noasyncreaddir,
354};
355
356static match_table_t arg_tokens = {
357 {Opt_fsidmajor, "fsidmajor=%ld"},
358 {Opt_fsidminor, "fsidminor=%ld"},
16725b9d
SW
359 {Opt_wsize, "wsize=%d"},
360 {Opt_rsize, "rsize=%d"},
361 {Opt_osdtimeout, "osdtimeout=%d"},
422d2cb8 362 {Opt_osdkeepalivetimeout, "osdkeepalive=%d"},
16725b9d 363 {Opt_mount_timeout, "mount_timeout=%d"},
f5a2041b 364 {Opt_osd_idle_ttl, "osd_idle_ttl=%d"},
16725b9d
SW
365 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
366 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
6e19a16e 367 {Opt_cap_release_safety, "cap_release_safety=%d"},
16725b9d 368 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
23804d91 369 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
2baba250 370 {Opt_congestion_kb, "write_congestion_kb=%d"},
16725b9d
SW
371 /* int args above */
372 {Opt_snapdirname, "snapdirname=%s"},
4e7a5dcd 373 {Opt_name, "name=%s"},
16725b9d
SW
374 {Opt_secret, "secret=%s"},
375 /* string args above */
376 {Opt_ip, "ip=%s"},
377 {Opt_noshare, "noshare"},
378 {Opt_dirstat, "dirstat"},
379 {Opt_nodirstat, "nodirstat"},
380 {Opt_rbytes, "rbytes"},
381 {Opt_norbytes, "norbytes"},
382 {Opt_nocrc, "nocrc"},
383 {Opt_noasyncreaddir, "noasyncreaddir"},
384 {-1, NULL}
385};
386
387
6b805185
SW
388static struct ceph_mount_args *parse_mount_args(int flags, char *options,
389 const char *dev_name,
390 const char **path)
16725b9d 391{
6b805185 392 struct ceph_mount_args *args;
16725b9d 393 const char *c;
6b805185 394 int err = -ENOMEM;
16725b9d 395 substring_t argstr[MAX_OPT_ARGS];
16725b9d 396
6b805185
SW
397 args = kzalloc(sizeof(*args), GFP_KERNEL);
398 if (!args)
399 return ERR_PTR(-ENOMEM);
400 args->mon_addr = kcalloc(CEPH_MAX_MON, sizeof(*args->mon_addr),
401 GFP_KERNEL);
402 if (!args->mon_addr)
403 goto out;
16725b9d 404
6b805185 405 dout("parse_mount_args %p, dev_name '%s'\n", args, dev_name);
7b813c46 406
16725b9d
SW
407 /* start with defaults */
408 args->sb_flags = flags;
409 args->flags = CEPH_OPT_DEFAULT;
422d2cb8
YS
410 args->osd_timeout = CEPH_OSD_TIMEOUT_DEFAULT;
411 args->osd_keepalive_timeout = CEPH_OSD_KEEPALIVE_DEFAULT;
16725b9d 412 args->mount_timeout = CEPH_MOUNT_TIMEOUT_DEFAULT; /* seconds */
f5a2041b 413 args->osd_idle_ttl = CEPH_OSD_IDLE_TTL_DEFAULT; /* seconds */
16725b9d
SW
414 args->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
415 args->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
8fa97655 416 args->rsize = CEPH_MOUNT_RSIZE_DEFAULT;
16725b9d 417 args->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
6e19a16e
SW
418 args->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
419 args->max_readdir = CEPH_MAX_READDIR_DEFAULT;
23804d91 420 args->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
2baba250 421 args->congestion_kb = default_congestion_kb();
16725b9d
SW
422
423 /* ip1[:port1][,ip2[:port2]...]:/subdir/in/fs */
7b813c46 424 err = -EINVAL;
16725b9d 425 if (!dev_name)
7b813c46 426 goto out;
16725b9d
SW
427 *path = strstr(dev_name, ":/");
428 if (*path == NULL) {
429 pr_err("device name is missing path (no :/ in %s)\n",
430 dev_name);
7b813c46 431 goto out;
16725b9d
SW
432 }
433
434 /* get mon ip(s) */
6b805185
SW
435 err = ceph_parse_ips(dev_name, *path, args->mon_addr,
436 CEPH_MAX_MON, &args->num_mon);
16725b9d 437 if (err < 0)
7b813c46 438 goto out;
16725b9d 439
16725b9d
SW
440 /* path on server */
441 *path += 2;
442 dout("server path '%s'\n", *path);
443
444 /* parse mount options */
445 while ((c = strsep(&options, ",")) != NULL) {
446 int token, intval, ret;
447 if (!*c)
448 continue;
7b813c46 449 err = -EINVAL;
16725b9d
SW
450 token = match_token((char *)c, arg_tokens, argstr);
451 if (token < 0) {
452 pr_err("bad mount option at '%s'\n", c);
7b813c46 453 goto out;
16725b9d 454 }
e53c2fe0 455 if (token < Opt_last_int) {
16725b9d
SW
456 ret = match_int(&argstr[0], &intval);
457 if (ret < 0) {
458 pr_err("bad mount option arg (not int) "
459 "at '%s'\n", c);
460 continue;
461 }
e53c2fe0
SW
462 dout("got int token %d val %d\n", token, intval);
463 } else if (token > Opt_last_int && token < Opt_last_string) {
464 dout("got string token %d val %s\n", token,
465 argstr[0].from);
466 } else {
467 dout("got token %d\n", token);
16725b9d
SW
468 }
469 switch (token) {
470 case Opt_fsidmajor:
471 *(__le64 *)&args->fsid.fsid[0] = cpu_to_le64(intval);
472 break;
473 case Opt_fsidminor:
474 *(__le64 *)&args->fsid.fsid[8] = cpu_to_le64(intval);
475 break;
476 case Opt_ip:
477 err = ceph_parse_ips(argstr[0].from,
478 argstr[0].to,
479 &args->my_addr,
480 1, NULL);
481 if (err < 0)
6b805185 482 goto out;
16725b9d
SW
483 args->flags |= CEPH_OPT_MYIP;
484 break;
485
486 case Opt_snapdirname:
487 kfree(args->snapdir_name);
488 args->snapdir_name = kstrndup(argstr[0].from,
489 argstr[0].to-argstr[0].from,
490 GFP_KERNEL);
491 break;
4e7a5dcd
SW
492 case Opt_name:
493 args->name = kstrndup(argstr[0].from,
494 argstr[0].to-argstr[0].from,
495 GFP_KERNEL);
496 break;
16725b9d
SW
497 case Opt_secret:
498 args->secret = kstrndup(argstr[0].from,
499 argstr[0].to-argstr[0].from,
500 GFP_KERNEL);
501 break;
502
503 /* misc */
504 case Opt_wsize:
505 args->wsize = intval;
506 break;
507 case Opt_rsize:
508 args->rsize = intval;
509 break;
510 case Opt_osdtimeout:
511 args->osd_timeout = intval;
512 break;
422d2cb8
YS
513 case Opt_osdkeepalivetimeout:
514 args->osd_keepalive_timeout = intval;
515 break;
16725b9d
SW
516 case Opt_mount_timeout:
517 args->mount_timeout = intval;
518 break;
519 case Opt_caps_wanted_delay_min:
520 args->caps_wanted_delay_min = intval;
521 break;
522 case Opt_caps_wanted_delay_max:
523 args->caps_wanted_delay_max = intval;
524 break;
525 case Opt_readdir_max_entries:
526 args->max_readdir = intval;
527 break;
23804d91
SW
528 case Opt_readdir_max_bytes:
529 args->max_readdir_bytes = intval;
530 break;
2baba250
YS
531 case Opt_congestion_kb:
532 args->congestion_kb = intval;
533 break;
16725b9d
SW
534
535 case Opt_noshare:
536 args->flags |= CEPH_OPT_NOSHARE;
537 break;
538
539 case Opt_dirstat:
540 args->flags |= CEPH_OPT_DIRSTAT;
541 break;
542 case Opt_nodirstat:
543 args->flags &= ~CEPH_OPT_DIRSTAT;
544 break;
545 case Opt_rbytes:
546 args->flags |= CEPH_OPT_RBYTES;
547 break;
548 case Opt_norbytes:
549 args->flags &= ~CEPH_OPT_RBYTES;
550 break;
551 case Opt_nocrc:
552 args->flags |= CEPH_OPT_NOCRC;
553 break;
554 case Opt_noasyncreaddir:
555 args->flags |= CEPH_OPT_NOASYNCREADDIR;
556 break;
557
558 default:
559 BUG_ON(token);
560 }
561 }
6b805185 562 return args;
16725b9d 563
7b813c46 564out:
6b805185
SW
565 kfree(args->mon_addr);
566 kfree(args);
567 return ERR_PTR(err);
16725b9d
SW
568}
569
6b805185 570static void destroy_mount_args(struct ceph_mount_args *args)
16725b9d 571{
6b805185 572 dout("destroy_mount_args %p\n", args);
16725b9d
SW
573 kfree(args->snapdir_name);
574 args->snapdir_name = NULL;
4e7a5dcd
SW
575 kfree(args->name);
576 args->name = NULL;
16725b9d
SW
577 kfree(args->secret);
578 args->secret = NULL;
6b805185 579 kfree(args);
16725b9d
SW
580}
581
582/*
583 * create a fresh client instance
584 */
6b805185 585static struct ceph_client *ceph_create_client(struct ceph_mount_args *args)
16725b9d
SW
586{
587 struct ceph_client *client;
588 int err = -ENOMEM;
589
590 client = kzalloc(sizeof(*client), GFP_KERNEL);
591 if (client == NULL)
592 return ERR_PTR(-ENOMEM);
593
594 mutex_init(&client->mount_mutex);
595
9bd2e6f8 596 init_waitqueue_head(&client->auth_wq);
16725b9d
SW
597
598 client->sb = NULL;
599 client->mount_state = CEPH_MOUNT_MOUNTING;
6b805185 600 client->mount_args = args;
16725b9d
SW
601
602 client->msgr = NULL;
603
9bd2e6f8 604 client->auth_err = 0;
2baba250 605 atomic_long_set(&client->writeback_count, 0);
16725b9d 606
859e7b14
SW
607 err = bdi_init(&client->backing_dev_info);
608 if (err < 0)
609 goto fail;
610
16725b9d
SW
611 err = -ENOMEM;
612 client->wb_wq = create_workqueue("ceph-writeback");
613 if (client->wb_wq == NULL)
859e7b14 614 goto fail_bdi;
16725b9d
SW
615 client->pg_inv_wq = create_singlethread_workqueue("ceph-pg-invalid");
616 if (client->pg_inv_wq == NULL)
617 goto fail_wb_wq;
618 client->trunc_wq = create_singlethread_workqueue("ceph-trunc");
619 if (client->trunc_wq == NULL)
620 goto fail_pg_inv_wq;
621
b9bfb93c
SW
622 /* set up mempools */
623 err = -ENOMEM;
624 client->wb_pagevec_pool = mempool_create_kmalloc_pool(10,
625 client->mount_args->wsize >> PAGE_CACHE_SHIFT);
626 if (!client->wb_pagevec_pool)
627 goto fail_trunc_wq;
628
85ccce43
SW
629 /* caps */
630 client->min_caps = args->max_readdir;
b9bfb93c 631
16725b9d
SW
632 /* subsystems */
633 err = ceph_monc_init(&client->monc, client);
634 if (err < 0)
b9bfb93c 635 goto fail_mempool;
16725b9d
SW
636 err = ceph_osdc_init(&client->osdc, client);
637 if (err < 0)
638 goto fail_monc;
5f44f142
SW
639 err = ceph_mdsc_init(&client->mdsc, client);
640 if (err < 0)
641 goto fail_osdc;
16725b9d
SW
642 return client;
643
5f44f142
SW
644fail_osdc:
645 ceph_osdc_stop(&client->osdc);
16725b9d
SW
646fail_monc:
647 ceph_monc_stop(&client->monc);
b9bfb93c
SW
648fail_mempool:
649 mempool_destroy(client->wb_pagevec_pool);
16725b9d
SW
650fail_trunc_wq:
651 destroy_workqueue(client->trunc_wq);
652fail_pg_inv_wq:
653 destroy_workqueue(client->pg_inv_wq);
654fail_wb_wq:
655 destroy_workqueue(client->wb_wq);
859e7b14
SW
656fail_bdi:
657 bdi_destroy(&client->backing_dev_info);
16725b9d
SW
658fail:
659 kfree(client);
660 return ERR_PTR(err);
661}
662
663static void ceph_destroy_client(struct ceph_client *client)
664{
665 dout("destroy_client %p\n", client);
666
667 /* unmount */
668 ceph_mdsc_stop(&client->mdsc);
16725b9d
SW
669 ceph_osdc_stop(&client->osdc);
670
a922d38f
SW
671 /*
672 * make sure mds and osd connections close out before destroying
673 * the auth module, which is needed to free those connections'
674 * ceph_authorizers.
675 */
676 ceph_msgr_flush();
677
678 ceph_monc_stop(&client->monc);
679
16725b9d
SW
680 ceph_debugfs_client_cleanup(client);
681 destroy_workqueue(client->wb_wq);
682 destroy_workqueue(client->pg_inv_wq);
683 destroy_workqueue(client->trunc_wq);
684
5dfc589a
SW
685 bdi_destroy(&client->backing_dev_info);
686
16725b9d
SW
687 if (client->msgr)
688 ceph_messenger_destroy(client->msgr);
b9bfb93c 689 mempool_destroy(client->wb_pagevec_pool);
16725b9d 690
6b805185 691 destroy_mount_args(client->mount_args);
16725b9d
SW
692
693 kfree(client);
694 dout("destroy_client %p done\n", client);
695}
696
0743304d
SW
697/*
698 * Initially learn our fsid, or verify an fsid matches.
699 */
700int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid)
701{
702 if (client->have_fsid) {
703 if (ceph_fsid_compare(&client->fsid, fsid)) {
9ec7cab1
SW
704 pr_err("bad fsid, had " FSID_FORMAT " got " FSID_FORMAT,
705 PR_FSID(&client->fsid), PR_FSID(fsid));
0743304d
SW
706 return -1;
707 }
708 } else {
709 pr_info("client%lld fsid " FSID_FORMAT "\n",
710 client->monc.auth->global_id, PR_FSID(fsid));
711 memcpy(&client->fsid, fsid, sizeof(*fsid));
712 ceph_debugfs_client_init(client);
713 client->have_fsid = true;
714 }
715 return 0;
716}
717
16725b9d
SW
718/*
719 * true if we have the mon map (and have thus joined the cluster)
720 */
6822d00b 721static int have_mon_and_osd_map(struct ceph_client *client)
16725b9d 722{
6822d00b
SW
723 return client->monc.monmap && client->monc.monmap->epoch &&
724 client->osdc.osdmap && client->osdc.osdmap->epoch;
16725b9d
SW
725}
726
727/*
728 * Bootstrap mount by opening the root directory. Note the mount
729 * @started time from caller, and time out if this takes too long.
730 */
731static struct dentry *open_root_dentry(struct ceph_client *client,
732 const char *path,
733 unsigned long started)
734{
735 struct ceph_mds_client *mdsc = &client->mdsc;
736 struct ceph_mds_request *req = NULL;
737 int err;
738 struct dentry *root;
739
740 /* open dir */
741 dout("open_root_inode opening '%s'\n", path);
742 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
743 if (IS_ERR(req))
7e34bc52 744 return ERR_CAST(req);
16725b9d
SW
745 req->r_path1 = kstrdup(path, GFP_NOFS);
746 req->r_ino1.ino = CEPH_INO_ROOT;
747 req->r_ino1.snap = CEPH_NOSNAP;
748 req->r_started = started;
6b805185 749 req->r_timeout = client->mount_args->mount_timeout * HZ;
16725b9d
SW
750 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
751 req->r_num_caps = 2;
752 err = ceph_mdsc_do_request(mdsc, NULL, req);
753 if (err == 0) {
754 dout("open_root_inode success\n");
755 if (ceph_ino(req->r_target_inode) == CEPH_INO_ROOT &&
756 client->sb->s_root == NULL)
757 root = d_alloc_root(req->r_target_inode);
758 else
759 root = d_obtain_alias(req->r_target_inode);
760 req->r_target_inode = NULL;
761 dout("open_root_inode success, root dentry is %p\n", root);
762 } else {
763 root = ERR_PTR(err);
764 }
765 ceph_mdsc_put_request(req);
766 return root;
767}
768
769/*
770 * mount: join the ceph cluster, and open root directory.
771 */
772static int ceph_mount(struct ceph_client *client, struct vfsmount *mnt,
773 const char *path)
774{
775 struct ceph_entity_addr *myaddr = NULL;
776 int err;
6b805185 777 unsigned long timeout = client->mount_args->mount_timeout * HZ;
16725b9d
SW
778 unsigned long started = jiffies; /* note the start time */
779 struct dentry *root;
780
781 dout("mount start\n");
782 mutex_lock(&client->mount_mutex);
783
784 /* initialize the messenger */
785 if (client->msgr == NULL) {
786 if (ceph_test_opt(client, MYIP))
6b805185 787 myaddr = &client->mount_args->my_addr;
16725b9d
SW
788 client->msgr = ceph_messenger_create(myaddr);
789 if (IS_ERR(client->msgr)) {
790 err = PTR_ERR(client->msgr);
791 client->msgr = NULL;
792 goto out;
793 }
794 client->msgr->nocrc = ceph_test_opt(client, NOCRC);
795 }
796
4e7a5dcd
SW
797 /* open session, and wait for mon, mds, and osd maps */
798 err = ceph_monc_open_session(&client->monc);
16725b9d
SW
799 if (err < 0)
800 goto out;
801
6822d00b 802 while (!have_mon_and_osd_map(client)) {
16725b9d
SW
803 err = -EIO;
804 if (timeout && time_after_eq(jiffies, started + timeout))
805 goto out;
806
807 /* wait */
4e7a5dcd 808 dout("mount waiting for mon_map\n");
9bd2e6f8 809 err = wait_event_interruptible_timeout(client->auth_wq,
6822d00b
SW
810 have_mon_and_osd_map(client) || (client->auth_err < 0),
811 timeout);
16725b9d
SW
812 if (err == -EINTR || err == -ERESTARTSYS)
813 goto out;
9bd2e6f8
SW
814 if (client->auth_err < 0) {
815 err = client->auth_err;
dc14657c
YS
816 goto out;
817 }
16725b9d
SW
818 }
819
820 dout("mount opening root\n");
821 root = open_root_dentry(client, "", started);
822 if (IS_ERR(root)) {
823 err = PTR_ERR(root);
824 goto out;
825 }
826 if (client->sb->s_root)
827 dput(root);
828 else
829 client->sb->s_root = root;
830
831 if (path[0] == 0) {
832 dget(root);
833 } else {
834 dout("mount opening base mountpoint\n");
835 root = open_root_dentry(client, path, started);
836 if (IS_ERR(root)) {
837 err = PTR_ERR(root);
838 dput(client->sb->s_root);
839 client->sb->s_root = NULL;
840 goto out;
841 }
842 }
843
844 mnt->mnt_root = root;
845 mnt->mnt_sb = client->sb;
846
847 client->mount_state = CEPH_MOUNT_MOUNTED;
848 dout("mount success\n");
849 err = 0;
850
851out:
852 mutex_unlock(&client->mount_mutex);
853 return err;
854}
855
856static int ceph_set_super(struct super_block *s, void *data)
857{
858 struct ceph_client *client = data;
859 int ret;
860
861 dout("set_super %p data %p\n", s, data);
862
6b805185 863 s->s_flags = client->mount_args->sb_flags;
16725b9d
SW
864 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
865
866 s->s_fs_info = client;
867 client->sb = s;
868
869 s->s_op = &ceph_super_ops;
870 s->s_export_op = &ceph_export_ops;
871
872 s->s_time_gran = 1000; /* 1000 ns == 1 us */
873
874 ret = set_anon_super(s, NULL); /* what is that second arg for? */
875 if (ret != 0)
876 goto fail;
877
878 return ret;
879
880fail:
881 s->s_fs_info = NULL;
882 client->sb = NULL;
883 return ret;
884}
885
886/*
887 * share superblock if same fs AND options
888 */
889static int ceph_compare_super(struct super_block *sb, void *data)
890{
891 struct ceph_client *new = data;
6b805185 892 struct ceph_mount_args *args = new->mount_args;
16725b9d
SW
893 struct ceph_client *other = ceph_sb_to_client(sb);
894 int i;
895
896 dout("ceph_compare_super %p\n", sb);
897 if (args->flags & CEPH_OPT_FSID) {
898 if (ceph_fsid_compare(&args->fsid, &other->fsid)) {
899 dout("fsid doesn't match\n");
900 return 0;
901 }
902 } else {
903 /* do we share (a) monitor? */
904 for (i = 0; i < new->monc.monmap->num_mon; i++)
905 if (ceph_monmap_contains(other->monc.monmap,
906 &new->monc.monmap->mon_inst[i].addr))
907 break;
908 if (i == new->monc.monmap->num_mon) {
909 dout("mon ip not part of monmap\n");
910 return 0;
911 }
912 dout("mon ip matches existing sb %p\n", sb);
913 }
6b805185 914 if (args->sb_flags != other->mount_args->sb_flags) {
16725b9d
SW
915 dout("flags differ\n");
916 return 0;
917 }
918 return 1;
919}
920
921/*
922 * construct our own bdi so we can control readahead, etc.
923 */
00d5643e 924static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
31e0cf8f 925
859e7b14 926static int ceph_register_bdi(struct super_block *sb, struct ceph_client *client)
16725b9d
SW
927{
928 int err;
929
16725b9d 930 /* set ra_pages based on rsize mount option? */
6b805185 931 if (client->mount_args->rsize >= PAGE_CACHE_SIZE)
16725b9d 932 client->backing_dev_info.ra_pages =
6b805185 933 (client->mount_args->rsize + PAGE_CACHE_SIZE - 1)
16725b9d 934 >> PAGE_SHIFT;
31e0cf8f
SW
935 err = bdi_register(&client->backing_dev_info, NULL, "ceph-%d",
936 atomic_long_inc_return(&bdi_seq));
5dfc589a
SW
937 if (!err)
938 sb->s_bdi = &client->backing_dev_info;
16725b9d
SW
939 return err;
940}
941
942static int ceph_get_sb(struct file_system_type *fs_type,
943 int flags, const char *dev_name, void *data,
944 struct vfsmount *mnt)
945{
946 struct super_block *sb;
947 struct ceph_client *client;
948 int err;
949 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
6a18be16 950 const char *path = NULL;
6b805185 951 struct ceph_mount_args *args;
16725b9d
SW
952
953 dout("ceph_get_sb\n");
6b805185
SW
954 args = parse_mount_args(flags, data, dev_name, &path);
955 if (IS_ERR(args)) {
956 err = PTR_ERR(args);
957 goto out_final;
958 }
16725b9d
SW
959
960 /* create client (which we may/may not use) */
6b805185
SW
961 client = ceph_create_client(args);
962 if (IS_ERR(client)) {
963 err = PTR_ERR(client);
964 goto out_final;
965 }
16725b9d 966
6b805185 967 if (client->mount_args->flags & CEPH_OPT_NOSHARE)
16725b9d
SW
968 compare_super = NULL;
969 sb = sget(fs_type, compare_super, ceph_set_super, client);
970 if (IS_ERR(sb)) {
971 err = PTR_ERR(sb);
972 goto out;
973 }
974
640ef79d 975 if (ceph_sb_to_client(sb) != client) {
16725b9d 976 ceph_destroy_client(client);
640ef79d 977 client = ceph_sb_to_client(sb);
16725b9d
SW
978 dout("get_sb got existing client %p\n", client);
979 } else {
980 dout("get_sb using new client %p\n", client);
859e7b14 981 err = ceph_register_bdi(sb, client);
16725b9d
SW
982 if (err < 0)
983 goto out_splat;
984 }
985
986 err = ceph_mount(client, mnt, path);
987 if (err < 0)
988 goto out_splat;
989 dout("root %p inode %p ino %llx.%llx\n", mnt->mnt_root,
990 mnt->mnt_root->d_inode, ceph_vinop(mnt->mnt_root->d_inode));
991 return 0;
992
993out_splat:
994 ceph_mdsc_close_sessions(&client->mdsc);
3981f2e2 995 deactivate_locked_super(sb);
16725b9d
SW
996 goto out_final;
997
998out:
999 ceph_destroy_client(client);
1000out_final:
1001 dout("ceph_get_sb fail %d\n", err);
1002 return err;
1003}
1004
1005static void ceph_kill_sb(struct super_block *s)
1006{
1007 struct ceph_client *client = ceph_sb_to_client(s);
1008 dout("kill_sb %p\n", s);
1009 ceph_mdsc_pre_umount(&client->mdsc);
16725b9d 1010 kill_anon_super(s); /* will call put_super after sb is r/o */
16725b9d
SW
1011 ceph_destroy_client(client);
1012}
1013
1014static struct file_system_type ceph_fs_type = {
1015 .owner = THIS_MODULE,
1016 .name = "ceph",
1017 .get_sb = ceph_get_sb,
1018 .kill_sb = ceph_kill_sb,
1019 .fs_flags = FS_RENAME_DOES_D_MOVE,
1020};
1021
1022#define _STRINGIFY(x) #x
1023#define STRINGIFY(x) _STRINGIFY(x)
1024
1025static int __init init_ceph(void)
1026{
1027 int ret = 0;
1028
1029 ret = ceph_debugfs_init();
1030 if (ret < 0)
1031 goto out;
1032
1033 ret = ceph_msgr_init();
1034 if (ret < 0)
1035 goto out_debugfs;
1036
1037 ret = init_caches();
1038 if (ret)
1039 goto out_msgr;
1040
16725b9d
SW
1041 ret = register_filesystem(&ceph_fs_type);
1042 if (ret)
1043 goto out_icache;
1044
c8f16584
SW
1045 pr_info("loaded (mon/mds/osd proto %d/%d/%d, osdmap %d/%d %d/%d)\n",
1046 CEPH_MONC_PROTOCOL, CEPH_MDSC_PROTOCOL, CEPH_OSDC_PROTOCOL,
1047 CEPH_OSDMAP_VERSION, CEPH_OSDMAP_VERSION_EXT,
1048 CEPH_OSDMAP_INC_VERSION, CEPH_OSDMAP_INC_VERSION_EXT);
16725b9d
SW
1049 return 0;
1050
1051out_icache:
1052 destroy_caches();
1053out_msgr:
1054 ceph_msgr_exit();
1055out_debugfs:
1056 ceph_debugfs_cleanup();
1057out:
1058 return ret;
1059}
1060
1061static void __exit exit_ceph(void)
1062{
1063 dout("exit_ceph\n");
1064 unregister_filesystem(&ceph_fs_type);
16725b9d
SW
1065 destroy_caches();
1066 ceph_msgr_exit();
1067 ceph_debugfs_cleanup();
1068}
1069
1070module_init(init_ceph);
1071module_exit(exit_ceph);
1072
1073MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1074MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1075MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1076MODULE_DESCRIPTION("Ceph filesystem for Linux");
1077MODULE_LICENSE("GPL");
This page took 0.103096 seconds and 5 git commands to generate.