1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * load/unload driver, mount/dismount volumes
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
26 #include <linux/module.h>
28 #include <linux/types.h>
29 #include <linux/slab.h>
30 #include <linux/highmem.h>
31 #include <linux/utsname.h>
32 #include <linux/init.h>
33 #include <linux/random.h>
34 #include <linux/statfs.h>
35 #include <linux/moduleparam.h>
36 #include <linux/blkdev.h>
37 #include <linux/socket.h>
38 #include <linux/inet.h>
39 #include <linux/parser.h>
40 #include <linux/crc32.h>
41 #include <linux/debugfs.h>
42 #include <linux/mount.h>
43 #include <linux/seq_file.h>
44 #include <linux/quotaops.h>
46 #define MLOG_MASK_PREFIX ML_SUPER
47 #include <cluster/masklog.h>
51 /* this should be the only file to include a version 1 header */
52 #include "ocfs1_fs_compat.h"
55 #include "blockcheck.h"
58 #include "extent_map.h"
59 #include "heartbeat.h"
62 #include "localalloc.h"
72 #include "buffer_head_io.h"
74 static struct kmem_cache
*ocfs2_inode_cachep
= NULL
;
75 struct kmem_cache
*ocfs2_dquot_cachep
;
76 struct kmem_cache
*ocfs2_qf_chunk_cachep
;
78 /* OCFS2 needs to schedule several differnt types of work which
79 * require cluster locking, disk I/O, recovery waits, etc. Since these
80 * types of work tend to be heavy we avoid using the kernel events
81 * workqueue and schedule on our own. */
82 struct workqueue_struct
*ocfs2_wq
= NULL
;
84 static struct dentry
*ocfs2_debugfs_root
= NULL
;
86 MODULE_AUTHOR("Oracle");
87 MODULE_LICENSE("GPL");
91 unsigned long commit_interval
;
92 unsigned long mount_opt
;
93 unsigned int atime_quantum
;
95 unsigned int localalloc_opt
;
96 char cluster_stack
[OCFS2_STACK_LABEL_LEN
+ 1];
99 static int ocfs2_parse_options(struct super_block
*sb
, char *options
,
100 struct mount_options
*mopt
,
102 static int ocfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
);
103 static void ocfs2_put_super(struct super_block
*sb
);
104 static int ocfs2_mount_volume(struct super_block
*sb
);
105 static int ocfs2_remount(struct super_block
*sb
, int *flags
, char *data
);
106 static void ocfs2_dismount_volume(struct super_block
*sb
, int mnt_err
);
107 static int ocfs2_initialize_mem_caches(void);
108 static void ocfs2_free_mem_caches(void);
109 static void ocfs2_delete_osb(struct ocfs2_super
*osb
);
111 static int ocfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
);
113 static int ocfs2_sync_fs(struct super_block
*sb
, int wait
);
115 static int ocfs2_init_global_system_inodes(struct ocfs2_super
*osb
);
116 static int ocfs2_init_local_system_inodes(struct ocfs2_super
*osb
);
117 static void ocfs2_release_system_inodes(struct ocfs2_super
*osb
);
118 static int ocfs2_check_volume(struct ocfs2_super
*osb
);
119 static int ocfs2_verify_volume(struct ocfs2_dinode
*di
,
120 struct buffer_head
*bh
,
122 static int ocfs2_initialize_super(struct super_block
*sb
,
123 struct buffer_head
*bh
,
125 static int ocfs2_get_sector(struct super_block
*sb
,
126 struct buffer_head
**bh
,
129 static void ocfs2_write_super(struct super_block
*sb
);
130 static struct inode
*ocfs2_alloc_inode(struct super_block
*sb
);
131 static void ocfs2_destroy_inode(struct inode
*inode
);
132 static int ocfs2_susp_quotas(struct ocfs2_super
*osb
, int unsuspend
);
133 static int ocfs2_enable_quotas(struct ocfs2_super
*osb
);
134 static void ocfs2_disable_quotas(struct ocfs2_super
*osb
);
136 static const struct super_operations ocfs2_sops
= {
137 .statfs
= ocfs2_statfs
,
138 .alloc_inode
= ocfs2_alloc_inode
,
139 .destroy_inode
= ocfs2_destroy_inode
,
140 .drop_inode
= ocfs2_drop_inode
,
141 .clear_inode
= ocfs2_clear_inode
,
142 .delete_inode
= ocfs2_delete_inode
,
143 .sync_fs
= ocfs2_sync_fs
,
144 .write_super
= ocfs2_write_super
,
145 .put_super
= ocfs2_put_super
,
146 .remount_fs
= ocfs2_remount
,
147 .show_options
= ocfs2_show_options
,
148 .quota_read
= ocfs2_quota_read
,
149 .quota_write
= ocfs2_quota_write
,
178 static const match_table_t tokens
= {
179 {Opt_barrier
, "barrier=%u"},
180 {Opt_err_panic
, "errors=panic"},
181 {Opt_err_ro
, "errors=remount-ro"},
183 {Opt_nointr
, "nointr"},
184 {Opt_hb_none
, OCFS2_HB_NONE
},
185 {Opt_hb_local
, OCFS2_HB_LOCAL
},
186 {Opt_data_ordered
, "data=ordered"},
187 {Opt_data_writeback
, "data=writeback"},
188 {Opt_atime_quantum
, "atime_quantum=%u"},
189 {Opt_slot
, "preferred_slot=%u"},
190 {Opt_commit
, "commit=%u"},
191 {Opt_localalloc
, "localalloc=%d"},
192 {Opt_localflocks
, "localflocks"},
193 {Opt_stack
, "cluster_stack=%s"},
194 {Opt_user_xattr
, "user_xattr"},
195 {Opt_nouser_xattr
, "nouser_xattr"},
196 {Opt_inode64
, "inode64"},
198 {Opt_noacl
, "noacl"},
199 {Opt_usrquota
, "usrquota"},
200 {Opt_grpquota
, "grpquota"},
205 * write_super and sync_fs ripped right out of ext3.
207 static void ocfs2_write_super(struct super_block
*sb
)
209 if (mutex_trylock(&sb
->s_lock
) != 0)
214 static int ocfs2_sync_fs(struct super_block
*sb
, int wait
)
218 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
222 if (ocfs2_is_hard_readonly(osb
))
226 status
= ocfs2_flush_truncate_log(osb
);
230 ocfs2_schedule_truncate_log_flush(osb
, 0);
233 if (jbd2_journal_start_commit(OCFS2_SB(sb
)->journal
->j_journal
,
236 jbd2_log_wait_commit(OCFS2_SB(sb
)->journal
->j_journal
,
242 static int ocfs2_need_system_inode(struct ocfs2_super
*osb
, int ino
)
244 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)
245 && (ino
== USER_QUOTA_SYSTEM_INODE
246 || ino
== LOCAL_USER_QUOTA_SYSTEM_INODE
))
248 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)
249 && (ino
== GROUP_QUOTA_SYSTEM_INODE
250 || ino
== LOCAL_GROUP_QUOTA_SYSTEM_INODE
))
255 static int ocfs2_init_global_system_inodes(struct ocfs2_super
*osb
)
257 struct inode
*new = NULL
;
263 new = ocfs2_iget(osb
, osb
->root_blkno
, OCFS2_FI_FLAG_SYSFILE
, 0);
265 status
= PTR_ERR(new);
269 osb
->root_inode
= new;
271 new = ocfs2_iget(osb
, osb
->system_dir_blkno
, OCFS2_FI_FLAG_SYSFILE
, 0);
273 status
= PTR_ERR(new);
277 osb
->sys_root_inode
= new;
279 for (i
= OCFS2_FIRST_ONLINE_SYSTEM_INODE
;
280 i
<= OCFS2_LAST_GLOBAL_SYSTEM_INODE
; i
++) {
281 if (!ocfs2_need_system_inode(osb
, i
))
283 new = ocfs2_get_system_file_inode(osb
, i
, osb
->slot_num
);
285 ocfs2_release_system_inodes(osb
);
288 /* FIXME: Should ERROR_RO_FS */
289 mlog(ML_ERROR
, "Unable to load system inode %d, "
290 "possibly corrupt fs?", i
);
293 // the array now has one ref, so drop this one
302 static int ocfs2_init_local_system_inodes(struct ocfs2_super
*osb
)
304 struct inode
*new = NULL
;
310 for (i
= OCFS2_LAST_GLOBAL_SYSTEM_INODE
+ 1;
311 i
< NUM_SYSTEM_INODES
;
313 if (!ocfs2_need_system_inode(osb
, i
))
315 new = ocfs2_get_system_file_inode(osb
, i
, osb
->slot_num
);
317 ocfs2_release_system_inodes(osb
);
319 mlog(ML_ERROR
, "status=%d, sysfile=%d, slot=%d\n",
320 status
, i
, osb
->slot_num
);
323 /* the array now has one ref, so drop this one */
332 static void ocfs2_release_system_inodes(struct ocfs2_super
*osb
)
339 for (i
= 0; i
< NUM_SYSTEM_INODES
; i
++) {
340 inode
= osb
->system_inodes
[i
];
343 osb
->system_inodes
[i
] = NULL
;
347 inode
= osb
->sys_root_inode
;
350 osb
->sys_root_inode
= NULL
;
353 inode
= osb
->root_inode
;
356 osb
->root_inode
= NULL
;
362 /* We're allocating fs objects, use GFP_NOFS */
363 static struct inode
*ocfs2_alloc_inode(struct super_block
*sb
)
365 struct ocfs2_inode_info
*oi
;
367 oi
= kmem_cache_alloc(ocfs2_inode_cachep
, GFP_NOFS
);
371 jbd2_journal_init_jbd_inode(&oi
->ip_jinode
, &oi
->vfs_inode
);
372 return &oi
->vfs_inode
;
375 static void ocfs2_destroy_inode(struct inode
*inode
)
377 kmem_cache_free(ocfs2_inode_cachep
, OCFS2_I(inode
));
380 static unsigned long long ocfs2_max_file_offset(unsigned int bbits
,
383 unsigned int bytes
= 1 << cbits
;
384 unsigned int trim
= bytes
;
385 unsigned int bitshift
= 32;
388 * i_size and all block offsets in ocfs2 are always 64 bits
389 * wide. i_clusters is 32 bits, in cluster-sized units. So on
390 * 64 bit platforms, cluster size will be the limiting factor.
393 #if BITS_PER_LONG == 32
394 # if defined(CONFIG_LBD)
395 BUILD_BUG_ON(sizeof(sector_t
) != 8);
397 * We might be limited by page cache size.
399 if (bytes
> PAGE_CACHE_SIZE
) {
400 bytes
= PAGE_CACHE_SIZE
;
403 * Shift by 31 here so that we don't get larger than
410 * We are limited by the size of sector_t. Use block size, as
411 * that's what we expose to the VFS.
420 * Trim by a whole cluster when we can actually approach the
421 * on-disk limits. Otherwise we can overflow i_clusters when
422 * an extent start is at the max offset.
424 return (((unsigned long long)bytes
) << bitshift
) - trim
;
427 static int ocfs2_remount(struct super_block
*sb
, int *flags
, char *data
)
429 int incompat_features
;
431 struct mount_options parsed_options
;
432 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
434 if (!ocfs2_parse_options(sb
, data
, &parsed_options
, 1)) {
439 if ((osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) !=
440 (parsed_options
.mount_opt
& OCFS2_MOUNT_HB_LOCAL
)) {
442 mlog(ML_ERROR
, "Cannot change heartbeat mode on remount\n");
446 if ((osb
->s_mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
) !=
447 (parsed_options
.mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
)) {
449 mlog(ML_ERROR
, "Cannot change data mode on remount\n");
453 /* Probably don't want this on remount; it might
454 * mess with other nodes */
455 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_INODE64
) &&
456 (parsed_options
.mount_opt
& OCFS2_MOUNT_INODE64
)) {
458 mlog(ML_ERROR
, "Cannot enable inode64 on remount\n");
462 /* We're going to/from readonly mode. */
463 if ((*flags
& MS_RDONLY
) != (sb
->s_flags
& MS_RDONLY
)) {
464 /* Disable quota accounting before remounting RO */
465 if (*flags
& MS_RDONLY
) {
466 ret
= ocfs2_susp_quotas(osb
, 0);
470 /* Lock here so the check of HARD_RO and the potential
471 * setting of SOFT_RO is atomic. */
472 spin_lock(&osb
->osb_lock
);
473 if (osb
->osb_flags
& OCFS2_OSB_HARD_RO
) {
474 mlog(ML_ERROR
, "Remount on readonly device is forbidden.\n");
479 if (*flags
& MS_RDONLY
) {
480 mlog(0, "Going to ro mode.\n");
481 sb
->s_flags
|= MS_RDONLY
;
482 osb
->osb_flags
|= OCFS2_OSB_SOFT_RO
;
484 mlog(0, "Making ro filesystem writeable.\n");
486 if (osb
->osb_flags
& OCFS2_OSB_ERROR_FS
) {
487 mlog(ML_ERROR
, "Cannot remount RDWR "
488 "filesystem due to previous errors.\n");
492 incompat_features
= OCFS2_HAS_RO_COMPAT_FEATURE(sb
, ~OCFS2_FEATURE_RO_COMPAT_SUPP
);
493 if (incompat_features
) {
494 mlog(ML_ERROR
, "Cannot remount RDWR because "
495 "of unsupported optional features "
496 "(%x).\n", incompat_features
);
500 sb
->s_flags
&= ~MS_RDONLY
;
501 osb
->osb_flags
&= ~OCFS2_OSB_SOFT_RO
;
504 spin_unlock(&osb
->osb_lock
);
505 /* Enable quota accounting after remounting RW */
506 if (!ret
&& !(*flags
& MS_RDONLY
)) {
507 if (sb_any_quota_suspended(sb
))
508 ret
= ocfs2_susp_quotas(osb
, 1);
510 ret
= ocfs2_enable_quotas(osb
);
512 /* Return back changes... */
513 spin_lock(&osb
->osb_lock
);
514 sb
->s_flags
|= MS_RDONLY
;
515 osb
->osb_flags
|= OCFS2_OSB_SOFT_RO
;
516 spin_unlock(&osb
->osb_lock
);
523 /* Only save off the new mount options in case of a successful
525 if (!(osb
->s_feature_incompat
& OCFS2_FEATURE_INCOMPAT_XATTR
))
526 parsed_options
.mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
527 osb
->s_mount_opt
= parsed_options
.mount_opt
;
528 osb
->s_atime_quantum
= parsed_options
.atime_quantum
;
529 osb
->preferred_slot
= parsed_options
.slot
;
530 if (parsed_options
.commit_interval
)
531 osb
->osb_commit_interval
= parsed_options
.commit_interval
;
533 if (!ocfs2_is_hard_readonly(osb
))
534 ocfs2_set_journal_params(osb
);
540 static int ocfs2_sb_probe(struct super_block
*sb
,
541 struct buffer_head
**bh
,
545 struct ocfs1_vol_disk_hdr
*hdr
;
546 struct ocfs2_dinode
*di
;
552 *sector_size
= bdev_hardsect_size(sb
->s_bdev
);
553 if (*sector_size
> OCFS2_MAX_BLOCKSIZE
) {
554 mlog(ML_ERROR
, "Hardware sector size too large: %d (max=%d)\n",
555 *sector_size
, OCFS2_MAX_BLOCKSIZE
);
560 /* Can this really happen? */
561 if (*sector_size
< OCFS2_MIN_BLOCKSIZE
)
562 *sector_size
= OCFS2_MIN_BLOCKSIZE
;
564 /* check block zero for old format */
565 status
= ocfs2_get_sector(sb
, bh
, 0, *sector_size
);
570 hdr
= (struct ocfs1_vol_disk_hdr
*) (*bh
)->b_data
;
571 if (hdr
->major_version
== OCFS1_MAJOR_VERSION
) {
572 mlog(ML_ERROR
, "incompatible version: %u.%u\n",
573 hdr
->major_version
, hdr
->minor_version
);
576 if (memcmp(hdr
->signature
, OCFS1_VOLUME_SIGNATURE
,
577 strlen(OCFS1_VOLUME_SIGNATURE
)) == 0) {
578 mlog(ML_ERROR
, "incompatible volume signature: %8s\n",
585 mlog(ML_ERROR
, "This is an ocfs v1 filesystem which must be "
586 "upgraded before mounting with ocfs v2\n");
591 * Now check at magic offset for 512, 1024, 2048, 4096
592 * blocksizes. 4096 is the maximum blocksize because it is
593 * the minimum clustersize.
596 for (blksize
= *sector_size
;
597 blksize
<= OCFS2_MAX_BLOCKSIZE
;
599 tmpstat
= ocfs2_get_sector(sb
, bh
,
600 OCFS2_SUPER_BLOCK_BLKNO
,
607 di
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
608 status
= ocfs2_verify_volume(di
, *bh
, blksize
);
613 if (status
!= -EAGAIN
)
621 static int ocfs2_verify_heartbeat(struct ocfs2_super
*osb
)
623 if (ocfs2_mount_local(osb
)) {
624 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
625 mlog(ML_ERROR
, "Cannot heartbeat on a locally "
626 "mounted device.\n");
631 if (ocfs2_userspace_stack(osb
)) {
632 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
633 mlog(ML_ERROR
, "Userspace stack expected, but "
634 "o2cb heartbeat arguments passed to mount\n");
639 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
)) {
640 if (!ocfs2_mount_local(osb
) && !ocfs2_is_hard_readonly(osb
) &&
641 !ocfs2_userspace_stack(osb
)) {
642 mlog(ML_ERROR
, "Heartbeat has to be started to mount "
643 "a read-write clustered device.\n");
652 * If we're using a userspace stack, mount should have passed
653 * a name that matches the disk. If not, mount should not
654 * have passed a stack.
656 static int ocfs2_verify_userspace_stack(struct ocfs2_super
*osb
,
657 struct mount_options
*mopt
)
659 if (!ocfs2_userspace_stack(osb
) && mopt
->cluster_stack
[0]) {
661 "cluster stack passed to mount, but this filesystem "
662 "does not support it\n");
666 if (ocfs2_userspace_stack(osb
) &&
667 strncmp(osb
->osb_cluster_stack
, mopt
->cluster_stack
,
668 OCFS2_STACK_LABEL_LEN
)) {
670 "cluster stack passed to mount (\"%s\") does not "
671 "match the filesystem (\"%s\")\n",
673 osb
->osb_cluster_stack
);
680 static int ocfs2_susp_quotas(struct ocfs2_super
*osb
, int unsuspend
)
683 struct super_block
*sb
= osb
->sb
;
684 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
685 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
688 for (type
= 0; type
< MAXQUOTAS
; type
++) {
689 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
692 status
= vfs_quota_enable(
693 sb_dqopt(sb
)->files
[type
],
697 status
= vfs_quota_disable(sb
, type
,
703 mlog(ML_ERROR
, "Failed to suspend/unsuspend quotas on "
704 "remount (error = %d).\n", status
);
708 static int ocfs2_enable_quotas(struct ocfs2_super
*osb
)
710 struct inode
*inode
[MAXQUOTAS
] = { NULL
, NULL
};
711 struct super_block
*sb
= osb
->sb
;
712 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
713 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
714 unsigned int ino
[MAXQUOTAS
] = { LOCAL_USER_QUOTA_SYSTEM_INODE
,
715 LOCAL_GROUP_QUOTA_SYSTEM_INODE
};
719 sb_dqopt(sb
)->flags
|= DQUOT_QUOTA_SYS_FILE
| DQUOT_NEGATIVE_USAGE
;
720 for (type
= 0; type
< MAXQUOTAS
; type
++) {
721 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
723 inode
[type
] = ocfs2_get_system_file_inode(osb
, ino
[type
],
729 status
= vfs_quota_enable(inode
[type
], type
, QFMT_OCFS2
,
730 DQUOT_USAGE_ENABLED
);
735 for (type
= 0; type
< MAXQUOTAS
; type
++)
739 ocfs2_disable_quotas(osb
);
740 for (type
= 0; type
< MAXQUOTAS
; type
++)
746 static void ocfs2_disable_quotas(struct ocfs2_super
*osb
)
750 struct super_block
*sb
= osb
->sb
;
752 /* We mostly ignore errors in this function because there's not much
753 * we can do when we see them */
754 for (type
= 0; type
< MAXQUOTAS
; type
++) {
755 if (!sb_has_quota_loaded(sb
, type
))
757 inode
= igrab(sb
->s_dquot
.files
[type
]);
758 /* Turn off quotas. This will remove all dquot structures from
759 * memory and so they will be automatically synced to global
761 vfs_quota_disable(sb
, type
, DQUOT_USAGE_ENABLED
|
762 DQUOT_LIMITS_ENABLED
);
769 /* Handle quota on quotactl */
770 static int ocfs2_quota_on(struct super_block
*sb
, int type
, int format_id
,
771 char *path
, int remount
)
773 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
774 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
776 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
780 return 0; /* Just ignore it has been handled in
782 return vfs_quota_enable(sb_dqopt(sb
)->files
[type
], type
,
783 format_id
, DQUOT_LIMITS_ENABLED
);
786 /* Handle quota off quotactl */
787 static int ocfs2_quota_off(struct super_block
*sb
, int type
, int remount
)
790 return 0; /* Ignore now and handle later in
792 return vfs_quota_disable(sb
, type
, DQUOT_LIMITS_ENABLED
);
795 static struct quotactl_ops ocfs2_quotactl_ops
= {
796 .quota_on
= ocfs2_quota_on
,
797 .quota_off
= ocfs2_quota_off
,
798 .quota_sync
= vfs_quota_sync
,
799 .get_info
= vfs_get_dqinfo
,
800 .set_info
= vfs_set_dqinfo
,
801 .get_dqblk
= vfs_get_dqblk
,
802 .set_dqblk
= vfs_set_dqblk
,
805 static int ocfs2_fill_super(struct super_block
*sb
, void *data
, int silent
)
808 int status
, sector_size
;
809 struct mount_options parsed_options
;
810 struct inode
*inode
= NULL
;
811 struct ocfs2_super
*osb
= NULL
;
812 struct buffer_head
*bh
= NULL
;
815 mlog_entry("%p, %p, %i", sb
, data
, silent
);
817 if (!ocfs2_parse_options(sb
, data
, &parsed_options
, 0)) {
819 goto read_super_error
;
822 /* probe for superblock */
823 status
= ocfs2_sb_probe(sb
, &bh
, §or_size
);
825 mlog(ML_ERROR
, "superblock probe failed!\n");
826 goto read_super_error
;
829 status
= ocfs2_initialize_super(sb
, bh
, sector_size
);
833 goto read_super_error
;
838 if (!(osb
->s_feature_incompat
& OCFS2_FEATURE_INCOMPAT_XATTR
))
839 parsed_options
.mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
841 osb
->s_mount_opt
= parsed_options
.mount_opt
;
842 osb
->s_atime_quantum
= parsed_options
.atime_quantum
;
843 osb
->preferred_slot
= parsed_options
.slot
;
844 osb
->osb_commit_interval
= parsed_options
.commit_interval
;
845 osb
->local_alloc_default_bits
= ocfs2_megabytes_to_clusters(sb
, parsed_options
.localalloc_opt
);
846 osb
->local_alloc_bits
= osb
->local_alloc_default_bits
;
847 if (osb
->s_mount_opt
& OCFS2_MOUNT_USRQUOTA
&&
848 !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
849 OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)) {
851 mlog(ML_ERROR
, "User quotas were requested, but this "
852 "filesystem does not have the feature enabled.\n");
853 goto read_super_error
;
855 if (osb
->s_mount_opt
& OCFS2_MOUNT_GRPQUOTA
&&
856 !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
857 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)) {
859 mlog(ML_ERROR
, "Group quotas were requested, but this "
860 "filesystem does not have the feature enabled.\n");
861 goto read_super_error
;
864 status
= ocfs2_verify_userspace_stack(osb
, &parsed_options
);
866 goto read_super_error
;
868 sb
->s_magic
= OCFS2_SUPER_MAGIC
;
870 sb
->s_flags
= (sb
->s_flags
& ~MS_POSIXACL
) |
871 ((osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
) ? MS_POSIXACL
: 0);
873 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
875 if (bdev_read_only(sb
->s_bdev
)) {
876 if (!(sb
->s_flags
& MS_RDONLY
)) {
878 mlog(ML_ERROR
, "Readonly device detected but readonly "
879 "mount was not specified.\n");
880 goto read_super_error
;
883 /* You should not be able to start a local heartbeat
884 * on a readonly device. */
885 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
887 mlog(ML_ERROR
, "Local heartbeat specified on readonly "
889 goto read_super_error
;
892 status
= ocfs2_check_journals_nolocks(osb
);
894 if (status
== -EROFS
)
895 mlog(ML_ERROR
, "Recovery required on readonly "
896 "file system, but write access is "
900 goto read_super_error
;
903 ocfs2_set_ro_flag(osb
, 1);
905 printk(KERN_NOTICE
"Readonly device detected. No cluster "
906 "services will be utilized for this mount. Recovery "
907 "will be skipped.\n");
910 if (!ocfs2_is_hard_readonly(osb
)) {
911 if (sb
->s_flags
& MS_RDONLY
)
912 ocfs2_set_ro_flag(osb
, 0);
915 status
= ocfs2_verify_heartbeat(osb
);
918 goto read_super_error
;
921 osb
->osb_debug_root
= debugfs_create_dir(osb
->uuid_str
,
923 if (!osb
->osb_debug_root
) {
925 mlog(ML_ERROR
, "Unable to create per-mount debugfs root.\n");
926 goto read_super_error
;
929 status
= ocfs2_mount_volume(sb
);
931 inode
= igrab(osb
->root_inode
);
934 goto read_super_error
;
939 goto read_super_error
;
942 root
= d_alloc_root(inode
);
946 goto read_super_error
;
951 ocfs2_complete_mount_recovery(osb
);
953 if (ocfs2_mount_local(osb
))
954 snprintf(nodestr
, sizeof(nodestr
), "local");
956 snprintf(nodestr
, sizeof(nodestr
), "%u", osb
->node_num
);
958 printk(KERN_INFO
"ocfs2: Mounting device (%s) on (node %s, slot %d) "
959 "with %s data mode.\n",
960 osb
->dev_str
, nodestr
, osb
->slot_num
,
961 osb
->s_mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
? "writeback" :
964 atomic_set(&osb
->vol_state
, VOLUME_MOUNTED
);
965 wake_up(&osb
->osb_mount_event
);
967 /* Now we can initialize quotas because we can afford to wait
968 * for cluster locks recovery now. That also means that truncation
969 * log recovery can happen but that waits for proper quota setup */
970 if (!(sb
->s_flags
& MS_RDONLY
)) {
971 status
= ocfs2_enable_quotas(osb
);
973 /* We have to err-out specially here because
974 * s_root is already set */
976 atomic_set(&osb
->vol_state
, VOLUME_DISABLED
);
977 wake_up(&osb
->osb_mount_event
);
983 ocfs2_complete_quota_recovery(osb
);
985 /* Now we wake up again for processes waiting for quotas */
986 atomic_set(&osb
->vol_state
, VOLUME_MOUNTED_QUOTAS
);
987 wake_up(&osb
->osb_mount_event
);
999 atomic_set(&osb
->vol_state
, VOLUME_DISABLED
);
1000 wake_up(&osb
->osb_mount_event
);
1001 ocfs2_dismount_volume(sb
, 1);
1008 static int ocfs2_get_sb(struct file_system_type
*fs_type
,
1010 const char *dev_name
,
1012 struct vfsmount
*mnt
)
1014 return get_sb_bdev(fs_type
, flags
, dev_name
, data
, ocfs2_fill_super
,
1018 static struct file_system_type ocfs2_fs_type
= {
1019 .owner
= THIS_MODULE
,
1021 .get_sb
= ocfs2_get_sb
, /* is this called when we mount
1023 .kill_sb
= kill_block_super
, /* set to the generic one
1024 * right now, but do we
1025 * need to change that? */
1026 .fs_flags
= FS_REQUIRES_DEV
|FS_RENAME_DOES_D_MOVE
,
1030 static int ocfs2_parse_options(struct super_block
*sb
,
1032 struct mount_options
*mopt
,
1038 mlog_entry("remount: %d, options: \"%s\"\n", is_remount
,
1039 options
? options
: "(none)");
1041 mopt
->commit_interval
= 0;
1042 mopt
->mount_opt
= 0;
1043 mopt
->atime_quantum
= OCFS2_DEFAULT_ATIME_QUANTUM
;
1044 mopt
->slot
= OCFS2_INVALID_SLOT
;
1045 mopt
->localalloc_opt
= OCFS2_DEFAULT_LOCAL_ALLOC_SIZE
;
1046 mopt
->cluster_stack
[0] = '\0';
1053 while ((p
= strsep(&options
, ",")) != NULL
) {
1055 substring_t args
[MAX_OPT_ARGS
];
1060 token
= match_token(p
, tokens
, args
);
1063 mopt
->mount_opt
|= OCFS2_MOUNT_HB_LOCAL
;
1066 mopt
->mount_opt
&= ~OCFS2_MOUNT_HB_LOCAL
;
1069 if (match_int(&args
[0], &option
)) {
1074 mopt
->mount_opt
|= OCFS2_MOUNT_BARRIER
;
1076 mopt
->mount_opt
&= ~OCFS2_MOUNT_BARRIER
;
1079 mopt
->mount_opt
&= ~OCFS2_MOUNT_NOINTR
;
1082 mopt
->mount_opt
|= OCFS2_MOUNT_NOINTR
;
1085 mopt
->mount_opt
|= OCFS2_MOUNT_ERRORS_PANIC
;
1088 mopt
->mount_opt
&= ~OCFS2_MOUNT_ERRORS_PANIC
;
1090 case Opt_data_ordered
:
1091 mopt
->mount_opt
&= ~OCFS2_MOUNT_DATA_WRITEBACK
;
1093 case Opt_data_writeback
:
1094 mopt
->mount_opt
|= OCFS2_MOUNT_DATA_WRITEBACK
;
1096 case Opt_user_xattr
:
1097 mopt
->mount_opt
&= ~OCFS2_MOUNT_NOUSERXATTR
;
1099 case Opt_nouser_xattr
:
1100 mopt
->mount_opt
|= OCFS2_MOUNT_NOUSERXATTR
;
1102 case Opt_atime_quantum
:
1103 if (match_int(&args
[0], &option
)) {
1108 mopt
->atime_quantum
= option
;
1112 if (match_int(&args
[0], &option
)) {
1117 mopt
->slot
= (s16
)option
;
1121 if (match_int(&args
[0], &option
)) {
1128 option
= JBD2_DEFAULT_MAX_COMMIT_AGE
;
1129 mopt
->commit_interval
= HZ
* option
;
1131 case Opt_localalloc
:
1133 if (match_int(&args
[0], &option
)) {
1137 if (option
>= 0 && (option
<= ocfs2_local_alloc_size(sb
) * 8))
1138 mopt
->localalloc_opt
= option
;
1140 case Opt_localflocks
:
1142 * Changing this during remount could race
1143 * flock() requests, or "unbalance" existing
1144 * ones (e.g., a lock is taken in one mode but
1145 * dropped in the other). If users care enough
1146 * to flip locking modes during remount, we
1147 * could add a "local" flag to individual
1148 * flock structures for proper tracking of
1152 mopt
->mount_opt
|= OCFS2_MOUNT_LOCALFLOCKS
;
1155 /* Check both that the option we were passed
1156 * is of the right length and that it is a proper
1157 * string of the right length.
1159 if (((args
[0].to
- args
[0].from
) !=
1160 OCFS2_STACK_LABEL_LEN
) ||
1161 (strnlen(args
[0].from
,
1162 OCFS2_STACK_LABEL_LEN
) !=
1163 OCFS2_STACK_LABEL_LEN
)) {
1165 "Invalid cluster_stack option\n");
1169 memcpy(mopt
->cluster_stack
, args
[0].from
,
1170 OCFS2_STACK_LABEL_LEN
);
1171 mopt
->cluster_stack
[OCFS2_STACK_LABEL_LEN
] = '\0';
1174 mopt
->mount_opt
|= OCFS2_MOUNT_INODE64
;
1177 /* We check only on remount, otherwise features
1178 * aren't yet initialized. */
1179 if (is_remount
&& !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1180 OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)) {
1181 mlog(ML_ERROR
, "User quota requested but "
1182 "filesystem feature is not set\n");
1186 mopt
->mount_opt
|= OCFS2_MOUNT_USRQUOTA
;
1189 if (is_remount
&& !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1190 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)) {
1191 mlog(ML_ERROR
, "Group quota requested but "
1192 "filesystem feature is not set\n");
1196 mopt
->mount_opt
|= OCFS2_MOUNT_GRPQUOTA
;
1198 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
1200 mopt
->mount_opt
|= OCFS2_MOUNT_POSIX_ACL
;
1203 mopt
->mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
1208 printk(KERN_INFO
"ocfs2 (no)acl options not supported\n");
1213 "Unrecognized mount option \"%s\" "
1214 "or missing value\n", p
);
1227 static int ocfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
)
1229 struct ocfs2_super
*osb
= OCFS2_SB(mnt
->mnt_sb
);
1230 unsigned long opts
= osb
->s_mount_opt
;
1231 unsigned int local_alloc_megs
;
1233 if (opts
& OCFS2_MOUNT_HB_LOCAL
)
1234 seq_printf(s
, ",_netdev,heartbeat=local");
1236 seq_printf(s
, ",heartbeat=none");
1238 if (opts
& OCFS2_MOUNT_NOINTR
)
1239 seq_printf(s
, ",nointr");
1241 if (opts
& OCFS2_MOUNT_DATA_WRITEBACK
)
1242 seq_printf(s
, ",data=writeback");
1244 seq_printf(s
, ",data=ordered");
1246 if (opts
& OCFS2_MOUNT_BARRIER
)
1247 seq_printf(s
, ",barrier=1");
1249 if (opts
& OCFS2_MOUNT_ERRORS_PANIC
)
1250 seq_printf(s
, ",errors=panic");
1252 seq_printf(s
, ",errors=remount-ro");
1254 if (osb
->preferred_slot
!= OCFS2_INVALID_SLOT
)
1255 seq_printf(s
, ",preferred_slot=%d", osb
->preferred_slot
);
1257 if (osb
->s_atime_quantum
!= OCFS2_DEFAULT_ATIME_QUANTUM
)
1258 seq_printf(s
, ",atime_quantum=%u", osb
->s_atime_quantum
);
1260 if (osb
->osb_commit_interval
)
1261 seq_printf(s
, ",commit=%u",
1262 (unsigned) (osb
->osb_commit_interval
/ HZ
));
1264 local_alloc_megs
= osb
->local_alloc_bits
>> (20 - osb
->s_clustersize_bits
);
1265 if (local_alloc_megs
!= OCFS2_DEFAULT_LOCAL_ALLOC_SIZE
)
1266 seq_printf(s
, ",localalloc=%d", local_alloc_megs
);
1268 if (opts
& OCFS2_MOUNT_LOCALFLOCKS
)
1269 seq_printf(s
, ",localflocks,");
1271 if (osb
->osb_cluster_stack
[0])
1272 seq_printf(s
, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN
,
1273 osb
->osb_cluster_stack
);
1274 if (opts
& OCFS2_MOUNT_USRQUOTA
)
1275 seq_printf(s
, ",usrquota");
1276 if (opts
& OCFS2_MOUNT_GRPQUOTA
)
1277 seq_printf(s
, ",grpquota");
1279 if (opts
& OCFS2_MOUNT_NOUSERXATTR
)
1280 seq_printf(s
, ",nouser_xattr");
1282 seq_printf(s
, ",user_xattr");
1284 if (opts
& OCFS2_MOUNT_INODE64
)
1285 seq_printf(s
, ",inode64");
1287 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
1288 if (opts
& OCFS2_MOUNT_POSIX_ACL
)
1289 seq_printf(s
, ",acl");
1291 seq_printf(s
, ",noacl");
1297 static int __init
ocfs2_init(void)
1303 ocfs2_print_version();
1305 status
= init_ocfs2_uptodate_cache();
1311 status
= ocfs2_initialize_mem_caches();
1317 ocfs2_wq
= create_singlethread_workqueue("ocfs2_wq");
1323 ocfs2_debugfs_root
= debugfs_create_dir("ocfs2", NULL
);
1324 if (!ocfs2_debugfs_root
) {
1326 mlog(ML_ERROR
, "Unable to create ocfs2 debugfs root.\n");
1329 status
= ocfs2_quota_setup();
1333 ocfs2_set_locking_protocol();
1335 status
= register_quota_format(&ocfs2_quota_format
);
1338 ocfs2_quota_shutdown();
1339 ocfs2_free_mem_caches();
1340 exit_ocfs2_uptodate_cache();
1346 return register_filesystem(&ocfs2_fs_type
);
1351 static void __exit
ocfs2_exit(void)
1355 ocfs2_quota_shutdown();
1358 flush_workqueue(ocfs2_wq
);
1359 destroy_workqueue(ocfs2_wq
);
1362 unregister_quota_format(&ocfs2_quota_format
);
1364 debugfs_remove(ocfs2_debugfs_root
);
1366 ocfs2_free_mem_caches();
1368 unregister_filesystem(&ocfs2_fs_type
);
1370 exit_ocfs2_uptodate_cache();
1375 static void ocfs2_put_super(struct super_block
*sb
)
1377 mlog_entry("(0x%p)\n", sb
);
1379 ocfs2_sync_blockdev(sb
);
1380 ocfs2_dismount_volume(sb
, 0);
1385 static int ocfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
1387 struct ocfs2_super
*osb
;
1388 u32 numbits
, freebits
;
1390 struct ocfs2_dinode
*bm_lock
;
1391 struct buffer_head
*bh
= NULL
;
1392 struct inode
*inode
= NULL
;
1394 mlog_entry("(%p, %p)\n", dentry
->d_sb
, buf
);
1396 osb
= OCFS2_SB(dentry
->d_sb
);
1398 inode
= ocfs2_get_system_file_inode(osb
,
1399 GLOBAL_BITMAP_SYSTEM_INODE
,
1400 OCFS2_INVALID_SLOT
);
1402 mlog(ML_ERROR
, "failed to get bitmap inode\n");
1407 status
= ocfs2_inode_lock(inode
, &bh
, 0);
1413 bm_lock
= (struct ocfs2_dinode
*) bh
->b_data
;
1415 numbits
= le32_to_cpu(bm_lock
->id1
.bitmap1
.i_total
);
1416 freebits
= numbits
- le32_to_cpu(bm_lock
->id1
.bitmap1
.i_used
);
1418 buf
->f_type
= OCFS2_SUPER_MAGIC
;
1419 buf
->f_bsize
= dentry
->d_sb
->s_blocksize
;
1420 buf
->f_namelen
= OCFS2_MAX_FILENAME_LEN
;
1421 buf
->f_blocks
= ((sector_t
) numbits
) *
1422 (osb
->s_clustersize
>> osb
->sb
->s_blocksize_bits
);
1423 buf
->f_bfree
= ((sector_t
) freebits
) *
1424 (osb
->s_clustersize
>> osb
->sb
->s_blocksize_bits
);
1425 buf
->f_bavail
= buf
->f_bfree
;
1426 buf
->f_files
= numbits
;
1427 buf
->f_ffree
= freebits
;
1431 ocfs2_inode_unlock(inode
, 0);
1442 static void ocfs2_inode_init_once(void *data
)
1444 struct ocfs2_inode_info
*oi
= data
;
1447 oi
->ip_open_count
= 0;
1448 spin_lock_init(&oi
->ip_lock
);
1449 ocfs2_extent_map_init(&oi
->vfs_inode
);
1450 INIT_LIST_HEAD(&oi
->ip_io_markers
);
1451 oi
->ip_created_trans
= 0;
1452 oi
->ip_last_trans
= 0;
1453 oi
->ip_dir_start_lookup
= 0;
1455 init_rwsem(&oi
->ip_alloc_sem
);
1456 init_rwsem(&oi
->ip_xattr_sem
);
1457 mutex_init(&oi
->ip_io_mutex
);
1459 oi
->ip_blkno
= 0ULL;
1460 oi
->ip_clusters
= 0;
1462 ocfs2_lock_res_init_once(&oi
->ip_rw_lockres
);
1463 ocfs2_lock_res_init_once(&oi
->ip_inode_lockres
);
1464 ocfs2_lock_res_init_once(&oi
->ip_open_lockres
);
1466 ocfs2_metadata_cache_init(&oi
->vfs_inode
);
1468 inode_init_once(&oi
->vfs_inode
);
1471 static int ocfs2_initialize_mem_caches(void)
1473 ocfs2_inode_cachep
= kmem_cache_create("ocfs2_inode_cache",
1474 sizeof(struct ocfs2_inode_info
),
1476 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
1478 ocfs2_inode_init_once
);
1479 ocfs2_dquot_cachep
= kmem_cache_create("ocfs2_dquot_cache",
1480 sizeof(struct ocfs2_dquot
),
1482 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
1485 ocfs2_qf_chunk_cachep
= kmem_cache_create("ocfs2_qf_chunk_cache",
1486 sizeof(struct ocfs2_quota_chunk
),
1488 (SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
),
1490 if (!ocfs2_inode_cachep
|| !ocfs2_dquot_cachep
||
1491 !ocfs2_qf_chunk_cachep
) {
1492 if (ocfs2_inode_cachep
)
1493 kmem_cache_destroy(ocfs2_inode_cachep
);
1494 if (ocfs2_dquot_cachep
)
1495 kmem_cache_destroy(ocfs2_dquot_cachep
);
1496 if (ocfs2_qf_chunk_cachep
)
1497 kmem_cache_destroy(ocfs2_qf_chunk_cachep
);
1504 static void ocfs2_free_mem_caches(void)
1506 if (ocfs2_inode_cachep
)
1507 kmem_cache_destroy(ocfs2_inode_cachep
);
1508 ocfs2_inode_cachep
= NULL
;
1510 if (ocfs2_dquot_cachep
)
1511 kmem_cache_destroy(ocfs2_dquot_cachep
);
1512 ocfs2_dquot_cachep
= NULL
;
1514 if (ocfs2_qf_chunk_cachep
)
1515 kmem_cache_destroy(ocfs2_qf_chunk_cachep
);
1516 ocfs2_qf_chunk_cachep
= NULL
;
1519 static int ocfs2_get_sector(struct super_block
*sb
,
1520 struct buffer_head
**bh
,
1524 if (!sb_set_blocksize(sb
, sect_size
)) {
1525 mlog(ML_ERROR
, "unable to set blocksize\n");
1529 *bh
= sb_getblk(sb
, block
);
1535 if (!buffer_dirty(*bh
))
1536 clear_buffer_uptodate(*bh
);
1538 ll_rw_block(READ
, 1, bh
);
1539 wait_on_buffer(*bh
);
1543 static int ocfs2_mount_volume(struct super_block
*sb
)
1546 int unlock_super
= 0;
1547 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
1551 if (ocfs2_is_hard_readonly(osb
))
1554 status
= ocfs2_dlm_init(osb
);
1560 status
= ocfs2_super_lock(osb
, 1);
1567 /* This will load up the node map and add ourselves to it. */
1568 status
= ocfs2_find_slot(osb
);
1574 /* load all node-local system inodes */
1575 status
= ocfs2_init_local_system_inodes(osb
);
1581 status
= ocfs2_check_volume(osb
);
1587 status
= ocfs2_truncate_log_init(osb
);
1593 if (ocfs2_mount_local(osb
))
1598 ocfs2_super_unlock(osb
, 1);
1604 static void ocfs2_dismount_volume(struct super_block
*sb
, int mnt_err
)
1606 int tmp
, hangup_needed
= 0;
1607 struct ocfs2_super
*osb
= NULL
;
1610 mlog_entry("(0x%p)\n", sb
);
1616 ocfs2_disable_quotas(osb
);
1618 ocfs2_shutdown_local_alloc(osb
);
1620 ocfs2_truncate_log_shutdown(osb
);
1622 /* This will disable recovery and flush any recovery work. */
1623 ocfs2_recovery_exit(osb
);
1625 ocfs2_journal_shutdown(osb
);
1627 ocfs2_sync_blockdev(sb
);
1629 /* No cluster connection means we've failed during mount, so skip
1630 * all the steps which depended on that to complete. */
1632 tmp
= ocfs2_super_lock(osb
, 1);
1639 if (osb
->slot_num
!= OCFS2_INVALID_SLOT
)
1640 ocfs2_put_slot(osb
);
1643 ocfs2_super_unlock(osb
, 1);
1645 ocfs2_release_system_inodes(osb
);
1648 * If we're dismounting due to mount error, mount.ocfs2 will clean
1649 * up heartbeat. If we're a local mount, there is no heartbeat.
1650 * If we failed before we got a uuid_str yet, we can't stop
1651 * heartbeat. Otherwise, do it.
1653 if (!mnt_err
&& !ocfs2_mount_local(osb
) && osb
->uuid_str
)
1657 ocfs2_dlm_shutdown(osb
, hangup_needed
);
1659 debugfs_remove(osb
->osb_debug_root
);
1662 ocfs2_cluster_hangup(osb
->uuid_str
, strlen(osb
->uuid_str
));
1664 atomic_set(&osb
->vol_state
, VOLUME_DISMOUNTED
);
1666 if (ocfs2_mount_local(osb
))
1667 snprintf(nodestr
, sizeof(nodestr
), "local");
1669 snprintf(nodestr
, sizeof(nodestr
), "%u", osb
->node_num
);
1671 printk(KERN_INFO
"ocfs2: Unmounting device (%s) on (node %s)\n",
1672 osb
->dev_str
, nodestr
);
1674 ocfs2_delete_osb(osb
);
1677 sb
->s_fs_info
= NULL
;
1680 static int ocfs2_setup_osb_uuid(struct ocfs2_super
*osb
, const unsigned char *uuid
,
1681 unsigned uuid_bytes
)
1686 BUG_ON(uuid_bytes
!= OCFS2_VOL_UUID_LEN
);
1688 osb
->uuid_str
= kzalloc(OCFS2_VOL_UUID_LEN
* 2 + 1, GFP_KERNEL
);
1689 if (osb
->uuid_str
== NULL
)
1692 for (i
= 0, ptr
= osb
->uuid_str
; i
< OCFS2_VOL_UUID_LEN
; i
++) {
1693 /* print with null */
1694 ret
= snprintf(ptr
, 3, "%02X", uuid
[i
]);
1695 if (ret
!= 2) /* drop super cleans up */
1697 /* then only advance past the last char */
1704 static int ocfs2_initialize_super(struct super_block
*sb
,
1705 struct buffer_head
*bh
,
1709 int i
, cbits
, bbits
;
1710 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)bh
->b_data
;
1711 struct inode
*inode
= NULL
;
1712 struct ocfs2_journal
*journal
;
1713 __le32 uuid_net_key
;
1714 struct ocfs2_super
*osb
;
1718 osb
= kzalloc(sizeof(struct ocfs2_super
), GFP_KERNEL
);
1725 sb
->s_fs_info
= osb
;
1726 sb
->s_op
= &ocfs2_sops
;
1727 sb
->s_export_op
= &ocfs2_export_ops
;
1728 sb
->s_qcop
= &ocfs2_quotactl_ops
;
1729 sb
->dq_op
= &ocfs2_quota_operations
;
1730 sb
->s_xattr
= ocfs2_xattr_handlers
;
1731 sb
->s_time_gran
= 1;
1732 sb
->s_flags
|= MS_NOATIME
;
1733 /* this is needed to support O_LARGEFILE */
1734 cbits
= le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
);
1735 bbits
= le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
);
1736 sb
->s_maxbytes
= ocfs2_max_file_offset(bbits
, cbits
);
1739 /* Save off for ocfs2_rw_direct */
1740 osb
->s_sectsize_bits
= blksize_bits(sector_size
);
1741 BUG_ON(!osb
->s_sectsize_bits
);
1743 spin_lock_init(&osb
->dc_task_lock
);
1744 init_waitqueue_head(&osb
->dc_event
);
1745 osb
->dc_work_sequence
= 0;
1746 osb
->dc_wake_sequence
= 0;
1747 INIT_LIST_HEAD(&osb
->blocked_lock_list
);
1748 osb
->blocked_lock_count
= 0;
1749 spin_lock_init(&osb
->osb_lock
);
1750 ocfs2_init_inode_steal_slot(osb
);
1752 atomic_set(&osb
->alloc_stats
.moves
, 0);
1753 atomic_set(&osb
->alloc_stats
.local_data
, 0);
1754 atomic_set(&osb
->alloc_stats
.bitmap_data
, 0);
1755 atomic_set(&osb
->alloc_stats
.bg_allocs
, 0);
1756 atomic_set(&osb
->alloc_stats
.bg_extends
, 0);
1758 ocfs2_init_node_maps(osb
);
1760 snprintf(osb
->dev_str
, sizeof(osb
->dev_str
), "%u,%u",
1761 MAJOR(osb
->sb
->s_dev
), MINOR(osb
->sb
->s_dev
));
1763 status
= ocfs2_recovery_init(osb
);
1765 mlog(ML_ERROR
, "Unable to initialize recovery state\n");
1770 init_waitqueue_head(&osb
->checkpoint_event
);
1771 atomic_set(&osb
->needs_checkpoint
, 0);
1773 osb
->s_atime_quantum
= OCFS2_DEFAULT_ATIME_QUANTUM
;
1775 osb
->slot_num
= OCFS2_INVALID_SLOT
;
1777 osb
->s_xattr_inline_size
= le16_to_cpu(
1778 di
->id2
.i_super
.s_xattr_inline_size
);
1780 osb
->local_alloc_state
= OCFS2_LA_UNUSED
;
1781 osb
->local_alloc_bh
= NULL
;
1782 INIT_DELAYED_WORK(&osb
->la_enable_wq
, ocfs2_la_enable_worker
);
1784 init_waitqueue_head(&osb
->osb_mount_event
);
1786 osb
->vol_label
= kmalloc(OCFS2_MAX_VOL_LABEL_LEN
, GFP_KERNEL
);
1787 if (!osb
->vol_label
) {
1788 mlog(ML_ERROR
, "unable to alloc vol label\n");
1793 osb
->max_slots
= le16_to_cpu(di
->id2
.i_super
.s_max_slots
);
1794 if (osb
->max_slots
> OCFS2_MAX_SLOTS
|| osb
->max_slots
== 0) {
1795 mlog(ML_ERROR
, "Invalid number of node slots (%u)\n",
1800 mlog(0, "max_slots for this device: %u\n", osb
->max_slots
);
1802 osb
->slot_recovery_generations
=
1803 kcalloc(osb
->max_slots
, sizeof(*osb
->slot_recovery_generations
),
1805 if (!osb
->slot_recovery_generations
) {
1811 init_waitqueue_head(&osb
->osb_wipe_event
);
1812 osb
->osb_orphan_wipes
= kcalloc(osb
->max_slots
,
1813 sizeof(*osb
->osb_orphan_wipes
),
1815 if (!osb
->osb_orphan_wipes
) {
1821 osb
->s_feature_compat
=
1822 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_compat
);
1823 osb
->s_feature_ro_compat
=
1824 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_ro_compat
);
1825 osb
->s_feature_incompat
=
1826 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_incompat
);
1828 if ((i
= OCFS2_HAS_INCOMPAT_FEATURE(osb
->sb
, ~OCFS2_FEATURE_INCOMPAT_SUPP
))) {
1829 mlog(ML_ERROR
, "couldn't mount because of unsupported "
1830 "optional features (%x).\n", i
);
1834 if (!(osb
->sb
->s_flags
& MS_RDONLY
) &&
1835 (i
= OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, ~OCFS2_FEATURE_RO_COMPAT_SUPP
))) {
1836 mlog(ML_ERROR
, "couldn't mount RDWR because of "
1837 "unsupported optional features (%x).\n", i
);
1842 if (ocfs2_userspace_stack(osb
)) {
1843 memcpy(osb
->osb_cluster_stack
,
1844 OCFS2_RAW_SB(di
)->s_cluster_info
.ci_stack
,
1845 OCFS2_STACK_LABEL_LEN
);
1846 osb
->osb_cluster_stack
[OCFS2_STACK_LABEL_LEN
] = '\0';
1847 if (strlen(osb
->osb_cluster_stack
) != OCFS2_STACK_LABEL_LEN
) {
1849 "couldn't mount because of an invalid "
1850 "cluster stack label (%s) \n",
1851 osb
->osb_cluster_stack
);
1856 /* The empty string is identical with classic tools that
1857 * don't know about s_cluster_info. */
1858 osb
->osb_cluster_stack
[0] = '\0';
1861 get_random_bytes(&osb
->s_next_generation
, sizeof(u32
));
1864 * This should be done in ocfs2_journal_init(), but unknown
1865 * ordering issues will cause the filesystem to crash.
1866 * If anyone wants to figure out what part of the code
1867 * refers to osb->journal before ocfs2_journal_init() is run,
1870 /* initialize our journal structure */
1872 journal
= kzalloc(sizeof(struct ocfs2_journal
), GFP_KERNEL
);
1874 mlog(ML_ERROR
, "unable to alloc journal\n");
1878 osb
->journal
= journal
;
1879 journal
->j_osb
= osb
;
1881 atomic_set(&journal
->j_num_trans
, 0);
1882 init_rwsem(&journal
->j_trans_barrier
);
1883 init_waitqueue_head(&journal
->j_checkpointed
);
1884 spin_lock_init(&journal
->j_lock
);
1885 journal
->j_trans_id
= (unsigned long) 1;
1886 INIT_LIST_HEAD(&journal
->j_la_cleanups
);
1887 INIT_WORK(&journal
->j_recovery_work
, ocfs2_complete_recovery
);
1888 journal
->j_state
= OCFS2_JOURNAL_FREE
;
1890 /* get some pseudo constants for clustersize bits */
1891 osb
->s_clustersize_bits
=
1892 le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
);
1893 osb
->s_clustersize
= 1 << osb
->s_clustersize_bits
;
1894 mlog(0, "clusterbits=%d\n", osb
->s_clustersize_bits
);
1896 if (osb
->s_clustersize
< OCFS2_MIN_CLUSTERSIZE
||
1897 osb
->s_clustersize
> OCFS2_MAX_CLUSTERSIZE
) {
1898 mlog(ML_ERROR
, "Volume has invalid cluster size (%d)\n",
1899 osb
->s_clustersize
);
1904 if (ocfs2_clusters_to_blocks(osb
->sb
, le32_to_cpu(di
->i_clusters
) - 1)
1906 mlog(ML_ERROR
, "Volume might try to write to blocks beyond "
1907 "what jbd can address in 32 bits.\n");
1912 if (ocfs2_setup_osb_uuid(osb
, di
->id2
.i_super
.s_uuid
,
1913 sizeof(di
->id2
.i_super
.s_uuid
))) {
1914 mlog(ML_ERROR
, "Out of memory trying to setup our uuid.\n");
1919 memcpy(&uuid_net_key
, di
->id2
.i_super
.s_uuid
, sizeof(uuid_net_key
));
1921 strncpy(osb
->vol_label
, di
->id2
.i_super
.s_label
, 63);
1922 osb
->vol_label
[63] = '\0';
1923 osb
->root_blkno
= le64_to_cpu(di
->id2
.i_super
.s_root_blkno
);
1924 osb
->system_dir_blkno
= le64_to_cpu(di
->id2
.i_super
.s_system_dir_blkno
);
1925 osb
->first_cluster_group_blkno
=
1926 le64_to_cpu(di
->id2
.i_super
.s_first_cluster_group
);
1927 osb
->fs_generation
= le32_to_cpu(di
->i_fs_generation
);
1928 osb
->uuid_hash
= le32_to_cpu(di
->id2
.i_super
.s_uuid_hash
);
1929 mlog(0, "vol_label: %s\n", osb
->vol_label
);
1930 mlog(0, "uuid: %s\n", osb
->uuid_str
);
1931 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
1932 (unsigned long long)osb
->root_blkno
,
1933 (unsigned long long)osb
->system_dir_blkno
);
1935 osb
->osb_dlm_debug
= ocfs2_new_dlm_debug();
1936 if (!osb
->osb_dlm_debug
) {
1942 atomic_set(&osb
->vol_state
, VOLUME_INIT
);
1944 /* load root, system_dir, and all global system inodes */
1945 status
= ocfs2_init_global_system_inodes(osb
);
1954 inode
= ocfs2_get_system_file_inode(osb
, GLOBAL_BITMAP_SYSTEM_INODE
,
1955 OCFS2_INVALID_SLOT
);
1962 osb
->bitmap_blkno
= OCFS2_I(inode
)->ip_blkno
;
1965 osb
->bitmap_cpg
= ocfs2_group_bitmap_size(sb
) * 8;
1967 status
= ocfs2_init_slot_info(osb
);
1979 * will return: -EAGAIN if it is ok to keep searching for superblocks
1980 * -EINVAL if there is a bad superblock
1983 static int ocfs2_verify_volume(struct ocfs2_dinode
*di
,
1984 struct buffer_head
*bh
,
1987 int status
= -EAGAIN
;
1991 if (memcmp(di
->i_signature
, OCFS2_SUPER_BLOCK_SIGNATURE
,
1992 strlen(OCFS2_SUPER_BLOCK_SIGNATURE
)) == 0) {
1993 /* We have to do a raw check of the feature here */
1994 if (le32_to_cpu(di
->id2
.i_super
.s_feature_incompat
) &
1995 OCFS2_FEATURE_INCOMPAT_META_ECC
) {
1996 status
= ocfs2_block_check_validate(bh
->b_data
,
2003 if ((1 << le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
)) != blksz
) {
2004 mlog(ML_ERROR
, "found superblock with incorrect block "
2005 "size: found %u, should be %u\n",
2006 1 << le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
),
2008 } else if (le16_to_cpu(di
->id2
.i_super
.s_major_rev_level
) !=
2009 OCFS2_MAJOR_REV_LEVEL
||
2010 le16_to_cpu(di
->id2
.i_super
.s_minor_rev_level
) !=
2011 OCFS2_MINOR_REV_LEVEL
) {
2012 mlog(ML_ERROR
, "found superblock with bad version: "
2013 "found %u.%u, should be %u.%u\n",
2014 le16_to_cpu(di
->id2
.i_super
.s_major_rev_level
),
2015 le16_to_cpu(di
->id2
.i_super
.s_minor_rev_level
),
2016 OCFS2_MAJOR_REV_LEVEL
,
2017 OCFS2_MINOR_REV_LEVEL
);
2018 } else if (bh
->b_blocknr
!= le64_to_cpu(di
->i_blkno
)) {
2019 mlog(ML_ERROR
, "bad block number on superblock: "
2020 "found %llu, should be %llu\n",
2021 (unsigned long long)le64_to_cpu(di
->i_blkno
),
2022 (unsigned long long)bh
->b_blocknr
);
2023 } else if (le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
) < 12 ||
2024 le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
) > 20) {
2025 mlog(ML_ERROR
, "bad cluster size found: %u\n",
2026 1 << le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
));
2027 } else if (!le64_to_cpu(di
->id2
.i_super
.s_root_blkno
)) {
2028 mlog(ML_ERROR
, "bad root_blkno: 0\n");
2029 } else if (!le64_to_cpu(di
->id2
.i_super
.s_system_dir_blkno
)) {
2030 mlog(ML_ERROR
, "bad system_dir_blkno: 0\n");
2031 } else if (le16_to_cpu(di
->id2
.i_super
.s_max_slots
) > OCFS2_MAX_SLOTS
) {
2033 "Superblock slots found greater than file system "
2034 "maximum: found %u, max %u\n",
2035 le16_to_cpu(di
->id2
.i_super
.s_max_slots
),
2048 static int ocfs2_check_volume(struct ocfs2_super
*osb
)
2053 struct ocfs2_dinode
*local_alloc
= NULL
; /* only used if we
2059 /* Init our journal object. */
2060 status
= ocfs2_journal_init(osb
->journal
, &dirty
);
2062 mlog(ML_ERROR
, "Could not initialize journal!\n");
2066 /* If the journal was unmounted cleanly then we don't want to
2067 * recover anything. Otherwise, journal_load will do that
2068 * dirty work for us :) */
2070 status
= ocfs2_journal_wipe(osb
->journal
, 0);
2076 mlog(ML_NOTICE
, "File system was not unmounted cleanly, "
2077 "recovering volume.\n");
2080 local
= ocfs2_mount_local(osb
);
2082 /* will play back anything left in the journal. */
2083 status
= ocfs2_journal_load(osb
->journal
, local
, dirty
);
2085 mlog(ML_ERROR
, "ocfs2 journal load failed! %d\n", status
);
2090 /* recover my local alloc if we didn't unmount cleanly. */
2091 status
= ocfs2_begin_local_alloc_recovery(osb
,
2098 /* we complete the recovery process after we've marked
2099 * ourselves as mounted. */
2102 mlog(0, "Journal loaded.\n");
2104 status
= ocfs2_load_local_alloc(osb
);
2111 /* Recovery will be completed after we've mounted the
2112 * rest of the volume. */
2114 osb
->local_alloc_copy
= local_alloc
;
2118 /* go through each journal, trylock it and if you get the
2119 * lock, and it's marked as dirty, set the bit in the recover
2120 * map and launch a recovery thread for it. */
2121 status
= ocfs2_mark_dead_nodes(osb
);
2134 * The routine gets called from dismount or close whenever a dismount on
2135 * volume is requested and the osb open count becomes 1.
2136 * It will remove the osb from the global list and also free up all the
2137 * initialized resources and fileobject.
2139 static void ocfs2_delete_osb(struct ocfs2_super
*osb
)
2143 /* This function assumes that the caller has the main osb resource */
2145 ocfs2_free_slot_info(osb
);
2147 kfree(osb
->osb_orphan_wipes
);
2148 kfree(osb
->slot_recovery_generations
);
2150 * This belongs in journal shutdown, but because we have to
2151 * allocate osb->journal at the start of ocfs2_initalize_osb(),
2154 kfree(osb
->journal
);
2155 if (osb
->local_alloc_copy
)
2156 kfree(osb
->local_alloc_copy
);
2157 kfree(osb
->uuid_str
);
2158 ocfs2_put_dlm_debug(osb
->osb_dlm_debug
);
2159 memset(osb
, 0, sizeof(struct ocfs2_super
));
2164 /* Put OCFS2 into a readonly state, or (if the user specifies it),
2165 * panic(). We do not support continue-on-error operation. */
2166 static void ocfs2_handle_error(struct super_block
*sb
)
2168 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
2170 if (osb
->s_mount_opt
& OCFS2_MOUNT_ERRORS_PANIC
)
2171 panic("OCFS2: (device %s): panic forced after error\n",
2174 ocfs2_set_osb_flag(osb
, OCFS2_OSB_ERROR_FS
);
2176 if (sb
->s_flags
& MS_RDONLY
&&
2177 (ocfs2_is_soft_readonly(osb
) ||
2178 ocfs2_is_hard_readonly(osb
)))
2181 printk(KERN_CRIT
"File system is now read-only due to the potential "
2182 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2183 "system is unmounted.\n");
2184 sb
->s_flags
|= MS_RDONLY
;
2185 ocfs2_set_ro_flag(osb
, 0);
2188 static char error_buf
[1024];
2190 void __ocfs2_error(struct super_block
*sb
,
2191 const char *function
,
2192 const char *fmt
, ...)
2196 va_start(args
, fmt
);
2197 vsnprintf(error_buf
, sizeof(error_buf
), fmt
, args
);
2200 /* Not using mlog here because we want to show the actual
2201 * function the error came from. */
2202 printk(KERN_CRIT
"OCFS2: ERROR (device %s): %s: %s\n",
2203 sb
->s_id
, function
, error_buf
);
2205 ocfs2_handle_error(sb
);
2208 /* Handle critical errors. This is intentionally more drastic than
2209 * ocfs2_handle_error, so we only use for things like journal errors,
2211 void __ocfs2_abort(struct super_block
* sb
,
2212 const char *function
,
2213 const char *fmt
, ...)
2217 va_start(args
, fmt
);
2218 vsnprintf(error_buf
, sizeof(error_buf
), fmt
, args
);
2221 printk(KERN_CRIT
"OCFS2: abort (device %s): %s: %s\n",
2222 sb
->s_id
, function
, error_buf
);
2224 /* We don't have the cluster support yet to go straight to
2225 * hard readonly in here. Until then, we want to keep
2226 * ocfs2_abort() so that we can at least mark critical
2229 * TODO: This should abort the journal and alert other nodes
2230 * that our slot needs recovery. */
2232 /* Force a panic(). This stinks, but it's better than letting
2233 * things continue without having a proper hard readonly
2235 OCFS2_SB(sb
)->s_mount_opt
|= OCFS2_MOUNT_ERRORS_PANIC
;
2236 ocfs2_handle_error(sb
);
2239 module_init(ocfs2_init
);
2240 module_exit(ocfs2_exit
);