Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * super.c |
| 5 | * |
| 6 | * load/unload driver, mount/dismount volumes |
| 7 | * |
| 8 | * Copyright (C) 2002, 2004 Oracle. All rights reserved. |
| 9 | * |
| 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. |
| 14 | * |
| 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. |
| 19 | * |
| 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. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/fs.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> |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 42 | #include <linux/mount.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 43 | |
| 44 | #include <cluster/nodemanager.h> |
| 45 | |
| 46 | #define MLOG_MASK_PREFIX ML_SUPER |
| 47 | #include <cluster/masklog.h> |
| 48 | |
| 49 | #include "ocfs2.h" |
| 50 | |
| 51 | /* this should be the only file to include a version 1 header */ |
| 52 | #include "ocfs1_fs_compat.h" |
| 53 | |
| 54 | #include "alloc.h" |
| 55 | #include "dlmglue.h" |
| 56 | #include "export.h" |
| 57 | #include "extent_map.h" |
| 58 | #include "heartbeat.h" |
| 59 | #include "inode.h" |
| 60 | #include "journal.h" |
| 61 | #include "localalloc.h" |
| 62 | #include "namei.h" |
| 63 | #include "slot_map.h" |
| 64 | #include "super.h" |
| 65 | #include "sysfile.h" |
| 66 | #include "uptodate.h" |
| 67 | #include "ver.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 68 | |
| 69 | #include "buffer_head_io.h" |
| 70 | |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 71 | static struct kmem_cache *ocfs2_inode_cachep = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 72 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 73 | /* OCFS2 needs to schedule several differnt types of work which |
| 74 | * require cluster locking, disk I/O, recovery waits, etc. Since these |
| 75 | * types of work tend to be heavy we avoid using the kernel events |
| 76 | * workqueue and schedule on our own. */ |
| 77 | struct workqueue_struct *ocfs2_wq = NULL; |
| 78 | |
| 79 | static struct dentry *ocfs2_debugfs_root = NULL; |
| 80 | |
| 81 | MODULE_AUTHOR("Oracle"); |
| 82 | MODULE_LICENSE("GPL"); |
| 83 | |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 84 | struct mount_options |
| 85 | { |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 86 | unsigned long commit_interval; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 87 | unsigned long mount_opt; |
| 88 | unsigned int atime_quantum; |
| 89 | signed short slot; |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 90 | unsigned int localalloc_opt; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 91 | }; |
| 92 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 93 | static int ocfs2_parse_options(struct super_block *sb, char *options, |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 94 | struct mount_options *mopt, |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 95 | int is_remount); |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 96 | static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 97 | static void ocfs2_put_super(struct super_block *sb); |
| 98 | static int ocfs2_mount_volume(struct super_block *sb); |
| 99 | static int ocfs2_remount(struct super_block *sb, int *flags, char *data); |
| 100 | static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err); |
| 101 | static int ocfs2_initialize_mem_caches(void); |
| 102 | static void ocfs2_free_mem_caches(void); |
| 103 | static void ocfs2_delete_osb(struct ocfs2_super *osb); |
| 104 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 105 | static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 106 | |
| 107 | static int ocfs2_sync_fs(struct super_block *sb, int wait); |
| 108 | |
| 109 | static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb); |
| 110 | static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb); |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 111 | static void ocfs2_release_system_inodes(struct ocfs2_super *osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 112 | static int ocfs2_fill_local_node_info(struct ocfs2_super *osb); |
| 113 | static int ocfs2_check_volume(struct ocfs2_super *osb); |
| 114 | static int ocfs2_verify_volume(struct ocfs2_dinode *di, |
| 115 | struct buffer_head *bh, |
| 116 | u32 sectsize); |
| 117 | static int ocfs2_initialize_super(struct super_block *sb, |
| 118 | struct buffer_head *bh, |
| 119 | int sector_size); |
| 120 | static int ocfs2_get_sector(struct super_block *sb, |
| 121 | struct buffer_head **bh, |
| 122 | int block, |
| 123 | int sect_size); |
| 124 | static void ocfs2_write_super(struct super_block *sb); |
| 125 | static struct inode *ocfs2_alloc_inode(struct super_block *sb); |
| 126 | static void ocfs2_destroy_inode(struct inode *inode); |
| 127 | |
Josef 'Jeff' Sipek | ee9b6d6 | 2007-02-12 00:55:41 -0800 | [diff] [blame] | 128 | static const struct super_operations ocfs2_sops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 129 | .statfs = ocfs2_statfs, |
| 130 | .alloc_inode = ocfs2_alloc_inode, |
| 131 | .destroy_inode = ocfs2_destroy_inode, |
| 132 | .drop_inode = ocfs2_drop_inode, |
| 133 | .clear_inode = ocfs2_clear_inode, |
| 134 | .delete_inode = ocfs2_delete_inode, |
| 135 | .sync_fs = ocfs2_sync_fs, |
| 136 | .write_super = ocfs2_write_super, |
| 137 | .put_super = ocfs2_put_super, |
| 138 | .remount_fs = ocfs2_remount, |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 139 | .show_options = ocfs2_show_options, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | enum { |
| 143 | Opt_barrier, |
| 144 | Opt_err_panic, |
| 145 | Opt_err_ro, |
| 146 | Opt_intr, |
| 147 | Opt_nointr, |
| 148 | Opt_hb_none, |
| 149 | Opt_hb_local, |
| 150 | Opt_data_ordered, |
| 151 | Opt_data_writeback, |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 152 | Opt_atime_quantum, |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 153 | Opt_slot, |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 154 | Opt_commit, |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 155 | Opt_localalloc, |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 156 | Opt_localflocks, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 157 | Opt_err, |
| 158 | }; |
| 159 | |
| 160 | static match_table_t tokens = { |
| 161 | {Opt_barrier, "barrier=%u"}, |
| 162 | {Opt_err_panic, "errors=panic"}, |
| 163 | {Opt_err_ro, "errors=remount-ro"}, |
| 164 | {Opt_intr, "intr"}, |
| 165 | {Opt_nointr, "nointr"}, |
| 166 | {Opt_hb_none, OCFS2_HB_NONE}, |
| 167 | {Opt_hb_local, OCFS2_HB_LOCAL}, |
| 168 | {Opt_data_ordered, "data=ordered"}, |
| 169 | {Opt_data_writeback, "data=writeback"}, |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 170 | {Opt_atime_quantum, "atime_quantum=%u"}, |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 171 | {Opt_slot, "preferred_slot=%u"}, |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 172 | {Opt_commit, "commit=%u"}, |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 173 | {Opt_localalloc, "localalloc=%d"}, |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 174 | {Opt_localflocks, "localflocks"}, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 175 | {Opt_err, NULL} |
| 176 | }; |
| 177 | |
| 178 | /* |
| 179 | * write_super and sync_fs ripped right out of ext3. |
| 180 | */ |
| 181 | static void ocfs2_write_super(struct super_block *sb) |
| 182 | { |
Ingo Molnar | 7892f2f4 | 2006-01-09 15:59:25 -0800 | [diff] [blame] | 183 | if (mutex_trylock(&sb->s_lock) != 0) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 184 | BUG(); |
| 185 | sb->s_dirt = 0; |
| 186 | } |
| 187 | |
| 188 | static int ocfs2_sync_fs(struct super_block *sb, int wait) |
| 189 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 190 | int status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 191 | tid_t target; |
| 192 | struct ocfs2_super *osb = OCFS2_SB(sb); |
| 193 | |
| 194 | sb->s_dirt = 0; |
| 195 | |
| 196 | if (ocfs2_is_hard_readonly(osb)) |
| 197 | return -EROFS; |
| 198 | |
| 199 | if (wait) { |
| 200 | status = ocfs2_flush_truncate_log(osb); |
| 201 | if (status < 0) |
| 202 | mlog_errno(status); |
| 203 | } else { |
| 204 | ocfs2_schedule_truncate_log_flush(osb, 0); |
| 205 | } |
| 206 | |
| 207 | if (journal_start_commit(OCFS2_SB(sb)->journal->j_journal, &target)) { |
| 208 | if (wait) |
| 209 | log_wait_commit(OCFS2_SB(sb)->journal->j_journal, |
| 210 | target); |
| 211 | } |
| 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb) |
| 216 | { |
| 217 | struct inode *new = NULL; |
| 218 | int status = 0; |
| 219 | int i; |
| 220 | |
| 221 | mlog_entry_void(); |
| 222 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 223 | new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 224 | if (IS_ERR(new)) { |
| 225 | status = PTR_ERR(new); |
| 226 | mlog_errno(status); |
| 227 | goto bail; |
| 228 | } |
| 229 | osb->root_inode = new; |
| 230 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 231 | new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 232 | if (IS_ERR(new)) { |
| 233 | status = PTR_ERR(new); |
| 234 | mlog_errno(status); |
| 235 | goto bail; |
| 236 | } |
| 237 | osb->sys_root_inode = new; |
| 238 | |
| 239 | for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE; |
| 240 | i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) { |
| 241 | new = ocfs2_get_system_file_inode(osb, i, osb->slot_num); |
| 242 | if (!new) { |
| 243 | ocfs2_release_system_inodes(osb); |
| 244 | status = -EINVAL; |
| 245 | mlog_errno(status); |
| 246 | /* FIXME: Should ERROR_RO_FS */ |
| 247 | mlog(ML_ERROR, "Unable to load system inode %d, " |
| 248 | "possibly corrupt fs?", i); |
| 249 | goto bail; |
| 250 | } |
| 251 | // the array now has one ref, so drop this one |
| 252 | iput(new); |
| 253 | } |
| 254 | |
| 255 | bail: |
| 256 | mlog_exit(status); |
| 257 | return status; |
| 258 | } |
| 259 | |
| 260 | static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb) |
| 261 | { |
| 262 | struct inode *new = NULL; |
| 263 | int status = 0; |
| 264 | int i; |
| 265 | |
| 266 | mlog_entry_void(); |
| 267 | |
| 268 | for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1; |
| 269 | i < NUM_SYSTEM_INODES; |
| 270 | i++) { |
| 271 | new = ocfs2_get_system_file_inode(osb, i, osb->slot_num); |
| 272 | if (!new) { |
| 273 | ocfs2_release_system_inodes(osb); |
| 274 | status = -EINVAL; |
| 275 | mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n", |
| 276 | status, i, osb->slot_num); |
| 277 | goto bail; |
| 278 | } |
| 279 | /* the array now has one ref, so drop this one */ |
| 280 | iput(new); |
| 281 | } |
| 282 | |
| 283 | bail: |
| 284 | mlog_exit(status); |
| 285 | return status; |
| 286 | } |
| 287 | |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 288 | static void ocfs2_release_system_inodes(struct ocfs2_super *osb) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 289 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 290 | int i; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 291 | struct inode *inode; |
| 292 | |
| 293 | mlog_entry_void(); |
| 294 | |
| 295 | for (i = 0; i < NUM_SYSTEM_INODES; i++) { |
| 296 | inode = osb->system_inodes[i]; |
| 297 | if (inode) { |
| 298 | iput(inode); |
| 299 | osb->system_inodes[i] = NULL; |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | inode = osb->sys_root_inode; |
| 304 | if (inode) { |
| 305 | iput(inode); |
| 306 | osb->sys_root_inode = NULL; |
| 307 | } |
| 308 | |
| 309 | inode = osb->root_inode; |
| 310 | if (inode) { |
| 311 | iput(inode); |
| 312 | osb->root_inode = NULL; |
| 313 | } |
| 314 | |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 315 | mlog_exit(0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 316 | } |
| 317 | |
| 318 | /* We're allocating fs objects, use GFP_NOFS */ |
| 319 | static struct inode *ocfs2_alloc_inode(struct super_block *sb) |
| 320 | { |
| 321 | struct ocfs2_inode_info *oi; |
| 322 | |
Christoph Lameter | e6b4f8d | 2006-12-06 20:33:14 -0800 | [diff] [blame] | 323 | oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 324 | if (!oi) |
| 325 | return NULL; |
| 326 | |
| 327 | return &oi->vfs_inode; |
| 328 | } |
| 329 | |
| 330 | static void ocfs2_destroy_inode(struct inode *inode) |
| 331 | { |
| 332 | kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode)); |
| 333 | } |
| 334 | |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 335 | static unsigned long long ocfs2_max_file_offset(unsigned int bbits, |
| 336 | unsigned int cbits) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 337 | { |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 338 | unsigned int bytes = 1 << cbits; |
| 339 | unsigned int trim = bytes; |
| 340 | unsigned int bitshift = 32; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 341 | |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 342 | /* |
| 343 | * i_size and all block offsets in ocfs2 are always 64 bits |
| 344 | * wide. i_clusters is 32 bits, in cluster-sized units. So on |
| 345 | * 64 bit platforms, cluster size will be the limiting factor. |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 346 | */ |
| 347 | |
| 348 | #if BITS_PER_LONG == 32 |
| 349 | # if defined(CONFIG_LBD) |
Alexey Dobriyan | 2ecd05a | 2006-10-11 01:22:05 -0700 | [diff] [blame] | 350 | BUILD_BUG_ON(sizeof(sector_t) != 8); |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 351 | /* |
| 352 | * We might be limited by page cache size. |
| 353 | */ |
| 354 | if (bytes > PAGE_CACHE_SIZE) { |
| 355 | bytes = PAGE_CACHE_SIZE; |
| 356 | trim = 1; |
| 357 | /* |
| 358 | * Shift by 31 here so that we don't get larger than |
| 359 | * MAX_LFS_FILESIZE |
| 360 | */ |
| 361 | bitshift = 31; |
| 362 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 363 | # else |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 364 | /* |
| 365 | * We are limited by the size of sector_t. Use block size, as |
| 366 | * that's what we expose to the VFS. |
| 367 | */ |
| 368 | bytes = 1 << bbits; |
| 369 | trim = 1; |
| 370 | bitshift = 31; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 371 | # endif |
| 372 | #endif |
| 373 | |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 374 | /* |
| 375 | * Trim by a whole cluster when we can actually approach the |
| 376 | * on-disk limits. Otherwise we can overflow i_clusters when |
| 377 | * an extent start is at the max offset. |
| 378 | */ |
| 379 | return (((unsigned long long)bytes) << bitshift) - trim; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | static int ocfs2_remount(struct super_block *sb, int *flags, char *data) |
| 383 | { |
| 384 | int incompat_features; |
| 385 | int ret = 0; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 386 | struct mount_options parsed_options; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 387 | struct ocfs2_super *osb = OCFS2_SB(sb); |
| 388 | |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 389 | if (!ocfs2_parse_options(sb, data, &parsed_options, 1)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 390 | ret = -EINVAL; |
| 391 | goto out; |
| 392 | } |
| 393 | |
| 394 | if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) != |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 395 | (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 396 | ret = -EINVAL; |
| 397 | mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n"); |
| 398 | goto out; |
| 399 | } |
| 400 | |
| 401 | if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) != |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 402 | (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 403 | ret = -EINVAL; |
| 404 | mlog(ML_ERROR, "Cannot change data mode on remount\n"); |
| 405 | goto out; |
| 406 | } |
| 407 | |
| 408 | /* We're going to/from readonly mode. */ |
| 409 | if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) { |
| 410 | /* Lock here so the check of HARD_RO and the potential |
| 411 | * setting of SOFT_RO is atomic. */ |
| 412 | spin_lock(&osb->osb_lock); |
| 413 | if (osb->osb_flags & OCFS2_OSB_HARD_RO) { |
| 414 | mlog(ML_ERROR, "Remount on readonly device is forbidden.\n"); |
| 415 | ret = -EROFS; |
| 416 | goto unlock_osb; |
| 417 | } |
| 418 | |
| 419 | if (*flags & MS_RDONLY) { |
| 420 | mlog(0, "Going to ro mode.\n"); |
| 421 | sb->s_flags |= MS_RDONLY; |
| 422 | osb->osb_flags |= OCFS2_OSB_SOFT_RO; |
| 423 | } else { |
| 424 | mlog(0, "Making ro filesystem writeable.\n"); |
| 425 | |
| 426 | if (osb->osb_flags & OCFS2_OSB_ERROR_FS) { |
| 427 | mlog(ML_ERROR, "Cannot remount RDWR " |
| 428 | "filesystem due to previous errors.\n"); |
| 429 | ret = -EROFS; |
| 430 | goto unlock_osb; |
| 431 | } |
| 432 | incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP); |
| 433 | if (incompat_features) { |
| 434 | mlog(ML_ERROR, "Cannot remount RDWR because " |
| 435 | "of unsupported optional features " |
| 436 | "(%x).\n", incompat_features); |
| 437 | ret = -EINVAL; |
| 438 | goto unlock_osb; |
| 439 | } |
| 440 | sb->s_flags &= ~MS_RDONLY; |
| 441 | osb->osb_flags &= ~OCFS2_OSB_SOFT_RO; |
| 442 | } |
| 443 | unlock_osb: |
| 444 | spin_unlock(&osb->osb_lock); |
| 445 | } |
| 446 | |
| 447 | if (!ret) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 448 | /* Only save off the new mount options in case of a successful |
| 449 | * remount. */ |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 450 | osb->s_mount_opt = parsed_options.mount_opt; |
| 451 | osb->s_atime_quantum = parsed_options.atime_quantum; |
| 452 | osb->preferred_slot = parsed_options.slot; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 453 | if (parsed_options.commit_interval) |
| 454 | osb->osb_commit_interval = parsed_options.commit_interval; |
Mark Fasheh | e001e796 | 2007-11-07 14:21:45 -0800 | [diff] [blame] | 455 | |
| 456 | if (!ocfs2_is_hard_readonly(osb)) |
| 457 | ocfs2_set_journal_params(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 458 | } |
| 459 | out: |
| 460 | return ret; |
| 461 | } |
| 462 | |
| 463 | static int ocfs2_sb_probe(struct super_block *sb, |
| 464 | struct buffer_head **bh, |
| 465 | int *sector_size) |
| 466 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 467 | int status, tmpstat; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 468 | struct ocfs1_vol_disk_hdr *hdr; |
| 469 | struct ocfs2_dinode *di; |
| 470 | int blksize; |
| 471 | |
| 472 | *bh = NULL; |
| 473 | |
| 474 | /* may be > 512 */ |
| 475 | *sector_size = bdev_hardsect_size(sb->s_bdev); |
| 476 | if (*sector_size > OCFS2_MAX_BLOCKSIZE) { |
| 477 | mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n", |
| 478 | *sector_size, OCFS2_MAX_BLOCKSIZE); |
| 479 | status = -EINVAL; |
| 480 | goto bail; |
| 481 | } |
| 482 | |
| 483 | /* Can this really happen? */ |
| 484 | if (*sector_size < OCFS2_MIN_BLOCKSIZE) |
| 485 | *sector_size = OCFS2_MIN_BLOCKSIZE; |
| 486 | |
| 487 | /* check block zero for old format */ |
| 488 | status = ocfs2_get_sector(sb, bh, 0, *sector_size); |
| 489 | if (status < 0) { |
| 490 | mlog_errno(status); |
| 491 | goto bail; |
| 492 | } |
| 493 | hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data; |
| 494 | if (hdr->major_version == OCFS1_MAJOR_VERSION) { |
| 495 | mlog(ML_ERROR, "incompatible version: %u.%u\n", |
| 496 | hdr->major_version, hdr->minor_version); |
| 497 | status = -EINVAL; |
| 498 | } |
| 499 | if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE, |
| 500 | strlen(OCFS1_VOLUME_SIGNATURE)) == 0) { |
| 501 | mlog(ML_ERROR, "incompatible volume signature: %8s\n", |
| 502 | hdr->signature); |
| 503 | status = -EINVAL; |
| 504 | } |
| 505 | brelse(*bh); |
| 506 | *bh = NULL; |
| 507 | if (status < 0) { |
| 508 | mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be " |
| 509 | "upgraded before mounting with ocfs v2\n"); |
| 510 | goto bail; |
| 511 | } |
| 512 | |
| 513 | /* |
| 514 | * Now check at magic offset for 512, 1024, 2048, 4096 |
| 515 | * blocksizes. 4096 is the maximum blocksize because it is |
| 516 | * the minimum clustersize. |
| 517 | */ |
| 518 | status = -EINVAL; |
| 519 | for (blksize = *sector_size; |
| 520 | blksize <= OCFS2_MAX_BLOCKSIZE; |
| 521 | blksize <<= 1) { |
| 522 | tmpstat = ocfs2_get_sector(sb, bh, |
| 523 | OCFS2_SUPER_BLOCK_BLKNO, |
| 524 | blksize); |
| 525 | if (tmpstat < 0) { |
| 526 | status = tmpstat; |
| 527 | mlog_errno(status); |
| 528 | goto bail; |
| 529 | } |
| 530 | di = (struct ocfs2_dinode *) (*bh)->b_data; |
| 531 | status = ocfs2_verify_volume(di, *bh, blksize); |
| 532 | if (status >= 0) |
| 533 | goto bail; |
| 534 | brelse(*bh); |
| 535 | *bh = NULL; |
| 536 | if (status != -EAGAIN) |
| 537 | break; |
| 538 | } |
| 539 | |
| 540 | bail: |
| 541 | return status; |
| 542 | } |
| 543 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 544 | static int ocfs2_verify_heartbeat(struct ocfs2_super *osb) |
| 545 | { |
| 546 | if (ocfs2_mount_local(osb)) { |
| 547 | if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) { |
| 548 | mlog(ML_ERROR, "Cannot heartbeat on a locally " |
| 549 | "mounted device.\n"); |
| 550 | return -EINVAL; |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) { |
| 555 | if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb)) { |
| 556 | mlog(ML_ERROR, "Heartbeat has to be started to mount " |
| 557 | "a read-write clustered device.\n"); |
| 558 | return -EINVAL; |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | return 0; |
| 563 | } |
| 564 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 565 | static int ocfs2_fill_super(struct super_block *sb, void *data, int silent) |
| 566 | { |
| 567 | struct dentry *root; |
| 568 | int status, sector_size; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 569 | struct mount_options parsed_options; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 570 | struct inode *inode = NULL; |
| 571 | struct ocfs2_super *osb = NULL; |
| 572 | struct buffer_head *bh = NULL; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 573 | char nodestr[8]; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 574 | |
| 575 | mlog_entry("%p, %p, %i", sb, data, silent); |
| 576 | |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 577 | if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 578 | status = -EINVAL; |
| 579 | goto read_super_error; |
| 580 | } |
| 581 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 582 | /* for now we only have one cluster/node, make sure we see it |
| 583 | * in the heartbeat universe */ |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 584 | if (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL) { |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 585 | if (!o2hb_check_local_node_heartbeating()) { |
| 586 | status = -EINVAL; |
| 587 | goto read_super_error; |
| 588 | } |
| 589 | } |
| 590 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 591 | /* probe for superblock */ |
| 592 | status = ocfs2_sb_probe(sb, &bh, §or_size); |
| 593 | if (status < 0) { |
| 594 | mlog(ML_ERROR, "superblock probe failed!\n"); |
| 595 | goto read_super_error; |
| 596 | } |
| 597 | |
| 598 | status = ocfs2_initialize_super(sb, bh, sector_size); |
| 599 | osb = OCFS2_SB(sb); |
| 600 | if (status < 0) { |
| 601 | mlog_errno(status); |
| 602 | goto read_super_error; |
| 603 | } |
| 604 | brelse(bh); |
| 605 | bh = NULL; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 606 | osb->s_mount_opt = parsed_options.mount_opt; |
| 607 | osb->s_atime_quantum = parsed_options.atime_quantum; |
| 608 | osb->preferred_slot = parsed_options.slot; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 609 | osb->osb_commit_interval = parsed_options.commit_interval; |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 610 | osb->local_alloc_size = parsed_options.localalloc_opt; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 611 | |
| 612 | sb->s_magic = OCFS2_SUPER_MAGIC; |
| 613 | |
| 614 | /* Hard readonly mode only if: bdev_read_only, MS_RDONLY, |
| 615 | * heartbeat=none */ |
| 616 | if (bdev_read_only(sb->s_bdev)) { |
| 617 | if (!(sb->s_flags & MS_RDONLY)) { |
| 618 | status = -EACCES; |
| 619 | mlog(ML_ERROR, "Readonly device detected but readonly " |
| 620 | "mount was not specified.\n"); |
| 621 | goto read_super_error; |
| 622 | } |
| 623 | |
| 624 | /* You should not be able to start a local heartbeat |
| 625 | * on a readonly device. */ |
| 626 | if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) { |
| 627 | status = -EROFS; |
| 628 | mlog(ML_ERROR, "Local heartbeat specified on readonly " |
| 629 | "device.\n"); |
| 630 | goto read_super_error; |
| 631 | } |
| 632 | |
| 633 | status = ocfs2_check_journals_nolocks(osb); |
| 634 | if (status < 0) { |
| 635 | if (status == -EROFS) |
| 636 | mlog(ML_ERROR, "Recovery required on readonly " |
| 637 | "file system, but write access is " |
| 638 | "unavailable.\n"); |
| 639 | else |
| 640 | mlog_errno(status); |
| 641 | goto read_super_error; |
| 642 | } |
| 643 | |
| 644 | ocfs2_set_ro_flag(osb, 1); |
| 645 | |
| 646 | printk(KERN_NOTICE "Readonly device detected. No cluster " |
| 647 | "services will be utilized for this mount. Recovery " |
| 648 | "will be skipped.\n"); |
| 649 | } |
| 650 | |
| 651 | if (!ocfs2_is_hard_readonly(osb)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 652 | if (sb->s_flags & MS_RDONLY) |
| 653 | ocfs2_set_ro_flag(osb, 0); |
| 654 | } |
| 655 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 656 | status = ocfs2_verify_heartbeat(osb); |
| 657 | if (status < 0) { |
| 658 | mlog_errno(status); |
| 659 | goto read_super_error; |
| 660 | } |
| 661 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 662 | osb->osb_debug_root = debugfs_create_dir(osb->uuid_str, |
| 663 | ocfs2_debugfs_root); |
| 664 | if (!osb->osb_debug_root) { |
| 665 | status = -EINVAL; |
| 666 | mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n"); |
| 667 | goto read_super_error; |
| 668 | } |
| 669 | |
| 670 | status = ocfs2_mount_volume(sb); |
| 671 | if (osb->root_inode) |
| 672 | inode = igrab(osb->root_inode); |
| 673 | |
| 674 | if (status < 0) |
| 675 | goto read_super_error; |
| 676 | |
| 677 | if (!inode) { |
| 678 | status = -EIO; |
| 679 | mlog_errno(status); |
| 680 | goto read_super_error; |
| 681 | } |
| 682 | |
| 683 | root = d_alloc_root(inode); |
| 684 | if (!root) { |
| 685 | status = -ENOMEM; |
| 686 | mlog_errno(status); |
| 687 | goto read_super_error; |
| 688 | } |
| 689 | |
| 690 | sb->s_root = root; |
| 691 | |
| 692 | ocfs2_complete_mount_recovery(osb); |
| 693 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 694 | if (ocfs2_mount_local(osb)) |
| 695 | snprintf(nodestr, sizeof(nodestr), "local"); |
| 696 | else |
| 697 | snprintf(nodestr, sizeof(nodestr), "%d", osb->node_num); |
| 698 | |
| 699 | printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) " |
Sunil Mushran | 781ee3e | 2006-04-27 16:41:31 -0700 | [diff] [blame] | 700 | "with %s data mode.\n", |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 701 | osb->dev_str, nodestr, osb->slot_num, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 702 | osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" : |
| 703 | "ordered"); |
| 704 | |
| 705 | atomic_set(&osb->vol_state, VOLUME_MOUNTED); |
| 706 | wake_up(&osb->osb_mount_event); |
| 707 | |
| 708 | mlog_exit(status); |
| 709 | return status; |
| 710 | |
| 711 | read_super_error: |
| 712 | if (bh != NULL) |
| 713 | brelse(bh); |
| 714 | |
| 715 | if (inode) |
| 716 | iput(inode); |
| 717 | |
| 718 | if (osb) { |
| 719 | atomic_set(&osb->vol_state, VOLUME_DISABLED); |
| 720 | wake_up(&osb->osb_mount_event); |
| 721 | ocfs2_dismount_volume(sb, 1); |
| 722 | } |
| 723 | |
| 724 | mlog_exit(status); |
| 725 | return status; |
| 726 | } |
| 727 | |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 728 | static int ocfs2_get_sb(struct file_system_type *fs_type, |
| 729 | int flags, |
| 730 | const char *dev_name, |
| 731 | void *data, |
| 732 | struct vfsmount *mnt) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 733 | { |
David Howells | 454e239 | 2006-06-23 02:02:57 -0700 | [diff] [blame] | 734 | return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super, |
| 735 | mnt); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 736 | } |
| 737 | |
| 738 | static struct file_system_type ocfs2_fs_type = { |
| 739 | .owner = THIS_MODULE, |
| 740 | .name = "ocfs2", |
| 741 | .get_sb = ocfs2_get_sb, /* is this called when we mount |
| 742 | * the fs? */ |
| 743 | .kill_sb = kill_block_super, /* set to the generic one |
| 744 | * right now, but do we |
| 745 | * need to change that? */ |
Mark Fasheh | 1ba9da2 | 2006-09-08 14:22:54 -0700 | [diff] [blame] | 746 | .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 747 | .next = NULL |
| 748 | }; |
| 749 | |
| 750 | static int ocfs2_parse_options(struct super_block *sb, |
| 751 | char *options, |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 752 | struct mount_options *mopt, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 753 | int is_remount) |
| 754 | { |
| 755 | int status; |
| 756 | char *p; |
| 757 | |
| 758 | mlog_entry("remount: %d, options: \"%s\"\n", is_remount, |
| 759 | options ? options : "(none)"); |
| 760 | |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 761 | mopt->commit_interval = 0; |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 762 | mopt->mount_opt = 0; |
| 763 | mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM; |
| 764 | mopt->slot = OCFS2_INVALID_SLOT; |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 765 | mopt->localalloc_opt = OCFS2_DEFAULT_LOCAL_ALLOC_SIZE; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 766 | |
| 767 | if (!options) { |
| 768 | status = 1; |
| 769 | goto bail; |
| 770 | } |
| 771 | |
| 772 | while ((p = strsep(&options, ",")) != NULL) { |
| 773 | int token, option; |
| 774 | substring_t args[MAX_OPT_ARGS]; |
| 775 | |
| 776 | if (!*p) |
| 777 | continue; |
| 778 | |
| 779 | token = match_token(p, tokens, args); |
| 780 | switch (token) { |
| 781 | case Opt_hb_local: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 782 | mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 783 | break; |
| 784 | case Opt_hb_none: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 785 | mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 786 | break; |
| 787 | case Opt_barrier: |
| 788 | if (match_int(&args[0], &option)) { |
| 789 | status = 0; |
| 790 | goto bail; |
| 791 | } |
| 792 | if (option) |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 793 | mopt->mount_opt |= OCFS2_MOUNT_BARRIER; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 794 | else |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 795 | mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 796 | break; |
| 797 | case Opt_intr: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 798 | mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 799 | break; |
| 800 | case Opt_nointr: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 801 | mopt->mount_opt |= OCFS2_MOUNT_NOINTR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 802 | break; |
| 803 | case Opt_err_panic: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 804 | mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 805 | break; |
| 806 | case Opt_err_ro: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 807 | mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 808 | break; |
| 809 | case Opt_data_ordered: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 810 | mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 811 | break; |
| 812 | case Opt_data_writeback: |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 813 | mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 814 | break; |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 815 | case Opt_atime_quantum: |
| 816 | if (match_int(&args[0], &option)) { |
| 817 | status = 0; |
| 818 | goto bail; |
| 819 | } |
| 820 | if (option >= 0) |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 821 | mopt->atime_quantum = option; |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 822 | break; |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 823 | case Opt_slot: |
| 824 | option = 0; |
| 825 | if (match_int(&args[0], &option)) { |
| 826 | status = 0; |
| 827 | goto bail; |
| 828 | } |
| 829 | if (option) |
Tiger Yang | c0123ad | 2007-09-08 00:16:10 +0800 | [diff] [blame] | 830 | mopt->slot = (s16)option; |
Sunil Mushran | baf4661 | 2007-06-18 17:00:24 -0700 | [diff] [blame] | 831 | break; |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 832 | case Opt_commit: |
| 833 | option = 0; |
| 834 | if (match_int(&args[0], &option)) { |
| 835 | status = 0; |
| 836 | goto bail; |
| 837 | } |
| 838 | if (option < 0) |
| 839 | return 0; |
| 840 | if (option == 0) |
| 841 | option = JBD_DEFAULT_MAX_COMMIT_AGE; |
| 842 | mopt->commit_interval = HZ * option; |
| 843 | break; |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 844 | case Opt_localalloc: |
| 845 | option = 0; |
| 846 | if (match_int(&args[0], &option)) { |
| 847 | status = 0; |
| 848 | goto bail; |
| 849 | } |
| 850 | if (option >= 0 && (option <= ocfs2_local_alloc_size(sb) * 8)) |
| 851 | mopt->localalloc_opt = option; |
| 852 | break; |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 853 | case Opt_localflocks: |
| 854 | /* |
| 855 | * Changing this during remount could race |
| 856 | * flock() requests, or "unbalance" existing |
| 857 | * ones (e.g., a lock is taken in one mode but |
| 858 | * dropped in the other). If users care enough |
| 859 | * to flip locking modes during remount, we |
| 860 | * could add a "local" flag to individual |
| 861 | * flock structures for proper tracking of |
| 862 | * state. |
| 863 | */ |
| 864 | if (!is_remount) |
| 865 | mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS; |
| 866 | break; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 867 | default: |
| 868 | mlog(ML_ERROR, |
| 869 | "Unrecognized mount option \"%s\" " |
| 870 | "or missing value\n", p); |
| 871 | status = 0; |
| 872 | goto bail; |
| 873 | } |
| 874 | } |
| 875 | |
| 876 | status = 1; |
| 877 | |
| 878 | bail: |
| 879 | mlog_exit(status); |
| 880 | return status; |
| 881 | } |
| 882 | |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 883 | static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt) |
| 884 | { |
| 885 | struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb); |
| 886 | unsigned long opts = osb->s_mount_opt; |
| 887 | |
| 888 | if (opts & OCFS2_MOUNT_HB_LOCAL) |
| 889 | seq_printf(s, ",_netdev,heartbeat=local"); |
| 890 | else |
| 891 | seq_printf(s, ",heartbeat=none"); |
| 892 | |
| 893 | if (opts & OCFS2_MOUNT_NOINTR) |
| 894 | seq_printf(s, ",nointr"); |
| 895 | |
| 896 | if (opts & OCFS2_MOUNT_DATA_WRITEBACK) |
| 897 | seq_printf(s, ",data=writeback"); |
| 898 | else |
| 899 | seq_printf(s, ",data=ordered"); |
| 900 | |
| 901 | if (opts & OCFS2_MOUNT_BARRIER) |
| 902 | seq_printf(s, ",barrier=1"); |
| 903 | |
| 904 | if (opts & OCFS2_MOUNT_ERRORS_PANIC) |
| 905 | seq_printf(s, ",errors=panic"); |
| 906 | else |
| 907 | seq_printf(s, ",errors=remount-ro"); |
| 908 | |
| 909 | if (osb->preferred_slot != OCFS2_INVALID_SLOT) |
| 910 | seq_printf(s, ",preferred_slot=%d", osb->preferred_slot); |
| 911 | |
| 912 | if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM) |
| 913 | seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum); |
| 914 | |
Mark Fasheh | d147b3d | 2007-11-07 14:40:36 -0800 | [diff] [blame] | 915 | if (osb->osb_commit_interval) |
| 916 | seq_printf(s, ",commit=%u", |
| 917 | (unsigned) (osb->osb_commit_interval / HZ)); |
| 918 | |
Sunil Mushran | 2fbe8d1 | 2007-12-20 14:58:11 -0800 | [diff] [blame] | 919 | if (osb->local_alloc_size != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE) |
| 920 | seq_printf(s, ",localalloc=%d", osb->local_alloc_size); |
| 921 | |
Mark Fasheh | 53fc622 | 2007-12-20 16:49:04 -0800 | [diff] [blame] | 922 | if (opts & OCFS2_MOUNT_LOCALFLOCKS) |
| 923 | seq_printf(s, ",localflocks,"); |
| 924 | |
Sunil Mushran | d550071 | 2007-09-06 13:34:16 -0700 | [diff] [blame] | 925 | return 0; |
| 926 | } |
| 927 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 928 | static int __init ocfs2_init(void) |
| 929 | { |
| 930 | int status; |
| 931 | |
| 932 | mlog_entry_void(); |
| 933 | |
| 934 | ocfs2_print_version(); |
| 935 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 936 | status = init_ocfs2_uptodate_cache(); |
| 937 | if (status < 0) { |
| 938 | mlog_errno(status); |
| 939 | goto leave; |
| 940 | } |
| 941 | |
| 942 | status = ocfs2_initialize_mem_caches(); |
| 943 | if (status < 0) { |
| 944 | mlog_errno(status); |
| 945 | goto leave; |
| 946 | } |
| 947 | |
| 948 | ocfs2_wq = create_singlethread_workqueue("ocfs2_wq"); |
| 949 | if (!ocfs2_wq) { |
| 950 | status = -ENOMEM; |
| 951 | goto leave; |
| 952 | } |
| 953 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 954 | ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL); |
| 955 | if (!ocfs2_debugfs_root) { |
| 956 | status = -EFAULT; |
| 957 | mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n"); |
| 958 | } |
| 959 | |
| 960 | leave: |
| 961 | if (status < 0) { |
| 962 | ocfs2_free_mem_caches(); |
| 963 | exit_ocfs2_uptodate_cache(); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | mlog_exit(status); |
| 967 | |
| 968 | if (status >= 0) { |
| 969 | return register_filesystem(&ocfs2_fs_type); |
| 970 | } else |
| 971 | return -1; |
| 972 | } |
| 973 | |
| 974 | static void __exit ocfs2_exit(void) |
| 975 | { |
| 976 | mlog_entry_void(); |
| 977 | |
| 978 | if (ocfs2_wq) { |
| 979 | flush_workqueue(ocfs2_wq); |
| 980 | destroy_workqueue(ocfs2_wq); |
| 981 | } |
| 982 | |
| 983 | debugfs_remove(ocfs2_debugfs_root); |
| 984 | |
| 985 | ocfs2_free_mem_caches(); |
| 986 | |
| 987 | unregister_filesystem(&ocfs2_fs_type); |
| 988 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 989 | exit_ocfs2_uptodate_cache(); |
| 990 | |
| 991 | mlog_exit_void(); |
| 992 | } |
| 993 | |
| 994 | static void ocfs2_put_super(struct super_block *sb) |
| 995 | { |
| 996 | mlog_entry("(0x%p)\n", sb); |
| 997 | |
| 998 | ocfs2_sync_blockdev(sb); |
| 999 | ocfs2_dismount_volume(sb, 0); |
| 1000 | |
| 1001 | mlog_exit_void(); |
| 1002 | } |
| 1003 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1004 | static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1005 | { |
| 1006 | struct ocfs2_super *osb; |
| 1007 | u32 numbits, freebits; |
| 1008 | int status; |
| 1009 | struct ocfs2_dinode *bm_lock; |
| 1010 | struct buffer_head *bh = NULL; |
| 1011 | struct inode *inode = NULL; |
| 1012 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1013 | mlog_entry("(%p, %p)\n", dentry->d_sb, buf); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1014 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1015 | osb = OCFS2_SB(dentry->d_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1016 | |
| 1017 | inode = ocfs2_get_system_file_inode(osb, |
| 1018 | GLOBAL_BITMAP_SYSTEM_INODE, |
| 1019 | OCFS2_INVALID_SLOT); |
| 1020 | if (!inode) { |
| 1021 | mlog(ML_ERROR, "failed to get bitmap inode\n"); |
| 1022 | status = -EIO; |
| 1023 | goto bail; |
| 1024 | } |
| 1025 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1026 | status = ocfs2_inode_lock(inode, &bh, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1027 | if (status < 0) { |
| 1028 | mlog_errno(status); |
| 1029 | goto bail; |
| 1030 | } |
| 1031 | |
| 1032 | bm_lock = (struct ocfs2_dinode *) bh->b_data; |
| 1033 | |
| 1034 | numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total); |
| 1035 | freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used); |
| 1036 | |
| 1037 | buf->f_type = OCFS2_SUPER_MAGIC; |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 1038 | buf->f_bsize = dentry->d_sb->s_blocksize; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1039 | buf->f_namelen = OCFS2_MAX_FILENAME_LEN; |
| 1040 | buf->f_blocks = ((sector_t) numbits) * |
| 1041 | (osb->s_clustersize >> osb->sb->s_blocksize_bits); |
| 1042 | buf->f_bfree = ((sector_t) freebits) * |
| 1043 | (osb->s_clustersize >> osb->sb->s_blocksize_bits); |
| 1044 | buf->f_bavail = buf->f_bfree; |
| 1045 | buf->f_files = numbits; |
| 1046 | buf->f_ffree = freebits; |
| 1047 | |
| 1048 | brelse(bh); |
| 1049 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1050 | ocfs2_inode_unlock(inode, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1051 | status = 0; |
| 1052 | bail: |
| 1053 | if (inode) |
| 1054 | iput(inode); |
| 1055 | |
| 1056 | mlog_exit(status); |
| 1057 | |
| 1058 | return status; |
| 1059 | } |
| 1060 | |
Christoph Lameter | 4ba9b9d | 2007-10-16 23:25:51 -0700 | [diff] [blame] | 1061 | static void ocfs2_inode_init_once(struct kmem_cache *cachep, void *data) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1062 | { |
| 1063 | struct ocfs2_inode_info *oi = data; |
| 1064 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1065 | oi->ip_flags = 0; |
| 1066 | oi->ip_open_count = 0; |
| 1067 | spin_lock_init(&oi->ip_lock); |
| 1068 | ocfs2_extent_map_init(&oi->vfs_inode); |
| 1069 | INIT_LIST_HEAD(&oi->ip_io_markers); |
| 1070 | oi->ip_created_trans = 0; |
| 1071 | oi->ip_last_trans = 0; |
| 1072 | oi->ip_dir_start_lookup = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1073 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1074 | init_rwsem(&oi->ip_alloc_sem); |
| 1075 | mutex_init(&oi->ip_io_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1076 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1077 | oi->ip_blkno = 0ULL; |
| 1078 | oi->ip_clusters = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1079 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1080 | ocfs2_lock_res_init_once(&oi->ip_rw_lockres); |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1081 | ocfs2_lock_res_init_once(&oi->ip_inode_lockres); |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1082 | ocfs2_lock_res_init_once(&oi->ip_open_lockres); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1083 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1084 | ocfs2_metadata_cache_init(&oi->vfs_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1085 | |
Christoph Lameter | a35afb8 | 2007-05-16 22:10:57 -0700 | [diff] [blame] | 1086 | inode_init_once(&oi->vfs_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1087 | } |
| 1088 | |
| 1089 | static int ocfs2_initialize_mem_caches(void) |
| 1090 | { |
| 1091 | ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache", |
Paul Jackson | fffb60f | 2006-03-24 03:16:06 -0800 | [diff] [blame] | 1092 | sizeof(struct ocfs2_inode_info), |
| 1093 | 0, |
| 1094 | (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT| |
| 1095 | SLAB_MEM_SPREAD), |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1096 | ocfs2_inode_init_once); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1097 | if (!ocfs2_inode_cachep) |
| 1098 | return -ENOMEM; |
| 1099 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1100 | return 0; |
| 1101 | } |
| 1102 | |
| 1103 | static void ocfs2_free_mem_caches(void) |
| 1104 | { |
| 1105 | if (ocfs2_inode_cachep) |
| 1106 | kmem_cache_destroy(ocfs2_inode_cachep); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1107 | |
| 1108 | ocfs2_inode_cachep = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1109 | } |
| 1110 | |
| 1111 | static int ocfs2_get_sector(struct super_block *sb, |
| 1112 | struct buffer_head **bh, |
| 1113 | int block, |
| 1114 | int sect_size) |
| 1115 | { |
| 1116 | if (!sb_set_blocksize(sb, sect_size)) { |
| 1117 | mlog(ML_ERROR, "unable to set blocksize\n"); |
| 1118 | return -EIO; |
| 1119 | } |
| 1120 | |
| 1121 | *bh = sb_getblk(sb, block); |
| 1122 | if (!*bh) { |
| 1123 | mlog_errno(-EIO); |
| 1124 | return -EIO; |
| 1125 | } |
| 1126 | lock_buffer(*bh); |
| 1127 | if (!buffer_dirty(*bh)) |
| 1128 | clear_buffer_uptodate(*bh); |
| 1129 | unlock_buffer(*bh); |
| 1130 | ll_rw_block(READ, 1, bh); |
| 1131 | wait_on_buffer(*bh); |
| 1132 | return 0; |
| 1133 | } |
| 1134 | |
| 1135 | /* ocfs2 1.0 only allows one cluster and node identity per kernel image. */ |
| 1136 | static int ocfs2_fill_local_node_info(struct ocfs2_super *osb) |
| 1137 | { |
| 1138 | int status; |
| 1139 | |
| 1140 | /* XXX hold a ref on the node while mounte? easy enough, if |
| 1141 | * desirable. */ |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1142 | if (ocfs2_mount_local(osb)) |
| 1143 | osb->node_num = 0; |
| 1144 | else |
| 1145 | osb->node_num = o2nm_this_node(); |
| 1146 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1147 | if (osb->node_num == O2NM_MAX_NODES) { |
| 1148 | mlog(ML_ERROR, "could not find this host's node number\n"); |
| 1149 | status = -ENOENT; |
| 1150 | goto bail; |
| 1151 | } |
| 1152 | |
Sunil Mushran | 781ee3e | 2006-04-27 16:41:31 -0700 | [diff] [blame] | 1153 | mlog(0, "I am node %d\n", osb->node_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1154 | |
| 1155 | status = 0; |
| 1156 | bail: |
| 1157 | return status; |
| 1158 | } |
| 1159 | |
| 1160 | static int ocfs2_mount_volume(struct super_block *sb) |
| 1161 | { |
| 1162 | int status = 0; |
| 1163 | int unlock_super = 0; |
| 1164 | struct ocfs2_super *osb = OCFS2_SB(sb); |
| 1165 | |
| 1166 | mlog_entry_void(); |
| 1167 | |
| 1168 | if (ocfs2_is_hard_readonly(osb)) |
| 1169 | goto leave; |
| 1170 | |
| 1171 | status = ocfs2_fill_local_node_info(osb); |
| 1172 | if (status < 0) { |
| 1173 | mlog_errno(status); |
| 1174 | goto leave; |
| 1175 | } |
| 1176 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1177 | status = ocfs2_dlm_init(osb); |
| 1178 | if (status < 0) { |
| 1179 | mlog_errno(status); |
| 1180 | goto leave; |
| 1181 | } |
| 1182 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1183 | status = ocfs2_super_lock(osb, 1); |
| 1184 | if (status < 0) { |
| 1185 | mlog_errno(status); |
| 1186 | goto leave; |
| 1187 | } |
| 1188 | unlock_super = 1; |
| 1189 | |
| 1190 | /* This will load up the node map and add ourselves to it. */ |
| 1191 | status = ocfs2_find_slot(osb); |
| 1192 | if (status < 0) { |
| 1193 | mlog_errno(status); |
| 1194 | goto leave; |
| 1195 | } |
| 1196 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1197 | /* load all node-local system inodes */ |
| 1198 | status = ocfs2_init_local_system_inodes(osb); |
| 1199 | if (status < 0) { |
| 1200 | mlog_errno(status); |
| 1201 | goto leave; |
| 1202 | } |
| 1203 | |
| 1204 | status = ocfs2_check_volume(osb); |
| 1205 | if (status < 0) { |
| 1206 | mlog_errno(status); |
| 1207 | goto leave; |
| 1208 | } |
| 1209 | |
| 1210 | status = ocfs2_truncate_log_init(osb); |
| 1211 | if (status < 0) { |
| 1212 | mlog_errno(status); |
| 1213 | goto leave; |
| 1214 | } |
| 1215 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1216 | if (ocfs2_mount_local(osb)) |
| 1217 | goto leave; |
| 1218 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1219 | leave: |
| 1220 | if (unlock_super) |
| 1221 | ocfs2_super_unlock(osb, 1); |
| 1222 | |
| 1223 | mlog_exit(status); |
| 1224 | return status; |
| 1225 | } |
| 1226 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1227 | static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err) |
| 1228 | { |
| 1229 | int tmp; |
| 1230 | struct ocfs2_super *osb = NULL; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1231 | char nodestr[8]; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1232 | |
| 1233 | mlog_entry("(0x%p)\n", sb); |
| 1234 | |
| 1235 | BUG_ON(!sb); |
| 1236 | osb = OCFS2_SB(sb); |
| 1237 | BUG_ON(!osb); |
| 1238 | |
| 1239 | ocfs2_shutdown_local_alloc(osb); |
| 1240 | |
| 1241 | ocfs2_truncate_log_shutdown(osb); |
| 1242 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame^] | 1243 | /* This will disable recovery and flush any recovery work. */ |
| 1244 | ocfs2_recovery_exit(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1245 | |
| 1246 | ocfs2_journal_shutdown(osb); |
| 1247 | |
| 1248 | ocfs2_sync_blockdev(sb); |
| 1249 | |
| 1250 | /* No dlm means we've failed during mount, so skip all the |
| 1251 | * steps which depended on that to complete. */ |
| 1252 | if (osb->dlm) { |
| 1253 | tmp = ocfs2_super_lock(osb, 1); |
| 1254 | if (tmp < 0) { |
| 1255 | mlog_errno(tmp); |
| 1256 | return; |
| 1257 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1258 | } |
| 1259 | |
Mark Fasheh | 19b613d | 2007-10-04 14:47:09 -0700 | [diff] [blame] | 1260 | if (osb->slot_num != OCFS2_INVALID_SLOT) |
| 1261 | ocfs2_put_slot(osb); |
| 1262 | |
| 1263 | if (osb->dlm) |
| 1264 | ocfs2_super_unlock(osb, 1); |
| 1265 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1266 | ocfs2_release_system_inodes(osb); |
| 1267 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1268 | if (osb->dlm) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1269 | ocfs2_dlm_shutdown(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1270 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1271 | debugfs_remove(osb->osb_debug_root); |
| 1272 | |
| 1273 | if (!mnt_err) |
| 1274 | ocfs2_stop_heartbeat(osb); |
| 1275 | |
| 1276 | atomic_set(&osb->vol_state, VOLUME_DISMOUNTED); |
| 1277 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1278 | if (ocfs2_mount_local(osb)) |
| 1279 | snprintf(nodestr, sizeof(nodestr), "local"); |
| 1280 | else |
| 1281 | snprintf(nodestr, sizeof(nodestr), "%d", osb->node_num); |
| 1282 | |
| 1283 | printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n", |
| 1284 | osb->dev_str, nodestr); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1285 | |
| 1286 | ocfs2_delete_osb(osb); |
| 1287 | kfree(osb); |
| 1288 | sb->s_dev = 0; |
| 1289 | sb->s_fs_info = NULL; |
| 1290 | } |
| 1291 | |
| 1292 | static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid, |
| 1293 | unsigned uuid_bytes) |
| 1294 | { |
| 1295 | int i, ret; |
| 1296 | char *ptr; |
| 1297 | |
| 1298 | BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN); |
| 1299 | |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 1300 | osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1301 | if (osb->uuid_str == NULL) |
| 1302 | return -ENOMEM; |
| 1303 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1304 | for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) { |
| 1305 | /* print with null */ |
| 1306 | ret = snprintf(ptr, 3, "%02X", uuid[i]); |
| 1307 | if (ret != 2) /* drop super cleans up */ |
| 1308 | return -EINVAL; |
| 1309 | /* then only advance past the last char */ |
| 1310 | ptr += 2; |
| 1311 | } |
| 1312 | |
| 1313 | return 0; |
| 1314 | } |
| 1315 | |
| 1316 | static int ocfs2_initialize_super(struct super_block *sb, |
| 1317 | struct buffer_head *bh, |
| 1318 | int sector_size) |
| 1319 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 1320 | int status; |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 1321 | int i, cbits, bbits; |
| 1322 | struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1323 | struct inode *inode = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1324 | struct ocfs2_journal *journal; |
| 1325 | __le32 uuid_net_key; |
| 1326 | struct ocfs2_super *osb; |
| 1327 | |
| 1328 | mlog_entry_void(); |
| 1329 | |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 1330 | osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1331 | if (!osb) { |
| 1332 | status = -ENOMEM; |
| 1333 | mlog_errno(status); |
| 1334 | goto bail; |
| 1335 | } |
| 1336 | |
| 1337 | sb->s_fs_info = osb; |
| 1338 | sb->s_op = &ocfs2_sops; |
| 1339 | sb->s_export_op = &ocfs2_export_ops; |
Joel Becker | d24fbcd | 2008-01-25 17:02:21 -0800 | [diff] [blame] | 1340 | osb->osb_locking_proto = ocfs2_locking_protocol; |
Mark Fasheh | e0dceaf | 2007-08-09 16:52:30 -0700 | [diff] [blame] | 1341 | sb->s_time_gran = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1342 | sb->s_flags |= MS_NOATIME; |
| 1343 | /* this is needed to support O_LARGEFILE */ |
Mark Fasheh | 5a25403 | 2007-07-20 12:56:16 -0700 | [diff] [blame] | 1344 | cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits); |
| 1345 | bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits); |
| 1346 | sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1347 | |
| 1348 | osb->sb = sb; |
| 1349 | /* Save off for ocfs2_rw_direct */ |
| 1350 | osb->s_sectsize_bits = blksize_bits(sector_size); |
Eric Sesterhenn / snakebyte | ebdec83 | 2006-01-27 10:32:52 +0100 | [diff] [blame] | 1351 | BUG_ON(!osb->s_sectsize_bits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1352 | |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1353 | spin_lock_init(&osb->dc_task_lock); |
| 1354 | init_waitqueue_head(&osb->dc_event); |
| 1355 | osb->dc_work_sequence = 0; |
| 1356 | osb->dc_wake_sequence = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1357 | INIT_LIST_HEAD(&osb->blocked_lock_list); |
| 1358 | osb->blocked_lock_count = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1359 | spin_lock_init(&osb->osb_lock); |
| 1360 | |
| 1361 | atomic_set(&osb->alloc_stats.moves, 0); |
| 1362 | atomic_set(&osb->alloc_stats.local_data, 0); |
| 1363 | atomic_set(&osb->alloc_stats.bitmap_data, 0); |
| 1364 | atomic_set(&osb->alloc_stats.bg_allocs, 0); |
| 1365 | atomic_set(&osb->alloc_stats.bg_extends, 0); |
| 1366 | |
| 1367 | ocfs2_init_node_maps(osb); |
| 1368 | |
| 1369 | snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u", |
| 1370 | MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev)); |
| 1371 | |
Joel Becker | 553abd0 | 2008-02-01 12:03:57 -0800 | [diff] [blame^] | 1372 | status = ocfs2_recovery_init(osb); |
| 1373 | if (status) { |
| 1374 | mlog(ML_ERROR, "Unable to initialize recovery state\n"); |
| 1375 | mlog_errno(status); |
| 1376 | goto bail; |
| 1377 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1378 | |
| 1379 | init_waitqueue_head(&osb->checkpoint_event); |
| 1380 | atomic_set(&osb->needs_checkpoint, 0); |
| 1381 | |
Tiger Yang | 7f1a37e | 2006-11-15 15:48:42 +0800 | [diff] [blame] | 1382 | osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM; |
| 1383 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1384 | osb->node_num = O2NM_INVALID_NODE_NUM; |
| 1385 | osb->slot_num = OCFS2_INVALID_SLOT; |
| 1386 | |
| 1387 | osb->local_alloc_state = OCFS2_LA_UNUSED; |
| 1388 | osb->local_alloc_bh = NULL; |
| 1389 | |
| 1390 | ocfs2_setup_hb_callbacks(osb); |
| 1391 | |
| 1392 | init_waitqueue_head(&osb->osb_mount_event); |
| 1393 | |
| 1394 | osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL); |
| 1395 | if (!osb->vol_label) { |
| 1396 | mlog(ML_ERROR, "unable to alloc vol label\n"); |
| 1397 | status = -ENOMEM; |
| 1398 | goto bail; |
| 1399 | } |
| 1400 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1401 | osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots); |
| 1402 | if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) { |
| 1403 | mlog(ML_ERROR, "Invalid number of node slots (%u)\n", |
| 1404 | osb->max_slots); |
| 1405 | status = -EINVAL; |
| 1406 | goto bail; |
| 1407 | } |
Sunil Mushran | 781ee3e | 2006-04-27 16:41:31 -0700 | [diff] [blame] | 1408 | mlog(0, "max_slots for this device: %u\n", osb->max_slots); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1409 | |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1410 | init_waitqueue_head(&osb->osb_wipe_event); |
| 1411 | osb->osb_orphan_wipes = kcalloc(osb->max_slots, |
| 1412 | sizeof(*osb->osb_orphan_wipes), |
| 1413 | GFP_KERNEL); |
| 1414 | if (!osb->osb_orphan_wipes) { |
| 1415 | status = -ENOMEM; |
| 1416 | mlog_errno(status); |
| 1417 | goto bail; |
| 1418 | } |
| 1419 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1420 | osb->s_feature_compat = |
| 1421 | le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat); |
| 1422 | osb->s_feature_ro_compat = |
| 1423 | le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat); |
| 1424 | osb->s_feature_incompat = |
| 1425 | le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat); |
| 1426 | |
| 1427 | if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) { |
| 1428 | mlog(ML_ERROR, "couldn't mount because of unsupported " |
| 1429 | "optional features (%x).\n", i); |
| 1430 | status = -EINVAL; |
| 1431 | goto bail; |
| 1432 | } |
| 1433 | if (!(osb->sb->s_flags & MS_RDONLY) && |
| 1434 | (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) { |
| 1435 | mlog(ML_ERROR, "couldn't mount RDWR because of " |
| 1436 | "unsupported optional features (%x).\n", i); |
| 1437 | status = -EINVAL; |
| 1438 | goto bail; |
| 1439 | } |
| 1440 | |
| 1441 | get_random_bytes(&osb->s_next_generation, sizeof(u32)); |
| 1442 | |
| 1443 | /* FIXME |
| 1444 | * This should be done in ocfs2_journal_init(), but unknown |
| 1445 | * ordering issues will cause the filesystem to crash. |
| 1446 | * If anyone wants to figure out what part of the code |
| 1447 | * refers to osb->journal before ocfs2_journal_init() is run, |
| 1448 | * be my guest. |
| 1449 | */ |
| 1450 | /* initialize our journal structure */ |
| 1451 | |
Robert P. J. Day | cd86128 | 2006-12-13 00:34:52 -0800 | [diff] [blame] | 1452 | journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1453 | if (!journal) { |
| 1454 | mlog(ML_ERROR, "unable to alloc journal\n"); |
| 1455 | status = -ENOMEM; |
| 1456 | goto bail; |
| 1457 | } |
| 1458 | osb->journal = journal; |
| 1459 | journal->j_osb = osb; |
| 1460 | |
| 1461 | atomic_set(&journal->j_num_trans, 0); |
| 1462 | init_rwsem(&journal->j_trans_barrier); |
| 1463 | init_waitqueue_head(&journal->j_checkpointed); |
| 1464 | spin_lock_init(&journal->j_lock); |
| 1465 | journal->j_trans_id = (unsigned long) 1; |
| 1466 | INIT_LIST_HEAD(&journal->j_la_cleanups); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1467 | INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1468 | journal->j_state = OCFS2_JOURNAL_FREE; |
| 1469 | |
| 1470 | /* get some pseudo constants for clustersize bits */ |
| 1471 | osb->s_clustersize_bits = |
| 1472 | le32_to_cpu(di->id2.i_super.s_clustersize_bits); |
| 1473 | osb->s_clustersize = 1 << osb->s_clustersize_bits; |
| 1474 | mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits); |
| 1475 | |
| 1476 | if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE || |
| 1477 | osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) { |
| 1478 | mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n", |
| 1479 | osb->s_clustersize); |
| 1480 | status = -EINVAL; |
| 1481 | goto bail; |
| 1482 | } |
| 1483 | |
| 1484 | if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1) |
| 1485 | > (u32)~0UL) { |
| 1486 | mlog(ML_ERROR, "Volume might try to write to blocks beyond " |
| 1487 | "what jbd can address in 32 bits.\n"); |
| 1488 | status = -EINVAL; |
| 1489 | goto bail; |
| 1490 | } |
| 1491 | |
| 1492 | if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid, |
| 1493 | sizeof(di->id2.i_super.s_uuid))) { |
| 1494 | mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n"); |
| 1495 | status = -ENOMEM; |
| 1496 | goto bail; |
| 1497 | } |
| 1498 | |
Mark Fasheh | 7842704 | 2006-05-04 12:03:26 -0700 | [diff] [blame] | 1499 | memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1500 | |
| 1501 | strncpy(osb->vol_label, di->id2.i_super.s_label, 63); |
| 1502 | osb->vol_label[63] = '\0'; |
| 1503 | osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno); |
| 1504 | osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno); |
| 1505 | osb->first_cluster_group_blkno = |
| 1506 | le64_to_cpu(di->id2.i_super.s_first_cluster_group); |
| 1507 | osb->fs_generation = le32_to_cpu(di->i_fs_generation); |
| 1508 | mlog(0, "vol_label: %s\n", osb->vol_label); |
| 1509 | mlog(0, "uuid: %s\n", osb->uuid_str); |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1510 | mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n", |
| 1511 | (unsigned long long)osb->root_blkno, |
| 1512 | (unsigned long long)osb->system_dir_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1513 | |
| 1514 | osb->osb_dlm_debug = ocfs2_new_dlm_debug(); |
| 1515 | if (!osb->osb_dlm_debug) { |
| 1516 | status = -ENOMEM; |
| 1517 | mlog_errno(status); |
| 1518 | goto bail; |
| 1519 | } |
| 1520 | |
| 1521 | atomic_set(&osb->vol_state, VOLUME_INIT); |
| 1522 | |
| 1523 | /* load root, system_dir, and all global system inodes */ |
| 1524 | status = ocfs2_init_global_system_inodes(osb); |
| 1525 | if (status < 0) { |
| 1526 | mlog_errno(status); |
| 1527 | goto bail; |
| 1528 | } |
| 1529 | |
| 1530 | /* |
| 1531 | * global bitmap |
| 1532 | */ |
| 1533 | inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE, |
| 1534 | OCFS2_INVALID_SLOT); |
| 1535 | if (!inode) { |
| 1536 | status = -EINVAL; |
| 1537 | mlog_errno(status); |
| 1538 | goto bail; |
| 1539 | } |
| 1540 | |
| 1541 | osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1542 | iput(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1543 | |
Tao Ma | e9d578a | 2007-12-18 15:46:10 +0800 | [diff] [blame] | 1544 | osb->bitmap_cpg = ocfs2_group_bitmap_size(sb) * 8; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1545 | |
| 1546 | status = ocfs2_init_slot_info(osb); |
| 1547 | if (status < 0) { |
| 1548 | mlog_errno(status); |
| 1549 | goto bail; |
| 1550 | } |
| 1551 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1552 | bail: |
| 1553 | mlog_exit(status); |
| 1554 | return status; |
| 1555 | } |
| 1556 | |
| 1557 | /* |
| 1558 | * will return: -EAGAIN if it is ok to keep searching for superblocks |
| 1559 | * -EINVAL if there is a bad superblock |
| 1560 | * 0 on success |
| 1561 | */ |
| 1562 | static int ocfs2_verify_volume(struct ocfs2_dinode *di, |
| 1563 | struct buffer_head *bh, |
| 1564 | u32 blksz) |
| 1565 | { |
| 1566 | int status = -EAGAIN; |
| 1567 | |
| 1568 | mlog_entry_void(); |
| 1569 | |
| 1570 | if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE, |
| 1571 | strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) { |
| 1572 | status = -EINVAL; |
| 1573 | if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) { |
| 1574 | mlog(ML_ERROR, "found superblock with incorrect block " |
| 1575 | "size: found %u, should be %u\n", |
| 1576 | 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits), |
| 1577 | blksz); |
| 1578 | } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) != |
| 1579 | OCFS2_MAJOR_REV_LEVEL || |
| 1580 | le16_to_cpu(di->id2.i_super.s_minor_rev_level) != |
| 1581 | OCFS2_MINOR_REV_LEVEL) { |
| 1582 | mlog(ML_ERROR, "found superblock with bad version: " |
| 1583 | "found %u.%u, should be %u.%u\n", |
| 1584 | le16_to_cpu(di->id2.i_super.s_major_rev_level), |
| 1585 | le16_to_cpu(di->id2.i_super.s_minor_rev_level), |
| 1586 | OCFS2_MAJOR_REV_LEVEL, |
| 1587 | OCFS2_MINOR_REV_LEVEL); |
| 1588 | } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) { |
| 1589 | mlog(ML_ERROR, "bad block number on superblock: " |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1590 | "found %llu, should be %llu\n", |
Mark Fasheh | 1ca1a11 | 2007-04-27 16:01:25 -0700 | [diff] [blame] | 1591 | (unsigned long long)le64_to_cpu(di->i_blkno), |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1592 | (unsigned long long)bh->b_blocknr); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1593 | } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 || |
| 1594 | le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) { |
| 1595 | mlog(ML_ERROR, "bad cluster size found: %u\n", |
| 1596 | 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits)); |
| 1597 | } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) { |
| 1598 | mlog(ML_ERROR, "bad root_blkno: 0\n"); |
| 1599 | } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) { |
| 1600 | mlog(ML_ERROR, "bad system_dir_blkno: 0\n"); |
| 1601 | } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) { |
| 1602 | mlog(ML_ERROR, |
| 1603 | "Superblock slots found greater than file system " |
| 1604 | "maximum: found %u, max %u\n", |
| 1605 | le16_to_cpu(di->id2.i_super.s_max_slots), |
| 1606 | OCFS2_MAX_SLOTS); |
| 1607 | } else { |
| 1608 | /* found it! */ |
| 1609 | status = 0; |
| 1610 | } |
| 1611 | } |
| 1612 | |
| 1613 | mlog_exit(status); |
| 1614 | return status; |
| 1615 | } |
| 1616 | |
| 1617 | static int ocfs2_check_volume(struct ocfs2_super *osb) |
| 1618 | { |
Denis Cheng | bddb8eb3 | 2007-09-27 02:10:04 +0800 | [diff] [blame] | 1619 | int status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1620 | int dirty; |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1621 | int local; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1622 | struct ocfs2_dinode *local_alloc = NULL; /* only used if we |
| 1623 | * recover |
| 1624 | * ourselves. */ |
| 1625 | |
| 1626 | mlog_entry_void(); |
| 1627 | |
| 1628 | /* Init our journal object. */ |
| 1629 | status = ocfs2_journal_init(osb->journal, &dirty); |
| 1630 | if (status < 0) { |
| 1631 | mlog(ML_ERROR, "Could not initialize journal!\n"); |
| 1632 | goto finally; |
| 1633 | } |
| 1634 | |
| 1635 | /* If the journal was unmounted cleanly then we don't want to |
| 1636 | * recover anything. Otherwise, journal_load will do that |
| 1637 | * dirty work for us :) */ |
| 1638 | if (!dirty) { |
| 1639 | status = ocfs2_journal_wipe(osb->journal, 0); |
| 1640 | if (status < 0) { |
| 1641 | mlog_errno(status); |
| 1642 | goto finally; |
| 1643 | } |
| 1644 | } else { |
| 1645 | mlog(ML_NOTICE, "File system was not unmounted cleanly, " |
| 1646 | "recovering volume.\n"); |
| 1647 | } |
| 1648 | |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1649 | local = ocfs2_mount_local(osb); |
| 1650 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1651 | /* will play back anything left in the journal. */ |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 1652 | ocfs2_journal_load(osb->journal, local); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1653 | |
| 1654 | if (dirty) { |
| 1655 | /* recover my local alloc if we didn't unmount cleanly. */ |
| 1656 | status = ocfs2_begin_local_alloc_recovery(osb, |
| 1657 | osb->slot_num, |
| 1658 | &local_alloc); |
| 1659 | if (status < 0) { |
| 1660 | mlog_errno(status); |
| 1661 | goto finally; |
| 1662 | } |
| 1663 | /* we complete the recovery process after we've marked |
| 1664 | * ourselves as mounted. */ |
| 1665 | } |
| 1666 | |
| 1667 | mlog(0, "Journal loaded.\n"); |
| 1668 | |
| 1669 | status = ocfs2_load_local_alloc(osb); |
| 1670 | if (status < 0) { |
| 1671 | mlog_errno(status); |
| 1672 | goto finally; |
| 1673 | } |
| 1674 | |
| 1675 | if (dirty) { |
| 1676 | /* Recovery will be completed after we've mounted the |
| 1677 | * rest of the volume. */ |
| 1678 | osb->dirty = 1; |
| 1679 | osb->local_alloc_copy = local_alloc; |
| 1680 | local_alloc = NULL; |
| 1681 | } |
| 1682 | |
| 1683 | /* go through each journal, trylock it and if you get the |
| 1684 | * lock, and it's marked as dirty, set the bit in the recover |
| 1685 | * map and launch a recovery thread for it. */ |
| 1686 | status = ocfs2_mark_dead_nodes(osb); |
| 1687 | if (status < 0) |
| 1688 | mlog_errno(status); |
| 1689 | |
| 1690 | finally: |
| 1691 | if (local_alloc) |
| 1692 | kfree(local_alloc); |
| 1693 | |
| 1694 | mlog_exit(status); |
| 1695 | return status; |
| 1696 | } |
| 1697 | |
| 1698 | /* |
| 1699 | * The routine gets called from dismount or close whenever a dismount on |
| 1700 | * volume is requested and the osb open count becomes 1. |
| 1701 | * It will remove the osb from the global list and also free up all the |
| 1702 | * initialized resources and fileobject. |
| 1703 | */ |
| 1704 | static void ocfs2_delete_osb(struct ocfs2_super *osb) |
| 1705 | { |
| 1706 | mlog_entry_void(); |
| 1707 | |
| 1708 | /* This function assumes that the caller has the main osb resource */ |
| 1709 | |
Mark Fasheh | 8e8a460 | 2008-02-01 11:59:09 -0800 | [diff] [blame] | 1710 | ocfs2_free_slot_info(osb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1711 | |
Mark Fasheh | b4df6ed | 2006-02-22 17:35:08 -0800 | [diff] [blame] | 1712 | kfree(osb->osb_orphan_wipes); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1713 | /* FIXME |
| 1714 | * This belongs in journal shutdown, but because we have to |
| 1715 | * allocate osb->journal at the start of ocfs2_initalize_osb(), |
| 1716 | * we free it here. |
| 1717 | */ |
| 1718 | kfree(osb->journal); |
| 1719 | if (osb->local_alloc_copy) |
| 1720 | kfree(osb->local_alloc_copy); |
| 1721 | kfree(osb->uuid_str); |
| 1722 | ocfs2_put_dlm_debug(osb->osb_dlm_debug); |
| 1723 | memset(osb, 0, sizeof(struct ocfs2_super)); |
| 1724 | |
| 1725 | mlog_exit_void(); |
| 1726 | } |
| 1727 | |
| 1728 | /* Put OCFS2 into a readonly state, or (if the user specifies it), |
| 1729 | * panic(). We do not support continue-on-error operation. */ |
| 1730 | static void ocfs2_handle_error(struct super_block *sb) |
| 1731 | { |
| 1732 | struct ocfs2_super *osb = OCFS2_SB(sb); |
| 1733 | |
| 1734 | if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC) |
| 1735 | panic("OCFS2: (device %s): panic forced after error\n", |
| 1736 | sb->s_id); |
| 1737 | |
| 1738 | ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS); |
| 1739 | |
| 1740 | if (sb->s_flags & MS_RDONLY && |
| 1741 | (ocfs2_is_soft_readonly(osb) || |
| 1742 | ocfs2_is_hard_readonly(osb))) |
| 1743 | return; |
| 1744 | |
| 1745 | printk(KERN_CRIT "File system is now read-only due to the potential " |
| 1746 | "of on-disk corruption. Please run fsck.ocfs2 once the file " |
| 1747 | "system is unmounted.\n"); |
| 1748 | sb->s_flags |= MS_RDONLY; |
| 1749 | ocfs2_set_ro_flag(osb, 0); |
| 1750 | } |
| 1751 | |
| 1752 | static char error_buf[1024]; |
| 1753 | |
| 1754 | void __ocfs2_error(struct super_block *sb, |
| 1755 | const char *function, |
| 1756 | const char *fmt, ...) |
| 1757 | { |
| 1758 | va_list args; |
| 1759 | |
| 1760 | va_start(args, fmt); |
Alexey Dobriyan | 4a6e617 | 2006-12-06 20:37:04 -0800 | [diff] [blame] | 1761 | vsnprintf(error_buf, sizeof(error_buf), fmt, args); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1762 | va_end(args); |
| 1763 | |
| 1764 | /* Not using mlog here because we want to show the actual |
| 1765 | * function the error came from. */ |
| 1766 | printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n", |
| 1767 | sb->s_id, function, error_buf); |
| 1768 | |
| 1769 | ocfs2_handle_error(sb); |
| 1770 | } |
| 1771 | |
| 1772 | /* Handle critical errors. This is intentionally more drastic than |
| 1773 | * ocfs2_handle_error, so we only use for things like journal errors, |
| 1774 | * etc. */ |
| 1775 | void __ocfs2_abort(struct super_block* sb, |
| 1776 | const char *function, |
| 1777 | const char *fmt, ...) |
| 1778 | { |
| 1779 | va_list args; |
| 1780 | |
| 1781 | va_start(args, fmt); |
Alexey Dobriyan | 4a6e617 | 2006-12-06 20:37:04 -0800 | [diff] [blame] | 1782 | vsnprintf(error_buf, sizeof(error_buf), fmt, args); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1783 | va_end(args); |
| 1784 | |
| 1785 | printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n", |
| 1786 | sb->s_id, function, error_buf); |
| 1787 | |
| 1788 | /* We don't have the cluster support yet to go straight to |
| 1789 | * hard readonly in here. Until then, we want to keep |
| 1790 | * ocfs2_abort() so that we can at least mark critical |
| 1791 | * errors. |
| 1792 | * |
| 1793 | * TODO: This should abort the journal and alert other nodes |
| 1794 | * that our slot needs recovery. */ |
| 1795 | |
| 1796 | /* Force a panic(). This stinks, but it's better than letting |
| 1797 | * things continue without having a proper hard readonly |
| 1798 | * here. */ |
| 1799 | OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC; |
| 1800 | ocfs2_handle_error(sb); |
| 1801 | } |
| 1802 | |
| 1803 | module_init(ocfs2_init); |
| 1804 | module_exit(ocfs2_exit); |