2 #include <linux/ceph/ceph_debug.h>
4 #include <linux/backing-dev.h>
5 #include <linux/ctype.h>
7 #include <linux/inet.h>
9 #include <linux/module.h>
10 #include <linux/mount.h>
11 #include <linux/parser.h>
12 #include <linux/sched.h>
13 #include <linux/seq_file.h>
14 #include <linux/slab.h>
15 #include <linux/statfs.h>
16 #include <linux/string.h>
19 #include "mds_client.h"
22 #include <linux/ceph/ceph_features.h>
23 #include <linux/ceph/decode.h>
24 #include <linux/ceph/mon_client.h>
25 #include <linux/ceph/auth.h>
26 #include <linux/ceph/debugfs.h>
29 * Ceph superblock operations
31 * Handle the basics of mounting, unmounting.
37 static void ceph_put_super(struct super_block
*s
)
39 struct ceph_fs_client
*fsc
= ceph_sb_to_client(s
);
42 ceph_mdsc_close_sessions(fsc
->mdsc
);
45 static int ceph_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
47 struct ceph_fs_client
*fsc
= ceph_inode_to_client(d_inode(dentry
));
48 struct ceph_monmap
*monmap
= fsc
->client
->monc
.monmap
;
49 struct ceph_statfs st
;
54 if (fsc
->mdsc
->mdsmap
->m_num_data_pg_pools
== 1) {
55 data_pool
= fsc
->mdsc
->mdsmap
->m_data_pg_pools
[0];
57 data_pool
= CEPH_NOPOOL
;
61 err
= ceph_monc_do_statfs(&fsc
->client
->monc
, data_pool
, &st
);
66 buf
->f_type
= CEPH_SUPER_MAGIC
; /* ?? */
69 * express utilization in terms of large blocks to avoid
70 * overflow on 32-bit machines.
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!
77 buf
->f_bsize
= 1 << CEPH_BLOCK_SHIFT
;
78 buf
->f_frsize
= 1 << CEPH_BLOCK_SHIFT
;
79 buf
->f_blocks
= le64_to_cpu(st
.kb
) >> (CEPH_BLOCK_SHIFT
-10);
80 buf
->f_bfree
= le64_to_cpu(st
.kb_avail
) >> (CEPH_BLOCK_SHIFT
-10);
81 buf
->f_bavail
= le64_to_cpu(st
.kb_avail
) >> (CEPH_BLOCK_SHIFT
-10);
83 buf
->f_files
= le64_to_cpu(st
.num_objects
);
85 buf
->f_namelen
= NAME_MAX
;
87 /* 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));
90 buf
->f_fsid
.val
[0] = fsid
& 0xffffffff;
91 buf
->f_fsid
.val
[1] = fsid
>> 32;
97 static int ceph_sync_fs(struct super_block
*sb
, int wait
)
99 struct ceph_fs_client
*fsc
= ceph_sb_to_client(sb
);
102 dout("sync_fs (non-blocking)\n");
103 ceph_flush_dirty_caps(fsc
->mdsc
);
104 dout("sync_fs (non-blocking) done\n");
108 dout("sync_fs (blocking)\n");
109 ceph_osdc_sync(&fsc
->client
->osdc
);
110 ceph_mdsc_sync(fsc
->mdsc
);
111 dout("sync_fs (blocking) done\n");
122 Opt_caps_wanted_delay_min
,
123 Opt_caps_wanted_delay_max
,
124 Opt_readdir_max_entries
,
125 Opt_readdir_max_bytes
,
133 /* string args above */
148 Opt_require_active_mds
,
149 Opt_norequire_active_mds
,
150 #ifdef CONFIG_CEPH_FS_POSIX_ACL
156 static match_table_t fsopt_tokens
= {
157 {Opt_wsize
, "wsize=%d"},
158 {Opt_rsize
, "rsize=%d"},
159 {Opt_rasize
, "rasize=%d"},
160 {Opt_caps_wanted_delay_min
, "caps_wanted_delay_min=%d"},
161 {Opt_caps_wanted_delay_max
, "caps_wanted_delay_max=%d"},
162 {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"},
166 {Opt_snapdirname
, "snapdirname=%s"},
167 {Opt_mds_namespace
, "mds_namespace=%s"},
168 {Opt_fscache_uniq
, "fsc=%s"},
169 /* string args above */
170 {Opt_dirstat
, "dirstat"},
171 {Opt_nodirstat
, "nodirstat"},
172 {Opt_rbytes
, "rbytes"},
173 {Opt_norbytes
, "norbytes"},
174 {Opt_asyncreaddir
, "asyncreaddir"},
175 {Opt_noasyncreaddir
, "noasyncreaddir"},
176 {Opt_dcache
, "dcache"},
177 {Opt_nodcache
, "nodcache"},
178 {Opt_ino32
, "ino32"},
179 {Opt_noino32
, "noino32"},
180 {Opt_fscache
, "fsc"},
181 {Opt_nofscache
, "nofsc"},
182 {Opt_poolperm
, "poolperm"},
183 {Opt_nopoolperm
, "nopoolperm"},
184 {Opt_require_active_mds
, "require_active_mds"},
185 {Opt_norequire_active_mds
, "norequire_active_mds"},
186 #ifdef CONFIG_CEPH_FS_POSIX_ACL
189 {Opt_noacl
, "noacl"},
193 static int parse_fsopt_token(char *c
, void *private)
195 struct ceph_mount_options
*fsopt
= private;
196 substring_t argstr
[MAX_OPT_ARGS
];
197 int token
, intval
, ret
;
199 token
= match_token((char *)c
, fsopt_tokens
, argstr
);
203 if (token
< Opt_last_int
) {
204 ret
= match_int(&argstr
[0], &intval
);
206 pr_err("bad mount option arg (not int) "
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
,
215 dout("got token %d\n", 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
,
224 if (!fsopt
->snapdir_name
)
227 case Opt_mds_namespace
:
228 fsopt
->mds_namespace
= kstrndup(argstr
[0].from
,
229 argstr
[0].to
-argstr
[0].from
,
231 if (!fsopt
->mds_namespace
)
234 case Opt_fscache_uniq
:
235 fsopt
->fscache_uniq
= kstrndup(argstr
[0].from
,
236 argstr
[0].to
-argstr
[0].from
,
238 if (!fsopt
->fscache_uniq
)
240 fsopt
->flags
|= CEPH_MOUNT_OPT_FSCACHE
;
244 if (intval
< PAGE_SIZE
|| intval
> CEPH_MAX_WRITE_SIZE
)
246 fsopt
->wsize
= ALIGN(intval
, PAGE_SIZE
);
249 if (intval
< PAGE_SIZE
|| intval
> CEPH_MAX_READ_SIZE
)
251 fsopt
->rsize
= ALIGN(intval
, PAGE_SIZE
);
256 fsopt
->rasize
= ALIGN(intval
+ PAGE_SIZE
- 1, PAGE_SIZE
);
258 case Opt_caps_wanted_delay_min
:
261 fsopt
->caps_wanted_delay_min
= intval
;
263 case Opt_caps_wanted_delay_max
:
266 fsopt
->caps_wanted_delay_max
= intval
;
268 case Opt_readdir_max_entries
:
271 fsopt
->max_readdir
= intval
;
273 case Opt_readdir_max_bytes
:
274 if (intval
< PAGE_SIZE
&& intval
!= 0)
276 fsopt
->max_readdir_bytes
= intval
;
278 case Opt_congestion_kb
:
279 if (intval
< 1024) /* at least 1M */
281 fsopt
->congestion_kb
= intval
;
284 fsopt
->flags
|= CEPH_MOUNT_OPT_DIRSTAT
;
287 fsopt
->flags
&= ~CEPH_MOUNT_OPT_DIRSTAT
;
290 fsopt
->flags
|= CEPH_MOUNT_OPT_RBYTES
;
293 fsopt
->flags
&= ~CEPH_MOUNT_OPT_RBYTES
;
295 case Opt_asyncreaddir
:
296 fsopt
->flags
&= ~CEPH_MOUNT_OPT_NOASYNCREADDIR
;
298 case Opt_noasyncreaddir
:
299 fsopt
->flags
|= CEPH_MOUNT_OPT_NOASYNCREADDIR
;
302 fsopt
->flags
|= CEPH_MOUNT_OPT_DCACHE
;
305 fsopt
->flags
&= ~CEPH_MOUNT_OPT_DCACHE
;
308 fsopt
->flags
|= CEPH_MOUNT_OPT_INO32
;
311 fsopt
->flags
&= ~CEPH_MOUNT_OPT_INO32
;
314 fsopt
->flags
|= CEPH_MOUNT_OPT_FSCACHE
;
317 fsopt
->flags
&= ~CEPH_MOUNT_OPT_FSCACHE
;
320 fsopt
->flags
&= ~CEPH_MOUNT_OPT_NOPOOLPERM
;
321 printk ("pool perm");
324 fsopt
->flags
|= CEPH_MOUNT_OPT_NOPOOLPERM
;
326 case Opt_require_active_mds
:
327 fsopt
->flags
&= ~CEPH_MOUNT_OPT_MOUNTWAIT
;
329 case Opt_norequire_active_mds
:
330 fsopt
->flags
|= CEPH_MOUNT_OPT_MOUNTWAIT
;
332 #ifdef CONFIG_CEPH_FS_POSIX_ACL
334 fsopt
->sb_flags
|= SB_POSIXACL
;
338 fsopt
->sb_flags
&= ~SB_POSIXACL
;
346 static void destroy_mount_options(struct ceph_mount_options
*args
)
348 dout("destroy_mount_options %p\n", args
);
349 kfree(args
->snapdir_name
);
350 kfree(args
->mds_namespace
);
351 kfree(args
->server_path
);
352 kfree(args
->fscache_uniq
);
356 static int strcmp_null(const char *s1
, const char *s2
)
364 return strcmp(s1
, s2
);
367 static int compare_mount_options(struct ceph_mount_options
*new_fsopt
,
368 struct ceph_options
*new_opt
,
369 struct ceph_fs_client
*fsc
)
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
);
376 ret
= memcmp(fsopt1
, fsopt2
, ofs
);
380 ret
= strcmp_null(fsopt1
->snapdir_name
, fsopt2
->snapdir_name
);
383 ret
= strcmp_null(fsopt1
->mds_namespace
, fsopt2
->mds_namespace
);
386 ret
= strcmp_null(fsopt1
->server_path
, fsopt2
->server_path
);
389 ret
= strcmp_null(fsopt1
->fscache_uniq
, fsopt2
->fscache_uniq
);
393 return ceph_compare_options(new_opt
, fsc
->client
);
396 static int parse_mount_options(struct ceph_mount_options
**pfsopt
,
397 struct ceph_options
**popt
,
398 int flags
, char *options
,
399 const char *dev_name
)
401 struct ceph_mount_options
*fsopt
;
402 const char *dev_name_end
;
405 if (!dev_name
|| !*dev_name
)
408 fsopt
= kzalloc(sizeof(*fsopt
), GFP_KERNEL
);
412 dout("parse_mount_options %p, dev_name '%s'\n", fsopt
, dev_name
);
414 fsopt
->sb_flags
= flags
;
415 fsopt
->flags
= CEPH_MOUNT_OPT_DEFAULT
;
417 fsopt
->wsize
= CEPH_MAX_WRITE_SIZE
;
418 fsopt
->rsize
= CEPH_MAX_READ_SIZE
;
419 fsopt
->rasize
= CEPH_RASIZE_DEFAULT
;
420 fsopt
->snapdir_name
= kstrdup(CEPH_SNAPDIRNAME_DEFAULT
, GFP_KERNEL
);
421 if (!fsopt
->snapdir_name
) {
426 fsopt
->caps_wanted_delay_min
= CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT
;
427 fsopt
->caps_wanted_delay_max
= CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT
;
428 fsopt
->max_readdir
= CEPH_MAX_READDIR_DEFAULT
;
429 fsopt
->max_readdir_bytes
= CEPH_MAX_READDIR_BYTES_DEFAULT
;
430 fsopt
->congestion_kb
= default_congestion_kb();
433 * Distinguish the server list from the path in "dev_name".
434 * Internally we do not include the leading '/' in the path.
436 * "dev_name" will look like:
437 * <server_spec>[,<server_spec>...]:[<path>]
439 * <server_spec> is <ip>[:<port>]
440 * <path> is optional, but if present must begin with '/'
442 dev_name_end
= strchr(dev_name
, '/');
444 if (strlen(dev_name_end
) > 1) {
445 fsopt
->server_path
= kstrdup(dev_name_end
, GFP_KERNEL
);
446 if (!fsopt
->server_path
) {
452 dev_name_end
= dev_name
+ strlen(dev_name
);
455 dev_name_end
--; /* back up to ':' separator */
456 if (dev_name_end
< dev_name
|| *dev_name_end
!= ':') {
457 pr_err("device name is missing path (no : separator in %s)\n",
461 dout("device name '%.*s'\n", (int)(dev_name_end
- dev_name
), dev_name
);
462 if (fsopt
->server_path
)
463 dout("server path '%s'\n", fsopt
->server_path
);
465 *popt
= ceph_parse_options(options
, dev_name
, dev_name_end
,
466 parse_fsopt_token
, (void *)fsopt
);
468 err
= PTR_ERR(*popt
);
477 destroy_mount_options(fsopt
);
482 * ceph_show_options - Show mount options in /proc/mounts
483 * @m: seq_file to write to
484 * @root: root of that (sub)tree
486 static int ceph_show_options(struct seq_file
*m
, struct dentry
*root
)
488 struct ceph_fs_client
*fsc
= ceph_sb_to_client(root
->d_sb
);
489 struct ceph_mount_options
*fsopt
= fsc
->mount_options
;
493 /* a comma between MNT/MS and client options */
497 ret
= ceph_print_client_options(m
, fsc
->client
);
501 /* retract our comma if no client options */
505 if (fsopt
->flags
& CEPH_MOUNT_OPT_DIRSTAT
)
506 seq_puts(m
, ",dirstat");
507 if ((fsopt
->flags
& CEPH_MOUNT_OPT_RBYTES
))
508 seq_puts(m
, ",rbytes");
509 if (fsopt
->flags
& CEPH_MOUNT_OPT_NOASYNCREADDIR
)
510 seq_puts(m
, ",noasyncreaddir");
511 if ((fsopt
->flags
& CEPH_MOUNT_OPT_DCACHE
) == 0)
512 seq_puts(m
, ",nodcache");
513 if (fsopt
->flags
& CEPH_MOUNT_OPT_FSCACHE
) {
514 if (fsopt
->fscache_uniq
)
515 seq_printf(m
, ",fsc=%s", fsopt
->fscache_uniq
);
519 if (fsopt
->flags
& CEPH_MOUNT_OPT_NOPOOLPERM
)
520 seq_puts(m
, ",nopoolperm");
522 #ifdef CONFIG_CEPH_FS_POSIX_ACL
523 if (fsopt
->sb_flags
& SB_POSIXACL
)
526 seq_puts(m
, ",noacl");
529 if (fsopt
->mds_namespace
)
530 seq_printf(m
, ",mds_namespace=%s", fsopt
->mds_namespace
);
532 seq_printf(m
, ",wsize=%d", fsopt
->wsize
);
533 if (fsopt
->rsize
!= CEPH_MAX_READ_SIZE
)
534 seq_printf(m
, ",rsize=%d", fsopt
->rsize
);
535 if (fsopt
->rasize
!= CEPH_RASIZE_DEFAULT
)
536 seq_printf(m
, ",rasize=%d", fsopt
->rasize
);
537 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
)
540 seq_printf(m
, ",caps_wanted_delay_min=%d",
541 fsopt
->caps_wanted_delay_min
);
542 if (fsopt
->caps_wanted_delay_max
!= CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT
)
543 seq_printf(m
, ",caps_wanted_delay_max=%d",
544 fsopt
->caps_wanted_delay_max
);
545 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
))
550 seq_show_option(m
, "snapdirname", fsopt
->snapdir_name
);
556 * handle any mon messages the standard library doesn't understand.
557 * return error if we don't either.
559 static int extra_mon_dispatch(struct ceph_client
*client
, struct ceph_msg
*msg
)
561 struct ceph_fs_client
*fsc
= client
->private;
562 int type
= le16_to_cpu(msg
->hdr
.type
);
565 case CEPH_MSG_MDS_MAP
:
566 ceph_mdsc_handle_mdsmap(fsc
->mdsc
, msg
);
568 case CEPH_MSG_FS_MAP_USER
:
569 ceph_mdsc_handle_fsmap(fsc
->mdsc
, msg
);
577 * create a new fs client
579 static struct ceph_fs_client
*create_fs_client(struct ceph_mount_options
*fsopt
,
580 struct ceph_options
*opt
)
582 struct ceph_fs_client
*fsc
;
587 fsc
= kzalloc(sizeof(*fsc
), GFP_KERNEL
);
589 return ERR_PTR(-ENOMEM
);
591 fsc
->client
= ceph_create_client(opt
, fsc
);
592 if (IS_ERR(fsc
->client
)) {
593 err
= PTR_ERR(fsc
->client
);
596 fsc
->client
->extra_mon_dispatch
= extra_mon_dispatch
;
598 if (!fsopt
->mds_namespace
) {
599 ceph_monc_want_map(&fsc
->client
->monc
, CEPH_SUB_MDSMAP
,
602 ceph_monc_want_map(&fsc
->client
->monc
, CEPH_SUB_FSMAP
,
606 fsc
->mount_options
= fsopt
;
609 fsc
->mount_state
= CEPH_MOUNT_MOUNTING
;
611 atomic_long_set(&fsc
->writeback_count
, 0);
615 * The number of concurrent works can be high but they don't need
616 * to be processed in parallel, limit concurrency.
618 fsc
->wb_wq
= alloc_workqueue("ceph-writeback", 0, 1);
621 fsc
->pg_inv_wq
= alloc_workqueue("ceph-pg-invalid", 0, 1);
624 fsc
->trunc_wq
= alloc_workqueue("ceph-trunc", 0, 1);
628 /* set up mempools */
630 page_count
= fsc
->mount_options
->wsize
>> PAGE_SHIFT
;
631 size
= sizeof (struct page
*) * (page_count
? page_count
: 1);
632 fsc
->wb_pagevec_pool
= mempool_create_kmalloc_pool(10, size
);
633 if (!fsc
->wb_pagevec_pool
)
637 fsc
->min_caps
= fsopt
->max_readdir
;
642 destroy_workqueue(fsc
->trunc_wq
);
644 destroy_workqueue(fsc
->pg_inv_wq
);
646 destroy_workqueue(fsc
->wb_wq
);
648 ceph_destroy_client(fsc
->client
);
654 static void destroy_fs_client(struct ceph_fs_client
*fsc
)
656 dout("destroy_fs_client %p\n", fsc
);
658 destroy_workqueue(fsc
->wb_wq
);
659 destroy_workqueue(fsc
->pg_inv_wq
);
660 destroy_workqueue(fsc
->trunc_wq
);
662 mempool_destroy(fsc
->wb_pagevec_pool
);
664 destroy_mount_options(fsc
->mount_options
);
666 ceph_destroy_client(fsc
->client
);
669 dout("destroy_fs_client %p done\n", fsc
);
675 struct kmem_cache
*ceph_inode_cachep
;
676 struct kmem_cache
*ceph_cap_cachep
;
677 struct kmem_cache
*ceph_cap_flush_cachep
;
678 struct kmem_cache
*ceph_dentry_cachep
;
679 struct kmem_cache
*ceph_file_cachep
;
681 static void ceph_inode_init_once(void *foo
)
683 struct ceph_inode_info
*ci
= foo
;
684 inode_init_once(&ci
->vfs_inode
);
687 static int __init
init_caches(void)
691 ceph_inode_cachep
= kmem_cache_create("ceph_inode_info",
692 sizeof(struct ceph_inode_info
),
693 __alignof__(struct ceph_inode_info
),
694 SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
|
695 SLAB_ACCOUNT
, ceph_inode_init_once
);
696 if (!ceph_inode_cachep
)
699 ceph_cap_cachep
= KMEM_CACHE(ceph_cap
,
700 SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
);
701 if (!ceph_cap_cachep
)
703 ceph_cap_flush_cachep
= KMEM_CACHE(ceph_cap_flush
,
704 SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
);
705 if (!ceph_cap_flush_cachep
)
708 ceph_dentry_cachep
= KMEM_CACHE(ceph_dentry_info
,
709 SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
);
710 if (!ceph_dentry_cachep
)
713 ceph_file_cachep
= KMEM_CACHE(ceph_file_info
, SLAB_MEM_SPREAD
);
715 if (!ceph_file_cachep
)
718 if ((error
= ceph_fscache_register()))
723 kmem_cache_destroy(ceph_dentry_cachep
);
725 kmem_cache_destroy(ceph_cap_flush_cachep
);
727 kmem_cache_destroy(ceph_cap_cachep
);
729 kmem_cache_destroy(ceph_inode_cachep
);
733 static void destroy_caches(void)
736 * Make sure all delayed rcu free inodes are flushed before we
741 kmem_cache_destroy(ceph_inode_cachep
);
742 kmem_cache_destroy(ceph_cap_cachep
);
743 kmem_cache_destroy(ceph_cap_flush_cachep
);
744 kmem_cache_destroy(ceph_dentry_cachep
);
745 kmem_cache_destroy(ceph_file_cachep
);
747 ceph_fscache_unregister();
752 * ceph_umount_begin - initiate forced umount. Tear down down the
753 * mount, skipping steps that may hang while waiting for server(s).
755 static void ceph_umount_begin(struct super_block
*sb
)
757 struct ceph_fs_client
*fsc
= ceph_sb_to_client(sb
);
759 dout("ceph_umount_begin - starting forced umount\n");
762 fsc
->mount_state
= CEPH_MOUNT_SHUTDOWN
;
763 ceph_mdsc_force_umount(fsc
->mdsc
);
767 static 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
,
771 .drop_inode
= ceph_drop_inode
,
772 .sync_fs
= ceph_sync_fs
,
773 .put_super
= ceph_put_super
,
774 .show_options
= ceph_show_options
,
775 .statfs
= ceph_statfs
,
776 .umount_begin
= ceph_umount_begin
,
780 * Bootstrap mount by opening the root directory. Note the mount
781 * @started time from caller, and time out if this takes too long.
783 static struct dentry
*open_root_dentry(struct ceph_fs_client
*fsc
,
785 unsigned long started
)
787 struct ceph_mds_client
*mdsc
= fsc
->mdsc
;
788 struct ceph_mds_request
*req
= NULL
;
793 dout("open_root_inode opening '%s'\n", path
);
794 req
= ceph_mdsc_create_request(mdsc
, CEPH_MDS_OP_GETATTR
, USE_ANY_MDS
);
796 return ERR_CAST(req
);
797 req
->r_path1
= kstrdup(path
, GFP_NOFS
);
799 root
= ERR_PTR(-ENOMEM
);
803 req
->r_ino1
.ino
= CEPH_INO_ROOT
;
804 req
->r_ino1
.snap
= CEPH_NOSNAP
;
805 req
->r_started
= started
;
806 req
->r_timeout
= fsc
->client
->options
->mount_timeout
;
807 req
->r_args
.getattr
.mask
= cpu_to_le32(CEPH_STAT_CAP_INODE
);
809 err
= ceph_mdsc_do_request(mdsc
, NULL
, req
);
811 struct inode
*inode
= req
->r_target_inode
;
812 req
->r_target_inode
= NULL
;
813 dout("open_root_inode success\n");
814 root
= d_make_root(inode
);
816 root
= ERR_PTR(-ENOMEM
);
819 dout("open_root_inode success, root dentry is %p\n", root
);
824 ceph_mdsc_put_request(req
);
832 * mount: join the ceph cluster, and open root directory.
834 static struct dentry
*ceph_real_mount(struct ceph_fs_client
*fsc
)
837 unsigned long started
= jiffies
; /* note the start time */
839 int first
= 0; /* first vfsmount for this super_block */
841 dout("mount start %p\n", fsc
);
842 mutex_lock(&fsc
->client
->mount_mutex
);
844 if (!fsc
->sb
->s_root
) {
846 err
= __ceph_open_session(fsc
->client
, started
);
851 if (fsc
->mount_options
->flags
& CEPH_MOUNT_OPT_FSCACHE
) {
852 err
= ceph_fscache_register_fs(fsc
);
857 if (!fsc
->mount_options
->server_path
) {
859 dout("mount opening path \\t\n");
861 path
= fsc
->mount_options
->server_path
+ 1;
862 dout("mount opening path %s\n", path
);
864 root
= open_root_dentry(fsc
, path
, started
);
869 fsc
->sb
->s_root
= dget(root
);
872 err
= ceph_fs_debugfs_init(fsc
);
876 root
= dget(fsc
->sb
->s_root
);
879 fsc
->mount_state
= CEPH_MOUNT_MOUNTED
;
880 dout("mount success\n");
881 mutex_unlock(&fsc
->client
->mount_mutex
);
886 dput(fsc
->sb
->s_root
);
887 fsc
->sb
->s_root
= NULL
;
890 mutex_unlock(&fsc
->client
->mount_mutex
);
894 static int ceph_set_super(struct super_block
*s
, void *data
)
896 struct ceph_fs_client
*fsc
= data
;
899 dout("set_super %p data %p\n", s
, data
);
901 s
->s_flags
= fsc
->mount_options
->sb_flags
;
902 s
->s_maxbytes
= 1ULL << 40; /* temp value until we get mdsmap */
904 s
->s_xattr
= ceph_xattr_handlers
;
908 s
->s_op
= &ceph_super_ops
;
909 s
->s_d_op
= &ceph_dentry_ops
;
910 s
->s_export_op
= &ceph_export_ops
;
912 s
->s_time_gran
= 1000; /* 1000 ns == 1 us */
914 ret
= set_anon_super(s
, NULL
); /* what is that second arg for? */
927 * share superblock if same fs AND options
929 static int ceph_compare_super(struct super_block
*sb
, void *data
)
931 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
);
936 dout("ceph_compare_super %p\n", sb
);
938 if (compare_mount_options(fsopt
, opt
, other
)) {
939 dout("monitor(s)/mount options don't match\n");
942 if ((opt
->flags
& CEPH_OPT_FSID
) &&
943 ceph_fsid_compare(&opt
->fsid
, &other
->client
->fsid
)) {
944 dout("fsid doesn't match\n");
947 if (fsopt
->sb_flags
!= other
->mount_options
->sb_flags
) {
948 dout("flags differ\n");
955 * construct our own bdi so we can control readahead, etc.
957 static atomic_long_t bdi_seq
= ATOMIC_LONG_INIT(0);
959 static int ceph_setup_bdi(struct super_block
*sb
, struct ceph_fs_client
*fsc
)
963 err
= super_setup_bdi_name(sb
, "ceph-%ld",
964 atomic_long_inc_return(&bdi_seq
));
968 /* set ra_pages based on rasize mount option? */
969 sb
->s_bdi
->ra_pages
= fsc
->mount_options
->rasize
>> PAGE_SHIFT
;
971 /* set io_pages based on max osd read size */
972 sb
->s_bdi
->io_pages
= fsc
->mount_options
->rsize
>> PAGE_SHIFT
;
977 static struct dentry
*ceph_mount(struct file_system_type
*fs_type
,
978 int flags
, const char *dev_name
, void *data
)
980 struct super_block
*sb
;
981 struct ceph_fs_client
*fsc
;
984 int (*compare_super
)(struct super_block
*, void *) = ceph_compare_super
;
985 struct ceph_mount_options
*fsopt
= NULL
;
986 struct ceph_options
*opt
= NULL
;
988 dout("ceph_mount\n");
990 #ifdef CONFIG_CEPH_FS_POSIX_ACL
991 flags
|= SB_POSIXACL
;
993 err
= parse_mount_options(&fsopt
, &opt
, flags
, data
, dev_name
);
999 /* create client (which we may/may not use) */
1000 fsc
= create_fs_client(fsopt
, opt
);
1002 res
= ERR_CAST(fsc
);
1003 destroy_mount_options(fsopt
);
1004 ceph_destroy_options(opt
);
1008 err
= ceph_mdsc_init(fsc
);
1014 if (ceph_test_opt(fsc
->client
, NOSHARE
))
1015 compare_super
= NULL
;
1016 sb
= sget(fs_type
, compare_super
, ceph_set_super
, flags
, fsc
);
1022 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
);
1028 dout("get_sb using new client %p\n", fsc
);
1029 err
= ceph_setup_bdi(sb
, fsc
);
1036 res
= ceph_real_mount(fsc
);
1039 dout("root %p inode %p ino %llx.%llx\n", res
,
1040 d_inode(res
), ceph_vinop(d_inode(res
)));
1044 ceph_mdsc_close_sessions(fsc
->mdsc
);
1045 deactivate_locked_super(sb
);
1049 ceph_mdsc_destroy(fsc
);
1050 destroy_fs_client(fsc
);
1052 dout("ceph_mount fail %ld\n", PTR_ERR(res
));
1056 static void ceph_kill_sb(struct super_block
*s
)
1058 struct ceph_fs_client
*fsc
= ceph_sb_to_client(s
);
1059 dev_t dev
= s
->s_dev
;
1061 dout("kill_sb %p\n", s
);
1063 ceph_mdsc_pre_umount(fsc
->mdsc
);
1064 generic_shutdown_super(s
);
1066 fsc
->client
->extra_mon_dispatch
= NULL
;
1067 ceph_fs_debugfs_cleanup(fsc
);
1069 ceph_fscache_unregister_fs(fsc
);
1071 ceph_mdsc_destroy(fsc
);
1073 destroy_fs_client(fsc
);
1074 free_anon_bdev(dev
);
1077 static struct file_system_type ceph_fs_type
= {
1078 .owner
= THIS_MODULE
,
1080 .mount
= ceph_mount
,
1081 .kill_sb
= ceph_kill_sb
,
1082 .fs_flags
= FS_RENAME_DOES_D_MOVE
,
1084 MODULE_ALIAS_FS("ceph");
1086 static int __init
init_ceph(void)
1088 int ret
= init_caches();
1094 ret
= register_filesystem(&ceph_fs_type
);
1098 pr_info("loaded (mds proto %d)\n", CEPH_MDSC_PROTOCOL
);
1109 static void __exit
exit_ceph(void)
1111 dout("exit_ceph\n");
1112 unregister_filesystem(&ceph_fs_type
);
1117 module_init(init_ceph
);
1118 module_exit(exit_ceph
);
1120 MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1121 MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1122 MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1123 MODULE_DESCRIPTION("Ceph filesystem for Linux");
1124 MODULE_LICENSE("GPL");