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/init.h>
32 #include <linux/random.h>
33 #include <linux/statfs.h>
34 #include <linux/moduleparam.h>
35 #include <linux/blkdev.h>
36 #include <linux/socket.h>
37 #include <linux/inet.h>
38 #include <linux/parser.h>
39 #include <linux/crc32.h>
40 #include <linux/debugfs.h>
41 #include <linux/mount.h>
42 #include <linux/seq_file.h>
43 #include <linux/quotaops.h>
44 #include <linux/smp_lock.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"
71 #include "refcounttree.h"
74 #include "buffer_head_io.h"
76 static struct kmem_cache
*ocfs2_inode_cachep
= NULL
;
77 struct kmem_cache
*ocfs2_dquot_cachep
;
78 struct kmem_cache
*ocfs2_qf_chunk_cachep
;
80 /* OCFS2 needs to schedule several differnt types of work which
81 * require cluster locking, disk I/O, recovery waits, etc. Since these
82 * types of work tend to be heavy we avoid using the kernel events
83 * workqueue and schedule on our own. */
84 struct workqueue_struct
*ocfs2_wq
= NULL
;
86 static struct dentry
*ocfs2_debugfs_root
= NULL
;
88 MODULE_AUTHOR("Oracle");
89 MODULE_LICENSE("GPL");
93 unsigned long commit_interval
;
94 unsigned long mount_opt
;
95 unsigned int atime_quantum
;
98 unsigned int resv_level
;
100 char cluster_stack
[OCFS2_STACK_LABEL_LEN
+ 1];
103 static int ocfs2_parse_options(struct super_block
*sb
, char *options
,
104 struct mount_options
*mopt
,
106 static int ocfs2_check_set_options(struct super_block
*sb
,
107 struct mount_options
*options
);
108 static int ocfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
);
109 static void ocfs2_put_super(struct super_block
*sb
);
110 static int ocfs2_mount_volume(struct super_block
*sb
);
111 static int ocfs2_remount(struct super_block
*sb
, int *flags
, char *data
);
112 static void ocfs2_dismount_volume(struct super_block
*sb
, int mnt_err
);
113 static int ocfs2_initialize_mem_caches(void);
114 static void ocfs2_free_mem_caches(void);
115 static void ocfs2_delete_osb(struct ocfs2_super
*osb
);
117 static int ocfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
);
119 static int ocfs2_sync_fs(struct super_block
*sb
, int wait
);
121 static int ocfs2_init_global_system_inodes(struct ocfs2_super
*osb
);
122 static int ocfs2_init_local_system_inodes(struct ocfs2_super
*osb
);
123 static void ocfs2_release_system_inodes(struct ocfs2_super
*osb
);
124 static int ocfs2_check_volume(struct ocfs2_super
*osb
);
125 static int ocfs2_verify_volume(struct ocfs2_dinode
*di
,
126 struct buffer_head
*bh
,
128 struct ocfs2_blockcheck_stats
*stats
);
129 static int ocfs2_initialize_super(struct super_block
*sb
,
130 struct buffer_head
*bh
,
132 struct ocfs2_blockcheck_stats
*stats
);
133 static int ocfs2_get_sector(struct super_block
*sb
,
134 struct buffer_head
**bh
,
137 static struct inode
*ocfs2_alloc_inode(struct super_block
*sb
);
138 static void ocfs2_destroy_inode(struct inode
*inode
);
139 static int ocfs2_susp_quotas(struct ocfs2_super
*osb
, int unsuspend
);
140 static int ocfs2_enable_quotas(struct ocfs2_super
*osb
);
141 static void ocfs2_disable_quotas(struct ocfs2_super
*osb
);
143 static const struct super_operations ocfs2_sops
= {
144 .statfs
= ocfs2_statfs
,
145 .alloc_inode
= ocfs2_alloc_inode
,
146 .destroy_inode
= ocfs2_destroy_inode
,
147 .drop_inode
= ocfs2_drop_inode
,
148 .evict_inode
= ocfs2_evict_inode
,
149 .sync_fs
= ocfs2_sync_fs
,
150 .put_super
= ocfs2_put_super
,
151 .remount_fs
= ocfs2_remount
,
152 .show_options
= ocfs2_show_options
,
153 .quota_read
= ocfs2_quota_read
,
154 .quota_write
= ocfs2_quota_write
,
185 static const match_table_t tokens
= {
186 {Opt_barrier
, "barrier=%u"},
187 {Opt_err_panic
, "errors=panic"},
188 {Opt_err_ro
, "errors=remount-ro"},
190 {Opt_nointr
, "nointr"},
191 {Opt_hb_none
, OCFS2_HB_NONE
},
192 {Opt_hb_local
, OCFS2_HB_LOCAL
},
193 {Opt_data_ordered
, "data=ordered"},
194 {Opt_data_writeback
, "data=writeback"},
195 {Opt_atime_quantum
, "atime_quantum=%u"},
196 {Opt_slot
, "preferred_slot=%u"},
197 {Opt_commit
, "commit=%u"},
198 {Opt_localalloc
, "localalloc=%d"},
199 {Opt_localflocks
, "localflocks"},
200 {Opt_stack
, "cluster_stack=%s"},
201 {Opt_user_xattr
, "user_xattr"},
202 {Opt_nouser_xattr
, "nouser_xattr"},
203 {Opt_inode64
, "inode64"},
205 {Opt_noacl
, "noacl"},
206 {Opt_usrquota
, "usrquota"},
207 {Opt_grpquota
, "grpquota"},
208 {Opt_resv_level
, "resv_level=%u"},
209 {Opt_dir_resv_level
, "dir_resv_level=%u"},
213 #ifdef CONFIG_DEBUG_FS
214 static int ocfs2_osb_dump(struct ocfs2_super
*osb
, char *buf
, int len
)
216 struct ocfs2_cluster_connection
*cconn
= osb
->cconn
;
217 struct ocfs2_recovery_map
*rm
= osb
->recovery_map
;
218 struct ocfs2_orphan_scan
*os
= &osb
->osb_orphan_scan
;
221 out
+= snprintf(buf
+ out
, len
- out
,
222 "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n",
223 "Device", osb
->dev_str
, osb
->uuid_str
,
224 osb
->fs_generation
, osb
->vol_label
);
226 out
+= snprintf(buf
+ out
, len
- out
,
227 "%10s => State: %d Flags: 0x%lX\n", "Volume",
228 atomic_read(&osb
->vol_state
), osb
->osb_flags
);
230 out
+= snprintf(buf
+ out
, len
- out
,
231 "%10s => Block: %lu Cluster: %d\n", "Sizes",
232 osb
->sb
->s_blocksize
, osb
->s_clustersize
);
234 out
+= snprintf(buf
+ out
, len
- out
,
235 "%10s => Compat: 0x%X Incompat: 0x%X "
237 "Features", osb
->s_feature_compat
,
238 osb
->s_feature_incompat
, osb
->s_feature_ro_compat
);
240 out
+= snprintf(buf
+ out
, len
- out
,
241 "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount",
242 osb
->s_mount_opt
, osb
->s_atime_quantum
);
245 out
+= snprintf(buf
+ out
, len
- out
,
246 "%10s => Stack: %s Name: %*s "
247 "Version: %d.%d\n", "Cluster",
248 (*osb
->osb_cluster_stack
== '\0' ?
249 "o2cb" : osb
->osb_cluster_stack
),
250 cconn
->cc_namelen
, cconn
->cc_name
,
251 cconn
->cc_version
.pv_major
,
252 cconn
->cc_version
.pv_minor
);
255 spin_lock(&osb
->dc_task_lock
);
256 out
+= snprintf(buf
+ out
, len
- out
,
257 "%10s => Pid: %d Count: %lu WakeSeq: %lu "
258 "WorkSeq: %lu\n", "DownCnvt",
259 (osb
->dc_task
? task_pid_nr(osb
->dc_task
) : -1),
260 osb
->blocked_lock_count
, osb
->dc_wake_sequence
,
261 osb
->dc_work_sequence
);
262 spin_unlock(&osb
->dc_task_lock
);
264 spin_lock(&osb
->osb_lock
);
265 out
+= snprintf(buf
+ out
, len
- out
, "%10s => Pid: %d Nodes:",
267 (osb
->recovery_thread_task
?
268 task_pid_nr(osb
->recovery_thread_task
) : -1));
269 if (rm
->rm_used
== 0)
270 out
+= snprintf(buf
+ out
, len
- out
, " None\n");
272 for (i
= 0; i
< rm
->rm_used
; i
++)
273 out
+= snprintf(buf
+ out
, len
- out
, " %d",
275 out
+= snprintf(buf
+ out
, len
- out
, "\n");
277 spin_unlock(&osb
->osb_lock
);
279 out
+= snprintf(buf
+ out
, len
- out
,
280 "%10s => Pid: %d Interval: %lu Needs: %d\n", "Commit",
281 (osb
->commit_task
? task_pid_nr(osb
->commit_task
) : -1),
282 osb
->osb_commit_interval
,
283 atomic_read(&osb
->needs_checkpoint
));
285 out
+= snprintf(buf
+ out
, len
- out
,
286 "%10s => State: %d TxnId: %lu NumTxns: %d\n",
287 "Journal", osb
->journal
->j_state
,
288 osb
->journal
->j_trans_id
,
289 atomic_read(&osb
->journal
->j_num_trans
));
291 out
+= snprintf(buf
+ out
, len
- out
,
292 "%10s => GlobalAllocs: %d LocalAllocs: %d "
293 "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n",
295 atomic_read(&osb
->alloc_stats
.bitmap_data
),
296 atomic_read(&osb
->alloc_stats
.local_data
),
297 atomic_read(&osb
->alloc_stats
.bg_allocs
),
298 atomic_read(&osb
->alloc_stats
.moves
),
299 atomic_read(&osb
->alloc_stats
.bg_extends
));
301 out
+= snprintf(buf
+ out
, len
- out
,
302 "%10s => State: %u Descriptor: %llu Size: %u bits "
303 "Default: %u bits\n",
304 "LocalAlloc", osb
->local_alloc_state
,
305 (unsigned long long)osb
->la_last_gd
,
306 osb
->local_alloc_bits
, osb
->local_alloc_default_bits
);
308 spin_lock(&osb
->osb_lock
);
309 out
+= snprintf(buf
+ out
, len
- out
,
310 "%10s => InodeSlot: %d StolenInodes: %d, "
311 "MetaSlot: %d StolenMeta: %d\n", "Steal",
312 osb
->s_inode_steal_slot
,
313 atomic_read(&osb
->s_num_inodes_stolen
),
314 osb
->s_meta_steal_slot
,
315 atomic_read(&osb
->s_num_meta_stolen
));
316 spin_unlock(&osb
->osb_lock
);
318 out
+= snprintf(buf
+ out
, len
- out
, "OrphanScan => ");
319 out
+= snprintf(buf
+ out
, len
- out
, "Local: %u Global: %u ",
320 os
->os_count
, os
->os_seqno
);
321 out
+= snprintf(buf
+ out
, len
- out
, " Last Scan: ");
322 if (atomic_read(&os
->os_state
) == ORPHAN_SCAN_INACTIVE
)
323 out
+= snprintf(buf
+ out
, len
- out
, "Disabled\n");
325 out
+= snprintf(buf
+ out
, len
- out
, "%lu seconds ago\n",
326 (get_seconds() - os
->os_scantime
.tv_sec
));
328 out
+= snprintf(buf
+ out
, len
- out
, "%10s => %3s %10s\n",
329 "Slots", "Num", "RecoGen");
330 for (i
= 0; i
< osb
->max_slots
; ++i
) {
331 out
+= snprintf(buf
+ out
, len
- out
,
332 "%10s %c %3d %10d\n",
334 (i
== osb
->slot_num
? '*' : ' '),
335 i
, osb
->slot_recovery_generations
[i
]);
341 static int ocfs2_osb_debug_open(struct inode
*inode
, struct file
*file
)
343 struct ocfs2_super
*osb
= inode
->i_private
;
346 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
350 i_size_write(inode
, ocfs2_osb_dump(osb
, buf
, PAGE_SIZE
));
352 file
->private_data
= buf
;
359 static int ocfs2_debug_release(struct inode
*inode
, struct file
*file
)
361 kfree(file
->private_data
);
365 static ssize_t
ocfs2_debug_read(struct file
*file
, char __user
*buf
,
366 size_t nbytes
, loff_t
*ppos
)
368 return simple_read_from_buffer(buf
, nbytes
, ppos
, file
->private_data
,
369 i_size_read(file
->f_mapping
->host
));
372 static int ocfs2_osb_debug_open(struct inode
*inode
, struct file
*file
)
376 static int ocfs2_debug_release(struct inode
*inode
, struct file
*file
)
380 static ssize_t
ocfs2_debug_read(struct file
*file
, char __user
*buf
,
381 size_t nbytes
, loff_t
*ppos
)
385 #endif /* CONFIG_DEBUG_FS */
387 static const struct file_operations ocfs2_osb_debug_fops
= {
388 .open
= ocfs2_osb_debug_open
,
389 .release
= ocfs2_debug_release
,
390 .read
= ocfs2_debug_read
,
391 .llseek
= generic_file_llseek
,
394 static int ocfs2_sync_fs(struct super_block
*sb
, int wait
)
398 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
400 if (ocfs2_is_hard_readonly(osb
))
404 status
= ocfs2_flush_truncate_log(osb
);
408 ocfs2_schedule_truncate_log_flush(osb
, 0);
411 if (jbd2_journal_start_commit(OCFS2_SB(sb
)->journal
->j_journal
,
414 jbd2_log_wait_commit(OCFS2_SB(sb
)->journal
->j_journal
,
420 static int ocfs2_need_system_inode(struct ocfs2_super
*osb
, int ino
)
422 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)
423 && (ino
== USER_QUOTA_SYSTEM_INODE
424 || ino
== LOCAL_USER_QUOTA_SYSTEM_INODE
))
426 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)
427 && (ino
== GROUP_QUOTA_SYSTEM_INODE
428 || ino
== LOCAL_GROUP_QUOTA_SYSTEM_INODE
))
433 static int ocfs2_init_global_system_inodes(struct ocfs2_super
*osb
)
435 struct inode
*new = NULL
;
441 new = ocfs2_iget(osb
, osb
->root_blkno
, OCFS2_FI_FLAG_SYSFILE
, 0);
443 status
= PTR_ERR(new);
447 osb
->root_inode
= new;
449 new = ocfs2_iget(osb
, osb
->system_dir_blkno
, OCFS2_FI_FLAG_SYSFILE
, 0);
451 status
= PTR_ERR(new);
455 osb
->sys_root_inode
= new;
457 for (i
= OCFS2_FIRST_ONLINE_SYSTEM_INODE
;
458 i
<= OCFS2_LAST_GLOBAL_SYSTEM_INODE
; i
++) {
459 if (!ocfs2_need_system_inode(osb
, i
))
461 new = ocfs2_get_system_file_inode(osb
, i
, osb
->slot_num
);
463 ocfs2_release_system_inodes(osb
);
466 /* FIXME: Should ERROR_RO_FS */
467 mlog(ML_ERROR
, "Unable to load system inode %d, "
468 "possibly corrupt fs?", i
);
471 // the array now has one ref, so drop this one
480 static int ocfs2_init_local_system_inodes(struct ocfs2_super
*osb
)
482 struct inode
*new = NULL
;
488 for (i
= OCFS2_LAST_GLOBAL_SYSTEM_INODE
+ 1;
489 i
< NUM_SYSTEM_INODES
;
491 if (!ocfs2_need_system_inode(osb
, i
))
493 new = ocfs2_get_system_file_inode(osb
, i
, osb
->slot_num
);
495 ocfs2_release_system_inodes(osb
);
497 mlog(ML_ERROR
, "status=%d, sysfile=%d, slot=%d\n",
498 status
, i
, osb
->slot_num
);
501 /* the array now has one ref, so drop this one */
510 static void ocfs2_release_system_inodes(struct ocfs2_super
*osb
)
517 for (i
= 0; i
< NUM_SYSTEM_INODES
; i
++) {
518 inode
= osb
->system_inodes
[i
];
521 osb
->system_inodes
[i
] = NULL
;
525 inode
= osb
->sys_root_inode
;
528 osb
->sys_root_inode
= NULL
;
531 inode
= osb
->root_inode
;
534 osb
->root_inode
= NULL
;
540 /* We're allocating fs objects, use GFP_NOFS */
541 static struct inode
*ocfs2_alloc_inode(struct super_block
*sb
)
543 struct ocfs2_inode_info
*oi
;
545 oi
= kmem_cache_alloc(ocfs2_inode_cachep
, GFP_NOFS
);
549 jbd2_journal_init_jbd_inode(&oi
->ip_jinode
, &oi
->vfs_inode
);
550 return &oi
->vfs_inode
;
553 static void ocfs2_destroy_inode(struct inode
*inode
)
555 kmem_cache_free(ocfs2_inode_cachep
, OCFS2_I(inode
));
558 static unsigned long long ocfs2_max_file_offset(unsigned int bbits
,
561 unsigned int bytes
= 1 << cbits
;
562 unsigned int trim
= bytes
;
563 unsigned int bitshift
= 32;
566 * i_size and all block offsets in ocfs2 are always 64 bits
567 * wide. i_clusters is 32 bits, in cluster-sized units. So on
568 * 64 bit platforms, cluster size will be the limiting factor.
571 #if BITS_PER_LONG == 32
572 # if defined(CONFIG_LBDAF)
573 BUILD_BUG_ON(sizeof(sector_t
) != 8);
575 * We might be limited by page cache size.
577 if (bytes
> PAGE_CACHE_SIZE
) {
578 bytes
= PAGE_CACHE_SIZE
;
581 * Shift by 31 here so that we don't get larger than
588 * We are limited by the size of sector_t. Use block size, as
589 * that's what we expose to the VFS.
598 * Trim by a whole cluster when we can actually approach the
599 * on-disk limits. Otherwise we can overflow i_clusters when
600 * an extent start is at the max offset.
602 return (((unsigned long long)bytes
) << bitshift
) - trim
;
605 static int ocfs2_remount(struct super_block
*sb
, int *flags
, char *data
)
607 int incompat_features
;
609 struct mount_options parsed_options
;
610 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
614 if (!ocfs2_parse_options(sb
, data
, &parsed_options
, 1) ||
615 !ocfs2_check_set_options(sb
, &parsed_options
)) {
620 if ((osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) !=
621 (parsed_options
.mount_opt
& OCFS2_MOUNT_HB_LOCAL
)) {
623 mlog(ML_ERROR
, "Cannot change heartbeat mode on remount\n");
627 if ((osb
->s_mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
) !=
628 (parsed_options
.mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
)) {
630 mlog(ML_ERROR
, "Cannot change data mode on remount\n");
634 /* Probably don't want this on remount; it might
635 * mess with other nodes */
636 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_INODE64
) &&
637 (parsed_options
.mount_opt
& OCFS2_MOUNT_INODE64
)) {
639 mlog(ML_ERROR
, "Cannot enable inode64 on remount\n");
643 /* We're going to/from readonly mode. */
644 if ((*flags
& MS_RDONLY
) != (sb
->s_flags
& MS_RDONLY
)) {
645 /* Disable quota accounting before remounting RO */
646 if (*flags
& MS_RDONLY
) {
647 ret
= ocfs2_susp_quotas(osb
, 0);
651 /* Lock here so the check of HARD_RO and the potential
652 * setting of SOFT_RO is atomic. */
653 spin_lock(&osb
->osb_lock
);
654 if (osb
->osb_flags
& OCFS2_OSB_HARD_RO
) {
655 mlog(ML_ERROR
, "Remount on readonly device is forbidden.\n");
660 if (*flags
& MS_RDONLY
) {
661 mlog(0, "Going to ro mode.\n");
662 sb
->s_flags
|= MS_RDONLY
;
663 osb
->osb_flags
|= OCFS2_OSB_SOFT_RO
;
665 mlog(0, "Making ro filesystem writeable.\n");
667 if (osb
->osb_flags
& OCFS2_OSB_ERROR_FS
) {
668 mlog(ML_ERROR
, "Cannot remount RDWR "
669 "filesystem due to previous errors.\n");
673 incompat_features
= OCFS2_HAS_RO_COMPAT_FEATURE(sb
, ~OCFS2_FEATURE_RO_COMPAT_SUPP
);
674 if (incompat_features
) {
675 mlog(ML_ERROR
, "Cannot remount RDWR because "
676 "of unsupported optional features "
677 "(%x).\n", incompat_features
);
681 sb
->s_flags
&= ~MS_RDONLY
;
682 osb
->osb_flags
&= ~OCFS2_OSB_SOFT_RO
;
685 spin_unlock(&osb
->osb_lock
);
686 /* Enable quota accounting after remounting RW */
687 if (!ret
&& !(*flags
& MS_RDONLY
)) {
688 if (sb_any_quota_suspended(sb
))
689 ret
= ocfs2_susp_quotas(osb
, 1);
691 ret
= ocfs2_enable_quotas(osb
);
693 /* Return back changes... */
694 spin_lock(&osb
->osb_lock
);
695 sb
->s_flags
|= MS_RDONLY
;
696 osb
->osb_flags
|= OCFS2_OSB_SOFT_RO
;
697 spin_unlock(&osb
->osb_lock
);
704 /* Only save off the new mount options in case of a successful
706 osb
->s_mount_opt
= parsed_options
.mount_opt
;
707 osb
->s_atime_quantum
= parsed_options
.atime_quantum
;
708 osb
->preferred_slot
= parsed_options
.slot
;
709 if (parsed_options
.commit_interval
)
710 osb
->osb_commit_interval
= parsed_options
.commit_interval
;
712 if (!ocfs2_is_hard_readonly(osb
))
713 ocfs2_set_journal_params(osb
);
715 sb
->s_flags
= (sb
->s_flags
& ~MS_POSIXACL
) |
716 ((osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
) ?
724 static int ocfs2_sb_probe(struct super_block
*sb
,
725 struct buffer_head
**bh
,
727 struct ocfs2_blockcheck_stats
*stats
)
730 struct ocfs1_vol_disk_hdr
*hdr
;
731 struct ocfs2_dinode
*di
;
737 *sector_size
= bdev_logical_block_size(sb
->s_bdev
);
738 if (*sector_size
> OCFS2_MAX_BLOCKSIZE
) {
739 mlog(ML_ERROR
, "Hardware sector size too large: %d (max=%d)\n",
740 *sector_size
, OCFS2_MAX_BLOCKSIZE
);
745 /* Can this really happen? */
746 if (*sector_size
< OCFS2_MIN_BLOCKSIZE
)
747 *sector_size
= OCFS2_MIN_BLOCKSIZE
;
749 /* check block zero for old format */
750 status
= ocfs2_get_sector(sb
, bh
, 0, *sector_size
);
755 hdr
= (struct ocfs1_vol_disk_hdr
*) (*bh
)->b_data
;
756 if (hdr
->major_version
== OCFS1_MAJOR_VERSION
) {
757 mlog(ML_ERROR
, "incompatible version: %u.%u\n",
758 hdr
->major_version
, hdr
->minor_version
);
761 if (memcmp(hdr
->signature
, OCFS1_VOLUME_SIGNATURE
,
762 strlen(OCFS1_VOLUME_SIGNATURE
)) == 0) {
763 mlog(ML_ERROR
, "incompatible volume signature: %8s\n",
770 mlog(ML_ERROR
, "This is an ocfs v1 filesystem which must be "
771 "upgraded before mounting with ocfs v2\n");
776 * Now check at magic offset for 512, 1024, 2048, 4096
777 * blocksizes. 4096 is the maximum blocksize because it is
778 * the minimum clustersize.
781 for (blksize
= *sector_size
;
782 blksize
<= OCFS2_MAX_BLOCKSIZE
;
784 tmpstat
= ocfs2_get_sector(sb
, bh
,
785 OCFS2_SUPER_BLOCK_BLKNO
,
792 di
= (struct ocfs2_dinode
*) (*bh
)->b_data
;
793 memset(stats
, 0, sizeof(struct ocfs2_blockcheck_stats
));
794 spin_lock_init(&stats
->b_lock
);
795 tmpstat
= ocfs2_verify_volume(di
, *bh
, blksize
, stats
);
800 if (tmpstat
!= -EAGAIN
) {
810 static int ocfs2_verify_heartbeat(struct ocfs2_super
*osb
)
812 if (ocfs2_mount_local(osb
)) {
813 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
814 mlog(ML_ERROR
, "Cannot heartbeat on a locally "
815 "mounted device.\n");
820 if (ocfs2_userspace_stack(osb
)) {
821 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
822 mlog(ML_ERROR
, "Userspace stack expected, but "
823 "o2cb heartbeat arguments passed to mount\n");
828 if (!(osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
)) {
829 if (!ocfs2_mount_local(osb
) && !ocfs2_is_hard_readonly(osb
) &&
830 !ocfs2_userspace_stack(osb
)) {
831 mlog(ML_ERROR
, "Heartbeat has to be started to mount "
832 "a read-write clustered device.\n");
841 * If we're using a userspace stack, mount should have passed
842 * a name that matches the disk. If not, mount should not
843 * have passed a stack.
845 static int ocfs2_verify_userspace_stack(struct ocfs2_super
*osb
,
846 struct mount_options
*mopt
)
848 if (!ocfs2_userspace_stack(osb
) && mopt
->cluster_stack
[0]) {
850 "cluster stack passed to mount, but this filesystem "
851 "does not support it\n");
855 if (ocfs2_userspace_stack(osb
) &&
856 strncmp(osb
->osb_cluster_stack
, mopt
->cluster_stack
,
857 OCFS2_STACK_LABEL_LEN
)) {
859 "cluster stack passed to mount (\"%s\") does not "
860 "match the filesystem (\"%s\")\n",
862 osb
->osb_cluster_stack
);
869 static int ocfs2_susp_quotas(struct ocfs2_super
*osb
, int unsuspend
)
872 struct super_block
*sb
= osb
->sb
;
873 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
874 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
877 for (type
= 0; type
< MAXQUOTAS
; type
++) {
878 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
881 status
= dquot_resume(sb
, type
);
883 struct ocfs2_mem_dqinfo
*oinfo
;
885 /* Cancel periodic syncing before suspending */
886 oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
887 cancel_delayed_work_sync(&oinfo
->dqi_sync_work
);
888 status
= dquot_suspend(sb
, type
);
894 mlog(ML_ERROR
, "Failed to suspend/unsuspend quotas on "
895 "remount (error = %d).\n", status
);
899 static int ocfs2_enable_quotas(struct ocfs2_super
*osb
)
901 struct inode
*inode
[MAXQUOTAS
] = { NULL
, NULL
};
902 struct super_block
*sb
= osb
->sb
;
903 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
904 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
905 unsigned int ino
[MAXQUOTAS
] = { LOCAL_USER_QUOTA_SYSTEM_INODE
,
906 LOCAL_GROUP_QUOTA_SYSTEM_INODE
};
910 sb_dqopt(sb
)->flags
|= DQUOT_QUOTA_SYS_FILE
| DQUOT_NEGATIVE_USAGE
;
911 for (type
= 0; type
< MAXQUOTAS
; type
++) {
912 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
914 inode
[type
] = ocfs2_get_system_file_inode(osb
, ino
[type
],
920 status
= dquot_enable(inode
[type
], type
, QFMT_OCFS2
,
921 DQUOT_USAGE_ENABLED
);
926 for (type
= 0; type
< MAXQUOTAS
; type
++)
930 ocfs2_disable_quotas(osb
);
931 for (type
= 0; type
< MAXQUOTAS
; type
++)
937 static void ocfs2_disable_quotas(struct ocfs2_super
*osb
)
941 struct super_block
*sb
= osb
->sb
;
942 struct ocfs2_mem_dqinfo
*oinfo
;
944 /* We mostly ignore errors in this function because there's not much
945 * we can do when we see them */
946 for (type
= 0; type
< MAXQUOTAS
; type
++) {
947 if (!sb_has_quota_loaded(sb
, type
))
949 /* Cancel periodic syncing before we grab dqonoff_mutex */
950 oinfo
= sb_dqinfo(sb
, type
)->dqi_priv
;
951 cancel_delayed_work_sync(&oinfo
->dqi_sync_work
);
952 inode
= igrab(sb
->s_dquot
.files
[type
]);
953 /* Turn off quotas. This will remove all dquot structures from
954 * memory and so they will be automatically synced to global
956 dquot_disable(sb
, type
, DQUOT_USAGE_ENABLED
|
957 DQUOT_LIMITS_ENABLED
);
964 /* Handle quota on quotactl */
965 static int ocfs2_quota_on(struct super_block
*sb
, int type
, int format_id
,
968 unsigned int feature
[MAXQUOTAS
] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA
,
969 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
};
971 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb
, feature
[type
]))
974 return dquot_enable(sb_dqopt(sb
)->files
[type
], type
,
975 format_id
, DQUOT_LIMITS_ENABLED
);
978 /* Handle quota off quotactl */
979 static int ocfs2_quota_off(struct super_block
*sb
, int type
)
981 return dquot_disable(sb
, type
, DQUOT_LIMITS_ENABLED
);
984 static const struct quotactl_ops ocfs2_quotactl_ops
= {
985 .quota_on
= ocfs2_quota_on
,
986 .quota_off
= ocfs2_quota_off
,
987 .quota_sync
= dquot_quota_sync
,
988 .get_info
= dquot_get_dqinfo
,
989 .set_info
= dquot_set_dqinfo
,
990 .get_dqblk
= dquot_get_dqblk
,
991 .set_dqblk
= dquot_set_dqblk
,
994 static int ocfs2_fill_super(struct super_block
*sb
, void *data
, int silent
)
997 int status
, sector_size
;
998 struct mount_options parsed_options
;
999 struct inode
*inode
= NULL
;
1000 struct ocfs2_super
*osb
= NULL
;
1001 struct buffer_head
*bh
= NULL
;
1003 struct ocfs2_blockcheck_stats stats
;
1005 mlog_entry("%p, %p, %i", sb
, data
, silent
);
1007 if (!ocfs2_parse_options(sb
, data
, &parsed_options
, 0)) {
1009 goto read_super_error
;
1012 /* probe for superblock */
1013 status
= ocfs2_sb_probe(sb
, &bh
, §or_size
, &stats
);
1015 mlog(ML_ERROR
, "superblock probe failed!\n");
1016 goto read_super_error
;
1019 status
= ocfs2_initialize_super(sb
, bh
, sector_size
, &stats
);
1023 goto read_super_error
;
1028 if (!ocfs2_check_set_options(sb
, &parsed_options
)) {
1030 goto read_super_error
;
1032 osb
->s_mount_opt
= parsed_options
.mount_opt
;
1033 osb
->s_atime_quantum
= parsed_options
.atime_quantum
;
1034 osb
->preferred_slot
= parsed_options
.slot
;
1035 osb
->osb_commit_interval
= parsed_options
.commit_interval
;
1037 ocfs2_la_set_sizes(osb
, parsed_options
.localalloc_opt
);
1038 osb
->osb_resv_level
= parsed_options
.resv_level
;
1039 osb
->osb_dir_resv_level
= parsed_options
.resv_level
;
1040 if (parsed_options
.dir_resv_level
== -1)
1041 osb
->osb_dir_resv_level
= parsed_options
.resv_level
;
1043 osb
->osb_dir_resv_level
= parsed_options
.dir_resv_level
;
1045 status
= ocfs2_verify_userspace_stack(osb
, &parsed_options
);
1047 goto read_super_error
;
1049 sb
->s_magic
= OCFS2_SUPER_MAGIC
;
1051 sb
->s_flags
= (sb
->s_flags
& ~MS_POSIXACL
) |
1052 ((osb
->s_mount_opt
& OCFS2_MOUNT_POSIX_ACL
) ? MS_POSIXACL
: 0);
1054 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
1056 if (bdev_read_only(sb
->s_bdev
)) {
1057 if (!(sb
->s_flags
& MS_RDONLY
)) {
1059 mlog(ML_ERROR
, "Readonly device detected but readonly "
1060 "mount was not specified.\n");
1061 goto read_super_error
;
1064 /* You should not be able to start a local heartbeat
1065 * on a readonly device. */
1066 if (osb
->s_mount_opt
& OCFS2_MOUNT_HB_LOCAL
) {
1068 mlog(ML_ERROR
, "Local heartbeat specified on readonly "
1070 goto read_super_error
;
1073 status
= ocfs2_check_journals_nolocks(osb
);
1075 if (status
== -EROFS
)
1076 mlog(ML_ERROR
, "Recovery required on readonly "
1077 "file system, but write access is "
1081 goto read_super_error
;
1084 ocfs2_set_ro_flag(osb
, 1);
1086 printk(KERN_NOTICE
"Readonly device detected. No cluster "
1087 "services will be utilized for this mount. Recovery "
1088 "will be skipped.\n");
1091 if (!ocfs2_is_hard_readonly(osb
)) {
1092 if (sb
->s_flags
& MS_RDONLY
)
1093 ocfs2_set_ro_flag(osb
, 0);
1096 status
= ocfs2_verify_heartbeat(osb
);
1099 goto read_super_error
;
1102 osb
->osb_debug_root
= debugfs_create_dir(osb
->uuid_str
,
1103 ocfs2_debugfs_root
);
1104 if (!osb
->osb_debug_root
) {
1106 mlog(ML_ERROR
, "Unable to create per-mount debugfs root.\n");
1107 goto read_super_error
;
1110 osb
->osb_ctxt
= debugfs_create_file("fs_state", S_IFREG
|S_IRUSR
,
1111 osb
->osb_debug_root
,
1113 &ocfs2_osb_debug_fops
);
1114 if (!osb
->osb_ctxt
) {
1117 goto read_super_error
;
1120 if (ocfs2_meta_ecc(osb
)) {
1121 status
= ocfs2_blockcheck_stats_debugfs_install(
1122 &osb
->osb_ecc_stats
,
1123 osb
->osb_debug_root
);
1126 "Unable to create blockcheck statistics "
1128 goto read_super_error
;
1132 status
= ocfs2_mount_volume(sb
);
1133 if (osb
->root_inode
)
1134 inode
= igrab(osb
->root_inode
);
1137 goto read_super_error
;
1142 goto read_super_error
;
1145 root
= d_alloc_root(inode
);
1149 goto read_super_error
;
1154 ocfs2_complete_mount_recovery(osb
);
1156 if (ocfs2_mount_local(osb
))
1157 snprintf(nodestr
, sizeof(nodestr
), "local");
1159 snprintf(nodestr
, sizeof(nodestr
), "%u", osb
->node_num
);
1161 printk(KERN_INFO
"ocfs2: Mounting device (%s) on (node %s, slot %d) "
1162 "with %s data mode.\n",
1163 osb
->dev_str
, nodestr
, osb
->slot_num
,
1164 osb
->s_mount_opt
& OCFS2_MOUNT_DATA_WRITEBACK
? "writeback" :
1167 atomic_set(&osb
->vol_state
, VOLUME_MOUNTED
);
1168 wake_up(&osb
->osb_mount_event
);
1170 /* Now we can initialize quotas because we can afford to wait
1171 * for cluster locks recovery now. That also means that truncation
1172 * log recovery can happen but that waits for proper quota setup */
1173 if (!(sb
->s_flags
& MS_RDONLY
)) {
1174 status
= ocfs2_enable_quotas(osb
);
1176 /* We have to err-out specially here because
1177 * s_root is already set */
1179 atomic_set(&osb
->vol_state
, VOLUME_DISABLED
);
1180 wake_up(&osb
->osb_mount_event
);
1186 ocfs2_complete_quota_recovery(osb
);
1188 /* Now we wake up again for processes waiting for quotas */
1189 atomic_set(&osb
->vol_state
, VOLUME_MOUNTED_QUOTAS
);
1190 wake_up(&osb
->osb_mount_event
);
1192 /* Start this when the mount is almost sure of being successful */
1193 ocfs2_orphan_scan_start(osb
);
1205 atomic_set(&osb
->vol_state
, VOLUME_DISABLED
);
1206 wake_up(&osb
->osb_mount_event
);
1207 ocfs2_dismount_volume(sb
, 1);
1214 static int ocfs2_get_sb(struct file_system_type
*fs_type
,
1216 const char *dev_name
,
1218 struct vfsmount
*mnt
)
1220 return get_sb_bdev(fs_type
, flags
, dev_name
, data
, ocfs2_fill_super
,
1224 static void ocfs2_kill_sb(struct super_block
*sb
)
1226 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
1229 if (!osb
|| atomic_read(&osb
->vol_state
) == VOLUME_DISABLED
)
1232 /* Prevent further queueing of inode drop events */
1233 spin_lock(&dentry_list_lock
);
1234 ocfs2_set_osb_flag(osb
, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED
);
1235 spin_unlock(&dentry_list_lock
);
1236 /* Wait for work to finish and/or remove it */
1237 cancel_work_sync(&osb
->dentry_lock_work
);
1239 kill_block_super(sb
);
1242 static struct file_system_type ocfs2_fs_type
= {
1243 .owner
= THIS_MODULE
,
1245 .get_sb
= ocfs2_get_sb
, /* is this called when we mount
1247 .kill_sb
= ocfs2_kill_sb
,
1249 .fs_flags
= FS_REQUIRES_DEV
|FS_RENAME_DOES_D_MOVE
,
1253 static int ocfs2_check_set_options(struct super_block
*sb
,
1254 struct mount_options
*options
)
1256 if (options
->mount_opt
& OCFS2_MOUNT_USRQUOTA
&&
1257 !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1258 OCFS2_FEATURE_RO_COMPAT_USRQUOTA
)) {
1259 mlog(ML_ERROR
, "User quotas were requested, but this "
1260 "filesystem does not have the feature enabled.\n");
1263 if (options
->mount_opt
& OCFS2_MOUNT_GRPQUOTA
&&
1264 !OCFS2_HAS_RO_COMPAT_FEATURE(sb
,
1265 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA
)) {
1266 mlog(ML_ERROR
, "Group quotas were requested, but this "
1267 "filesystem does not have the feature enabled.\n");
1270 if (options
->mount_opt
& OCFS2_MOUNT_POSIX_ACL
&&
1271 !OCFS2_HAS_INCOMPAT_FEATURE(sb
, OCFS2_FEATURE_INCOMPAT_XATTR
)) {
1272 mlog(ML_ERROR
, "ACL support requested but extended attributes "
1273 "feature is not enabled\n");
1276 /* No ACL setting specified? Use XATTR feature... */
1277 if (!(options
->mount_opt
& (OCFS2_MOUNT_POSIX_ACL
|
1278 OCFS2_MOUNT_NO_POSIX_ACL
))) {
1279 if (OCFS2_HAS_INCOMPAT_FEATURE(sb
, OCFS2_FEATURE_INCOMPAT_XATTR
))
1280 options
->mount_opt
|= OCFS2_MOUNT_POSIX_ACL
;
1282 options
->mount_opt
|= OCFS2_MOUNT_NO_POSIX_ACL
;
1287 static int ocfs2_parse_options(struct super_block
*sb
,
1289 struct mount_options
*mopt
,
1295 mlog_entry("remount: %d, options: \"%s\"\n", is_remount
,
1296 options
? options
: "(none)");
1298 mopt
->commit_interval
= 0;
1299 mopt
->mount_opt
= OCFS2_MOUNT_NOINTR
;
1300 mopt
->atime_quantum
= OCFS2_DEFAULT_ATIME_QUANTUM
;
1301 mopt
->slot
= OCFS2_INVALID_SLOT
;
1302 mopt
->localalloc_opt
= -1;
1303 mopt
->cluster_stack
[0] = '\0';
1304 mopt
->resv_level
= OCFS2_DEFAULT_RESV_LEVEL
;
1305 mopt
->dir_resv_level
= -1;
1312 while ((p
= strsep(&options
, ",")) != NULL
) {
1314 substring_t args
[MAX_OPT_ARGS
];
1319 token
= match_token(p
, tokens
, args
);
1322 mopt
->mount_opt
|= OCFS2_MOUNT_HB_LOCAL
;
1325 mopt
->mount_opt
&= ~OCFS2_MOUNT_HB_LOCAL
;
1328 if (match_int(&args
[0], &option
)) {
1333 mopt
->mount_opt
|= OCFS2_MOUNT_BARRIER
;
1335 mopt
->mount_opt
&= ~OCFS2_MOUNT_BARRIER
;
1338 mopt
->mount_opt
&= ~OCFS2_MOUNT_NOINTR
;
1341 mopt
->mount_opt
|= OCFS2_MOUNT_NOINTR
;
1344 mopt
->mount_opt
|= OCFS2_MOUNT_ERRORS_PANIC
;
1347 mopt
->mount_opt
&= ~OCFS2_MOUNT_ERRORS_PANIC
;
1349 case Opt_data_ordered
:
1350 mopt
->mount_opt
&= ~OCFS2_MOUNT_DATA_WRITEBACK
;
1352 case Opt_data_writeback
:
1353 mopt
->mount_opt
|= OCFS2_MOUNT_DATA_WRITEBACK
;
1355 case Opt_user_xattr
:
1356 mopt
->mount_opt
&= ~OCFS2_MOUNT_NOUSERXATTR
;
1358 case Opt_nouser_xattr
:
1359 mopt
->mount_opt
|= OCFS2_MOUNT_NOUSERXATTR
;
1361 case Opt_atime_quantum
:
1362 if (match_int(&args
[0], &option
)) {
1367 mopt
->atime_quantum
= option
;
1371 if (match_int(&args
[0], &option
)) {
1376 mopt
->slot
= (s16
)option
;
1380 if (match_int(&args
[0], &option
)) {
1387 option
= JBD2_DEFAULT_MAX_COMMIT_AGE
;
1388 mopt
->commit_interval
= HZ
* option
;
1390 case Opt_localalloc
:
1392 if (match_int(&args
[0], &option
)) {
1397 mopt
->localalloc_opt
= option
;
1399 case Opt_localflocks
:
1401 * Changing this during remount could race
1402 * flock() requests, or "unbalance" existing
1403 * ones (e.g., a lock is taken in one mode but
1404 * dropped in the other). If users care enough
1405 * to flip locking modes during remount, we
1406 * could add a "local" flag to individual
1407 * flock structures for proper tracking of
1411 mopt
->mount_opt
|= OCFS2_MOUNT_LOCALFLOCKS
;
1414 /* Check both that the option we were passed
1415 * is of the right length and that it is a proper
1416 * string of the right length.
1418 if (((args
[0].to
- args
[0].from
) !=
1419 OCFS2_STACK_LABEL_LEN
) ||
1420 (strnlen(args
[0].from
,
1421 OCFS2_STACK_LABEL_LEN
) !=
1422 OCFS2_STACK_LABEL_LEN
)) {
1424 "Invalid cluster_stack option\n");
1428 memcpy(mopt
->cluster_stack
, args
[0].from
,
1429 OCFS2_STACK_LABEL_LEN
);
1430 mopt
->cluster_stack
[OCFS2_STACK_LABEL_LEN
] = '\0';
1433 mopt
->mount_opt
|= OCFS2_MOUNT_INODE64
;
1436 mopt
->mount_opt
|= OCFS2_MOUNT_USRQUOTA
;
1439 mopt
->mount_opt
|= OCFS2_MOUNT_GRPQUOTA
;
1442 mopt
->mount_opt
|= OCFS2_MOUNT_POSIX_ACL
;
1443 mopt
->mount_opt
&= ~OCFS2_MOUNT_NO_POSIX_ACL
;
1446 mopt
->mount_opt
|= OCFS2_MOUNT_NO_POSIX_ACL
;
1447 mopt
->mount_opt
&= ~OCFS2_MOUNT_POSIX_ACL
;
1449 case Opt_resv_level
:
1452 if (match_int(&args
[0], &option
)) {
1456 if (option
>= OCFS2_MIN_RESV_LEVEL
&&
1457 option
< OCFS2_MAX_RESV_LEVEL
)
1458 mopt
->resv_level
= option
;
1460 case Opt_dir_resv_level
:
1463 if (match_int(&args
[0], &option
)) {
1467 if (option
>= OCFS2_MIN_RESV_LEVEL
&&
1468 option
< OCFS2_MAX_RESV_LEVEL
)
1469 mopt
->dir_resv_level
= option
;
1473 "Unrecognized mount option \"%s\" "
1474 "or missing value\n", p
);
1487 static int ocfs2_show_options(struct seq_file
*s
, struct vfsmount
*mnt
)
1489 struct ocfs2_super
*osb
= OCFS2_SB(mnt
->mnt_sb
);
1490 unsigned long opts
= osb
->s_mount_opt
;
1491 unsigned int local_alloc_megs
;
1493 if (opts
& OCFS2_MOUNT_HB_LOCAL
)
1494 seq_printf(s
, ",_netdev,heartbeat=local");
1496 seq_printf(s
, ",heartbeat=none");
1498 if (opts
& OCFS2_MOUNT_NOINTR
)
1499 seq_printf(s
, ",nointr");
1501 if (opts
& OCFS2_MOUNT_DATA_WRITEBACK
)
1502 seq_printf(s
, ",data=writeback");
1504 seq_printf(s
, ",data=ordered");
1506 if (opts
& OCFS2_MOUNT_BARRIER
)
1507 seq_printf(s
, ",barrier=1");
1509 if (opts
& OCFS2_MOUNT_ERRORS_PANIC
)
1510 seq_printf(s
, ",errors=panic");
1512 seq_printf(s
, ",errors=remount-ro");
1514 if (osb
->preferred_slot
!= OCFS2_INVALID_SLOT
)
1515 seq_printf(s
, ",preferred_slot=%d", osb
->preferred_slot
);
1517 if (osb
->s_atime_quantum
!= OCFS2_DEFAULT_ATIME_QUANTUM
)
1518 seq_printf(s
, ",atime_quantum=%u", osb
->s_atime_quantum
);
1520 if (osb
->osb_commit_interval
)
1521 seq_printf(s
, ",commit=%u",
1522 (unsigned) (osb
->osb_commit_interval
/ HZ
));
1524 local_alloc_megs
= osb
->local_alloc_bits
>> (20 - osb
->s_clustersize_bits
);
1525 if (local_alloc_megs
!= ocfs2_la_default_mb(osb
))
1526 seq_printf(s
, ",localalloc=%d", local_alloc_megs
);
1528 if (opts
& OCFS2_MOUNT_LOCALFLOCKS
)
1529 seq_printf(s
, ",localflocks,");
1531 if (osb
->osb_cluster_stack
[0])
1532 seq_printf(s
, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN
,
1533 osb
->osb_cluster_stack
);
1534 if (opts
& OCFS2_MOUNT_USRQUOTA
)
1535 seq_printf(s
, ",usrquota");
1536 if (opts
& OCFS2_MOUNT_GRPQUOTA
)
1537 seq_printf(s
, ",grpquota");
1539 if (opts
& OCFS2_MOUNT_NOUSERXATTR
)
1540 seq_printf(s
, ",nouser_xattr");
1542 seq_printf(s
, ",user_xattr");
1544 if (opts
& OCFS2_MOUNT_INODE64
)
1545 seq_printf(s
, ",inode64");
1547 if (opts
& OCFS2_MOUNT_POSIX_ACL
)
1548 seq_printf(s
, ",acl");
1550 seq_printf(s
, ",noacl");
1552 if (osb
->osb_resv_level
!= OCFS2_DEFAULT_RESV_LEVEL
)
1553 seq_printf(s
, ",resv_level=%d", osb
->osb_resv_level
);
1555 if (osb
->osb_dir_resv_level
!= osb
->osb_resv_level
)
1556 seq_printf(s
, ",dir_resv_level=%d", osb
->osb_resv_level
);
1561 static int __init
ocfs2_init(void)
1567 ocfs2_print_version();
1569 status
= init_ocfs2_uptodate_cache();
1575 status
= ocfs2_initialize_mem_caches();
1581 ocfs2_wq
= create_singlethread_workqueue("ocfs2_wq");
1587 ocfs2_debugfs_root
= debugfs_create_dir("ocfs2", NULL
);
1588 if (!ocfs2_debugfs_root
) {
1590 mlog(ML_ERROR
, "Unable to create ocfs2 debugfs root.\n");
1593 status
= ocfs2_quota_setup();
1597 ocfs2_set_locking_protocol();
1599 status
= register_quota_format(&ocfs2_quota_format
);
1602 ocfs2_quota_shutdown();
1603 ocfs2_free_mem_caches();
1604 exit_ocfs2_uptodate_cache();
1610 return register_filesystem(&ocfs2_fs_type
);
1615 static void __exit
ocfs2_exit(void)
1619 ocfs2_quota_shutdown();
1622 flush_workqueue(ocfs2_wq
);
1623 destroy_workqueue(ocfs2_wq
);
1626 unregister_quota_format(&ocfs2_quota_format
);
1628 debugfs_remove(ocfs2_debugfs_root
);
1630 ocfs2_free_mem_caches();
1632 unregister_filesystem(&ocfs2_fs_type
);
1634 exit_ocfs2_uptodate_cache();
1639 static void ocfs2_put_super(struct super_block
*sb
)
1641 mlog_entry("(0x%p)\n", sb
);
1645 ocfs2_sync_blockdev(sb
);
1646 ocfs2_dismount_volume(sb
, 0);
1653 static int ocfs2_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
1655 struct ocfs2_super
*osb
;
1656 u32 numbits
, freebits
;
1658 struct ocfs2_dinode
*bm_lock
;
1659 struct buffer_head
*bh
= NULL
;
1660 struct inode
*inode
= NULL
;
1662 mlog_entry("(%p, %p)\n", dentry
->d_sb
, buf
);
1664 osb
= OCFS2_SB(dentry
->d_sb
);
1666 inode
= ocfs2_get_system_file_inode(osb
,
1667 GLOBAL_BITMAP_SYSTEM_INODE
,
1668 OCFS2_INVALID_SLOT
);
1670 mlog(ML_ERROR
, "failed to get bitmap inode\n");
1675 status
= ocfs2_inode_lock(inode
, &bh
, 0);
1681 bm_lock
= (struct ocfs2_dinode
*) bh
->b_data
;
1683 numbits
= le32_to_cpu(bm_lock
->id1
.bitmap1
.i_total
);
1684 freebits
= numbits
- le32_to_cpu(bm_lock
->id1
.bitmap1
.i_used
);
1686 buf
->f_type
= OCFS2_SUPER_MAGIC
;
1687 buf
->f_bsize
= dentry
->d_sb
->s_blocksize
;
1688 buf
->f_namelen
= OCFS2_MAX_FILENAME_LEN
;
1689 buf
->f_blocks
= ((sector_t
) numbits
) *
1690 (osb
->s_clustersize
>> osb
->sb
->s_blocksize_bits
);
1691 buf
->f_bfree
= ((sector_t
) freebits
) *
1692 (osb
->s_clustersize
>> osb
->sb
->s_blocksize_bits
);
1693 buf
->f_bavail
= buf
->f_bfree
;
1694 buf
->f_files
= numbits
;
1695 buf
->f_ffree
= freebits
;
1696 buf
->f_fsid
.val
[0] = crc32_le(0, osb
->uuid_str
, OCFS2_VOL_UUID_LEN
)
1698 buf
->f_fsid
.val
[1] = crc32_le(0, osb
->uuid_str
+ OCFS2_VOL_UUID_LEN
,
1699 OCFS2_VOL_UUID_LEN
) & 0xFFFFFFFFUL
;
1703 ocfs2_inode_unlock(inode
, 0);
1714 static void ocfs2_inode_init_once(void *data
)
1716 struct ocfs2_inode_info
*oi
= data
;
1719 oi
->ip_open_count
= 0;
1720 spin_lock_init(&oi
->ip_lock
);
1721 ocfs2_extent_map_init(&oi
->vfs_inode
);
1722 INIT_LIST_HEAD(&oi
->ip_io_markers
);
1723 oi
->ip_dir_start_lookup
= 0;
1725 init_rwsem(&oi
->ip_alloc_sem
);
1726 init_rwsem(&oi
->ip_xattr_sem
);
1727 mutex_init(&oi
->ip_io_mutex
);
1729 oi
->ip_blkno
= 0ULL;
1730 oi
->ip_clusters
= 0;
1732 ocfs2_resv_init_once(&oi
->ip_la_data_resv
);
1734 ocfs2_lock_res_init_once(&oi
->ip_rw_lockres
);
1735 ocfs2_lock_res_init_once(&oi
->ip_inode_lockres
);
1736 ocfs2_lock_res_init_once(&oi
->ip_open_lockres
);
1738 ocfs2_metadata_cache_init(INODE_CACHE(&oi
->vfs_inode
),
1739 &ocfs2_inode_caching_ops
);
1741 inode_init_once(&oi
->vfs_inode
);
1744 static int ocfs2_initialize_mem_caches(void)
1746 ocfs2_inode_cachep
= kmem_cache_create("ocfs2_inode_cache",
1747 sizeof(struct ocfs2_inode_info
),
1749 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
1751 ocfs2_inode_init_once
);
1752 ocfs2_dquot_cachep
= kmem_cache_create("ocfs2_dquot_cache",
1753 sizeof(struct ocfs2_dquot
),
1755 (SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
|
1758 ocfs2_qf_chunk_cachep
= kmem_cache_create("ocfs2_qf_chunk_cache",
1759 sizeof(struct ocfs2_quota_chunk
),
1761 (SLAB_RECLAIM_ACCOUNT
|SLAB_MEM_SPREAD
),
1763 if (!ocfs2_inode_cachep
|| !ocfs2_dquot_cachep
||
1764 !ocfs2_qf_chunk_cachep
) {
1765 if (ocfs2_inode_cachep
)
1766 kmem_cache_destroy(ocfs2_inode_cachep
);
1767 if (ocfs2_dquot_cachep
)
1768 kmem_cache_destroy(ocfs2_dquot_cachep
);
1769 if (ocfs2_qf_chunk_cachep
)
1770 kmem_cache_destroy(ocfs2_qf_chunk_cachep
);
1777 static void ocfs2_free_mem_caches(void)
1779 if (ocfs2_inode_cachep
)
1780 kmem_cache_destroy(ocfs2_inode_cachep
);
1781 ocfs2_inode_cachep
= NULL
;
1783 if (ocfs2_dquot_cachep
)
1784 kmem_cache_destroy(ocfs2_dquot_cachep
);
1785 ocfs2_dquot_cachep
= NULL
;
1787 if (ocfs2_qf_chunk_cachep
)
1788 kmem_cache_destroy(ocfs2_qf_chunk_cachep
);
1789 ocfs2_qf_chunk_cachep
= NULL
;
1792 static int ocfs2_get_sector(struct super_block
*sb
,
1793 struct buffer_head
**bh
,
1797 if (!sb_set_blocksize(sb
, sect_size
)) {
1798 mlog(ML_ERROR
, "unable to set blocksize\n");
1802 *bh
= sb_getblk(sb
, block
);
1808 if (!buffer_dirty(*bh
))
1809 clear_buffer_uptodate(*bh
);
1811 ll_rw_block(READ
, 1, bh
);
1812 wait_on_buffer(*bh
);
1813 if (!buffer_uptodate(*bh
)) {
1823 static int ocfs2_mount_volume(struct super_block
*sb
)
1826 int unlock_super
= 0;
1827 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
1831 if (ocfs2_is_hard_readonly(osb
))
1834 status
= ocfs2_dlm_init(osb
);
1840 status
= ocfs2_super_lock(osb
, 1);
1847 /* This will load up the node map and add ourselves to it. */
1848 status
= ocfs2_find_slot(osb
);
1854 /* load all node-local system inodes */
1855 status
= ocfs2_init_local_system_inodes(osb
);
1861 status
= ocfs2_check_volume(osb
);
1867 status
= ocfs2_truncate_log_init(osb
);
1873 ocfs2_super_unlock(osb
, 1);
1879 static void ocfs2_dismount_volume(struct super_block
*sb
, int mnt_err
)
1881 int tmp
, hangup_needed
= 0;
1882 struct ocfs2_super
*osb
= NULL
;
1885 mlog_entry("(0x%p)\n", sb
);
1891 debugfs_remove(osb
->osb_ctxt
);
1894 * Flush inode dropping work queue so that deletes are
1895 * performed while the filesystem is still working
1897 ocfs2_drop_all_dl_inodes(osb
);
1899 /* Orphan scan should be stopped as early as possible */
1900 ocfs2_orphan_scan_stop(osb
);
1902 ocfs2_disable_quotas(osb
);
1904 ocfs2_shutdown_local_alloc(osb
);
1906 ocfs2_truncate_log_shutdown(osb
);
1908 /* This will disable recovery and flush any recovery work. */
1909 ocfs2_recovery_exit(osb
);
1911 ocfs2_journal_shutdown(osb
);
1913 ocfs2_sync_blockdev(sb
);
1915 ocfs2_purge_refcount_trees(osb
);
1917 /* No cluster connection means we've failed during mount, so skip
1918 * all the steps which depended on that to complete. */
1920 tmp
= ocfs2_super_lock(osb
, 1);
1927 if (osb
->slot_num
!= OCFS2_INVALID_SLOT
)
1928 ocfs2_put_slot(osb
);
1931 ocfs2_super_unlock(osb
, 1);
1933 ocfs2_release_system_inodes(osb
);
1936 * If we're dismounting due to mount error, mount.ocfs2 will clean
1937 * up heartbeat. If we're a local mount, there is no heartbeat.
1938 * If we failed before we got a uuid_str yet, we can't stop
1939 * heartbeat. Otherwise, do it.
1941 if (!mnt_err
&& !ocfs2_mount_local(osb
) && osb
->uuid_str
)
1945 ocfs2_dlm_shutdown(osb
, hangup_needed
);
1947 ocfs2_blockcheck_stats_debugfs_remove(&osb
->osb_ecc_stats
);
1948 debugfs_remove(osb
->osb_debug_root
);
1951 ocfs2_cluster_hangup(osb
->uuid_str
, strlen(osb
->uuid_str
));
1953 atomic_set(&osb
->vol_state
, VOLUME_DISMOUNTED
);
1955 if (ocfs2_mount_local(osb
))
1956 snprintf(nodestr
, sizeof(nodestr
), "local");
1958 snprintf(nodestr
, sizeof(nodestr
), "%u", osb
->node_num
);
1960 printk(KERN_INFO
"ocfs2: Unmounting device (%s) on (node %s)\n",
1961 osb
->dev_str
, nodestr
);
1963 ocfs2_delete_osb(osb
);
1966 sb
->s_fs_info
= NULL
;
1969 static int ocfs2_setup_osb_uuid(struct ocfs2_super
*osb
, const unsigned char *uuid
,
1970 unsigned uuid_bytes
)
1975 BUG_ON(uuid_bytes
!= OCFS2_VOL_UUID_LEN
);
1977 osb
->uuid_str
= kzalloc(OCFS2_VOL_UUID_LEN
* 2 + 1, GFP_KERNEL
);
1978 if (osb
->uuid_str
== NULL
)
1981 for (i
= 0, ptr
= osb
->uuid_str
; i
< OCFS2_VOL_UUID_LEN
; i
++) {
1982 /* print with null */
1983 ret
= snprintf(ptr
, 3, "%02X", uuid
[i
]);
1984 if (ret
!= 2) /* drop super cleans up */
1986 /* then only advance past the last char */
1993 static int ocfs2_initialize_super(struct super_block
*sb
,
1994 struct buffer_head
*bh
,
1996 struct ocfs2_blockcheck_stats
*stats
)
1999 int i
, cbits
, bbits
;
2000 struct ocfs2_dinode
*di
= (struct ocfs2_dinode
*)bh
->b_data
;
2001 struct inode
*inode
= NULL
;
2002 struct ocfs2_journal
*journal
;
2003 __le32 uuid_net_key
;
2004 struct ocfs2_super
*osb
;
2008 osb
= kzalloc(sizeof(struct ocfs2_super
), GFP_KERNEL
);
2015 sb
->s_fs_info
= osb
;
2016 sb
->s_op
= &ocfs2_sops
;
2017 sb
->s_export_op
= &ocfs2_export_ops
;
2018 sb
->s_qcop
= &ocfs2_quotactl_ops
;
2019 sb
->dq_op
= &ocfs2_quota_operations
;
2020 sb
->s_xattr
= ocfs2_xattr_handlers
;
2021 sb
->s_time_gran
= 1;
2022 sb
->s_flags
|= MS_NOATIME
;
2023 /* this is needed to support O_LARGEFILE */
2024 cbits
= le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
);
2025 bbits
= le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
);
2026 sb
->s_maxbytes
= ocfs2_max_file_offset(bbits
, cbits
);
2028 osb
->osb_dx_mask
= (1 << (cbits
- bbits
)) - 1;
2030 for (i
= 0; i
< 3; i
++)
2031 osb
->osb_dx_seed
[i
] = le32_to_cpu(di
->id2
.i_super
.s_dx_seed
[i
]);
2032 osb
->osb_dx_seed
[3] = le32_to_cpu(di
->id2
.i_super
.s_uuid_hash
);
2035 /* Save off for ocfs2_rw_direct */
2036 osb
->s_sectsize_bits
= blksize_bits(sector_size
);
2037 BUG_ON(!osb
->s_sectsize_bits
);
2039 spin_lock_init(&osb
->dc_task_lock
);
2040 init_waitqueue_head(&osb
->dc_event
);
2041 osb
->dc_work_sequence
= 0;
2042 osb
->dc_wake_sequence
= 0;
2043 INIT_LIST_HEAD(&osb
->blocked_lock_list
);
2044 osb
->blocked_lock_count
= 0;
2045 spin_lock_init(&osb
->osb_lock
);
2046 spin_lock_init(&osb
->osb_xattr_lock
);
2047 ocfs2_init_steal_slots(osb
);
2049 atomic_set(&osb
->alloc_stats
.moves
, 0);
2050 atomic_set(&osb
->alloc_stats
.local_data
, 0);
2051 atomic_set(&osb
->alloc_stats
.bitmap_data
, 0);
2052 atomic_set(&osb
->alloc_stats
.bg_allocs
, 0);
2053 atomic_set(&osb
->alloc_stats
.bg_extends
, 0);
2055 /* Copy the blockcheck stats from the superblock probe */
2056 osb
->osb_ecc_stats
= *stats
;
2058 ocfs2_init_node_maps(osb
);
2060 snprintf(osb
->dev_str
, sizeof(osb
->dev_str
), "%u,%u",
2061 MAJOR(osb
->sb
->s_dev
), MINOR(osb
->sb
->s_dev
));
2063 ocfs2_orphan_scan_init(osb
);
2065 status
= ocfs2_recovery_init(osb
);
2067 mlog(ML_ERROR
, "Unable to initialize recovery state\n");
2072 init_waitqueue_head(&osb
->checkpoint_event
);
2073 atomic_set(&osb
->needs_checkpoint
, 0);
2075 osb
->s_atime_quantum
= OCFS2_DEFAULT_ATIME_QUANTUM
;
2077 osb
->slot_num
= OCFS2_INVALID_SLOT
;
2079 osb
->s_xattr_inline_size
= le16_to_cpu(
2080 di
->id2
.i_super
.s_xattr_inline_size
);
2082 osb
->local_alloc_state
= OCFS2_LA_UNUSED
;
2083 osb
->local_alloc_bh
= NULL
;
2084 INIT_DELAYED_WORK(&osb
->la_enable_wq
, ocfs2_la_enable_worker
);
2086 init_waitqueue_head(&osb
->osb_mount_event
);
2088 status
= ocfs2_resmap_init(osb
, &osb
->osb_la_resmap
);
2094 osb
->vol_label
= kmalloc(OCFS2_MAX_VOL_LABEL_LEN
, GFP_KERNEL
);
2095 if (!osb
->vol_label
) {
2096 mlog(ML_ERROR
, "unable to alloc vol label\n");
2101 osb
->max_slots
= le16_to_cpu(di
->id2
.i_super
.s_max_slots
);
2102 if (osb
->max_slots
> OCFS2_MAX_SLOTS
|| osb
->max_slots
== 0) {
2103 mlog(ML_ERROR
, "Invalid number of node slots (%u)\n",
2108 mlog(0, "max_slots for this device: %u\n", osb
->max_slots
);
2110 osb
->slot_recovery_generations
=
2111 kcalloc(osb
->max_slots
, sizeof(*osb
->slot_recovery_generations
),
2113 if (!osb
->slot_recovery_generations
) {
2119 init_waitqueue_head(&osb
->osb_wipe_event
);
2120 osb
->osb_orphan_wipes
= kcalloc(osb
->max_slots
,
2121 sizeof(*osb
->osb_orphan_wipes
),
2123 if (!osb
->osb_orphan_wipes
) {
2129 osb
->osb_rf_lock_tree
= RB_ROOT
;
2131 osb
->s_feature_compat
=
2132 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_compat
);
2133 osb
->s_feature_ro_compat
=
2134 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_ro_compat
);
2135 osb
->s_feature_incompat
=
2136 le32_to_cpu(OCFS2_RAW_SB(di
)->s_feature_incompat
);
2138 if ((i
= OCFS2_HAS_INCOMPAT_FEATURE(osb
->sb
, ~OCFS2_FEATURE_INCOMPAT_SUPP
))) {
2139 mlog(ML_ERROR
, "couldn't mount because of unsupported "
2140 "optional features (%x).\n", i
);
2144 if (!(osb
->sb
->s_flags
& MS_RDONLY
) &&
2145 (i
= OCFS2_HAS_RO_COMPAT_FEATURE(osb
->sb
, ~OCFS2_FEATURE_RO_COMPAT_SUPP
))) {
2146 mlog(ML_ERROR
, "couldn't mount RDWR because of "
2147 "unsupported optional features (%x).\n", i
);
2152 if (ocfs2_userspace_stack(osb
)) {
2153 memcpy(osb
->osb_cluster_stack
,
2154 OCFS2_RAW_SB(di
)->s_cluster_info
.ci_stack
,
2155 OCFS2_STACK_LABEL_LEN
);
2156 osb
->osb_cluster_stack
[OCFS2_STACK_LABEL_LEN
] = '\0';
2157 if (strlen(osb
->osb_cluster_stack
) != OCFS2_STACK_LABEL_LEN
) {
2159 "couldn't mount because of an invalid "
2160 "cluster stack label (%s) \n",
2161 osb
->osb_cluster_stack
);
2166 /* The empty string is identical with classic tools that
2167 * don't know about s_cluster_info. */
2168 osb
->osb_cluster_stack
[0] = '\0';
2171 get_random_bytes(&osb
->s_next_generation
, sizeof(u32
));
2174 * This should be done in ocfs2_journal_init(), but unknown
2175 * ordering issues will cause the filesystem to crash.
2176 * If anyone wants to figure out what part of the code
2177 * refers to osb->journal before ocfs2_journal_init() is run,
2180 /* initialize our journal structure */
2182 journal
= kzalloc(sizeof(struct ocfs2_journal
), GFP_KERNEL
);
2184 mlog(ML_ERROR
, "unable to alloc journal\n");
2188 osb
->journal
= journal
;
2189 journal
->j_osb
= osb
;
2191 atomic_set(&journal
->j_num_trans
, 0);
2192 init_rwsem(&journal
->j_trans_barrier
);
2193 init_waitqueue_head(&journal
->j_checkpointed
);
2194 spin_lock_init(&journal
->j_lock
);
2195 journal
->j_trans_id
= (unsigned long) 1;
2196 INIT_LIST_HEAD(&journal
->j_la_cleanups
);
2197 INIT_WORK(&journal
->j_recovery_work
, ocfs2_complete_recovery
);
2198 journal
->j_state
= OCFS2_JOURNAL_FREE
;
2200 INIT_WORK(&osb
->dentry_lock_work
, ocfs2_drop_dl_inodes
);
2201 osb
->dentry_lock_list
= NULL
;
2203 /* get some pseudo constants for clustersize bits */
2204 osb
->s_clustersize_bits
=
2205 le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
);
2206 osb
->s_clustersize
= 1 << osb
->s_clustersize_bits
;
2207 mlog(0, "clusterbits=%d\n", osb
->s_clustersize_bits
);
2209 if (osb
->s_clustersize
< OCFS2_MIN_CLUSTERSIZE
||
2210 osb
->s_clustersize
> OCFS2_MAX_CLUSTERSIZE
) {
2211 mlog(ML_ERROR
, "Volume has invalid cluster size (%d)\n",
2212 osb
->s_clustersize
);
2217 if (ocfs2_clusters_to_blocks(osb
->sb
, le32_to_cpu(di
->i_clusters
) - 1)
2219 mlog(ML_ERROR
, "Volume might try to write to blocks beyond "
2220 "what jbd can address in 32 bits.\n");
2225 if (ocfs2_setup_osb_uuid(osb
, di
->id2
.i_super
.s_uuid
,
2226 sizeof(di
->id2
.i_super
.s_uuid
))) {
2227 mlog(ML_ERROR
, "Out of memory trying to setup our uuid.\n");
2232 memcpy(&uuid_net_key
, di
->id2
.i_super
.s_uuid
, sizeof(uuid_net_key
));
2234 strncpy(osb
->vol_label
, di
->id2
.i_super
.s_label
, 63);
2235 osb
->vol_label
[63] = '\0';
2236 osb
->root_blkno
= le64_to_cpu(di
->id2
.i_super
.s_root_blkno
);
2237 osb
->system_dir_blkno
= le64_to_cpu(di
->id2
.i_super
.s_system_dir_blkno
);
2238 osb
->first_cluster_group_blkno
=
2239 le64_to_cpu(di
->id2
.i_super
.s_first_cluster_group
);
2240 osb
->fs_generation
= le32_to_cpu(di
->i_fs_generation
);
2241 osb
->uuid_hash
= le32_to_cpu(di
->id2
.i_super
.s_uuid_hash
);
2242 mlog(0, "vol_label: %s\n", osb
->vol_label
);
2243 mlog(0, "uuid: %s\n", osb
->uuid_str
);
2244 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
2245 (unsigned long long)osb
->root_blkno
,
2246 (unsigned long long)osb
->system_dir_blkno
);
2248 osb
->osb_dlm_debug
= ocfs2_new_dlm_debug();
2249 if (!osb
->osb_dlm_debug
) {
2255 atomic_set(&osb
->vol_state
, VOLUME_INIT
);
2257 /* load root, system_dir, and all global system inodes */
2258 status
= ocfs2_init_global_system_inodes(osb
);
2267 inode
= ocfs2_get_system_file_inode(osb
, GLOBAL_BITMAP_SYSTEM_INODE
,
2268 OCFS2_INVALID_SLOT
);
2275 osb
->bitmap_blkno
= OCFS2_I(inode
)->ip_blkno
;
2276 osb
->osb_clusters_at_boot
= OCFS2_I(inode
)->ip_clusters
;
2279 osb
->bitmap_cpg
= ocfs2_group_bitmap_size(sb
, 0,
2280 osb
->s_feature_incompat
) * 8;
2282 status
= ocfs2_init_slot_info(osb
);
2294 * will return: -EAGAIN if it is ok to keep searching for superblocks
2295 * -EINVAL if there is a bad superblock
2298 static int ocfs2_verify_volume(struct ocfs2_dinode
*di
,
2299 struct buffer_head
*bh
,
2301 struct ocfs2_blockcheck_stats
*stats
)
2303 int status
= -EAGAIN
;
2307 if (memcmp(di
->i_signature
, OCFS2_SUPER_BLOCK_SIGNATURE
,
2308 strlen(OCFS2_SUPER_BLOCK_SIGNATURE
)) == 0) {
2309 /* We have to do a raw check of the feature here */
2310 if (le32_to_cpu(di
->id2
.i_super
.s_feature_incompat
) &
2311 OCFS2_FEATURE_INCOMPAT_META_ECC
) {
2312 status
= ocfs2_block_check_validate(bh
->b_data
,
2320 if ((1 << le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
)) != blksz
) {
2321 mlog(ML_ERROR
, "found superblock with incorrect block "
2322 "size: found %u, should be %u\n",
2323 1 << le32_to_cpu(di
->id2
.i_super
.s_blocksize_bits
),
2325 } else if (le16_to_cpu(di
->id2
.i_super
.s_major_rev_level
) !=
2326 OCFS2_MAJOR_REV_LEVEL
||
2327 le16_to_cpu(di
->id2
.i_super
.s_minor_rev_level
) !=
2328 OCFS2_MINOR_REV_LEVEL
) {
2329 mlog(ML_ERROR
, "found superblock with bad version: "
2330 "found %u.%u, should be %u.%u\n",
2331 le16_to_cpu(di
->id2
.i_super
.s_major_rev_level
),
2332 le16_to_cpu(di
->id2
.i_super
.s_minor_rev_level
),
2333 OCFS2_MAJOR_REV_LEVEL
,
2334 OCFS2_MINOR_REV_LEVEL
);
2335 } else if (bh
->b_blocknr
!= le64_to_cpu(di
->i_blkno
)) {
2336 mlog(ML_ERROR
, "bad block number on superblock: "
2337 "found %llu, should be %llu\n",
2338 (unsigned long long)le64_to_cpu(di
->i_blkno
),
2339 (unsigned long long)bh
->b_blocknr
);
2340 } else if (le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
) < 12 ||
2341 le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
) > 20) {
2342 mlog(ML_ERROR
, "bad cluster size found: %u\n",
2343 1 << le32_to_cpu(di
->id2
.i_super
.s_clustersize_bits
));
2344 } else if (!le64_to_cpu(di
->id2
.i_super
.s_root_blkno
)) {
2345 mlog(ML_ERROR
, "bad root_blkno: 0\n");
2346 } else if (!le64_to_cpu(di
->id2
.i_super
.s_system_dir_blkno
)) {
2347 mlog(ML_ERROR
, "bad system_dir_blkno: 0\n");
2348 } else if (le16_to_cpu(di
->id2
.i_super
.s_max_slots
) > OCFS2_MAX_SLOTS
) {
2350 "Superblock slots found greater than file system "
2351 "maximum: found %u, max %u\n",
2352 le16_to_cpu(di
->id2
.i_super
.s_max_slots
),
2365 static int ocfs2_check_volume(struct ocfs2_super
*osb
)
2370 struct ocfs2_dinode
*local_alloc
= NULL
; /* only used if we
2376 /* Init our journal object. */
2377 status
= ocfs2_journal_init(osb
->journal
, &dirty
);
2379 mlog(ML_ERROR
, "Could not initialize journal!\n");
2383 /* If the journal was unmounted cleanly then we don't want to
2384 * recover anything. Otherwise, journal_load will do that
2385 * dirty work for us :) */
2387 status
= ocfs2_journal_wipe(osb
->journal
, 0);
2393 mlog(ML_NOTICE
, "File system was not unmounted cleanly, "
2394 "recovering volume.\n");
2397 local
= ocfs2_mount_local(osb
);
2399 /* will play back anything left in the journal. */
2400 status
= ocfs2_journal_load(osb
->journal
, local
, dirty
);
2402 mlog(ML_ERROR
, "ocfs2 journal load failed! %d\n", status
);
2407 /* recover my local alloc if we didn't unmount cleanly. */
2408 status
= ocfs2_begin_local_alloc_recovery(osb
,
2415 /* we complete the recovery process after we've marked
2416 * ourselves as mounted. */
2419 mlog(0, "Journal loaded.\n");
2421 status
= ocfs2_load_local_alloc(osb
);
2428 /* Recovery will be completed after we've mounted the
2429 * rest of the volume. */
2431 osb
->local_alloc_copy
= local_alloc
;
2435 /* go through each journal, trylock it and if you get the
2436 * lock, and it's marked as dirty, set the bit in the recover
2437 * map and launch a recovery thread for it. */
2438 status
= ocfs2_mark_dead_nodes(osb
);
2444 status
= ocfs2_compute_replay_slots(osb
);
2457 * The routine gets called from dismount or close whenever a dismount on
2458 * volume is requested and the osb open count becomes 1.
2459 * It will remove the osb from the global list and also free up all the
2460 * initialized resources and fileobject.
2462 static void ocfs2_delete_osb(struct ocfs2_super
*osb
)
2466 /* This function assumes that the caller has the main osb resource */
2468 ocfs2_free_slot_info(osb
);
2470 kfree(osb
->osb_orphan_wipes
);
2471 kfree(osb
->slot_recovery_generations
);
2473 * This belongs in journal shutdown, but because we have to
2474 * allocate osb->journal at the start of ocfs2_initialize_osb(),
2477 kfree(osb
->journal
);
2478 if (osb
->local_alloc_copy
)
2479 kfree(osb
->local_alloc_copy
);
2480 kfree(osb
->uuid_str
);
2481 ocfs2_put_dlm_debug(osb
->osb_dlm_debug
);
2482 memset(osb
, 0, sizeof(struct ocfs2_super
));
2487 /* Put OCFS2 into a readonly state, or (if the user specifies it),
2488 * panic(). We do not support continue-on-error operation. */
2489 static void ocfs2_handle_error(struct super_block
*sb
)
2491 struct ocfs2_super
*osb
= OCFS2_SB(sb
);
2493 if (osb
->s_mount_opt
& OCFS2_MOUNT_ERRORS_PANIC
)
2494 panic("OCFS2: (device %s): panic forced after error\n",
2497 ocfs2_set_osb_flag(osb
, OCFS2_OSB_ERROR_FS
);
2499 if (sb
->s_flags
& MS_RDONLY
&&
2500 (ocfs2_is_soft_readonly(osb
) ||
2501 ocfs2_is_hard_readonly(osb
)))
2504 printk(KERN_CRIT
"File system is now read-only due to the potential "
2505 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2506 "system is unmounted.\n");
2507 sb
->s_flags
|= MS_RDONLY
;
2508 ocfs2_set_ro_flag(osb
, 0);
2511 static char error_buf
[1024];
2513 void __ocfs2_error(struct super_block
*sb
,
2514 const char *function
,
2515 const char *fmt
, ...)
2519 va_start(args
, fmt
);
2520 vsnprintf(error_buf
, sizeof(error_buf
), fmt
, args
);
2523 /* Not using mlog here because we want to show the actual
2524 * function the error came from. */
2525 printk(KERN_CRIT
"OCFS2: ERROR (device %s): %s: %s\n",
2526 sb
->s_id
, function
, error_buf
);
2528 ocfs2_handle_error(sb
);
2531 /* Handle critical errors. This is intentionally more drastic than
2532 * ocfs2_handle_error, so we only use for things like journal errors,
2534 void __ocfs2_abort(struct super_block
* sb
,
2535 const char *function
,
2536 const char *fmt
, ...)
2540 va_start(args
, fmt
);
2541 vsnprintf(error_buf
, sizeof(error_buf
), fmt
, args
);
2544 printk(KERN_CRIT
"OCFS2: abort (device %s): %s: %s\n",
2545 sb
->s_id
, function
, error_buf
);
2547 /* We don't have the cluster support yet to go straight to
2548 * hard readonly in here. Until then, we want to keep
2549 * ocfs2_abort() so that we can at least mark critical
2552 * TODO: This should abort the journal and alert other nodes
2553 * that our slot needs recovery. */
2555 /* Force a panic(). This stinks, but it's better than letting
2556 * things continue without having a proper hard readonly
2558 if (!ocfs2_mount_local(OCFS2_SB(sb
)))
2559 OCFS2_SB(sb
)->s_mount_opt
|= OCFS2_MOUNT_ERRORS_PANIC
;
2560 ocfs2_handle_error(sb
);
2564 * Void signal blockers, because in-kernel sigprocmask() only fails
2565 * when SIG_* is wrong.
2567 void ocfs2_block_signals(sigset_t
*oldset
)
2572 sigfillset(&blocked
);
2573 rc
= sigprocmask(SIG_BLOCK
, &blocked
, oldset
);
2577 void ocfs2_unblock_signals(sigset_t
*oldset
)
2579 int rc
= sigprocmask(SIG_SETMASK
, oldset
, NULL
);
2583 module_init(ocfs2_init
);
2584 module_exit(ocfs2_exit
);