blob: 3b04f5d2e896c9add19e1e67882bd8ce6a4e25fb [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- 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 Mushrand5500712007-09-06 13:34:16 -070042#include <linux/mount.h>
Joel Becker6953b4c2008-01-29 16:59:56 -080043#include <linux/seq_file.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080044
45#define MLOG_MASK_PREFIX ML_SUPER
46#include <cluster/masklog.h>
47
48#include "ocfs2.h"
49
50/* this should be the only file to include a version 1 header */
51#include "ocfs1_fs_compat.h"
52
53#include "alloc.h"
54#include "dlmglue.h"
55#include "export.h"
56#include "extent_map.h"
57#include "heartbeat.h"
58#include "inode.h"
59#include "journal.h"
60#include "localalloc.h"
61#include "namei.h"
62#include "slot_map.h"
63#include "super.h"
64#include "sysfile.h"
65#include "uptodate.h"
66#include "ver.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080067#include "xattr.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080068
69#include "buffer_head_io.h"
70
Christoph Lametere18b8902006-12-06 20:33:20 -080071static struct kmem_cache *ocfs2_inode_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -080072
Mark Fashehccd979b2005-12-15 14:31:24 -080073/* 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. */
77struct workqueue_struct *ocfs2_wq = NULL;
78
79static struct dentry *ocfs2_debugfs_root = NULL;
80
81MODULE_AUTHOR("Oracle");
82MODULE_LICENSE("GPL");
83
Tiger Yangc0123ad2007-09-08 00:16:10 +080084struct mount_options
85{
Mark Fashehd147b3d2007-11-07 14:40:36 -080086 unsigned long commit_interval;
Tiger Yangc0123ad2007-09-08 00:16:10 +080087 unsigned long mount_opt;
88 unsigned int atime_quantum;
89 signed short slot;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -080090 unsigned int localalloc_opt;
Joel Beckerb61817e2008-02-01 15:08:23 -080091 char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
Tiger Yangc0123ad2007-09-08 00:16:10 +080092};
93
Mark Fashehccd979b2005-12-15 14:31:24 -080094static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +080095 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -070096 int is_remount);
Sunil Mushrand5500712007-09-06 13:34:16 -070097static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -080098static void ocfs2_put_super(struct super_block *sb);
99static int ocfs2_mount_volume(struct super_block *sb);
100static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
101static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
102static int ocfs2_initialize_mem_caches(void);
103static void ocfs2_free_mem_caches(void);
104static void ocfs2_delete_osb(struct ocfs2_super *osb);
105
David Howells726c3342006-06-23 02:02:58 -0700106static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800107
108static int ocfs2_sync_fs(struct super_block *sb, int wait);
109
110static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
111static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800112static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800113static int ocfs2_check_volume(struct ocfs2_super *osb);
114static int ocfs2_verify_volume(struct ocfs2_dinode *di,
115 struct buffer_head *bh,
116 u32 sectsize);
117static int ocfs2_initialize_super(struct super_block *sb,
118 struct buffer_head *bh,
119 int sector_size);
120static int ocfs2_get_sector(struct super_block *sb,
121 struct buffer_head **bh,
122 int block,
123 int sect_size);
124static void ocfs2_write_super(struct super_block *sb);
125static struct inode *ocfs2_alloc_inode(struct super_block *sb);
126static void ocfs2_destroy_inode(struct inode *inode);
127
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800128static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800129 .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 Mushrand5500712007-09-06 13:34:16 -0700139 .show_options = ocfs2_show_options,
Mark Fashehccd979b2005-12-15 14:31:24 -0800140};
141
142enum {
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 Yang7f1a37e2006-11-15 15:48:42 +0800152 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700153 Opt_slot,
Mark Fashehd147b3d2007-11-07 14:40:36 -0800154 Opt_commit,
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800155 Opt_localalloc,
Mark Fasheh53fc6222007-12-20 16:49:04 -0800156 Opt_localflocks,
Joel Beckerb61817e2008-02-01 15:08:23 -0800157 Opt_stack,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800158 Opt_user_xattr,
159 Opt_nouser_xattr,
Mark Fashehccd979b2005-12-15 14:31:24 -0800160 Opt_err,
161};
162
Steven Whitehousea447c092008-10-13 10:46:57 +0100163static const match_table_t tokens = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800164 {Opt_barrier, "barrier=%u"},
165 {Opt_err_panic, "errors=panic"},
166 {Opt_err_ro, "errors=remount-ro"},
167 {Opt_intr, "intr"},
168 {Opt_nointr, "nointr"},
169 {Opt_hb_none, OCFS2_HB_NONE},
170 {Opt_hb_local, OCFS2_HB_LOCAL},
171 {Opt_data_ordered, "data=ordered"},
172 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800173 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700174 {Opt_slot, "preferred_slot=%u"},
Mark Fashehd147b3d2007-11-07 14:40:36 -0800175 {Opt_commit, "commit=%u"},
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800176 {Opt_localalloc, "localalloc=%d"},
Mark Fasheh53fc6222007-12-20 16:49:04 -0800177 {Opt_localflocks, "localflocks"},
Joel Beckerb61817e2008-02-01 15:08:23 -0800178 {Opt_stack, "cluster_stack=%s"},
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800179 {Opt_user_xattr, "user_xattr"},
180 {Opt_nouser_xattr, "nouser_xattr"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800181 {Opt_err, NULL}
182};
183
184/*
185 * write_super and sync_fs ripped right out of ext3.
186 */
187static void ocfs2_write_super(struct super_block *sb)
188{
Ingo Molnar7892f2f2006-01-09 15:59:25 -0800189 if (mutex_trylock(&sb->s_lock) != 0)
Mark Fashehccd979b2005-12-15 14:31:24 -0800190 BUG();
191 sb->s_dirt = 0;
192}
193
194static int ocfs2_sync_fs(struct super_block *sb, int wait)
195{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800196 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800197 tid_t target;
198 struct ocfs2_super *osb = OCFS2_SB(sb);
199
200 sb->s_dirt = 0;
201
202 if (ocfs2_is_hard_readonly(osb))
203 return -EROFS;
204
205 if (wait) {
206 status = ocfs2_flush_truncate_log(osb);
207 if (status < 0)
208 mlog_errno(status);
209 } else {
210 ocfs2_schedule_truncate_log_flush(osb, 0);
211 }
212
213 if (journal_start_commit(OCFS2_SB(sb)->journal->j_journal, &target)) {
214 if (wait)
215 log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
216 target);
217 }
218 return 0;
219}
220
221static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
222{
223 struct inode *new = NULL;
224 int status = 0;
225 int i;
226
227 mlog_entry_void();
228
Jan Kara5fa06132008-01-11 00:11:45 +0100229 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800230 if (IS_ERR(new)) {
231 status = PTR_ERR(new);
232 mlog_errno(status);
233 goto bail;
234 }
235 osb->root_inode = new;
236
Jan Kara5fa06132008-01-11 00:11:45 +0100237 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800238 if (IS_ERR(new)) {
239 status = PTR_ERR(new);
240 mlog_errno(status);
241 goto bail;
242 }
243 osb->sys_root_inode = new;
244
245 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
246 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
247 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
248 if (!new) {
249 ocfs2_release_system_inodes(osb);
250 status = -EINVAL;
251 mlog_errno(status);
252 /* FIXME: Should ERROR_RO_FS */
253 mlog(ML_ERROR, "Unable to load system inode %d, "
254 "possibly corrupt fs?", i);
255 goto bail;
256 }
257 // the array now has one ref, so drop this one
258 iput(new);
259 }
260
261bail:
262 mlog_exit(status);
263 return status;
264}
265
266static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
267{
268 struct inode *new = NULL;
269 int status = 0;
270 int i;
271
272 mlog_entry_void();
273
274 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
275 i < NUM_SYSTEM_INODES;
276 i++) {
277 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
278 if (!new) {
279 ocfs2_release_system_inodes(osb);
280 status = -EINVAL;
281 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
282 status, i, osb->slot_num);
283 goto bail;
284 }
285 /* the array now has one ref, so drop this one */
286 iput(new);
287 }
288
289bail:
290 mlog_exit(status);
291 return status;
292}
293
Denis Chengbddb8eb32007-09-27 02:10:04 +0800294static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800295{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800296 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800297 struct inode *inode;
298
299 mlog_entry_void();
300
301 for (i = 0; i < NUM_SYSTEM_INODES; i++) {
302 inode = osb->system_inodes[i];
303 if (inode) {
304 iput(inode);
305 osb->system_inodes[i] = NULL;
306 }
307 }
308
309 inode = osb->sys_root_inode;
310 if (inode) {
311 iput(inode);
312 osb->sys_root_inode = NULL;
313 }
314
315 inode = osb->root_inode;
316 if (inode) {
317 iput(inode);
318 osb->root_inode = NULL;
319 }
320
Denis Chengbddb8eb32007-09-27 02:10:04 +0800321 mlog_exit(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800322}
323
324/* We're allocating fs objects, use GFP_NOFS */
325static struct inode *ocfs2_alloc_inode(struct super_block *sb)
326{
327 struct ocfs2_inode_info *oi;
328
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800329 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800330 if (!oi)
331 return NULL;
332
333 return &oi->vfs_inode;
334}
335
336static void ocfs2_destroy_inode(struct inode *inode)
337{
338 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
339}
340
Mark Fasheh5a254032007-07-20 12:56:16 -0700341static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
342 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800343{
Mark Fasheh5a254032007-07-20 12:56:16 -0700344 unsigned int bytes = 1 << cbits;
345 unsigned int trim = bytes;
346 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800347
Mark Fasheh5a254032007-07-20 12:56:16 -0700348 /*
349 * i_size and all block offsets in ocfs2 are always 64 bits
350 * wide. i_clusters is 32 bits, in cluster-sized units. So on
351 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800352 */
353
354#if BITS_PER_LONG == 32
355# if defined(CONFIG_LBD)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700356 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700357 /*
358 * We might be limited by page cache size.
359 */
360 if (bytes > PAGE_CACHE_SIZE) {
361 bytes = PAGE_CACHE_SIZE;
362 trim = 1;
363 /*
364 * Shift by 31 here so that we don't get larger than
365 * MAX_LFS_FILESIZE
366 */
367 bitshift = 31;
368 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800369# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700370 /*
371 * We are limited by the size of sector_t. Use block size, as
372 * that's what we expose to the VFS.
373 */
374 bytes = 1 << bbits;
375 trim = 1;
376 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800377# endif
378#endif
379
Mark Fasheh5a254032007-07-20 12:56:16 -0700380 /*
381 * Trim by a whole cluster when we can actually approach the
382 * on-disk limits. Otherwise we can overflow i_clusters when
383 * an extent start is at the max offset.
384 */
385 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800386}
387
388static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
389{
390 int incompat_features;
391 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800392 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800393 struct ocfs2_super *osb = OCFS2_SB(sb);
394
Tiger Yangc0123ad2007-09-08 00:16:10 +0800395 if (!ocfs2_parse_options(sb, data, &parsed_options, 1)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800396 ret = -EINVAL;
397 goto out;
398 }
399
400 if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800401 (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800402 ret = -EINVAL;
403 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
404 goto out;
405 }
406
407 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800408 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800409 ret = -EINVAL;
410 mlog(ML_ERROR, "Cannot change data mode on remount\n");
411 goto out;
412 }
413
414 /* We're going to/from readonly mode. */
415 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
416 /* Lock here so the check of HARD_RO and the potential
417 * setting of SOFT_RO is atomic. */
418 spin_lock(&osb->osb_lock);
419 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
420 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
421 ret = -EROFS;
422 goto unlock_osb;
423 }
424
425 if (*flags & MS_RDONLY) {
426 mlog(0, "Going to ro mode.\n");
427 sb->s_flags |= MS_RDONLY;
428 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
429 } else {
430 mlog(0, "Making ro filesystem writeable.\n");
431
432 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
433 mlog(ML_ERROR, "Cannot remount RDWR "
434 "filesystem due to previous errors.\n");
435 ret = -EROFS;
436 goto unlock_osb;
437 }
438 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
439 if (incompat_features) {
440 mlog(ML_ERROR, "Cannot remount RDWR because "
441 "of unsupported optional features "
442 "(%x).\n", incompat_features);
443 ret = -EINVAL;
444 goto unlock_osb;
445 }
446 sb->s_flags &= ~MS_RDONLY;
447 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
448 }
449unlock_osb:
450 spin_unlock(&osb->osb_lock);
451 }
452
453 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800454 /* Only save off the new mount options in case of a successful
455 * remount. */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800456 osb->s_mount_opt = parsed_options.mount_opt;
457 osb->s_atime_quantum = parsed_options.atime_quantum;
458 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800459 if (parsed_options.commit_interval)
460 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fashehe001e792007-11-07 14:21:45 -0800461
462 if (!ocfs2_is_hard_readonly(osb))
463 ocfs2_set_journal_params(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800464 }
465out:
466 return ret;
467}
468
469static int ocfs2_sb_probe(struct super_block *sb,
470 struct buffer_head **bh,
471 int *sector_size)
472{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800473 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800474 struct ocfs1_vol_disk_hdr *hdr;
475 struct ocfs2_dinode *di;
476 int blksize;
477
478 *bh = NULL;
479
480 /* may be > 512 */
481 *sector_size = bdev_hardsect_size(sb->s_bdev);
482 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
483 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
484 *sector_size, OCFS2_MAX_BLOCKSIZE);
485 status = -EINVAL;
486 goto bail;
487 }
488
489 /* Can this really happen? */
490 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
491 *sector_size = OCFS2_MIN_BLOCKSIZE;
492
493 /* check block zero for old format */
494 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
495 if (status < 0) {
496 mlog_errno(status);
497 goto bail;
498 }
499 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
500 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
501 mlog(ML_ERROR, "incompatible version: %u.%u\n",
502 hdr->major_version, hdr->minor_version);
503 status = -EINVAL;
504 }
505 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
506 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
507 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
508 hdr->signature);
509 status = -EINVAL;
510 }
511 brelse(*bh);
512 *bh = NULL;
513 if (status < 0) {
514 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
515 "upgraded before mounting with ocfs v2\n");
516 goto bail;
517 }
518
519 /*
520 * Now check at magic offset for 512, 1024, 2048, 4096
521 * blocksizes. 4096 is the maximum blocksize because it is
522 * the minimum clustersize.
523 */
524 status = -EINVAL;
525 for (blksize = *sector_size;
526 blksize <= OCFS2_MAX_BLOCKSIZE;
527 blksize <<= 1) {
528 tmpstat = ocfs2_get_sector(sb, bh,
529 OCFS2_SUPER_BLOCK_BLKNO,
530 blksize);
531 if (tmpstat < 0) {
532 status = tmpstat;
533 mlog_errno(status);
534 goto bail;
535 }
536 di = (struct ocfs2_dinode *) (*bh)->b_data;
537 status = ocfs2_verify_volume(di, *bh, blksize);
538 if (status >= 0)
539 goto bail;
540 brelse(*bh);
541 *bh = NULL;
542 if (status != -EAGAIN)
543 break;
544 }
545
546bail:
547 return status;
548}
549
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800550static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
551{
552 if (ocfs2_mount_local(osb)) {
553 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
554 mlog(ML_ERROR, "Cannot heartbeat on a locally "
555 "mounted device.\n");
556 return -EINVAL;
557 }
558 }
559
Joel Beckerb61817e2008-02-01 15:08:23 -0800560 if (ocfs2_userspace_stack(osb)) {
561 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
562 mlog(ML_ERROR, "Userspace stack expected, but "
563 "o2cb heartbeat arguments passed to mount\n");
564 return -EINVAL;
565 }
566 }
567
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800568 if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800569 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
570 !ocfs2_userspace_stack(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800571 mlog(ML_ERROR, "Heartbeat has to be started to mount "
572 "a read-write clustered device.\n");
573 return -EINVAL;
574 }
575 }
576
577 return 0;
578}
579
Joel Beckerb61817e2008-02-01 15:08:23 -0800580/*
581 * If we're using a userspace stack, mount should have passed
582 * a name that matches the disk. If not, mount should not
583 * have passed a stack.
584 */
585static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
586 struct mount_options *mopt)
587{
588 if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
589 mlog(ML_ERROR,
590 "cluster stack passed to mount, but this filesystem "
591 "does not support it\n");
592 return -EINVAL;
593 }
594
595 if (ocfs2_userspace_stack(osb) &&
596 strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
597 OCFS2_STACK_LABEL_LEN)) {
598 mlog(ML_ERROR,
599 "cluster stack passed to mount (\"%s\") does not "
600 "match the filesystem (\"%s\")\n",
601 mopt->cluster_stack,
602 osb->osb_cluster_stack);
603 return -EINVAL;
604 }
605
606 return 0;
607}
608
Mark Fashehccd979b2005-12-15 14:31:24 -0800609static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
610{
611 struct dentry *root;
612 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800613 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800614 struct inode *inode = NULL;
615 struct ocfs2_super *osb = NULL;
616 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800617 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -0800618
619 mlog_entry("%p, %p, %i", sb, data, silent);
620
Tiger Yangc0123ad2007-09-08 00:16:10 +0800621 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800622 status = -EINVAL;
623 goto read_super_error;
624 }
625
626 /* probe for superblock */
627 status = ocfs2_sb_probe(sb, &bh, &sector_size);
628 if (status < 0) {
629 mlog(ML_ERROR, "superblock probe failed!\n");
630 goto read_super_error;
631 }
632
633 status = ocfs2_initialize_super(sb, bh, sector_size);
634 osb = OCFS2_SB(sb);
635 if (status < 0) {
636 mlog_errno(status);
637 goto read_super_error;
638 }
639 brelse(bh);
640 bh = NULL;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800641 osb->s_mount_opt = parsed_options.mount_opt;
642 osb->s_atime_quantum = parsed_options.atime_quantum;
643 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800644 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fasheh9c7af402008-07-28 18:02:53 -0700645 osb->local_alloc_default_bits = ocfs2_megabytes_to_clusters(sb, parsed_options.localalloc_opt);
646 osb->local_alloc_bits = osb->local_alloc_default_bits;
Mark Fashehccd979b2005-12-15 14:31:24 -0800647
Joel Beckerb61817e2008-02-01 15:08:23 -0800648 status = ocfs2_verify_userspace_stack(osb, &parsed_options);
649 if (status)
650 goto read_super_error;
651
Mark Fashehccd979b2005-12-15 14:31:24 -0800652 sb->s_magic = OCFS2_SUPER_MAGIC;
653
654 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
655 * heartbeat=none */
656 if (bdev_read_only(sb->s_bdev)) {
657 if (!(sb->s_flags & MS_RDONLY)) {
658 status = -EACCES;
659 mlog(ML_ERROR, "Readonly device detected but readonly "
660 "mount was not specified.\n");
661 goto read_super_error;
662 }
663
664 /* You should not be able to start a local heartbeat
665 * on a readonly device. */
666 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
667 status = -EROFS;
668 mlog(ML_ERROR, "Local heartbeat specified on readonly "
669 "device.\n");
670 goto read_super_error;
671 }
672
673 status = ocfs2_check_journals_nolocks(osb);
674 if (status < 0) {
675 if (status == -EROFS)
676 mlog(ML_ERROR, "Recovery required on readonly "
677 "file system, but write access is "
678 "unavailable.\n");
679 else
680 mlog_errno(status);
681 goto read_super_error;
682 }
683
684 ocfs2_set_ro_flag(osb, 1);
685
686 printk(KERN_NOTICE "Readonly device detected. No cluster "
687 "services will be utilized for this mount. Recovery "
688 "will be skipped.\n");
689 }
690
691 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800692 if (sb->s_flags & MS_RDONLY)
693 ocfs2_set_ro_flag(osb, 0);
694 }
695
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800696 status = ocfs2_verify_heartbeat(osb);
697 if (status < 0) {
698 mlog_errno(status);
699 goto read_super_error;
700 }
701
Mark Fashehccd979b2005-12-15 14:31:24 -0800702 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
703 ocfs2_debugfs_root);
704 if (!osb->osb_debug_root) {
705 status = -EINVAL;
706 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
707 goto read_super_error;
708 }
709
710 status = ocfs2_mount_volume(sb);
711 if (osb->root_inode)
712 inode = igrab(osb->root_inode);
713
714 if (status < 0)
715 goto read_super_error;
716
717 if (!inode) {
718 status = -EIO;
719 mlog_errno(status);
720 goto read_super_error;
721 }
722
723 root = d_alloc_root(inode);
724 if (!root) {
725 status = -ENOMEM;
726 mlog_errno(status);
727 goto read_super_error;
728 }
729
730 sb->s_root = root;
731
732 ocfs2_complete_mount_recovery(osb);
733
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800734 if (ocfs2_mount_local(osb))
735 snprintf(nodestr, sizeof(nodestr), "local");
736 else
Joel Becker19fdb622008-01-30 15:38:24 -0800737 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800738
739 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -0700740 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800741 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -0800742 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
743 "ordered");
744
745 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
746 wake_up(&osb->osb_mount_event);
747
748 mlog_exit(status);
749 return status;
750
751read_super_error:
752 if (bh != NULL)
753 brelse(bh);
754
755 if (inode)
756 iput(inode);
757
758 if (osb) {
759 atomic_set(&osb->vol_state, VOLUME_DISABLED);
760 wake_up(&osb->osb_mount_event);
761 ocfs2_dismount_volume(sb, 1);
762 }
763
764 mlog_exit(status);
765 return status;
766}
767
David Howells454e2392006-06-23 02:02:57 -0700768static int ocfs2_get_sb(struct file_system_type *fs_type,
769 int flags,
770 const char *dev_name,
771 void *data,
772 struct vfsmount *mnt)
Mark Fashehccd979b2005-12-15 14:31:24 -0800773{
David Howells454e2392006-06-23 02:02:57 -0700774 return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
775 mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800776}
777
778static struct file_system_type ocfs2_fs_type = {
779 .owner = THIS_MODULE,
780 .name = "ocfs2",
781 .get_sb = ocfs2_get_sb, /* is this called when we mount
782 * the fs? */
783 .kill_sb = kill_block_super, /* set to the generic one
784 * right now, but do we
785 * need to change that? */
Mark Fasheh1ba9da22006-09-08 14:22:54 -0700786 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -0800787 .next = NULL
788};
789
790static int ocfs2_parse_options(struct super_block *sb,
791 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800792 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -0800793 int is_remount)
794{
795 int status;
796 char *p;
797
798 mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
799 options ? options : "(none)");
800
Mark Fashehd147b3d2007-11-07 14:40:36 -0800801 mopt->commit_interval = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800802 mopt->mount_opt = 0;
803 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
804 mopt->slot = OCFS2_INVALID_SLOT;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800805 mopt->localalloc_opt = OCFS2_DEFAULT_LOCAL_ALLOC_SIZE;
Joel Beckerb61817e2008-02-01 15:08:23 -0800806 mopt->cluster_stack[0] = '\0';
Mark Fashehccd979b2005-12-15 14:31:24 -0800807
808 if (!options) {
809 status = 1;
810 goto bail;
811 }
812
813 while ((p = strsep(&options, ",")) != NULL) {
814 int token, option;
815 substring_t args[MAX_OPT_ARGS];
816
817 if (!*p)
818 continue;
819
820 token = match_token(p, tokens, args);
821 switch (token) {
822 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800823 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800824 break;
825 case Opt_hb_none:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800826 mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800827 break;
828 case Opt_barrier:
829 if (match_int(&args[0], &option)) {
830 status = 0;
831 goto bail;
832 }
833 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +0800834 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -0800835 else
Tiger Yangc0123ad2007-09-08 00:16:10 +0800836 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -0800837 break;
838 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800839 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -0800840 break;
841 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800842 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -0800843 break;
844 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800845 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -0800846 break;
847 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800848 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -0800849 break;
850 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800851 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -0800852 break;
853 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800854 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -0800855 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800856 case Opt_user_xattr:
857 mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
858 break;
859 case Opt_nouser_xattr:
860 mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
861 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800862 case Opt_atime_quantum:
863 if (match_int(&args[0], &option)) {
864 status = 0;
865 goto bail;
866 }
867 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +0800868 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800869 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -0700870 case Opt_slot:
871 option = 0;
872 if (match_int(&args[0], &option)) {
873 status = 0;
874 goto bail;
875 }
876 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +0800877 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -0700878 break;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800879 case Opt_commit:
880 option = 0;
881 if (match_int(&args[0], &option)) {
882 status = 0;
883 goto bail;
884 }
885 if (option < 0)
886 return 0;
887 if (option == 0)
888 option = JBD_DEFAULT_MAX_COMMIT_AGE;
889 mopt->commit_interval = HZ * option;
890 break;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800891 case Opt_localalloc:
892 option = 0;
893 if (match_int(&args[0], &option)) {
894 status = 0;
895 goto bail;
896 }
897 if (option >= 0 && (option <= ocfs2_local_alloc_size(sb) * 8))
898 mopt->localalloc_opt = option;
899 break;
Mark Fasheh53fc6222007-12-20 16:49:04 -0800900 case Opt_localflocks:
901 /*
902 * Changing this during remount could race
903 * flock() requests, or "unbalance" existing
904 * ones (e.g., a lock is taken in one mode but
905 * dropped in the other). If users care enough
906 * to flip locking modes during remount, we
907 * could add a "local" flag to individual
908 * flock structures for proper tracking of
909 * state.
910 */
911 if (!is_remount)
912 mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
913 break;
Joel Beckerb61817e2008-02-01 15:08:23 -0800914 case Opt_stack:
915 /* Check both that the option we were passed
916 * is of the right length and that it is a proper
917 * string of the right length.
918 */
919 if (((args[0].to - args[0].from) !=
920 OCFS2_STACK_LABEL_LEN) ||
921 (strnlen(args[0].from,
922 OCFS2_STACK_LABEL_LEN) !=
923 OCFS2_STACK_LABEL_LEN)) {
924 mlog(ML_ERROR,
925 "Invalid cluster_stack option\n");
926 status = 0;
927 goto bail;
928 }
929 memcpy(mopt->cluster_stack, args[0].from,
930 OCFS2_STACK_LABEL_LEN);
931 mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
932 break;
Mark Fashehccd979b2005-12-15 14:31:24 -0800933 default:
934 mlog(ML_ERROR,
935 "Unrecognized mount option \"%s\" "
936 "or missing value\n", p);
937 status = 0;
938 goto bail;
939 }
940 }
941
942 status = 1;
943
944bail:
945 mlog_exit(status);
946 return status;
947}
948
Sunil Mushrand5500712007-09-06 13:34:16 -0700949static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
950{
951 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
952 unsigned long opts = osb->s_mount_opt;
Mark Fashehebcee4b2008-07-28 14:55:20 -0700953 unsigned int local_alloc_megs;
Sunil Mushrand5500712007-09-06 13:34:16 -0700954
955 if (opts & OCFS2_MOUNT_HB_LOCAL)
956 seq_printf(s, ",_netdev,heartbeat=local");
957 else
958 seq_printf(s, ",heartbeat=none");
959
960 if (opts & OCFS2_MOUNT_NOINTR)
961 seq_printf(s, ",nointr");
962
963 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
964 seq_printf(s, ",data=writeback");
965 else
966 seq_printf(s, ",data=ordered");
967
968 if (opts & OCFS2_MOUNT_BARRIER)
969 seq_printf(s, ",barrier=1");
970
971 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
972 seq_printf(s, ",errors=panic");
973 else
974 seq_printf(s, ",errors=remount-ro");
975
976 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
977 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
978
979 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
980 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
981
Mark Fashehd147b3d2007-11-07 14:40:36 -0800982 if (osb->osb_commit_interval)
983 seq_printf(s, ",commit=%u",
984 (unsigned) (osb->osb_commit_interval / HZ));
985
Mark Fashehebcee4b2008-07-28 14:55:20 -0700986 local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
987 if (local_alloc_megs != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE)
988 seq_printf(s, ",localalloc=%d", local_alloc_megs);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800989
Mark Fasheh53fc6222007-12-20 16:49:04 -0800990 if (opts & OCFS2_MOUNT_LOCALFLOCKS)
991 seq_printf(s, ",localflocks,");
992
Joel Beckerb61817e2008-02-01 15:08:23 -0800993 if (osb->osb_cluster_stack[0])
994 seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
995 osb->osb_cluster_stack);
996
Sunil Mushrand5500712007-09-06 13:34:16 -0700997 return 0;
998}
999
Mark Fashehccd979b2005-12-15 14:31:24 -08001000static int __init ocfs2_init(void)
1001{
1002 int status;
1003
1004 mlog_entry_void();
1005
1006 ocfs2_print_version();
1007
Mark Fashehccd979b2005-12-15 14:31:24 -08001008 status = init_ocfs2_uptodate_cache();
1009 if (status < 0) {
1010 mlog_errno(status);
1011 goto leave;
1012 }
1013
1014 status = ocfs2_initialize_mem_caches();
1015 if (status < 0) {
1016 mlog_errno(status);
1017 goto leave;
1018 }
1019
1020 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
1021 if (!ocfs2_wq) {
1022 status = -ENOMEM;
1023 goto leave;
1024 }
1025
Mark Fashehccd979b2005-12-15 14:31:24 -08001026 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
1027 if (!ocfs2_debugfs_root) {
1028 status = -EFAULT;
1029 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
1030 }
1031
Joel Becker63e0c482008-01-30 16:58:36 -08001032 ocfs2_set_locking_protocol();
1033
Mark Fashehccd979b2005-12-15 14:31:24 -08001034leave:
1035 if (status < 0) {
1036 ocfs2_free_mem_caches();
1037 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -08001038 }
1039
1040 mlog_exit(status);
1041
1042 if (status >= 0) {
1043 return register_filesystem(&ocfs2_fs_type);
1044 } else
1045 return -1;
1046}
1047
1048static void __exit ocfs2_exit(void)
1049{
1050 mlog_entry_void();
1051
1052 if (ocfs2_wq) {
1053 flush_workqueue(ocfs2_wq);
1054 destroy_workqueue(ocfs2_wq);
1055 }
1056
1057 debugfs_remove(ocfs2_debugfs_root);
1058
1059 ocfs2_free_mem_caches();
1060
1061 unregister_filesystem(&ocfs2_fs_type);
1062
Mark Fashehccd979b2005-12-15 14:31:24 -08001063 exit_ocfs2_uptodate_cache();
1064
1065 mlog_exit_void();
1066}
1067
1068static void ocfs2_put_super(struct super_block *sb)
1069{
1070 mlog_entry("(0x%p)\n", sb);
1071
1072 ocfs2_sync_blockdev(sb);
1073 ocfs2_dismount_volume(sb, 0);
1074
1075 mlog_exit_void();
1076}
1077
David Howells726c3342006-06-23 02:02:58 -07001078static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -08001079{
1080 struct ocfs2_super *osb;
1081 u32 numbits, freebits;
1082 int status;
1083 struct ocfs2_dinode *bm_lock;
1084 struct buffer_head *bh = NULL;
1085 struct inode *inode = NULL;
1086
David Howells726c3342006-06-23 02:02:58 -07001087 mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -08001088
David Howells726c3342006-06-23 02:02:58 -07001089 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001090
1091 inode = ocfs2_get_system_file_inode(osb,
1092 GLOBAL_BITMAP_SYSTEM_INODE,
1093 OCFS2_INVALID_SLOT);
1094 if (!inode) {
1095 mlog(ML_ERROR, "failed to get bitmap inode\n");
1096 status = -EIO;
1097 goto bail;
1098 }
1099
Mark Fashehe63aecb62007-10-18 15:30:42 -07001100 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001101 if (status < 0) {
1102 mlog_errno(status);
1103 goto bail;
1104 }
1105
1106 bm_lock = (struct ocfs2_dinode *) bh->b_data;
1107
1108 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
1109 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
1110
1111 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -07001112 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -08001113 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
1114 buf->f_blocks = ((sector_t) numbits) *
1115 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1116 buf->f_bfree = ((sector_t) freebits) *
1117 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1118 buf->f_bavail = buf->f_bfree;
1119 buf->f_files = numbits;
1120 buf->f_ffree = freebits;
1121
1122 brelse(bh);
1123
Mark Fashehe63aecb62007-10-18 15:30:42 -07001124 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001125 status = 0;
1126bail:
1127 if (inode)
1128 iput(inode);
1129
1130 mlog_exit(status);
1131
1132 return status;
1133}
1134
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001135static void ocfs2_inode_init_once(void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001136{
1137 struct ocfs2_inode_info *oi = data;
1138
Christoph Lametera35afb82007-05-16 22:10:57 -07001139 oi->ip_flags = 0;
1140 oi->ip_open_count = 0;
1141 spin_lock_init(&oi->ip_lock);
1142 ocfs2_extent_map_init(&oi->vfs_inode);
1143 INIT_LIST_HEAD(&oi->ip_io_markers);
1144 oi->ip_created_trans = 0;
1145 oi->ip_last_trans = 0;
1146 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001147
Christoph Lametera35afb82007-05-16 22:10:57 -07001148 init_rwsem(&oi->ip_alloc_sem);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001149 init_rwsem(&oi->ip_xattr_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -07001150 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001151
Christoph Lametera35afb82007-05-16 22:10:57 -07001152 oi->ip_blkno = 0ULL;
1153 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001154
Christoph Lametera35afb82007-05-16 22:10:57 -07001155 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001156 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001157 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001158
Christoph Lametera35afb82007-05-16 22:10:57 -07001159 ocfs2_metadata_cache_init(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001160
Christoph Lametera35afb82007-05-16 22:10:57 -07001161 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001162}
1163
1164static int ocfs2_initialize_mem_caches(void)
1165{
1166 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001167 sizeof(struct ocfs2_inode_info),
1168 0,
1169 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1170 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001171 ocfs2_inode_init_once);
Mark Fashehccd979b2005-12-15 14:31:24 -08001172 if (!ocfs2_inode_cachep)
1173 return -ENOMEM;
1174
Mark Fashehccd979b2005-12-15 14:31:24 -08001175 return 0;
1176}
1177
1178static void ocfs2_free_mem_caches(void)
1179{
1180 if (ocfs2_inode_cachep)
1181 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001182
1183 ocfs2_inode_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001184}
1185
1186static int ocfs2_get_sector(struct super_block *sb,
1187 struct buffer_head **bh,
1188 int block,
1189 int sect_size)
1190{
1191 if (!sb_set_blocksize(sb, sect_size)) {
1192 mlog(ML_ERROR, "unable to set blocksize\n");
1193 return -EIO;
1194 }
1195
1196 *bh = sb_getblk(sb, block);
1197 if (!*bh) {
1198 mlog_errno(-EIO);
1199 return -EIO;
1200 }
1201 lock_buffer(*bh);
1202 if (!buffer_dirty(*bh))
1203 clear_buffer_uptodate(*bh);
1204 unlock_buffer(*bh);
1205 ll_rw_block(READ, 1, bh);
1206 wait_on_buffer(*bh);
1207 return 0;
1208}
1209
Mark Fashehccd979b2005-12-15 14:31:24 -08001210static int ocfs2_mount_volume(struct super_block *sb)
1211{
1212 int status = 0;
1213 int unlock_super = 0;
1214 struct ocfs2_super *osb = OCFS2_SB(sb);
1215
1216 mlog_entry_void();
1217
1218 if (ocfs2_is_hard_readonly(osb))
1219 goto leave;
1220
Mark Fashehccd979b2005-12-15 14:31:24 -08001221 status = ocfs2_dlm_init(osb);
1222 if (status < 0) {
1223 mlog_errno(status);
1224 goto leave;
1225 }
1226
Mark Fashehccd979b2005-12-15 14:31:24 -08001227 status = ocfs2_super_lock(osb, 1);
1228 if (status < 0) {
1229 mlog_errno(status);
1230 goto leave;
1231 }
1232 unlock_super = 1;
1233
1234 /* This will load up the node map and add ourselves to it. */
1235 status = ocfs2_find_slot(osb);
1236 if (status < 0) {
1237 mlog_errno(status);
1238 goto leave;
1239 }
1240
Mark Fashehccd979b2005-12-15 14:31:24 -08001241 /* load all node-local system inodes */
1242 status = ocfs2_init_local_system_inodes(osb);
1243 if (status < 0) {
1244 mlog_errno(status);
1245 goto leave;
1246 }
1247
1248 status = ocfs2_check_volume(osb);
1249 if (status < 0) {
1250 mlog_errno(status);
1251 goto leave;
1252 }
1253
1254 status = ocfs2_truncate_log_init(osb);
1255 if (status < 0) {
1256 mlog_errno(status);
1257 goto leave;
1258 }
1259
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001260 if (ocfs2_mount_local(osb))
1261 goto leave;
1262
Mark Fashehccd979b2005-12-15 14:31:24 -08001263leave:
1264 if (unlock_super)
1265 ocfs2_super_unlock(osb, 1);
1266
1267 mlog_exit(status);
1268 return status;
1269}
1270
Mark Fashehccd979b2005-12-15 14:31:24 -08001271static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1272{
Joel Becker286eaa92008-02-01 15:03:57 -08001273 int tmp, hangup_needed = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001274 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001275 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001276
1277 mlog_entry("(0x%p)\n", sb);
1278
1279 BUG_ON(!sb);
1280 osb = OCFS2_SB(sb);
1281 BUG_ON(!osb);
1282
1283 ocfs2_shutdown_local_alloc(osb);
1284
1285 ocfs2_truncate_log_shutdown(osb);
1286
Joel Becker553abd02008-02-01 12:03:57 -08001287 /* This will disable recovery and flush any recovery work. */
1288 ocfs2_recovery_exit(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001289
1290 ocfs2_journal_shutdown(osb);
1291
1292 ocfs2_sync_blockdev(sb);
1293
Joel Becker4670c462008-02-01 14:39:35 -08001294 /* No cluster connection means we've failed during mount, so skip
1295 * all the steps which depended on that to complete. */
1296 if (osb->cconn) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001297 tmp = ocfs2_super_lock(osb, 1);
1298 if (tmp < 0) {
1299 mlog_errno(tmp);
1300 return;
1301 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001302 }
1303
Mark Fasheh19b613d2007-10-04 14:47:09 -07001304 if (osb->slot_num != OCFS2_INVALID_SLOT)
1305 ocfs2_put_slot(osb);
1306
Joel Becker4670c462008-02-01 14:39:35 -08001307 if (osb->cconn)
Mark Fasheh19b613d2007-10-04 14:47:09 -07001308 ocfs2_super_unlock(osb, 1);
1309
Mark Fashehccd979b2005-12-15 14:31:24 -08001310 ocfs2_release_system_inodes(osb);
1311
Joel Becker6953b4c2008-01-29 16:59:56 -08001312 /*
Joel Becker6953b4c2008-01-29 16:59:56 -08001313 * If we're dismounting due to mount error, mount.ocfs2 will clean
1314 * up heartbeat. If we're a local mount, there is no heartbeat.
1315 * If we failed before we got a uuid_str yet, we can't stop
1316 * heartbeat. Otherwise, do it.
1317 */
1318 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
Joel Becker286eaa92008-02-01 15:03:57 -08001319 hangup_needed = 1;
1320
1321 if (osb->cconn)
1322 ocfs2_dlm_shutdown(osb, hangup_needed);
1323
1324 debugfs_remove(osb->osb_debug_root);
1325
1326 if (hangup_needed)
Joel Becker6953b4c2008-01-29 16:59:56 -08001327 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
Mark Fashehccd979b2005-12-15 14:31:24 -08001328
1329 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
1330
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001331 if (ocfs2_mount_local(osb))
1332 snprintf(nodestr, sizeof(nodestr), "local");
1333 else
Joel Becker19fdb622008-01-30 15:38:24 -08001334 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001335
1336 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
1337 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001338
1339 ocfs2_delete_osb(osb);
1340 kfree(osb);
1341 sb->s_dev = 0;
1342 sb->s_fs_info = NULL;
1343}
1344
1345static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
1346 unsigned uuid_bytes)
1347{
1348 int i, ret;
1349 char *ptr;
1350
1351 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
1352
Robert P. J. Daycd861282006-12-13 00:34:52 -08001353 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001354 if (osb->uuid_str == NULL)
1355 return -ENOMEM;
1356
Mark Fashehccd979b2005-12-15 14:31:24 -08001357 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
1358 /* print with null */
1359 ret = snprintf(ptr, 3, "%02X", uuid[i]);
1360 if (ret != 2) /* drop super cleans up */
1361 return -EINVAL;
1362 /* then only advance past the last char */
1363 ptr += 2;
1364 }
1365
1366 return 0;
1367}
1368
1369static int ocfs2_initialize_super(struct super_block *sb,
1370 struct buffer_head *bh,
1371 int sector_size)
1372{
Denis Chengbddb8eb32007-09-27 02:10:04 +08001373 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07001374 int i, cbits, bbits;
1375 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001376 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001377 struct ocfs2_journal *journal;
1378 __le32 uuid_net_key;
1379 struct ocfs2_super *osb;
1380
1381 mlog_entry_void();
1382
Robert P. J. Daycd861282006-12-13 00:34:52 -08001383 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001384 if (!osb) {
1385 status = -ENOMEM;
1386 mlog_errno(status);
1387 goto bail;
1388 }
1389
1390 sb->s_fs_info = osb;
1391 sb->s_op = &ocfs2_sops;
1392 sb->s_export_op = &ocfs2_export_ops;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001393 sb->s_xattr = ocfs2_xattr_handlers;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07001394 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001395 sb->s_flags |= MS_NOATIME;
1396 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07001397 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
1398 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
1399 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001400
1401 osb->sb = sb;
1402 /* Save off for ocfs2_rw_direct */
1403 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01001404 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001405
Mark Fasheh34d024f2007-09-24 15:56:19 -07001406 spin_lock_init(&osb->dc_task_lock);
1407 init_waitqueue_head(&osb->dc_event);
1408 osb->dc_work_sequence = 0;
1409 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001410 INIT_LIST_HEAD(&osb->blocked_lock_list);
1411 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001412 spin_lock_init(&osb->osb_lock);
Tao Ma4d0ddb22008-03-05 16:11:46 +08001413 ocfs2_init_inode_steal_slot(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001414
1415 atomic_set(&osb->alloc_stats.moves, 0);
1416 atomic_set(&osb->alloc_stats.local_data, 0);
1417 atomic_set(&osb->alloc_stats.bitmap_data, 0);
1418 atomic_set(&osb->alloc_stats.bg_allocs, 0);
1419 atomic_set(&osb->alloc_stats.bg_extends, 0);
1420
1421 ocfs2_init_node_maps(osb);
1422
1423 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
1424 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
1425
Joel Becker553abd02008-02-01 12:03:57 -08001426 status = ocfs2_recovery_init(osb);
1427 if (status) {
1428 mlog(ML_ERROR, "Unable to initialize recovery state\n");
1429 mlog_errno(status);
1430 goto bail;
1431 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001432
1433 init_waitqueue_head(&osb->checkpoint_event);
1434 atomic_set(&osb->needs_checkpoint, 0);
1435
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001436 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1437
Mark Fashehccd979b2005-12-15 14:31:24 -08001438 osb->slot_num = OCFS2_INVALID_SLOT;
1439
Tiger Yangfdd77702008-08-18 17:08:55 +08001440 osb->s_xattr_inline_size = OCFS2_MIN_XATTR_INLINE_SIZE;
1441
Mark Fashehccd979b2005-12-15 14:31:24 -08001442 osb->local_alloc_state = OCFS2_LA_UNUSED;
1443 osb->local_alloc_bh = NULL;
Mark Fasheh9c7af402008-07-28 18:02:53 -07001444 INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08001445
Mark Fashehccd979b2005-12-15 14:31:24 -08001446 init_waitqueue_head(&osb->osb_mount_event);
1447
1448 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
1449 if (!osb->vol_label) {
1450 mlog(ML_ERROR, "unable to alloc vol label\n");
1451 status = -ENOMEM;
1452 goto bail;
1453 }
1454
Mark Fashehccd979b2005-12-15 14:31:24 -08001455 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
1456 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
1457 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
1458 osb->max_slots);
1459 status = -EINVAL;
1460 goto bail;
1461 }
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001462 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
Mark Fashehccd979b2005-12-15 14:31:24 -08001463
Sunil Mushran539d8262008-07-14 17:31:10 -07001464 osb->slot_recovery_generations =
1465 kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
1466 GFP_KERNEL);
1467 if (!osb->slot_recovery_generations) {
1468 status = -ENOMEM;
1469 mlog_errno(status);
1470 goto bail;
1471 }
1472
Mark Fashehb4df6ed2006-02-22 17:35:08 -08001473 init_waitqueue_head(&osb->osb_wipe_event);
1474 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
1475 sizeof(*osb->osb_orphan_wipes),
1476 GFP_KERNEL);
1477 if (!osb->osb_orphan_wipes) {
1478 status = -ENOMEM;
1479 mlog_errno(status);
1480 goto bail;
1481 }
1482
Mark Fashehccd979b2005-12-15 14:31:24 -08001483 osb->s_feature_compat =
1484 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
1485 osb->s_feature_ro_compat =
1486 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
1487 osb->s_feature_incompat =
1488 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
1489
1490 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
1491 mlog(ML_ERROR, "couldn't mount because of unsupported "
1492 "optional features (%x).\n", i);
1493 status = -EINVAL;
1494 goto bail;
1495 }
1496 if (!(osb->sb->s_flags & MS_RDONLY) &&
1497 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
1498 mlog(ML_ERROR, "couldn't mount RDWR because of "
1499 "unsupported optional features (%x).\n", i);
1500 status = -EINVAL;
1501 goto bail;
1502 }
1503
Joel Beckerb61817e2008-02-01 15:08:23 -08001504 if (ocfs2_userspace_stack(osb)) {
1505 memcpy(osb->osb_cluster_stack,
1506 OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
1507 OCFS2_STACK_LABEL_LEN);
1508 osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
1509 if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
1510 mlog(ML_ERROR,
1511 "couldn't mount because of an invalid "
1512 "cluster stack label (%s) \n",
1513 osb->osb_cluster_stack);
1514 status = -EINVAL;
1515 goto bail;
1516 }
1517 } else {
1518 /* The empty string is identical with classic tools that
1519 * don't know about s_cluster_info. */
1520 osb->osb_cluster_stack[0] = '\0';
1521 }
1522
Mark Fashehccd979b2005-12-15 14:31:24 -08001523 get_random_bytes(&osb->s_next_generation, sizeof(u32));
1524
1525 /* FIXME
1526 * This should be done in ocfs2_journal_init(), but unknown
1527 * ordering issues will cause the filesystem to crash.
1528 * If anyone wants to figure out what part of the code
1529 * refers to osb->journal before ocfs2_journal_init() is run,
1530 * be my guest.
1531 */
1532 /* initialize our journal structure */
1533
Robert P. J. Daycd861282006-12-13 00:34:52 -08001534 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001535 if (!journal) {
1536 mlog(ML_ERROR, "unable to alloc journal\n");
1537 status = -ENOMEM;
1538 goto bail;
1539 }
1540 osb->journal = journal;
1541 journal->j_osb = osb;
1542
1543 atomic_set(&journal->j_num_trans, 0);
1544 init_rwsem(&journal->j_trans_barrier);
1545 init_waitqueue_head(&journal->j_checkpointed);
1546 spin_lock_init(&journal->j_lock);
1547 journal->j_trans_id = (unsigned long) 1;
1548 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00001549 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08001550 journal->j_state = OCFS2_JOURNAL_FREE;
1551
1552 /* get some pseudo constants for clustersize bits */
1553 osb->s_clustersize_bits =
1554 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
1555 osb->s_clustersize = 1 << osb->s_clustersize_bits;
1556 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
1557
1558 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
1559 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
1560 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
1561 osb->s_clustersize);
1562 status = -EINVAL;
1563 goto bail;
1564 }
1565
1566 if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1)
1567 > (u32)~0UL) {
1568 mlog(ML_ERROR, "Volume might try to write to blocks beyond "
1569 "what jbd can address in 32 bits.\n");
1570 status = -EINVAL;
1571 goto bail;
1572 }
1573
1574 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
1575 sizeof(di->id2.i_super.s_uuid))) {
1576 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
1577 status = -ENOMEM;
1578 goto bail;
1579 }
1580
Mark Fasheh78427042006-05-04 12:03:26 -07001581 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08001582
1583 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
1584 osb->vol_label[63] = '\0';
1585 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
1586 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
1587 osb->first_cluster_group_blkno =
1588 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
1589 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001590 osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
Mark Fashehccd979b2005-12-15 14:31:24 -08001591 mlog(0, "vol_label: %s\n", osb->vol_label);
1592 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb06970532006-03-03 10:24:33 -08001593 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
1594 (unsigned long long)osb->root_blkno,
1595 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001596
1597 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
1598 if (!osb->osb_dlm_debug) {
1599 status = -ENOMEM;
1600 mlog_errno(status);
1601 goto bail;
1602 }
1603
1604 atomic_set(&osb->vol_state, VOLUME_INIT);
1605
1606 /* load root, system_dir, and all global system inodes */
1607 status = ocfs2_init_global_system_inodes(osb);
1608 if (status < 0) {
1609 mlog_errno(status);
1610 goto bail;
1611 }
1612
1613 /*
1614 * global bitmap
1615 */
1616 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
1617 OCFS2_INVALID_SLOT);
1618 if (!inode) {
1619 status = -EINVAL;
1620 mlog_errno(status);
1621 goto bail;
1622 }
1623
1624 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08001625 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001626
Tao Mae9d578a2007-12-18 15:46:10 +08001627 osb->bitmap_cpg = ocfs2_group_bitmap_size(sb) * 8;
Mark Fashehccd979b2005-12-15 14:31:24 -08001628
1629 status = ocfs2_init_slot_info(osb);
1630 if (status < 0) {
1631 mlog_errno(status);
1632 goto bail;
1633 }
1634
Mark Fashehccd979b2005-12-15 14:31:24 -08001635bail:
1636 mlog_exit(status);
1637 return status;
1638}
1639
1640/*
1641 * will return: -EAGAIN if it is ok to keep searching for superblocks
1642 * -EINVAL if there is a bad superblock
1643 * 0 on success
1644 */
1645static int ocfs2_verify_volume(struct ocfs2_dinode *di,
1646 struct buffer_head *bh,
1647 u32 blksz)
1648{
1649 int status = -EAGAIN;
1650
1651 mlog_entry_void();
1652
1653 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
1654 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
1655 status = -EINVAL;
1656 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
1657 mlog(ML_ERROR, "found superblock with incorrect block "
1658 "size: found %u, should be %u\n",
1659 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
1660 blksz);
1661 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
1662 OCFS2_MAJOR_REV_LEVEL ||
1663 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
1664 OCFS2_MINOR_REV_LEVEL) {
1665 mlog(ML_ERROR, "found superblock with bad version: "
1666 "found %u.%u, should be %u.%u\n",
1667 le16_to_cpu(di->id2.i_super.s_major_rev_level),
1668 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
1669 OCFS2_MAJOR_REV_LEVEL,
1670 OCFS2_MINOR_REV_LEVEL);
1671 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
1672 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb06970532006-03-03 10:24:33 -08001673 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07001674 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb06970532006-03-03 10:24:33 -08001675 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001676 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
1677 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
1678 mlog(ML_ERROR, "bad cluster size found: %u\n",
1679 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
1680 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
1681 mlog(ML_ERROR, "bad root_blkno: 0\n");
1682 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
1683 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
1684 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
1685 mlog(ML_ERROR,
1686 "Superblock slots found greater than file system "
1687 "maximum: found %u, max %u\n",
1688 le16_to_cpu(di->id2.i_super.s_max_slots),
1689 OCFS2_MAX_SLOTS);
1690 } else {
1691 /* found it! */
1692 status = 0;
1693 }
1694 }
1695
1696 mlog_exit(status);
1697 return status;
1698}
1699
1700static int ocfs2_check_volume(struct ocfs2_super *osb)
1701{
Denis Chengbddb8eb32007-09-27 02:10:04 +08001702 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001703 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001704 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08001705 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
1706 * recover
1707 * ourselves. */
1708
1709 mlog_entry_void();
1710
1711 /* Init our journal object. */
1712 status = ocfs2_journal_init(osb->journal, &dirty);
1713 if (status < 0) {
1714 mlog(ML_ERROR, "Could not initialize journal!\n");
1715 goto finally;
1716 }
1717
1718 /* If the journal was unmounted cleanly then we don't want to
1719 * recover anything. Otherwise, journal_load will do that
1720 * dirty work for us :) */
1721 if (!dirty) {
1722 status = ocfs2_journal_wipe(osb->journal, 0);
1723 if (status < 0) {
1724 mlog_errno(status);
1725 goto finally;
1726 }
1727 } else {
1728 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
1729 "recovering volume.\n");
1730 }
1731
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001732 local = ocfs2_mount_local(osb);
1733
Mark Fashehccd979b2005-12-15 14:31:24 -08001734 /* will play back anything left in the journal. */
Sunil Mushran539d8262008-07-14 17:31:10 -07001735 status = ocfs2_journal_load(osb->journal, local, dirty);
Wengang Wang01af4822008-06-10 14:24:48 +08001736 if (status < 0) {
1737 mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
1738 goto finally;
1739 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001740
1741 if (dirty) {
1742 /* recover my local alloc if we didn't unmount cleanly. */
1743 status = ocfs2_begin_local_alloc_recovery(osb,
1744 osb->slot_num,
1745 &local_alloc);
1746 if (status < 0) {
1747 mlog_errno(status);
1748 goto finally;
1749 }
1750 /* we complete the recovery process after we've marked
1751 * ourselves as mounted. */
1752 }
1753
1754 mlog(0, "Journal loaded.\n");
1755
1756 status = ocfs2_load_local_alloc(osb);
1757 if (status < 0) {
1758 mlog_errno(status);
1759 goto finally;
1760 }
1761
1762 if (dirty) {
1763 /* Recovery will be completed after we've mounted the
1764 * rest of the volume. */
1765 osb->dirty = 1;
1766 osb->local_alloc_copy = local_alloc;
1767 local_alloc = NULL;
1768 }
1769
1770 /* go through each journal, trylock it and if you get the
1771 * lock, and it's marked as dirty, set the bit in the recover
1772 * map and launch a recovery thread for it. */
1773 status = ocfs2_mark_dead_nodes(osb);
1774 if (status < 0)
1775 mlog_errno(status);
1776
1777finally:
1778 if (local_alloc)
1779 kfree(local_alloc);
1780
1781 mlog_exit(status);
1782 return status;
1783}
1784
1785/*
1786 * The routine gets called from dismount or close whenever a dismount on
1787 * volume is requested and the osb open count becomes 1.
1788 * It will remove the osb from the global list and also free up all the
1789 * initialized resources and fileobject.
1790 */
1791static void ocfs2_delete_osb(struct ocfs2_super *osb)
1792{
1793 mlog_entry_void();
1794
1795 /* This function assumes that the caller has the main osb resource */
1796
Mark Fasheh8e8a4602008-02-01 11:59:09 -08001797 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001798
Mark Fashehb4df6ed2006-02-22 17:35:08 -08001799 kfree(osb->osb_orphan_wipes);
Sunil Mushran539d8262008-07-14 17:31:10 -07001800 kfree(osb->slot_recovery_generations);
Mark Fashehccd979b2005-12-15 14:31:24 -08001801 /* FIXME
1802 * This belongs in journal shutdown, but because we have to
1803 * allocate osb->journal at the start of ocfs2_initalize_osb(),
1804 * we free it here.
1805 */
1806 kfree(osb->journal);
1807 if (osb->local_alloc_copy)
1808 kfree(osb->local_alloc_copy);
1809 kfree(osb->uuid_str);
1810 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
1811 memset(osb, 0, sizeof(struct ocfs2_super));
1812
1813 mlog_exit_void();
1814}
1815
1816/* Put OCFS2 into a readonly state, or (if the user specifies it),
1817 * panic(). We do not support continue-on-error operation. */
1818static void ocfs2_handle_error(struct super_block *sb)
1819{
1820 struct ocfs2_super *osb = OCFS2_SB(sb);
1821
1822 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
1823 panic("OCFS2: (device %s): panic forced after error\n",
1824 sb->s_id);
1825
1826 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
1827
1828 if (sb->s_flags & MS_RDONLY &&
1829 (ocfs2_is_soft_readonly(osb) ||
1830 ocfs2_is_hard_readonly(osb)))
1831 return;
1832
1833 printk(KERN_CRIT "File system is now read-only due to the potential "
1834 "of on-disk corruption. Please run fsck.ocfs2 once the file "
1835 "system is unmounted.\n");
1836 sb->s_flags |= MS_RDONLY;
1837 ocfs2_set_ro_flag(osb, 0);
1838}
1839
1840static char error_buf[1024];
1841
1842void __ocfs2_error(struct super_block *sb,
1843 const char *function,
1844 const char *fmt, ...)
1845{
1846 va_list args;
1847
1848 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08001849 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08001850 va_end(args);
1851
1852 /* Not using mlog here because we want to show the actual
1853 * function the error came from. */
1854 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
1855 sb->s_id, function, error_buf);
1856
1857 ocfs2_handle_error(sb);
1858}
1859
1860/* Handle critical errors. This is intentionally more drastic than
1861 * ocfs2_handle_error, so we only use for things like journal errors,
1862 * etc. */
1863void __ocfs2_abort(struct super_block* sb,
1864 const char *function,
1865 const char *fmt, ...)
1866{
1867 va_list args;
1868
1869 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08001870 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08001871 va_end(args);
1872
1873 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
1874 sb->s_id, function, error_buf);
1875
1876 /* We don't have the cluster support yet to go straight to
1877 * hard readonly in here. Until then, we want to keep
1878 * ocfs2_abort() so that we can at least mark critical
1879 * errors.
1880 *
1881 * TODO: This should abort the journal and alert other nodes
1882 * that our slot needs recovery. */
1883
1884 /* Force a panic(). This stinks, but it's better than letting
1885 * things continue without having a proper hard readonly
1886 * here. */
1887 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
1888 ocfs2_handle_error(sb);
1889}
1890
1891module_init(ocfs2_init);
1892module_exit(ocfs2_exit);