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>
45 #include <linux/smp_lock.h>
47 #define MLOG_MASK_PREFIX ML_SUPER
48 #include <cluster/masklog.h>
52 /* this should be the only file to include a version 1 header */
53 #include "ocfs1_fs_compat.h"
56 #include "blockcheck.h"
59 #include "extent_map.h"
60 #include "heartbeat.h"
63 #include "localalloc.h"
73 #include "buffer_head_io.h"
75 static struct kmem_cache
*ocfs2_inode_cachep
= NULL
;
76 struct kmem_cache
*ocfs2_dquot_cachep
;
77 struct kmem_cache
*ocfs2_qf_chunk_cachep
;
79 /* OCFS2 needs to schedule several differnt types of work which
80 * require cluster locking, disk I/O, recovery waits, etc. Since these
81 * types of work tend to be heavy we avoid using the kernel events
82 * workqueue and schedule on our own. */
83 struct workqueue_struct
*ocfs2_wq
= NULL
;
85 static struct dentry
*ocfs2_debugfs_root
= NULL
;
87 MODULE_AUTHOR("Oracle");
88 MODULE_LICENSE("GPL");
92 unsigned long commit_interval
;
93 unsigned long mount_opt
;
94 unsigned int atime_quantum
;
96 unsigned int localalloc_opt
;
97 char cluster_stack
[OCFS2_STACK_LABEL_LEN
+ 1];
100 static int ocfs2_parse_options(struct super_block
*sb
, char *options
,
101 struct mount_options
*mopt
,
103 static int ocfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
);
104 static void ocfs2_put_super(struct super_block
*sb
);
105 static int ocfs2_mount_volume(struct super_block
*sb
);
106 static int ocfs2_remount(struct super_block
*sb
, int *flags
, char *data
);
107 static void ocfs2_dismount_volume(struct super_block
*sb
, int mnt_err
);
108 static int ocfs2_initialize_mem_caches(void);
109 static void ocfs2_free_mem_caches(void);
110 static void ocfs2_delete_osb(struct ocfs2_super
*osb
);
112 static int ocfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
);
114 static int ocfs2_sync_fs(struct super_block
*sb
, int wait
);
116 static int ocfs2_init_global_system_inodes(struct ocfs2_super
*osb
);
117 static int ocfs2_init_local_system_inodes(struct ocfs2_super
*osb
);
118 static void ocfs2_release_system_inodes(struct ocfs2_super
*osb
);
119 static int ocfs2_check_volume(struct ocfs2_super
*osb
);
120 static int ocfs2_verify_volume(struct ocfs2_dinode
*di
,
121 struct buffer_head
*bh
,
123 struct ocfs2_blockcheck_stats
*stats
);
124 static int ocfs2_initialize_super(struct super_block
*sb
,
125 struct buffer_head
*bh
,
127 struct ocfs2_blockcheck_stats
*stats
);
128 static int ocfs2_get_sector(struct super_block
*sb
,
129 struct buffer_head
**bh
,
132 static struct inode
*ocfs2_alloc_inode(struct super_block
*sb
);
133 static void ocfs2_destroy_inode(struct inode
*inode
);
134 static int ocfs2_susp_quotas(struct ocfs2_super
*osb
, int unsuspend
);
135 static int ocfs2_enable_quotas(struct ocfs2_super
*osb
);
136 static void ocfs2_disable_quotas(struct ocfs2_super
*osb
);
138 static const struct super_operations ocfs2_sops
= {
139 .statfs
= ocfs2_statfs
,
140 .alloc_inode
= ocfs2_alloc_inode
,
141 .destroy_inode
= ocfs2_destroy_inode
,
142 .drop_inode
= ocfs2_drop_inode
,
143 .clear_inode
= ocfs2_clear_inode
,
144 .delete_inode
= ocfs2_delete_inode
,
145 .sync_fs
= ocfs2_sync_fs
,
146 .put_super
= ocfs2_put_super
,
147 .remount_fs
= ocfs2_remount
,
148 .show_options
= ocfs2_show_options
,
149 .quota_read
= ocfs2_quota_read
,
150 .quota_write
= ocfs2_quota_write
,
179 static const match_table_t tokens
= {
180 {Opt_barrier
, "barrier=%u"},
181 {Opt_err_panic
, "errors=panic"},
182 {Opt_err_ro
, "errors=remount-ro"},
184 {Opt_nointr
, "nointr"},
185 {Opt_hb_none
, OCFS2_HB_NONE
},
186 {Opt_hb_local
, OCFS2_HB_LOCAL
},
187 {Opt_data_ordered
, "data=ordered"},
188 {Opt_data_writeback
, "data=writeback"},
189 {Opt_atime_quantum
, "atime_quantum=%u"},
190 {Opt_slot
, "preferred_slot=%u"},
191 {Opt_commit
, "commit=%u"},
192 {Opt_localalloc
, "localalloc=%d"},
193 {Opt_localflocks
, "localflocks"},
194 {Opt_stack
, "cluster_stack=%s"},
195 {Opt_user_xattr
, "user_xattr"},
196 {Opt_nouser_xattr
, "nouser_xattr"},
197 {Opt_inode64
, "inode64"},
199 {Opt_noacl
, "noacl"},
200 {Opt_usrquota
, "usrquota"},
201 {Opt_grpquota
, "grpquota"},
205 #ifdef CONFIG_DEBUG_FS
206 static int ocfs2_osb_dump(struct ocfs2_super
*osb
, char *buf
, int len
)
208 struct ocfs2_cluster_connection
*cconn
= osb
->cconn
;
209 struct ocfs2_recovery_map
*rm
= osb
->recovery_map
;
210 struct ocfs2_orphan_scan
*os
= &osb
->osb_orphan_scan
;
213 out
+= snprintf(buf
+ out
, len
- out
,
214 "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n",
215 "Device", osb
->dev_str
, osb
->uuid_str
,
216 osb
->fs_generation
, osb
->vol_label
);
218 out
+= snprintf(buf
+ out
, len
- out
,
219 "%10s => State: %d Flags: 0x%lX\n", "Volume",
220 atomic_read(&osb
->vol_state
), osb
->osb_flags
);
222 out
+= snprintf(buf
+ out
, len
- out
,
223 "%10s => Block: %lu Cluster: %d\n", "Sizes",
224 osb
->sb
->s_blocksize
, osb
->s_clustersize
);
226 out
+= snprintf(buf
+ out
, len
- out
,
227 "%10s => Compat: 0x%X Incompat: 0x%X "
229 "Features", osb
->s_feature_compat
,
230 osb
->s_feature_incompat
, osb
->s_feature_ro_compat
);
232 out
+= snprintf(buf
+ out
, len
- out
,
233 "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount",
234 osb
->s_mount_opt
, osb
->s_atime_quantum
);
237 out
+= snprintf(buf
+ out
, len
- out
,
238 "%10s => Stack: %s Name: %*s "
239 "Version: %d.%d\n", "Cluster",
240 (*osb
->osb_cluster_stack
== '\0' ?
241 "o2cb" : osb
->osb_cluster_stack
),
242 cconn
->cc_namelen
, cconn
->cc_name
,
243 cconn
->cc_version
.pv_major
,
244 cconn
->cc_version
.pv_minor
);
247 spin_lock(&osb
->dc_task_lock
);
248 out
+= snprintf(buf
+ out
, len
- out
,
249 "%10s => Pid: %d Count: %lu WakeSeq: %lu "
250 "WorkSeq: %lu\n", "DownCnvt",
251 (osb
->dc_task
? task_pid_nr(osb
->dc_task
) : -1),
252 osb
->blocked_lock_count
, osb
->dc_wake_sequence
,
253 osb
->dc_work_sequence
);
254 spin_unlock(&osb
->dc_task_lock
);
256 spin_lock(&osb
->osb_lock
);
257 out
+= snprintf(buf
+ out
, len
- out
, "%10s => Pid: %d Nodes:",
259 (osb
->recovery_thread_task
?
260 task_pid_nr(osb
->recovery_thread_task
) : -1));
261 if (rm
->rm_used
== 0)
262 out
+= snprintf(buf
+ out
, len
- out
, " None\n");
264 for (i
= 0; i
< rm
->rm_used
; i
++)
265 out
+= snprintf(buf
+ out
, len
- out
, " %d",
267 out
+= snprintf(buf
+ out
, len
- out
, "\n");
269 spin_unlock(&osb
->osb_lock
);
271 out
+= snprintf(buf
+ out
, len
- out
,
272 "%10s => Pid: %d Interval: %lu Needs: %d\n", "Commit",
273 (osb
->commit_task
? task_pid_nr(osb
->commit_task
) : -1),
274 osb
->osb_commit_interval
,
275 atomic_read(&osb
->needs_checkpoint
));
277 out
+= snprintf(buf
+ out
, len
- out
,
278 "%10s => State: %d TxnId: %lu NumTxns: %d\n",
279 "Journal", osb
->journal
->j_state
,
280 osb
->journal
->j_trans_id
,
281 atomic_read(&osb
->journal
->j_num_trans
));
283 out
+= snprintf(buf
+ out
, len
- out
,
284 "%10s => GlobalAllocs: %d LocalAllocs: %d "
285 "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n",
287 atomic_read(&osb
->alloc_stats
.bitmap_data
),
288 atomic_read(&osb
->alloc_stats
.local_data
),
289 atomic_read(&osb
->alloc_stats
.bg_allocs
),
290 atomic_read(&osb
->alloc_stats
.moves
),
291 atomic_read(&osb
->alloc_stats
.bg_extends
));
293 out
+= snprintf(buf
+ out
, len
- out
,
294 "%10s => State: %u Descriptor: %llu Size: %u bits "
295 "Default: %u bits\n",
296 "LocalAlloc", osb
->local_alloc_state
,
297 (unsigned long long)osb
->la_last_gd
,
298 osb
->local_alloc_bits
, osb
->local_alloc_default_bits
);
300 spin_lock(&osb
->osb_lock
);
301 out
+= snprintf(buf
+ out
, len
- out
,
302 "%10s => Slot: %d NumStolen: %d\n", "Steal",
303 osb
->s_inode_steal_slot
,
304 atomic_read(&osb
->s_num_inodes_stolen
));
305 spin_unlock(&osb
->osb_lock
);
307 out
+= snprintf(buf
+ out
, len
- out
, "OrphanScan => ");
308 out
+= snprintf(buf
+ out
, len
- out
, "Local: %u Global: %u ",
309 os
->os_count
, os
->os_seqno
);
310 out
+= snprintf(buf
+ out
, len
- out
, " Last Scan: ");
311 if (atomic_read(&os
->os_state
) == ORPHAN_SCAN_INACTIVE
)
312 out
+= snprintf(buf
+ out
, len
- out
, "Disabled\n");
314 out
+= snprintf(buf
+ out
, len
- out
, "%lu seconds ago\n",
315 (get_seconds() - os
->os_scantime
.tv_sec
));
317 out
+= snprintf(buf
+ out
, len
- out
, "%10s => %3s %10s\n",
318 "Slots", "Num", "RecoGen");
319 for (i
= 0; i
< osb
->max_slots
; ++i
) {
320 out
+= snprintf(buf
+ out
, len
- out
,
321 "%10s %c %3d %10d\n",
323 (i
== osb
->slot_num
? '*' : ' '),
324 i
, osb
->slot_recovery_generations
[i
]);
330 static int ocfs2_osb_debug_open(struct inode
*inode
, struct file
*file
)
332 struct ocfs2_super
*osb
= inode
->i_private
;
335 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
339 i_size_write(inode
, ocfs2_osb_dump(osb
, buf
, PAGE_SIZE
));
341 file
->private_data
= buf
;
348 static int ocfs2_debug_release(struct inode
*inode
, struct file
*file
)
350 kfree(file
->private_data
);
354 static ssize_t
ocfs2_debug_read(struct file
*file
, char __user
*buf
,
355 size_t nbytes
, loff_t
*ppos
)
357 return simple_read_from_buffer(buf
, nbytes
, ppos
, file
->private_data
,
358 i_size_read(file
->f_mapping
->host
));
361 static int ocfs2_osb_debug_open(struct inode
*inode
, struct file
*file
)
365 static int ocfs2_debug_release(struct inode
*inode
, struct file
*file
)
369 static ssize_t
ocfs2_debug_read(struct file
*file
, char __user
*buf
,
370 size_t nbytes
, loff_t
*ppos
)
374 #endif /* CONFIG_DEBUG_FS */
376 static struct file_operations ocfs2_osb_debug_fops
= {
377 .open
= ocfs2_osb_debug_open
,
378 .release
= ocfs2_debug_release
,
379 .read
= ocfs2_debug_read
,
380 .llseek
= generic_file_llseek
,
383 static int ocfs2_sync_fs(struct super_block
*sb
, int wait
)
387 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
389 if (ocfs2_is_hard_readonly(osb
))
393 status
= ocfs2_flush_truncate_log(osb
);
397 ocfs2_schedule_truncate_log_flush(osb
, 0);
400 if (jbd2_journal_start_commit(OCFS2_SB(sb
)->journal
->j_journal
,
403 jbd2_log_wait_commit(OCFS2_SB(sb
)->journal
->j_journal
,
409 static int ocfs2_need_system_inode(struct ocfs2_super
*osb
, int ino
)
411 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)
412 && (ino
== USER_QUOTA_SYSTEM_INODE
413 || ino
== LOCAL_USER_QUOTA_SYSTEM_INODE
))
415 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)
416 && (ino
== GROUP_QUOTA_SYSTEM_INODE
417 || ino
== LOCAL_GROUP_QUOTA_SYSTEM_INODE
))
422 static int ocfs2_init_global_system_inodes(struct ocfs2_super
*osb
)
424 struct inode
*new = NULL
;
430 new = ocfs2_iget(osb
, osb
->root_blkno
, OCFS2_FI_FLAG_SYSFILE
, 0);
432 status
= PTR_ERR(new);
436 osb
->root_inode
= new;
438 new = ocfs2_iget(osb
, osb
->system_dir_blkno
, OCFS2_FI_FLAG_SYSFILE
, 0);
440 status
= PTR_ERR(new);
444 osb
->sys_root_inode
= new;
446 for (i
= OCFS2_FIRST_ONLINE_SYSTEM_INODE
;
447 i
<= OCFS2_LAST_GLOBAL_SYSTEM_INODE
; i
++) {
448 if (!ocfs2_need_system_inode(osb
, i
))
450 new = ocfs2_get_system_file_inode(osb
, i
, osb
->slot_num
);
452 ocfs2_release_system_inodes(osb
);
455 /* FIXME: Should ERROR_RO_FS */
456 mlog(ML_ERROR
, "Unable to load system inode %d, "
457 "possibly corrupt fs?", i
);
460 // the array now has one ref, so drop this one
469 static int ocfs2_init_local_system_inodes(struct ocfs2_super
*osb
)
471 struct inode
*new = NULL
;
477 for (i
= OCFS2_LAST_GLOBAL_SYSTEM_INODE
+ 1;
478 i
< NUM_SYSTEM_INODES
;
480 if (!ocfs2_need_system_inode(osb
, i
))
482 new = ocfs2_get_system_file_inode(osb
, i
, osb
->slot_num
);
484 ocfs2_release_system_inodes(osb
);
486 mlog(ML_ERROR
, "status=%d, sysfile=%d, slot=%d\n",
487 status
, i
, osb
->slot_num
);
490 /* the array now has one ref, so drop this one */
499 static void ocfs2_release_system_inodes(struct ocfs2_super
*osb
)
506 for (i
= 0; i
< NUM_SYSTEM_INODES
; i
++) {
507 inode
= osb
->system_inodes
[i
];
510 osb
->system_inodes
[i
] = NULL
;
514 inode
= osb
->sys_root_inode
;
517 osb
->sys_root_inode
= NULL
;
520 inode
= osb
->root_inode
;
523 osb
->root_inode
= NULL
;
529 /* We're allocating fs objects, use GFP_NOFS */
530 static struct inode
*ocfs2_alloc_inode(struct super_block
*sb
)
532 struct ocfs2_inode_info
*oi
;
534 oi
= kmem_cache_alloc(ocfs2_inode_cachep
, GFP_NOFS
);
538 jbd2_journal_init_jbd_inode(&oi
->ip_jinode
, &oi
->vfs_inode
);
539 return &oi
->vfs_inode
;
542 static void ocfs2_destroy_inode(struct inode
*inode
)
544 kmem_cache_free(ocfs2_inode_cachep
, OCFS2_I(inode
));
547 static unsigned long long ocfs2_max_file_offset(unsigned int bbits
,
550 unsigned int bytes
= 1 << cbits
;
551 unsigned int trim
= bytes
;
552 unsigned int bitshift
= 32;
555 * i_size and all block offsets in ocfs2 are always 64 bits
556 * wide. i_clusters is 32 bits, in cluster-sized units. So on
557 * 64 bit platforms, cluster size will be the limiting factor.
560 #if BITS_PER_LONG == 32
561 # if defined(CONFIG_LBDAF)
562 BUILD_BUG_ON(sizeof(sector_t
) != 8);
564 * We might be limited by page cache size.
566 if (bytes
> PAGE_CACHE_SIZE
) {
567 bytes
= PAGE_CACHE_SIZE
;
570 * Shift by 31 here so that we don't get larger than
577 * We are limited by the size of sector_t. Use block size, as
578 * that's what we expose to the VFS.
587 * Trim by a whole cluster when we can actually approach the
588 * on-disk limits. Otherwise we can overflow i_clusters when
589 * an extent start is at the max offset.
591 return (((unsigned long long)bytes
) << bitshift
) - trim
;
594 static int ocfs2_remount(struct super_block
*sb
, int *flags
, char *data
)
596 int incompat_features
;
598 struct mount_options parsed_options
;
599 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
603 if (!ocfs2_parse_options(sb
, data
, &parsed_options
, 1)) {
608 if ((osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) !=
609 (parsed_options
.mount_opt
& OCFS2_MOUNT_HB_LOCAL
)) {
611 mlog(ML_ERROR
, "Cannot change heartbeat mode on remount\n");
615 if ((osb
->s_mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
) !=
616 (parsed_options
.mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
)) {
618 mlog(ML_ERROR
, "Cannot change data mode on remount\n");
622 /* Probably don't want this on remount; it might
623 * mess with other nodes */
624 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_INODE64
) &&
625 (parsed_options
.mount_opt
& OCFS2_MOUNT_INODE64
)) {
627 mlog(ML_ERROR
, "Cannot enable inode64 on remount\n");
631 /* We're going to/from readonly mode. */
632 if ((*flags
& MS_RDONLY
) != (sb
->s_flags
& MS_RDONLY
)) {
633 /* Disable quota accounting before remounting RO */
634 if (*flags
& MS_RDONLY
) {
635 ret
= ocfs2_susp_quotas(osb
, 0);
639 /* Lock here so the check of HARD_RO and the potential
640 * setting of SOFT_RO is atomic. */
641 spin_lock(&osb
->osb_lock
);
642 if (osb
->osb_flags
& OCFS2_OSB_HARD_RO
) {
643 mlog(ML_ERROR
, "Remount on readonly device is forbidden.\n");
648 if (*flags
& MS_RDONLY
) {
649 mlog(0, "Going to ro mode.\n");
650 sb
->s_flags
|= MS_RDONLY
;
651 osb
->osb_flags
|= OCFS2_OSB_SOFT_RO
;
653 mlog(0, "Making ro filesystem writeable.\n");
655 if (osb
->osb_flags
& OCFS2_OSB_ERROR_FS
) {
656 mlog(ML_ERROR
, "Cannot remount RDWR "
657 "filesystem due to previous errors.\n");
661 incompat_features
= OCFS2_HAS_RO_COMPAT_FEATURE(sb
, ~OCFS2_FEATURE_RO_COMPAT_SUPP
);
662 if (incompat_features
) {
663 mlog(ML_ERROR
, "Cannot remount RDWR because "
664 "of unsupported optional features "
665 "(%x).\n", incompat_features
);
669 sb
->s_flags
&= ~MS_RDONLY
;
670 osb
->osb_flags
&= ~OCFS2_OSB_SOFT_RO
;
673 spin_unlock(&osb
->osb_lock
);
674 /* Enable quota accounting after remounting RW */
675 if (!ret
&& !(*flags
& MS_RDONLY
)) {
676 if (sb_any_quota_suspended(sb
))
677 ret
= ocfs2_susp_quotas(osb
, 1);
679 ret
= ocfs2_enable_quotas(osb
);
681 /* Return back changes... */
682 spin_lock(&osb
->osb_lock
);
683 sb
->s_flags
|= MS_RDONLY
;
684 osb
->osb_flags
|= OCFS2_OSB_SOFT_RO
;
685 spin_unlock(&osb
->osb_lock
);
692 /* Only save off the new mount options in case of a successful
694 if (!(osb
->s_feature_incompat
& OCFS2_FEATURE_INCOMPAT_XATTR
))
695 parsed_options
.mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
696 osb
->s_mount_opt
= parsed_options
.mount_opt
;
697 osb
->s_atime_quantum
= parsed_options
.atime_quantum
;
698 osb
->preferred_slot
= parsed_options
.slot
;
699 if (parsed_options
.commit_interval
)
700 osb
->osb_commit_interval
= parsed_options
.commit_interval
;
702 if (!ocfs2_is_hard_readonly(osb
))
703 ocfs2_set_journal_params(osb
);
710 static int ocfs2_sb_probe(struct super_block
*sb
,
711 struct buffer_head
**bh
,
713 struct ocfs2_blockcheck_stats
*stats
)
716 struct ocfs1_vol_disk_hdr
*hdr
;
717 struct ocfs2_dinode
*di
;
723 *sector_size
= bdev_logical_block_size(sb
->s_bdev
);
724 if (*sector_size
> OCFS2_MAX_BLOCKSIZE
) {
725 mlog(ML_ERROR
, "Hardware sector size too large: %d (max=%d)\n",
726 *sector_size
, OCFS2_MAX_BLOCKSIZE
);
731 /* Can this really happen? */
732 if (*sector_size
< OCFS2_MIN_BLOCKSIZE
)
733 *sector_size
= OCFS2_MIN_BLOCKSIZE
;
735 /* check block zero for old format */
736 status
= ocfs2_get_sector(sb
, bh
, 0, *sector_size
);
741 hdr
= (struct ocfs1_vol_disk_hdr
*) (*bh
)->b_data
;
742 if (hdr
->major_version
== OCFS1_MAJOR_VERSION
) {
743 mlog(ML_ERROR
, "incompatible version: %u.%u\n",
744 hdr
->major_version
, hdr
->minor_version
);
747 if (memcmp(hdr
->signature
, OCFS1_VOLUME_SIGNATURE
,
748 strlen(OCFS1_VOLUME_SIGNATURE
)) == 0) {
749 mlog(ML_ERROR
, "incompatible volume signature: %8s\n",
756 mlog(ML_ERROR
, "This is an ocfs v1 filesystem which must be "
757 "upgraded before mounting with ocfs v2\n");
762 * Now check at magic offset for 512, 1024, 2048, 4096
763 * blocksizes. 4096 is the maximum blocksize because it is
764 * the minimum clustersize.
767 for (blksize
= *sector_size
;
768 blksize
<= OCFS2_MAX_BLOCKSIZE
;
770 tmpstat
= ocfs2_get_sector(sb
, bh
,
771 OCFS2_SUPER_BLOCK_BLKNO
,
778 di
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
779 memset(stats
, 0, sizeof(struct ocfs2_blockcheck_stats
));
780 spin_lock_init(&stats
->b_lock
);
781 status
= ocfs2_verify_volume(di
, *bh
, blksize
, stats
);
786 if (status
!= -EAGAIN
)
794 static int ocfs2_verify_heartbeat(struct ocfs2_super
*osb
)
796 if (ocfs2_mount_local(osb
)) {
797 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
798 mlog(ML_ERROR
, "Cannot heartbeat on a locally "
799 "mounted device.\n");
804 if (ocfs2_userspace_stack(osb
)) {
805 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
806 mlog(ML_ERROR
, "Userspace stack expected, but "
807 "o2cb heartbeat arguments passed to mount\n");
812 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
)) {
813 if (!ocfs2_mount_local(osb
) && !ocfs2_is_hard_readonly(osb
) &&
814 !ocfs2_userspace_stack(osb
)) {
815 mlog(ML_ERROR
, "Heartbeat has to be started to mount "
816 "a read-write clustered device.\n");
825 * If we're using a userspace stack, mount should have passed
826 * a name that matches the disk. If not, mount should not
827 * have passed a stack.
829 static int ocfs2_verify_userspace_stack(struct ocfs2_super
*osb
,
830 struct mount_options
*mopt
)
832 if (!ocfs2_userspace_stack(osb
) && mopt
->cluster_stack
[0]) {
834 "cluster stack passed to mount, but this filesystem "
835 "does not support it\n");
839 if (ocfs2_userspace_stack(osb
) &&
840 strncmp(osb
->osb_cluster_stack
, mopt
->cluster_stack
,
841 OCFS2_STACK_LABEL_LEN
)) {
843 "cluster stack passed to mount (\"%s\") does not "
844 "match the filesystem (\"%s\")\n",
846 osb
->osb_cluster_stack
);
853 static int ocfs2_susp_quotas(struct ocfs2_super
*osb
, int unsuspend
)
856 struct super_block
*sb
= osb
->sb
;
857 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
858 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
861 for (type
= 0; type
< MAXQUOTAS
; type
++) {
862 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
865 status
= vfs_quota_enable(
866 sb_dqopt(sb
)->files
[type
],
870 status
= vfs_quota_disable(sb
, type
,
876 mlog(ML_ERROR
, "Failed to suspend/unsuspend quotas on "
877 "remount (error = %d).\n", status
);
881 static int ocfs2_enable_quotas(struct ocfs2_super
*osb
)
883 struct inode
*inode
[MAXQUOTAS
] = { NULL
, NULL
};
884 struct super_block
*sb
= osb
->sb
;
885 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
886 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
887 unsigned int ino
[MAXQUOTAS
] = { LOCAL_USER_QUOTA_SYSTEM_INODE
,
888 LOCAL_GROUP_QUOTA_SYSTEM_INODE
};
892 sb_dqopt(sb
)->flags
|= DQUOT_QUOTA_SYS_FILE
| DQUOT_NEGATIVE_USAGE
;
893 for (type
= 0; type
< MAXQUOTAS
; type
++) {
894 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
896 inode
[type
] = ocfs2_get_system_file_inode(osb
, ino
[type
],
902 status
= vfs_quota_enable(inode
[type
], type
, QFMT_OCFS2
,
903 DQUOT_USAGE_ENABLED
);
908 for (type
= 0; type
< MAXQUOTAS
; type
++)
912 ocfs2_disable_quotas(osb
);
913 for (type
= 0; type
< MAXQUOTAS
; type
++)
919 static void ocfs2_disable_quotas(struct ocfs2_super
*osb
)
923 struct super_block
*sb
= osb
->sb
;
925 /* We mostly ignore errors in this function because there's not much
926 * we can do when we see them */
927 for (type
= 0; type
< MAXQUOTAS
; type
++) {
928 if (!sb_has_quota_loaded(sb
, type
))
930 inode
= igrab(sb
->s_dquot
.files
[type
]);
931 /* Turn off quotas. This will remove all dquot structures from
932 * memory and so they will be automatically synced to global
934 vfs_quota_disable(sb
, type
, DQUOT_USAGE_ENABLED
|
935 DQUOT_LIMITS_ENABLED
);
942 /* Handle quota on quotactl */
943 static int ocfs2_quota_on(struct super_block
*sb
, int type
, int format_id
,
944 char *path
, int remount
)
946 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
947 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
949 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
953 return 0; /* Just ignore it has been handled in
955 return vfs_quota_enable(sb_dqopt(sb
)->files
[type
], type
,
956 format_id
, DQUOT_LIMITS_ENABLED
);
959 /* Handle quota off quotactl */
960 static int ocfs2_quota_off(struct super_block
*sb
, int type
, int remount
)
963 return 0; /* Ignore now and handle later in
965 return vfs_quota_disable(sb
, type
, DQUOT_LIMITS_ENABLED
);
968 static struct quotactl_ops ocfs2_quotactl_ops
= {
969 .quota_on
= ocfs2_quota_on
,
970 .quota_off
= ocfs2_quota_off
,
971 .quota_sync
= vfs_quota_sync
,
972 .get_info
= vfs_get_dqinfo
,
973 .set_info
= vfs_set_dqinfo
,
974 .get_dqblk
= vfs_get_dqblk
,
975 .set_dqblk
= vfs_set_dqblk
,
978 static int ocfs2_fill_super(struct super_block
*sb
, void *data
, int silent
)
981 int status
, sector_size
;
982 struct mount_options parsed_options
;
983 struct inode
*inode
= NULL
;
984 struct ocfs2_super
*osb
= NULL
;
985 struct buffer_head
*bh
= NULL
;
987 struct ocfs2_blockcheck_stats stats
;
989 mlog_entry("%p, %p, %i", sb
, data
, silent
);
991 if (!ocfs2_parse_options(sb
, data
, &parsed_options
, 0)) {
993 goto read_super_error
;
996 /* probe for superblock */
997 status
= ocfs2_sb_probe(sb
, &bh
, §or_size
, &stats
);
999 mlog(ML_ERROR
, "superblock probe failed!\n");
1000 goto read_super_error
;
1003 status
= ocfs2_initialize_super(sb
, bh
, sector_size
, &stats
);
1007 goto read_super_error
;
1012 if (!(osb
->s_feature_incompat
& OCFS2_FEATURE_INCOMPAT_XATTR
))
1013 parsed_options
.mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
1015 osb
->s_mount_opt
= parsed_options
.mount_opt
;
1016 osb
->s_atime_quantum
= parsed_options
.atime_quantum
;
1017 osb
->preferred_slot
= parsed_options
.slot
;
1018 osb
->osb_commit_interval
= parsed_options
.commit_interval
;
1019 osb
->local_alloc_default_bits
= ocfs2_megabytes_to_clusters(sb
, parsed_options
.localalloc_opt
);
1020 osb
->local_alloc_bits
= osb
->local_alloc_default_bits
;
1021 if (osb
->s_mount_opt
& OCFS2_MOUNT_USRQUOTA
&&
1022 !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1023 OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)) {
1025 mlog(ML_ERROR
, "User quotas were requested, but this "
1026 "filesystem does not have the feature enabled.\n");
1027 goto read_super_error
;
1029 if (osb
->s_mount_opt
& OCFS2_MOUNT_GRPQUOTA
&&
1030 !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1031 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)) {
1033 mlog(ML_ERROR
, "Group quotas were requested, but this "
1034 "filesystem does not have the feature enabled.\n");
1035 goto read_super_error
;
1038 status
= ocfs2_verify_userspace_stack(osb
, &parsed_options
);
1040 goto read_super_error
;
1042 sb
->s_magic
= OCFS2_SUPER_MAGIC
;
1044 sb
->s_flags
= (sb
->s_flags
& ~MS_POSIXACL
) |
1045 ((osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
) ? MS_POSIXACL
: 0);
1047 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
1049 if (bdev_read_only(sb
->s_bdev
)) {
1050 if (!(sb
->s_flags
& MS_RDONLY
)) {
1052 mlog(ML_ERROR
, "Readonly device detected but readonly "
1053 "mount was not specified.\n");
1054 goto read_super_error
;
1057 /* You should not be able to start a local heartbeat
1058 * on a readonly device. */
1059 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
1061 mlog(ML_ERROR
, "Local heartbeat specified on readonly "
1063 goto read_super_error
;
1066 status
= ocfs2_check_journals_nolocks(osb
);
1068 if (status
== -EROFS
)
1069 mlog(ML_ERROR
, "Recovery required on readonly "
1070 "file system, but write access is "
1074 goto read_super_error
;
1077 ocfs2_set_ro_flag(osb
, 1);
1079 printk(KERN_NOTICE
"Readonly device detected. No cluster "
1080 "services will be utilized for this mount. Recovery "
1081 "will be skipped.\n");
1084 if (!ocfs2_is_hard_readonly(osb
)) {
1085 if (sb
->s_flags
& MS_RDONLY
)
1086 ocfs2_set_ro_flag(osb
, 0);
1089 status
= ocfs2_verify_heartbeat(osb
);
1092 goto read_super_error
;
1095 osb
->osb_debug_root
= debugfs_create_dir(osb
->uuid_str
,
1096 ocfs2_debugfs_root
);
1097 if (!osb
->osb_debug_root
) {
1099 mlog(ML_ERROR
, "Unable to create per-mount debugfs root.\n");
1100 goto read_super_error
;
1103 osb
->osb_ctxt
= debugfs_create_file("fs_state", S_IFREG
|S_IRUSR
,
1104 osb
->osb_debug_root
,
1106 &ocfs2_osb_debug_fops
);
1107 if (!osb
->osb_ctxt
) {
1110 goto read_super_error
;
1113 if (ocfs2_meta_ecc(osb
)) {
1114 status
= ocfs2_blockcheck_stats_debugfs_install(
1115 &osb
->osb_ecc_stats
,
1116 osb
->osb_debug_root
);
1119 "Unable to create blockcheck statistics "
1121 goto read_super_error
;
1125 status
= ocfs2_mount_volume(sb
);
1126 if (osb
->root_inode
)
1127 inode
= igrab(osb
->root_inode
);
1130 goto read_super_error
;
1135 goto read_super_error
;
1138 root
= d_alloc_root(inode
);
1142 goto read_super_error
;
1147 ocfs2_complete_mount_recovery(osb
);
1149 if (ocfs2_mount_local(osb
))
1150 snprintf(nodestr
, sizeof(nodestr
), "local");
1152 snprintf(nodestr
, sizeof(nodestr
), "%u", osb
->node_num
);
1154 printk(KERN_INFO
"ocfs2: Mounting device (%s) on (node %s, slot %d) "
1155 "with %s data mode.\n",
1156 osb
->dev_str
, nodestr
, osb
->slot_num
,
1157 osb
->s_mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
? "writeback" :
1160 atomic_set(&osb
->vol_state
, VOLUME_MOUNTED
);
1161 wake_up(&osb
->osb_mount_event
);
1163 /* Now we can initialize quotas because we can afford to wait
1164 * for cluster locks recovery now. That also means that truncation
1165 * log recovery can happen but that waits for proper quota setup */
1166 if (!(sb
->s_flags
& MS_RDONLY
)) {
1167 status
= ocfs2_enable_quotas(osb
);
1169 /* We have to err-out specially here because
1170 * s_root is already set */
1172 atomic_set(&osb
->vol_state
, VOLUME_DISABLED
);
1173 wake_up(&osb
->osb_mount_event
);
1179 ocfs2_complete_quota_recovery(osb
);
1181 /* Now we wake up again for processes waiting for quotas */
1182 atomic_set(&osb
->vol_state
, VOLUME_MOUNTED_QUOTAS
);
1183 wake_up(&osb
->osb_mount_event
);
1185 /* Start this when the mount is almost sure of being successful */
1186 ocfs2_orphan_scan_start(osb
);
1198 atomic_set(&osb
->vol_state
, VOLUME_DISABLED
);
1199 wake_up(&osb
->osb_mount_event
);
1200 ocfs2_dismount_volume(sb
, 1);
1207 static int ocfs2_get_sb(struct file_system_type
*fs_type
,
1209 const char *dev_name
,
1211 struct vfsmount
*mnt
)
1213 return get_sb_bdev(fs_type
, flags
, dev_name
, data
, ocfs2_fill_super
,
1217 static void ocfs2_kill_sb(struct super_block
*sb
)
1219 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
1222 if (!osb
|| atomic_read(&osb
->vol_state
) == VOLUME_DISABLED
)
1225 /* Prevent further queueing of inode drop events */
1226 spin_lock(&dentry_list_lock
);
1227 ocfs2_set_osb_flag(osb
, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED
);
1228 spin_unlock(&dentry_list_lock
);
1229 /* Wait for work to finish and/or remove it */
1230 cancel_work_sync(&osb
->dentry_lock_work
);
1232 kill_block_super(sb
);
1235 static struct file_system_type ocfs2_fs_type
= {
1236 .owner
= THIS_MODULE
,
1238 .get_sb
= ocfs2_get_sb
, /* is this called when we mount
1240 .kill_sb
= ocfs2_kill_sb
,
1242 .fs_flags
= FS_REQUIRES_DEV
|FS_RENAME_DOES_D_MOVE
,
1246 static int ocfs2_parse_options(struct super_block
*sb
,
1248 struct mount_options
*mopt
,
1254 mlog_entry("remount: %d, options: \"%s\"\n", is_remount
,
1255 options
? options
: "(none)");
1257 mopt
->commit_interval
= 0;
1258 mopt
->mount_opt
= 0;
1259 mopt
->atime_quantum
= OCFS2_DEFAULT_ATIME_QUANTUM
;
1260 mopt
->slot
= OCFS2_INVALID_SLOT
;
1261 mopt
->localalloc_opt
= OCFS2_DEFAULT_LOCAL_ALLOC_SIZE
;
1262 mopt
->cluster_stack
[0] = '\0';
1269 while ((p
= strsep(&options
, ",")) != NULL
) {
1271 substring_t args
[MAX_OPT_ARGS
];
1276 token
= match_token(p
, tokens
, args
);
1279 mopt
->mount_opt
|= OCFS2_MOUNT_HB_LOCAL
;
1282 mopt
->mount_opt
&= ~OCFS2_MOUNT_HB_LOCAL
;
1285 if (match_int(&args
[0], &option
)) {
1290 mopt
->mount_opt
|= OCFS2_MOUNT_BARRIER
;
1292 mopt
->mount_opt
&= ~OCFS2_MOUNT_BARRIER
;
1295 mopt
->mount_opt
&= ~OCFS2_MOUNT_NOINTR
;
1298 mopt
->mount_opt
|= OCFS2_MOUNT_NOINTR
;
1301 mopt
->mount_opt
|= OCFS2_MOUNT_ERRORS_PANIC
;
1304 mopt
->mount_opt
&= ~OCFS2_MOUNT_ERRORS_PANIC
;
1306 case Opt_data_ordered
:
1307 mopt
->mount_opt
&= ~OCFS2_MOUNT_DATA_WRITEBACK
;
1309 case Opt_data_writeback
:
1310 mopt
->mount_opt
|= OCFS2_MOUNT_DATA_WRITEBACK
;
1312 case Opt_user_xattr
:
1313 mopt
->mount_opt
&= ~OCFS2_MOUNT_NOUSERXATTR
;
1315 case Opt_nouser_xattr
:
1316 mopt
->mount_opt
|= OCFS2_MOUNT_NOUSERXATTR
;
1318 case Opt_atime_quantum
:
1319 if (match_int(&args
[0], &option
)) {
1324 mopt
->atime_quantum
= option
;
1328 if (match_int(&args
[0], &option
)) {
1333 mopt
->slot
= (s16
)option
;
1337 if (match_int(&args
[0], &option
)) {
1344 option
= JBD2_DEFAULT_MAX_COMMIT_AGE
;
1345 mopt
->commit_interval
= HZ
* option
;
1347 case Opt_localalloc
:
1349 if (match_int(&args
[0], &option
)) {
1353 if (option
>= 0 && (option
<= ocfs2_local_alloc_size(sb
) * 8))
1354 mopt
->localalloc_opt
= option
;
1356 case Opt_localflocks
:
1358 * Changing this during remount could race
1359 * flock() requests, or "unbalance" existing
1360 * ones (e.g., a lock is taken in one mode but
1361 * dropped in the other). If users care enough
1362 * to flip locking modes during remount, we
1363 * could add a "local" flag to individual
1364 * flock structures for proper tracking of
1368 mopt
->mount_opt
|= OCFS2_MOUNT_LOCALFLOCKS
;
1371 /* Check both that the option we were passed
1372 * is of the right length and that it is a proper
1373 * string of the right length.
1375 if (((args
[0].to
- args
[0].from
) !=
1376 OCFS2_STACK_LABEL_LEN
) ||
1377 (strnlen(args
[0].from
,
1378 OCFS2_STACK_LABEL_LEN
) !=
1379 OCFS2_STACK_LABEL_LEN
)) {
1381 "Invalid cluster_stack option\n");
1385 memcpy(mopt
->cluster_stack
, args
[0].from
,
1386 OCFS2_STACK_LABEL_LEN
);
1387 mopt
->cluster_stack
[OCFS2_STACK_LABEL_LEN
] = '\0';
1390 mopt
->mount_opt
|= OCFS2_MOUNT_INODE64
;
1393 /* We check only on remount, otherwise features
1394 * aren't yet initialized. */
1395 if (is_remount
&& !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1396 OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)) {
1397 mlog(ML_ERROR
, "User quota requested but "
1398 "filesystem feature is not set\n");
1402 mopt
->mount_opt
|= OCFS2_MOUNT_USRQUOTA
;
1405 if (is_remount
&& !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1406 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)) {
1407 mlog(ML_ERROR
, "Group quota requested but "
1408 "filesystem feature is not set\n");
1412 mopt
->mount_opt
|= OCFS2_MOUNT_GRPQUOTA
;
1414 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
1416 mopt
->mount_opt
|= OCFS2_MOUNT_POSIX_ACL
;
1419 mopt
->mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
1424 printk(KERN_INFO
"ocfs2 (no)acl options not supported\n");
1429 "Unrecognized mount option \"%s\" "
1430 "or missing value\n", p
);
1443 static int ocfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
)
1445 struct ocfs2_super
*osb
= OCFS2_SB(mnt
->mnt_sb
);
1446 unsigned long opts
= osb
->s_mount_opt
;
1447 unsigned int local_alloc_megs
;
1449 if (opts
& OCFS2_MOUNT_HB_LOCAL
)
1450 seq_printf(s
, ",_netdev,heartbeat=local");
1452 seq_printf(s
, ",heartbeat=none");
1454 if (opts
& OCFS2_MOUNT_NOINTR
)
1455 seq_printf(s
, ",nointr");
1457 if (opts
& OCFS2_MOUNT_DATA_WRITEBACK
)
1458 seq_printf(s
, ",data=writeback");
1460 seq_printf(s
, ",data=ordered");
1462 if (opts
& OCFS2_MOUNT_BARRIER
)
1463 seq_printf(s
, ",barrier=1");
1465 if (opts
& OCFS2_MOUNT_ERRORS_PANIC
)
1466 seq_printf(s
, ",errors=panic");
1468 seq_printf(s
, ",errors=remount-ro");
1470 if (osb
->preferred_slot
!= OCFS2_INVALID_SLOT
)
1471 seq_printf(s
, ",preferred_slot=%d", osb
->preferred_slot
);
1473 if (osb
->s_atime_quantum
!= OCFS2_DEFAULT_ATIME_QUANTUM
)
1474 seq_printf(s
, ",atime_quantum=%u", osb
->s_atime_quantum
);
1476 if (osb
->osb_commit_interval
)
1477 seq_printf(s
, ",commit=%u",
1478 (unsigned) (osb
->osb_commit_interval
/ HZ
));
1480 local_alloc_megs
= osb
->local_alloc_bits
>> (20 - osb
->s_clustersize_bits
);
1481 if (local_alloc_megs
!= OCFS2_DEFAULT_LOCAL_ALLOC_SIZE
)
1482 seq_printf(s
, ",localalloc=%d", local_alloc_megs
);
1484 if (opts
& OCFS2_MOUNT_LOCALFLOCKS
)
1485 seq_printf(s
, ",localflocks,");
1487 if (osb
->osb_cluster_stack
[0])
1488 seq_printf(s
, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN
,
1489 osb
->osb_cluster_stack
);
1490 if (opts
& OCFS2_MOUNT_USRQUOTA
)
1491 seq_printf(s
, ",usrquota");
1492 if (opts
& OCFS2_MOUNT_GRPQUOTA
)
1493 seq_printf(s
, ",grpquota");
1495 if (opts
& OCFS2_MOUNT_NOUSERXATTR
)
1496 seq_printf(s
, ",nouser_xattr");
1498 seq_printf(s
, ",user_xattr");
1500 if (opts
& OCFS2_MOUNT_INODE64
)
1501 seq_printf(s
, ",inode64");
1503 #ifdef CONFIG_OCFS2_FS_POSIX_ACL
1504 if (opts
& OCFS2_MOUNT_POSIX_ACL
)
1505 seq_printf(s
, ",acl");
1507 seq_printf(s
, ",noacl");
1513 static int __init
ocfs2_init(void)
1519 ocfs2_print_version();
1521 status
= init_ocfs2_uptodate_cache();
1527 status
= ocfs2_initialize_mem_caches();
1533 ocfs2_wq
= create_singlethread_workqueue("ocfs2_wq");
1539 ocfs2_debugfs_root
= debugfs_create_dir("ocfs2", NULL
);
1540 if (!ocfs2_debugfs_root
) {
1542 mlog(ML_ERROR
, "Unable to create ocfs2 debugfs root.\n");
1545 status
= ocfs2_quota_setup();
1549 ocfs2_set_locking_protocol();
1551 status
= register_quota_format(&ocfs2_quota_format
);
1554 ocfs2_quota_shutdown();
1555 ocfs2_free_mem_caches();
1556 exit_ocfs2_uptodate_cache();
1562 return register_filesystem(&ocfs2_fs_type
);
1567 static void __exit
ocfs2_exit(void)
1571 ocfs2_quota_shutdown();
1574 flush_workqueue(ocfs2_wq
);
1575 destroy_workqueue(ocfs2_wq
);
1578 unregister_quota_format(&ocfs2_quota_format
);
1580 debugfs_remove(ocfs2_debugfs_root
);
1582 ocfs2_free_mem_caches();
1584 unregister_filesystem(&ocfs2_fs_type
);
1586 exit_ocfs2_uptodate_cache();
1591 static void ocfs2_put_super(struct super_block
*sb
)
1593 mlog_entry("(0x%p)\n", sb
);
1597 ocfs2_sync_blockdev(sb
);
1598 ocfs2_dismount_volume(sb
, 0);
1605 static int ocfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
1607 struct ocfs2_super
*osb
;
1608 u32 numbits
, freebits
;
1610 struct ocfs2_dinode
*bm_lock
;
1611 struct buffer_head
*bh
= NULL
;
1612 struct inode
*inode
= NULL
;
1614 mlog_entry("(%p, %p)\n", dentry
->d_sb
, buf
);
1616 osb
= OCFS2_SB(dentry
->d_sb
);
1618 inode
= ocfs2_get_system_file_inode(osb
,
1619 GLOBAL_BITMAP_SYSTEM_INODE
,
1620 OCFS2_INVALID_SLOT
);
1622 mlog(ML_ERROR
, "failed to get bitmap inode\n");
1627 status
= ocfs2_inode_lock(inode
, &bh
, 0);
1633 bm_lock
= (struct ocfs2_dinode
*) bh
->b_data
;
1635 numbits
= le32_to_cpu(bm_lock
->id1
.bitmap1
.i_total
);
1636 freebits
= numbits
- le32_to_cpu(bm_lock
->id1
.bitmap1
.i_used
);
1638 buf
->f_type
= OCFS2_SUPER_MAGIC
;
1639 buf
->f_bsize
= dentry
->d_sb
->s_blocksize
;
1640 buf
->f_namelen
= OCFS2_MAX_FILENAME_LEN
;
1641 buf
->f_blocks
= ((sector_t
) numbits
) *
1642 (osb
->s_clustersize
>> osb
->sb
->s_blocksize_bits
);
1643 buf
->f_bfree
= ((sector_t
) freebits
) *
1644 (osb
->s_clustersize
>> osb
->sb
->s_blocksize_bits
);
1645 buf
->f_bavail
= buf
->f_bfree
;
1646 buf
->f_files
= numbits
;
1647 buf
->f_ffree
= freebits
;
1651 ocfs2_inode_unlock(inode
, 0);
1662 static void ocfs2_inode_init_once(void *data
)
1664 struct ocfs2_inode_info
*oi
= data
;
1667 oi
->ip_open_count
= 0;
1668 spin_lock_init(&oi
->ip_lock
);
1669 ocfs2_extent_map_init(&oi
->vfs_inode
);
1670 INIT_LIST_HEAD(&oi
->ip_io_markers
);
1671 oi
->ip_created_trans
= 0;
1672 oi
->ip_last_trans
= 0;
1673 oi
->ip_dir_start_lookup
= 0;
1675 init_rwsem(&oi
->ip_alloc_sem
);
1676 init_rwsem(&oi
->ip_xattr_sem
);
1677 mutex_init(&oi
->ip_io_mutex
);
1679 oi
->ip_blkno
= 0ULL;
1680 oi
->ip_clusters
= 0;
1682 ocfs2_lock_res_init_once(&oi
->ip_rw_lockres
);
1683 ocfs2_lock_res_init_once(&oi
->ip_inode_lockres
);
1684 ocfs2_lock_res_init_once(&oi
->ip_open_lockres
);
1686 ocfs2_metadata_cache_init(&oi
->vfs_inode
);
1688 inode_init_once(&oi
->vfs_inode
);
1691 static int ocfs2_initialize_mem_caches(void)
1693 ocfs2_inode_cachep
= kmem_cache_create("ocfs2_inode_cache",
1694 sizeof(struct ocfs2_inode_info
),
1696 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
1698 ocfs2_inode_init_once
);
1699 ocfs2_dquot_cachep
= kmem_cache_create("ocfs2_dquot_cache",
1700 sizeof(struct ocfs2_dquot
),
1702 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
1705 ocfs2_qf_chunk_cachep
= kmem_cache_create("ocfs2_qf_chunk_cache",
1706 sizeof(struct ocfs2_quota_chunk
),
1708 (SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
),
1710 if (!ocfs2_inode_cachep
|| !ocfs2_dquot_cachep
||
1711 !ocfs2_qf_chunk_cachep
) {
1712 if (ocfs2_inode_cachep
)
1713 kmem_cache_destroy(ocfs2_inode_cachep
);
1714 if (ocfs2_dquot_cachep
)
1715 kmem_cache_destroy(ocfs2_dquot_cachep
);
1716 if (ocfs2_qf_chunk_cachep
)
1717 kmem_cache_destroy(ocfs2_qf_chunk_cachep
);
1724 static void ocfs2_free_mem_caches(void)
1726 if (ocfs2_inode_cachep
)
1727 kmem_cache_destroy(ocfs2_inode_cachep
);
1728 ocfs2_inode_cachep
= NULL
;
1730 if (ocfs2_dquot_cachep
)
1731 kmem_cache_destroy(ocfs2_dquot_cachep
);
1732 ocfs2_dquot_cachep
= NULL
;
1734 if (ocfs2_qf_chunk_cachep
)
1735 kmem_cache_destroy(ocfs2_qf_chunk_cachep
);
1736 ocfs2_qf_chunk_cachep
= NULL
;
1739 static int ocfs2_get_sector(struct super_block
*sb
,
1740 struct buffer_head
**bh
,
1744 if (!sb_set_blocksize(sb
, sect_size
)) {
1745 mlog(ML_ERROR
, "unable to set blocksize\n");
1749 *bh
= sb_getblk(sb
, block
);
1755 if (!buffer_dirty(*bh
))
1756 clear_buffer_uptodate(*bh
);
1758 ll_rw_block(READ
, 1, bh
);
1759 wait_on_buffer(*bh
);
1760 if (!buffer_uptodate(*bh
)) {
1770 static int ocfs2_mount_volume(struct super_block
*sb
)
1773 int unlock_super
= 0;
1774 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
1778 if (ocfs2_is_hard_readonly(osb
))
1781 status
= ocfs2_dlm_init(osb
);
1787 status
= ocfs2_super_lock(osb
, 1);
1794 /* This will load up the node map and add ourselves to it. */
1795 status
= ocfs2_find_slot(osb
);
1801 /* load all node-local system inodes */
1802 status
= ocfs2_init_local_system_inodes(osb
);
1808 status
= ocfs2_check_volume(osb
);
1814 status
= ocfs2_truncate_log_init(osb
);
1820 ocfs2_super_unlock(osb
, 1);
1826 static void ocfs2_dismount_volume(struct super_block
*sb
, int mnt_err
)
1828 int tmp
, hangup_needed
= 0;
1829 struct ocfs2_super
*osb
= NULL
;
1832 mlog_entry("(0x%p)\n", sb
);
1838 debugfs_remove(osb
->osb_ctxt
);
1841 * Flush inode dropping work queue so that deletes are
1842 * performed while the filesystem is still working
1844 ocfs2_drop_all_dl_inodes(osb
);
1846 /* Orphan scan should be stopped as early as possible */
1847 ocfs2_orphan_scan_stop(osb
);
1849 ocfs2_disable_quotas(osb
);
1851 ocfs2_shutdown_local_alloc(osb
);
1853 ocfs2_truncate_log_shutdown(osb
);
1855 /* This will disable recovery and flush any recovery work. */
1856 ocfs2_recovery_exit(osb
);
1858 ocfs2_journal_shutdown(osb
);
1860 ocfs2_sync_blockdev(sb
);
1862 /* No cluster connection means we've failed during mount, so skip
1863 * all the steps which depended on that to complete. */
1865 tmp
= ocfs2_super_lock(osb
, 1);
1872 if (osb
->slot_num
!= OCFS2_INVALID_SLOT
)
1873 ocfs2_put_slot(osb
);
1876 ocfs2_super_unlock(osb
, 1);
1878 ocfs2_release_system_inodes(osb
);
1881 * If we're dismounting due to mount error, mount.ocfs2 will clean
1882 * up heartbeat. If we're a local mount, there is no heartbeat.
1883 * If we failed before we got a uuid_str yet, we can't stop
1884 * heartbeat. Otherwise, do it.
1886 if (!mnt_err
&& !ocfs2_mount_local(osb
) && osb
->uuid_str
)
1890 ocfs2_dlm_shutdown(osb
, hangup_needed
);
1892 ocfs2_blockcheck_stats_debugfs_remove(&osb
->osb_ecc_stats
);
1893 debugfs_remove(osb
->osb_debug_root
);
1896 ocfs2_cluster_hangup(osb
->uuid_str
, strlen(osb
->uuid_str
));
1898 atomic_set(&osb
->vol_state
, VOLUME_DISMOUNTED
);
1900 if (ocfs2_mount_local(osb
))
1901 snprintf(nodestr
, sizeof(nodestr
), "local");
1903 snprintf(nodestr
, sizeof(nodestr
), "%u", osb
->node_num
);
1905 printk(KERN_INFO
"ocfs2: Unmounting device (%s) on (node %s)\n",
1906 osb
->dev_str
, nodestr
);
1908 ocfs2_delete_osb(osb
);
1911 sb
->s_fs_info
= NULL
;
1914 static int ocfs2_setup_osb_uuid(struct ocfs2_super
*osb
, const unsigned char *uuid
,
1915 unsigned uuid_bytes
)
1920 BUG_ON(uuid_bytes
!= OCFS2_VOL_UUID_LEN
);
1922 osb
->uuid_str
= kzalloc(OCFS2_VOL_UUID_LEN
* 2 + 1, GFP_KERNEL
);
1923 if (osb
->uuid_str
== NULL
)
1926 for (i
= 0, ptr
= osb
->uuid_str
; i
< OCFS2_VOL_UUID_LEN
; i
++) {
1927 /* print with null */
1928 ret
= snprintf(ptr
, 3, "%02X", uuid
[i
]);
1929 if (ret
!= 2) /* drop super cleans up */
1931 /* then only advance past the last char */
1938 static int ocfs2_initialize_super(struct super_block
*sb
,
1939 struct buffer_head
*bh
,
1941 struct ocfs2_blockcheck_stats
*stats
)
1944 int i
, cbits
, bbits
;
1945 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)bh
->b_data
;
1946 struct inode
*inode
= NULL
;
1947 struct ocfs2_journal
*journal
;
1948 __le32 uuid_net_key
;
1949 struct ocfs2_super
*osb
;
1953 osb
= kzalloc(sizeof(struct ocfs2_super
), GFP_KERNEL
);
1960 sb
->s_fs_info
= osb
;
1961 sb
->s_op
= &ocfs2_sops
;
1962 sb
->s_export_op
= &ocfs2_export_ops
;
1963 sb
->s_qcop
= &ocfs2_quotactl_ops
;
1964 sb
->dq_op
= &ocfs2_quota_operations
;
1965 sb
->s_xattr
= ocfs2_xattr_handlers
;
1966 sb
->s_time_gran
= 1;
1967 sb
->s_flags
|= MS_NOATIME
;
1968 /* this is needed to support O_LARGEFILE */
1969 cbits
= le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
);
1970 bbits
= le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
);
1971 sb
->s_maxbytes
= ocfs2_max_file_offset(bbits
, cbits
);
1973 osb
->osb_dx_mask
= (1 << (cbits
- bbits
)) - 1;
1975 for (i
= 0; i
< 3; i
++)
1976 osb
->osb_dx_seed
[i
] = le32_to_cpu(di
->id2
.i_super
.s_dx_seed
[i
]);
1977 osb
->osb_dx_seed
[3] = le32_to_cpu(di
->id2
.i_super
.s_uuid_hash
);
1980 /* Save off for ocfs2_rw_direct */
1981 osb
->s_sectsize_bits
= blksize_bits(sector_size
);
1982 BUG_ON(!osb
->s_sectsize_bits
);
1984 spin_lock_init(&osb
->dc_task_lock
);
1985 init_waitqueue_head(&osb
->dc_event
);
1986 osb
->dc_work_sequence
= 0;
1987 osb
->dc_wake_sequence
= 0;
1988 INIT_LIST_HEAD(&osb
->blocked_lock_list
);
1989 osb
->blocked_lock_count
= 0;
1990 spin_lock_init(&osb
->osb_lock
);
1991 spin_lock_init(&osb
->osb_xattr_lock
);
1992 ocfs2_init_inode_steal_slot(osb
);
1994 atomic_set(&osb
->alloc_stats
.moves
, 0);
1995 atomic_set(&osb
->alloc_stats
.local_data
, 0);
1996 atomic_set(&osb
->alloc_stats
.bitmap_data
, 0);
1997 atomic_set(&osb
->alloc_stats
.bg_allocs
, 0);
1998 atomic_set(&osb
->alloc_stats
.bg_extends
, 0);
2000 /* Copy the blockcheck stats from the superblock probe */
2001 osb
->osb_ecc_stats
= *stats
;
2003 ocfs2_init_node_maps(osb
);
2005 snprintf(osb
->dev_str
, sizeof(osb
->dev_str
), "%u,%u",
2006 MAJOR(osb
->sb
->s_dev
), MINOR(osb
->sb
->s_dev
));
2008 ocfs2_orphan_scan_init(osb
);
2010 status
= ocfs2_recovery_init(osb
);
2012 mlog(ML_ERROR
, "Unable to initialize recovery state\n");
2017 init_waitqueue_head(&osb
->checkpoint_event
);
2018 atomic_set(&osb
->needs_checkpoint
, 0);
2020 osb
->s_atime_quantum
= OCFS2_DEFAULT_ATIME_QUANTUM
;
2022 osb
->slot_num
= OCFS2_INVALID_SLOT
;
2024 osb
->s_xattr_inline_size
= le16_to_cpu(
2025 di
->id2
.i_super
.s_xattr_inline_size
);
2027 osb
->local_alloc_state
= OCFS2_LA_UNUSED
;
2028 osb
->local_alloc_bh
= NULL
;
2029 INIT_DELAYED_WORK(&osb
->la_enable_wq
, ocfs2_la_enable_worker
);
2031 init_waitqueue_head(&osb
->osb_mount_event
);
2033 osb
->vol_label
= kmalloc(OCFS2_MAX_VOL_LABEL_LEN
, GFP_KERNEL
);
2034 if (!osb
->vol_label
) {
2035 mlog(ML_ERROR
, "unable to alloc vol label\n");
2040 osb
->max_slots
= le16_to_cpu(di
->id2
.i_super
.s_max_slots
);
2041 if (osb
->max_slots
> OCFS2_MAX_SLOTS
|| osb
->max_slots
== 0) {
2042 mlog(ML_ERROR
, "Invalid number of node slots (%u)\n",
2047 mlog(0, "max_slots for this device: %u\n", osb
->max_slots
);
2049 osb
->slot_recovery_generations
=
2050 kcalloc(osb
->max_slots
, sizeof(*osb
->slot_recovery_generations
),
2052 if (!osb
->slot_recovery_generations
) {
2058 init_waitqueue_head(&osb
->osb_wipe_event
);
2059 osb
->osb_orphan_wipes
= kcalloc(osb
->max_slots
,
2060 sizeof(*osb
->osb_orphan_wipes
),
2062 if (!osb
->osb_orphan_wipes
) {
2068 osb
->s_feature_compat
=
2069 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_compat
);
2070 osb
->s_feature_ro_compat
=
2071 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_ro_compat
);
2072 osb
->s_feature_incompat
=
2073 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_incompat
);
2075 if ((i
= OCFS2_HAS_INCOMPAT_FEATURE(osb
->sb
, ~OCFS2_FEATURE_INCOMPAT_SUPP
))) {
2076 mlog(ML_ERROR
, "couldn't mount because of unsupported "
2077 "optional features (%x).\n", i
);
2081 if (!(osb
->sb
->s_flags
& MS_RDONLY
) &&
2082 (i
= OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, ~OCFS2_FEATURE_RO_COMPAT_SUPP
))) {
2083 mlog(ML_ERROR
, "couldn't mount RDWR because of "
2084 "unsupported optional features (%x).\n", i
);
2089 if (ocfs2_userspace_stack(osb
)) {
2090 memcpy(osb
->osb_cluster_stack
,
2091 OCFS2_RAW_SB(di
)->s_cluster_info
.ci_stack
,
2092 OCFS2_STACK_LABEL_LEN
);
2093 osb
->osb_cluster_stack
[OCFS2_STACK_LABEL_LEN
] = '\0';
2094 if (strlen(osb
->osb_cluster_stack
) != OCFS2_STACK_LABEL_LEN
) {
2096 "couldn't mount because of an invalid "
2097 "cluster stack label (%s) \n",
2098 osb
->osb_cluster_stack
);
2103 /* The empty string is identical with classic tools that
2104 * don't know about s_cluster_info. */
2105 osb
->osb_cluster_stack
[0] = '\0';
2108 get_random_bytes(&osb
->s_next_generation
, sizeof(u32
));
2111 * This should be done in ocfs2_journal_init(), but unknown
2112 * ordering issues will cause the filesystem to crash.
2113 * If anyone wants to figure out what part of the code
2114 * refers to osb->journal before ocfs2_journal_init() is run,
2117 /* initialize our journal structure */
2119 journal
= kzalloc(sizeof(struct ocfs2_journal
), GFP_KERNEL
);
2121 mlog(ML_ERROR
, "unable to alloc journal\n");
2125 osb
->journal
= journal
;
2126 journal
->j_osb
= osb
;
2128 atomic_set(&journal
->j_num_trans
, 0);
2129 init_rwsem(&journal
->j_trans_barrier
);
2130 init_waitqueue_head(&journal
->j_checkpointed
);
2131 spin_lock_init(&journal
->j_lock
);
2132 journal
->j_trans_id
= (unsigned long) 1;
2133 INIT_LIST_HEAD(&journal
->j_la_cleanups
);
2134 INIT_WORK(&journal
->j_recovery_work
, ocfs2_complete_recovery
);
2135 journal
->j_state
= OCFS2_JOURNAL_FREE
;
2137 INIT_WORK(&osb
->dentry_lock_work
, ocfs2_drop_dl_inodes
);
2138 osb
->dentry_lock_list
= NULL
;
2140 /* get some pseudo constants for clustersize bits */
2141 osb
->s_clustersize_bits
=
2142 le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
);
2143 osb
->s_clustersize
= 1 << osb
->s_clustersize_bits
;
2144 mlog(0, "clusterbits=%d\n", osb
->s_clustersize_bits
);
2146 if (osb
->s_clustersize
< OCFS2_MIN_CLUSTERSIZE
||
2147 osb
->s_clustersize
> OCFS2_MAX_CLUSTERSIZE
) {
2148 mlog(ML_ERROR
, "Volume has invalid cluster size (%d)\n",
2149 osb
->s_clustersize
);
2154 if (ocfs2_clusters_to_blocks(osb
->sb
, le32_to_cpu(di
->i_clusters
) - 1)
2156 mlog(ML_ERROR
, "Volume might try to write to blocks beyond "
2157 "what jbd can address in 32 bits.\n");
2162 if (ocfs2_setup_osb_uuid(osb
, di
->id2
.i_super
.s_uuid
,
2163 sizeof(di
->id2
.i_super
.s_uuid
))) {
2164 mlog(ML_ERROR
, "Out of memory trying to setup our uuid.\n");
2169 memcpy(&uuid_net_key
, di
->id2
.i_super
.s_uuid
, sizeof(uuid_net_key
));
2171 strncpy(osb
->vol_label
, di
->id2
.i_super
.s_label
, 63);
2172 osb
->vol_label
[63] = '\0';
2173 osb
->root_blkno
= le64_to_cpu(di
->id2
.i_super
.s_root_blkno
);
2174 osb
->system_dir_blkno
= le64_to_cpu(di
->id2
.i_super
.s_system_dir_blkno
);
2175 osb
->first_cluster_group_blkno
=
2176 le64_to_cpu(di
->id2
.i_super
.s_first_cluster_group
);
2177 osb
->fs_generation
= le32_to_cpu(di
->i_fs_generation
);
2178 osb
->uuid_hash
= le32_to_cpu(di
->id2
.i_super
.s_uuid_hash
);
2179 mlog(0, "vol_label: %s\n", osb
->vol_label
);
2180 mlog(0, "uuid: %s\n", osb
->uuid_str
);
2181 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
2182 (unsigned long long)osb
->root_blkno
,
2183 (unsigned long long)osb
->system_dir_blkno
);
2185 osb
->osb_dlm_debug
= ocfs2_new_dlm_debug();
2186 if (!osb
->osb_dlm_debug
) {
2192 atomic_set(&osb
->vol_state
, VOLUME_INIT
);
2194 /* load root, system_dir, and all global system inodes */
2195 status
= ocfs2_init_global_system_inodes(osb
);
2204 inode
= ocfs2_get_system_file_inode(osb
, GLOBAL_BITMAP_SYSTEM_INODE
,
2205 OCFS2_INVALID_SLOT
);
2212 osb
->bitmap_blkno
= OCFS2_I(inode
)->ip_blkno
;
2215 osb
->bitmap_cpg
= ocfs2_group_bitmap_size(sb
) * 8;
2217 status
= ocfs2_init_slot_info(osb
);
2229 * will return: -EAGAIN if it is ok to keep searching for superblocks
2230 * -EINVAL if there is a bad superblock
2233 static int ocfs2_verify_volume(struct ocfs2_dinode
*di
,
2234 struct buffer_head
*bh
,
2236 struct ocfs2_blockcheck_stats
*stats
)
2238 int status
= -EAGAIN
;
2242 if (memcmp(di
->i_signature
, OCFS2_SUPER_BLOCK_SIGNATURE
,
2243 strlen(OCFS2_SUPER_BLOCK_SIGNATURE
)) == 0) {
2244 /* We have to do a raw check of the feature here */
2245 if (le32_to_cpu(di
->id2
.i_super
.s_feature_incompat
) &
2246 OCFS2_FEATURE_INCOMPAT_META_ECC
) {
2247 status
= ocfs2_block_check_validate(bh
->b_data
,
2255 if ((1 << le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
)) != blksz
) {
2256 mlog(ML_ERROR
, "found superblock with incorrect block "
2257 "size: found %u, should be %u\n",
2258 1 << le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
),
2260 } else if (le16_to_cpu(di
->id2
.i_super
.s_major_rev_level
) !=
2261 OCFS2_MAJOR_REV_LEVEL
||
2262 le16_to_cpu(di
->id2
.i_super
.s_minor_rev_level
) !=
2263 OCFS2_MINOR_REV_LEVEL
) {
2264 mlog(ML_ERROR
, "found superblock with bad version: "
2265 "found %u.%u, should be %u.%u\n",
2266 le16_to_cpu(di
->id2
.i_super
.s_major_rev_level
),
2267 le16_to_cpu(di
->id2
.i_super
.s_minor_rev_level
),
2268 OCFS2_MAJOR_REV_LEVEL
,
2269 OCFS2_MINOR_REV_LEVEL
);
2270 } else if (bh
->b_blocknr
!= le64_to_cpu(di
->i_blkno
)) {
2271 mlog(ML_ERROR
, "bad block number on superblock: "
2272 "found %llu, should be %llu\n",
2273 (unsigned long long)le64_to_cpu(di
->i_blkno
),
2274 (unsigned long long)bh
->b_blocknr
);
2275 } else if (le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
) < 12 ||
2276 le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
) > 20) {
2277 mlog(ML_ERROR
, "bad cluster size found: %u\n",
2278 1 << le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
));
2279 } else if (!le64_to_cpu(di
->id2
.i_super
.s_root_blkno
)) {
2280 mlog(ML_ERROR
, "bad root_blkno: 0\n");
2281 } else if (!le64_to_cpu(di
->id2
.i_super
.s_system_dir_blkno
)) {
2282 mlog(ML_ERROR
, "bad system_dir_blkno: 0\n");
2283 } else if (le16_to_cpu(di
->id2
.i_super
.s_max_slots
) > OCFS2_MAX_SLOTS
) {
2285 "Superblock slots found greater than file system "
2286 "maximum: found %u, max %u\n",
2287 le16_to_cpu(di
->id2
.i_super
.s_max_slots
),
2300 static int ocfs2_check_volume(struct ocfs2_super
*osb
)
2305 struct ocfs2_dinode
*local_alloc
= NULL
; /* only used if we
2311 /* Init our journal object. */
2312 status
= ocfs2_journal_init(osb
->journal
, &dirty
);
2314 mlog(ML_ERROR
, "Could not initialize journal!\n");
2318 /* If the journal was unmounted cleanly then we don't want to
2319 * recover anything. Otherwise, journal_load will do that
2320 * dirty work for us :) */
2322 status
= ocfs2_journal_wipe(osb
->journal
, 0);
2328 mlog(ML_NOTICE
, "File system was not unmounted cleanly, "
2329 "recovering volume.\n");
2332 local
= ocfs2_mount_local(osb
);
2334 /* will play back anything left in the journal. */
2335 status
= ocfs2_journal_load(osb
->journal
, local
, dirty
);
2337 mlog(ML_ERROR
, "ocfs2 journal load failed! %d\n", status
);
2342 /* recover my local alloc if we didn't unmount cleanly. */
2343 status
= ocfs2_begin_local_alloc_recovery(osb
,
2350 /* we complete the recovery process after we've marked
2351 * ourselves as mounted. */
2354 mlog(0, "Journal loaded.\n");
2356 status
= ocfs2_load_local_alloc(osb
);
2363 /* Recovery will be completed after we've mounted the
2364 * rest of the volume. */
2366 osb
->local_alloc_copy
= local_alloc
;
2370 /* go through each journal, trylock it and if you get the
2371 * lock, and it's marked as dirty, set the bit in the recover
2372 * map and launch a recovery thread for it. */
2373 status
= ocfs2_mark_dead_nodes(osb
);
2379 status
= ocfs2_compute_replay_slots(osb
);
2392 * The routine gets called from dismount or close whenever a dismount on
2393 * volume is requested and the osb open count becomes 1.
2394 * It will remove the osb from the global list and also free up all the
2395 * initialized resources and fileobject.
2397 static void ocfs2_delete_osb(struct ocfs2_super
*osb
)
2401 /* This function assumes that the caller has the main osb resource */
2403 ocfs2_free_slot_info(osb
);
2405 kfree(osb
->osb_orphan_wipes
);
2406 kfree(osb
->slot_recovery_generations
);
2408 * This belongs in journal shutdown, but because we have to
2409 * allocate osb->journal at the start of ocfs2_initalize_osb(),
2412 kfree(osb
->journal
);
2413 if (osb
->local_alloc_copy
)
2414 kfree(osb
->local_alloc_copy
);
2415 kfree(osb
->uuid_str
);
2416 ocfs2_put_dlm_debug(osb
->osb_dlm_debug
);
2417 memset(osb
, 0, sizeof(struct ocfs2_super
));
2422 /* Put OCFS2 into a readonly state, or (if the user specifies it),
2423 * panic(). We do not support continue-on-error operation. */
2424 static void ocfs2_handle_error(struct super_block
*sb
)
2426 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
2428 if (osb
->s_mount_opt
& OCFS2_MOUNT_ERRORS_PANIC
)
2429 panic("OCFS2: (device %s): panic forced after error\n",
2432 ocfs2_set_osb_flag(osb
, OCFS2_OSB_ERROR_FS
);
2434 if (sb
->s_flags
& MS_RDONLY
&&
2435 (ocfs2_is_soft_readonly(osb
) ||
2436 ocfs2_is_hard_readonly(osb
)))
2439 printk(KERN_CRIT
"File system is now read-only due to the potential "
2440 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2441 "system is unmounted.\n");
2442 sb
->s_flags
|= MS_RDONLY
;
2443 ocfs2_set_ro_flag(osb
, 0);
2446 static char error_buf
[1024];
2448 void __ocfs2_error(struct super_block
*sb
,
2449 const char *function
,
2450 const char *fmt
, ...)
2454 va_start(args
, fmt
);
2455 vsnprintf(error_buf
, sizeof(error_buf
), fmt
, args
);
2458 /* Not using mlog here because we want to show the actual
2459 * function the error came from. */
2460 printk(KERN_CRIT
"OCFS2: ERROR (device %s): %s: %s\n",
2461 sb
->s_id
, function
, error_buf
);
2463 ocfs2_handle_error(sb
);
2466 /* Handle critical errors. This is intentionally more drastic than
2467 * ocfs2_handle_error, so we only use for things like journal errors,
2469 void __ocfs2_abort(struct super_block
* sb
,
2470 const char *function
,
2471 const char *fmt
, ...)
2475 va_start(args
, fmt
);
2476 vsnprintf(error_buf
, sizeof(error_buf
), fmt
, args
);
2479 printk(KERN_CRIT
"OCFS2: abort (device %s): %s: %s\n",
2480 sb
->s_id
, function
, error_buf
);
2482 /* We don't have the cluster support yet to go straight to
2483 * hard readonly in here. Until then, we want to keep
2484 * ocfs2_abort() so that we can at least mark critical
2487 * TODO: This should abort the journal and alert other nodes
2488 * that our slot needs recovery. */
2490 /* Force a panic(). This stinks, but it's better than letting
2491 * things continue without having a proper hard readonly
2493 OCFS2_SB(sb
)->s_mount_opt
|= OCFS2_MOUNT_ERRORS_PANIC
;
2494 ocfs2_handle_error(sb
);
2497 module_init(ocfs2_init
);
2498 module_exit(ocfs2_exit
);