blob: 7708df36e22392b6a9bc7c97bf34c9bdfb7d5e30 [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>
Mark Fashehccd979b2005-12-15 14:31:24 -080043
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 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{
86 unsigned long mount_opt;
87 unsigned int atime_quantum;
88 signed short slot;
89};
90
Mark Fashehccd979b2005-12-15 14:31:24 -080091static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +080092 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -070093 int is_remount);
Sunil Mushrand5500712007-09-06 13:34:16 -070094static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -080095static void ocfs2_put_super(struct super_block *sb);
96static int ocfs2_mount_volume(struct super_block *sb);
97static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
98static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
99static int ocfs2_initialize_mem_caches(void);
100static void ocfs2_free_mem_caches(void);
101static void ocfs2_delete_osb(struct ocfs2_super *osb);
102
David Howells726c3342006-06-23 02:02:58 -0700103static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800104
105static int ocfs2_sync_fs(struct super_block *sb, int wait);
106
107static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
108static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800109static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800110static int ocfs2_fill_local_node_info(struct ocfs2_super *osb);
111static int ocfs2_check_volume(struct ocfs2_super *osb);
112static int ocfs2_verify_volume(struct ocfs2_dinode *di,
113 struct buffer_head *bh,
114 u32 sectsize);
115static int ocfs2_initialize_super(struct super_block *sb,
116 struct buffer_head *bh,
117 int sector_size);
118static int ocfs2_get_sector(struct super_block *sb,
119 struct buffer_head **bh,
120 int block,
121 int sect_size);
122static void ocfs2_write_super(struct super_block *sb);
123static struct inode *ocfs2_alloc_inode(struct super_block *sb);
124static void ocfs2_destroy_inode(struct inode *inode);
125
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800126static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800127 .statfs = ocfs2_statfs,
128 .alloc_inode = ocfs2_alloc_inode,
129 .destroy_inode = ocfs2_destroy_inode,
130 .drop_inode = ocfs2_drop_inode,
131 .clear_inode = ocfs2_clear_inode,
132 .delete_inode = ocfs2_delete_inode,
133 .sync_fs = ocfs2_sync_fs,
134 .write_super = ocfs2_write_super,
135 .put_super = ocfs2_put_super,
136 .remount_fs = ocfs2_remount,
Sunil Mushrand5500712007-09-06 13:34:16 -0700137 .show_options = ocfs2_show_options,
Mark Fashehccd979b2005-12-15 14:31:24 -0800138};
139
140enum {
141 Opt_barrier,
142 Opt_err_panic,
143 Opt_err_ro,
144 Opt_intr,
145 Opt_nointr,
146 Opt_hb_none,
147 Opt_hb_local,
148 Opt_data_ordered,
149 Opt_data_writeback,
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800150 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700151 Opt_slot,
Mark Fashehccd979b2005-12-15 14:31:24 -0800152 Opt_err,
153};
154
155static match_table_t tokens = {
156 {Opt_barrier, "barrier=%u"},
157 {Opt_err_panic, "errors=panic"},
158 {Opt_err_ro, "errors=remount-ro"},
159 {Opt_intr, "intr"},
160 {Opt_nointr, "nointr"},
161 {Opt_hb_none, OCFS2_HB_NONE},
162 {Opt_hb_local, OCFS2_HB_LOCAL},
163 {Opt_data_ordered, "data=ordered"},
164 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800165 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700166 {Opt_slot, "preferred_slot=%u"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800167 {Opt_err, NULL}
168};
169
170/*
171 * write_super and sync_fs ripped right out of ext3.
172 */
173static void ocfs2_write_super(struct super_block *sb)
174{
Ingo Molnar7892f2f2006-01-09 15:59:25 -0800175 if (mutex_trylock(&sb->s_lock) != 0)
Mark Fashehccd979b2005-12-15 14:31:24 -0800176 BUG();
177 sb->s_dirt = 0;
178}
179
180static int ocfs2_sync_fs(struct super_block *sb, int wait)
181{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800182 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800183 tid_t target;
184 struct ocfs2_super *osb = OCFS2_SB(sb);
185
186 sb->s_dirt = 0;
187
188 if (ocfs2_is_hard_readonly(osb))
189 return -EROFS;
190
191 if (wait) {
192 status = ocfs2_flush_truncate_log(osb);
193 if (status < 0)
194 mlog_errno(status);
195 } else {
196 ocfs2_schedule_truncate_log_flush(osb, 0);
197 }
198
199 if (journal_start_commit(OCFS2_SB(sb)->journal->j_journal, &target)) {
200 if (wait)
201 log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
202 target);
203 }
204 return 0;
205}
206
207static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
208{
209 struct inode *new = NULL;
210 int status = 0;
211 int i;
212
213 mlog_entry_void();
214
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700215 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800216 if (IS_ERR(new)) {
217 status = PTR_ERR(new);
218 mlog_errno(status);
219 goto bail;
220 }
221 osb->root_inode = new;
222
Mark Fasheh24c19ef2006-09-22 17:28:19 -0700223 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE);
Mark Fashehccd979b2005-12-15 14:31:24 -0800224 if (IS_ERR(new)) {
225 status = PTR_ERR(new);
226 mlog_errno(status);
227 goto bail;
228 }
229 osb->sys_root_inode = new;
230
231 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
232 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
233 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
234 if (!new) {
235 ocfs2_release_system_inodes(osb);
236 status = -EINVAL;
237 mlog_errno(status);
238 /* FIXME: Should ERROR_RO_FS */
239 mlog(ML_ERROR, "Unable to load system inode %d, "
240 "possibly corrupt fs?", i);
241 goto bail;
242 }
243 // the array now has one ref, so drop this one
244 iput(new);
245 }
246
247bail:
248 mlog_exit(status);
249 return status;
250}
251
252static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
253{
254 struct inode *new = NULL;
255 int status = 0;
256 int i;
257
258 mlog_entry_void();
259
260 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
261 i < NUM_SYSTEM_INODES;
262 i++) {
263 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
264 if (!new) {
265 ocfs2_release_system_inodes(osb);
266 status = -EINVAL;
267 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
268 status, i, osb->slot_num);
269 goto bail;
270 }
271 /* the array now has one ref, so drop this one */
272 iput(new);
273 }
274
275bail:
276 mlog_exit(status);
277 return status;
278}
279
Denis Chengbddb8eb32007-09-27 02:10:04 +0800280static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800281{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800282 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800283 struct inode *inode;
284
285 mlog_entry_void();
286
287 for (i = 0; i < NUM_SYSTEM_INODES; i++) {
288 inode = osb->system_inodes[i];
289 if (inode) {
290 iput(inode);
291 osb->system_inodes[i] = NULL;
292 }
293 }
294
295 inode = osb->sys_root_inode;
296 if (inode) {
297 iput(inode);
298 osb->sys_root_inode = NULL;
299 }
300
301 inode = osb->root_inode;
302 if (inode) {
303 iput(inode);
304 osb->root_inode = NULL;
305 }
306
Denis Chengbddb8eb32007-09-27 02:10:04 +0800307 mlog_exit(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800308}
309
310/* We're allocating fs objects, use GFP_NOFS */
311static struct inode *ocfs2_alloc_inode(struct super_block *sb)
312{
313 struct ocfs2_inode_info *oi;
314
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800315 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800316 if (!oi)
317 return NULL;
318
319 return &oi->vfs_inode;
320}
321
322static void ocfs2_destroy_inode(struct inode *inode)
323{
324 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
325}
326
Mark Fasheh5a254032007-07-20 12:56:16 -0700327static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
328 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800329{
Mark Fasheh5a254032007-07-20 12:56:16 -0700330 unsigned int bytes = 1 << cbits;
331 unsigned int trim = bytes;
332 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800333
Mark Fasheh5a254032007-07-20 12:56:16 -0700334 /*
335 * i_size and all block offsets in ocfs2 are always 64 bits
336 * wide. i_clusters is 32 bits, in cluster-sized units. So on
337 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800338 */
339
340#if BITS_PER_LONG == 32
341# if defined(CONFIG_LBD)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700342 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700343 /*
344 * We might be limited by page cache size.
345 */
346 if (bytes > PAGE_CACHE_SIZE) {
347 bytes = PAGE_CACHE_SIZE;
348 trim = 1;
349 /*
350 * Shift by 31 here so that we don't get larger than
351 * MAX_LFS_FILESIZE
352 */
353 bitshift = 31;
354 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800355# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700356 /*
357 * We are limited by the size of sector_t. Use block size, as
358 * that's what we expose to the VFS.
359 */
360 bytes = 1 << bbits;
361 trim = 1;
362 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800363# endif
364#endif
365
Mark Fasheh5a254032007-07-20 12:56:16 -0700366 /*
367 * Trim by a whole cluster when we can actually approach the
368 * on-disk limits. Otherwise we can overflow i_clusters when
369 * an extent start is at the max offset.
370 */
371 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800372}
373
374static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
375{
376 int incompat_features;
377 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800378 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800379 struct ocfs2_super *osb = OCFS2_SB(sb);
380
Tiger Yangc0123ad2007-09-08 00:16:10 +0800381 if (!ocfs2_parse_options(sb, data, &parsed_options, 1)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800382 ret = -EINVAL;
383 goto out;
384 }
385
386 if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800387 (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800388 ret = -EINVAL;
389 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
390 goto out;
391 }
392
393 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800394 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800395 ret = -EINVAL;
396 mlog(ML_ERROR, "Cannot change data mode on remount\n");
397 goto out;
398 }
399
400 /* We're going to/from readonly mode. */
401 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
402 /* Lock here so the check of HARD_RO and the potential
403 * setting of SOFT_RO is atomic. */
404 spin_lock(&osb->osb_lock);
405 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
406 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
407 ret = -EROFS;
408 goto unlock_osb;
409 }
410
411 if (*flags & MS_RDONLY) {
412 mlog(0, "Going to ro mode.\n");
413 sb->s_flags |= MS_RDONLY;
414 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
415 } else {
416 mlog(0, "Making ro filesystem writeable.\n");
417
418 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
419 mlog(ML_ERROR, "Cannot remount RDWR "
420 "filesystem due to previous errors.\n");
421 ret = -EROFS;
422 goto unlock_osb;
423 }
424 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
425 if (incompat_features) {
426 mlog(ML_ERROR, "Cannot remount RDWR because "
427 "of unsupported optional features "
428 "(%x).\n", incompat_features);
429 ret = -EINVAL;
430 goto unlock_osb;
431 }
432 sb->s_flags &= ~MS_RDONLY;
433 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
434 }
435unlock_osb:
436 spin_unlock(&osb->osb_lock);
437 }
438
439 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800440 /* Only save off the new mount options in case of a successful
441 * remount. */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800442 osb->s_mount_opt = parsed_options.mount_opt;
443 osb->s_atime_quantum = parsed_options.atime_quantum;
444 osb->preferred_slot = parsed_options.slot;
Mark Fashehe001e792007-11-07 14:21:45 -0800445
446 if (!ocfs2_is_hard_readonly(osb))
447 ocfs2_set_journal_params(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800448 }
449out:
450 return ret;
451}
452
453static int ocfs2_sb_probe(struct super_block *sb,
454 struct buffer_head **bh,
455 int *sector_size)
456{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800457 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800458 struct ocfs1_vol_disk_hdr *hdr;
459 struct ocfs2_dinode *di;
460 int blksize;
461
462 *bh = NULL;
463
464 /* may be > 512 */
465 *sector_size = bdev_hardsect_size(sb->s_bdev);
466 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
467 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
468 *sector_size, OCFS2_MAX_BLOCKSIZE);
469 status = -EINVAL;
470 goto bail;
471 }
472
473 /* Can this really happen? */
474 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
475 *sector_size = OCFS2_MIN_BLOCKSIZE;
476
477 /* check block zero for old format */
478 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
479 if (status < 0) {
480 mlog_errno(status);
481 goto bail;
482 }
483 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
484 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
485 mlog(ML_ERROR, "incompatible version: %u.%u\n",
486 hdr->major_version, hdr->minor_version);
487 status = -EINVAL;
488 }
489 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
490 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
491 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
492 hdr->signature);
493 status = -EINVAL;
494 }
495 brelse(*bh);
496 *bh = NULL;
497 if (status < 0) {
498 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
499 "upgraded before mounting with ocfs v2\n");
500 goto bail;
501 }
502
503 /*
504 * Now check at magic offset for 512, 1024, 2048, 4096
505 * blocksizes. 4096 is the maximum blocksize because it is
506 * the minimum clustersize.
507 */
508 status = -EINVAL;
509 for (blksize = *sector_size;
510 blksize <= OCFS2_MAX_BLOCKSIZE;
511 blksize <<= 1) {
512 tmpstat = ocfs2_get_sector(sb, bh,
513 OCFS2_SUPER_BLOCK_BLKNO,
514 blksize);
515 if (tmpstat < 0) {
516 status = tmpstat;
517 mlog_errno(status);
518 goto bail;
519 }
520 di = (struct ocfs2_dinode *) (*bh)->b_data;
521 status = ocfs2_verify_volume(di, *bh, blksize);
522 if (status >= 0)
523 goto bail;
524 brelse(*bh);
525 *bh = NULL;
526 if (status != -EAGAIN)
527 break;
528 }
529
530bail:
531 return status;
532}
533
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800534static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
535{
536 if (ocfs2_mount_local(osb)) {
537 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
538 mlog(ML_ERROR, "Cannot heartbeat on a locally "
539 "mounted device.\n");
540 return -EINVAL;
541 }
542 }
543
544 if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
545 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb)) {
546 mlog(ML_ERROR, "Heartbeat has to be started to mount "
547 "a read-write clustered device.\n");
548 return -EINVAL;
549 }
550 }
551
552 return 0;
553}
554
Mark Fashehccd979b2005-12-15 14:31:24 -0800555static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
556{
557 struct dentry *root;
558 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800559 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800560 struct inode *inode = NULL;
561 struct ocfs2_super *osb = NULL;
562 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800563 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -0800564
565 mlog_entry("%p, %p, %i", sb, data, silent);
566
Tiger Yangc0123ad2007-09-08 00:16:10 +0800567 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800568 status = -EINVAL;
569 goto read_super_error;
570 }
571
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800572 /* for now we only have one cluster/node, make sure we see it
573 * in the heartbeat universe */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800574 if (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800575 if (!o2hb_check_local_node_heartbeating()) {
576 status = -EINVAL;
577 goto read_super_error;
578 }
579 }
580
Mark Fashehccd979b2005-12-15 14:31:24 -0800581 /* probe for superblock */
582 status = ocfs2_sb_probe(sb, &bh, &sector_size);
583 if (status < 0) {
584 mlog(ML_ERROR, "superblock probe failed!\n");
585 goto read_super_error;
586 }
587
588 status = ocfs2_initialize_super(sb, bh, sector_size);
589 osb = OCFS2_SB(sb);
590 if (status < 0) {
591 mlog_errno(status);
592 goto read_super_error;
593 }
594 brelse(bh);
595 bh = NULL;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800596 osb->s_mount_opt = parsed_options.mount_opt;
597 osb->s_atime_quantum = parsed_options.atime_quantum;
598 osb->preferred_slot = parsed_options.slot;
Mark Fashehccd979b2005-12-15 14:31:24 -0800599
600 sb->s_magic = OCFS2_SUPER_MAGIC;
601
602 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
603 * heartbeat=none */
604 if (bdev_read_only(sb->s_bdev)) {
605 if (!(sb->s_flags & MS_RDONLY)) {
606 status = -EACCES;
607 mlog(ML_ERROR, "Readonly device detected but readonly "
608 "mount was not specified.\n");
609 goto read_super_error;
610 }
611
612 /* You should not be able to start a local heartbeat
613 * on a readonly device. */
614 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
615 status = -EROFS;
616 mlog(ML_ERROR, "Local heartbeat specified on readonly "
617 "device.\n");
618 goto read_super_error;
619 }
620
621 status = ocfs2_check_journals_nolocks(osb);
622 if (status < 0) {
623 if (status == -EROFS)
624 mlog(ML_ERROR, "Recovery required on readonly "
625 "file system, but write access is "
626 "unavailable.\n");
627 else
628 mlog_errno(status);
629 goto read_super_error;
630 }
631
632 ocfs2_set_ro_flag(osb, 1);
633
634 printk(KERN_NOTICE "Readonly device detected. No cluster "
635 "services will be utilized for this mount. Recovery "
636 "will be skipped.\n");
637 }
638
639 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800640 if (sb->s_flags & MS_RDONLY)
641 ocfs2_set_ro_flag(osb, 0);
642 }
643
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800644 status = ocfs2_verify_heartbeat(osb);
645 if (status < 0) {
646 mlog_errno(status);
647 goto read_super_error;
648 }
649
Mark Fashehccd979b2005-12-15 14:31:24 -0800650 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
651 ocfs2_debugfs_root);
652 if (!osb->osb_debug_root) {
653 status = -EINVAL;
654 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
655 goto read_super_error;
656 }
657
658 status = ocfs2_mount_volume(sb);
659 if (osb->root_inode)
660 inode = igrab(osb->root_inode);
661
662 if (status < 0)
663 goto read_super_error;
664
665 if (!inode) {
666 status = -EIO;
667 mlog_errno(status);
668 goto read_super_error;
669 }
670
671 root = d_alloc_root(inode);
672 if (!root) {
673 status = -ENOMEM;
674 mlog_errno(status);
675 goto read_super_error;
676 }
677
678 sb->s_root = root;
679
680 ocfs2_complete_mount_recovery(osb);
681
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800682 if (ocfs2_mount_local(osb))
683 snprintf(nodestr, sizeof(nodestr), "local");
684 else
685 snprintf(nodestr, sizeof(nodestr), "%d", osb->node_num);
686
687 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -0700688 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800689 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -0800690 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
691 "ordered");
692
693 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
694 wake_up(&osb->osb_mount_event);
695
696 mlog_exit(status);
697 return status;
698
699read_super_error:
700 if (bh != NULL)
701 brelse(bh);
702
703 if (inode)
704 iput(inode);
705
706 if (osb) {
707 atomic_set(&osb->vol_state, VOLUME_DISABLED);
708 wake_up(&osb->osb_mount_event);
709 ocfs2_dismount_volume(sb, 1);
710 }
711
712 mlog_exit(status);
713 return status;
714}
715
David Howells454e2392006-06-23 02:02:57 -0700716static int ocfs2_get_sb(struct file_system_type *fs_type,
717 int flags,
718 const char *dev_name,
719 void *data,
720 struct vfsmount *mnt)
Mark Fashehccd979b2005-12-15 14:31:24 -0800721{
David Howells454e2392006-06-23 02:02:57 -0700722 return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
723 mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800724}
725
726static struct file_system_type ocfs2_fs_type = {
727 .owner = THIS_MODULE,
728 .name = "ocfs2",
729 .get_sb = ocfs2_get_sb, /* is this called when we mount
730 * the fs? */
731 .kill_sb = kill_block_super, /* set to the generic one
732 * right now, but do we
733 * need to change that? */
Mark Fasheh1ba9da22006-09-08 14:22:54 -0700734 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -0800735 .next = NULL
736};
737
738static int ocfs2_parse_options(struct super_block *sb,
739 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800740 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -0800741 int is_remount)
742{
743 int status;
744 char *p;
745
746 mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
747 options ? options : "(none)");
748
Tiger Yangc0123ad2007-09-08 00:16:10 +0800749 mopt->mount_opt = 0;
750 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
751 mopt->slot = OCFS2_INVALID_SLOT;
Mark Fashehccd979b2005-12-15 14:31:24 -0800752
753 if (!options) {
754 status = 1;
755 goto bail;
756 }
757
758 while ((p = strsep(&options, ",")) != NULL) {
759 int token, option;
760 substring_t args[MAX_OPT_ARGS];
761
762 if (!*p)
763 continue;
764
765 token = match_token(p, tokens, args);
766 switch (token) {
767 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800768 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800769 break;
770 case Opt_hb_none:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800771 mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800772 break;
773 case Opt_barrier:
774 if (match_int(&args[0], &option)) {
775 status = 0;
776 goto bail;
777 }
778 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +0800779 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -0800780 else
Tiger Yangc0123ad2007-09-08 00:16:10 +0800781 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -0800782 break;
783 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800784 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -0800785 break;
786 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800787 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -0800788 break;
789 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800790 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -0800791 break;
792 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800793 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -0800794 break;
795 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800796 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -0800797 break;
798 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +0800799 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -0800800 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800801 case Opt_atime_quantum:
802 if (match_int(&args[0], &option)) {
803 status = 0;
804 goto bail;
805 }
806 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +0800807 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800808 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -0700809 case Opt_slot:
810 option = 0;
811 if (match_int(&args[0], &option)) {
812 status = 0;
813 goto bail;
814 }
815 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +0800816 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -0700817 break;
Mark Fashehccd979b2005-12-15 14:31:24 -0800818 default:
819 mlog(ML_ERROR,
820 "Unrecognized mount option \"%s\" "
821 "or missing value\n", p);
822 status = 0;
823 goto bail;
824 }
825 }
826
827 status = 1;
828
829bail:
830 mlog_exit(status);
831 return status;
832}
833
Sunil Mushrand5500712007-09-06 13:34:16 -0700834static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
835{
836 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
837 unsigned long opts = osb->s_mount_opt;
838
839 if (opts & OCFS2_MOUNT_HB_LOCAL)
840 seq_printf(s, ",_netdev,heartbeat=local");
841 else
842 seq_printf(s, ",heartbeat=none");
843
844 if (opts & OCFS2_MOUNT_NOINTR)
845 seq_printf(s, ",nointr");
846
847 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
848 seq_printf(s, ",data=writeback");
849 else
850 seq_printf(s, ",data=ordered");
851
852 if (opts & OCFS2_MOUNT_BARRIER)
853 seq_printf(s, ",barrier=1");
854
855 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
856 seq_printf(s, ",errors=panic");
857 else
858 seq_printf(s, ",errors=remount-ro");
859
860 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
861 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
862
863 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
864 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
865
866 return 0;
867}
868
Mark Fashehccd979b2005-12-15 14:31:24 -0800869static int __init ocfs2_init(void)
870{
871 int status;
872
873 mlog_entry_void();
874
875 ocfs2_print_version();
876
Mark Fashehccd979b2005-12-15 14:31:24 -0800877 status = init_ocfs2_uptodate_cache();
878 if (status < 0) {
879 mlog_errno(status);
880 goto leave;
881 }
882
883 status = ocfs2_initialize_mem_caches();
884 if (status < 0) {
885 mlog_errno(status);
886 goto leave;
887 }
888
889 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
890 if (!ocfs2_wq) {
891 status = -ENOMEM;
892 goto leave;
893 }
894
Mark Fashehccd979b2005-12-15 14:31:24 -0800895 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
896 if (!ocfs2_debugfs_root) {
897 status = -EFAULT;
898 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
899 }
900
901leave:
902 if (status < 0) {
903 ocfs2_free_mem_caches();
904 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -0800905 }
906
907 mlog_exit(status);
908
909 if (status >= 0) {
910 return register_filesystem(&ocfs2_fs_type);
911 } else
912 return -1;
913}
914
915static void __exit ocfs2_exit(void)
916{
917 mlog_entry_void();
918
919 if (ocfs2_wq) {
920 flush_workqueue(ocfs2_wq);
921 destroy_workqueue(ocfs2_wq);
922 }
923
924 debugfs_remove(ocfs2_debugfs_root);
925
926 ocfs2_free_mem_caches();
927
928 unregister_filesystem(&ocfs2_fs_type);
929
Mark Fashehccd979b2005-12-15 14:31:24 -0800930 exit_ocfs2_uptodate_cache();
931
932 mlog_exit_void();
933}
934
935static void ocfs2_put_super(struct super_block *sb)
936{
937 mlog_entry("(0x%p)\n", sb);
938
939 ocfs2_sync_blockdev(sb);
940 ocfs2_dismount_volume(sb, 0);
941
942 mlog_exit_void();
943}
944
David Howells726c3342006-06-23 02:02:58 -0700945static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -0800946{
947 struct ocfs2_super *osb;
948 u32 numbits, freebits;
949 int status;
950 struct ocfs2_dinode *bm_lock;
951 struct buffer_head *bh = NULL;
952 struct inode *inode = NULL;
953
David Howells726c3342006-06-23 02:02:58 -0700954 mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800955
David Howells726c3342006-06-23 02:02:58 -0700956 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800957
958 inode = ocfs2_get_system_file_inode(osb,
959 GLOBAL_BITMAP_SYSTEM_INODE,
960 OCFS2_INVALID_SLOT);
961 if (!inode) {
962 mlog(ML_ERROR, "failed to get bitmap inode\n");
963 status = -EIO;
964 goto bail;
965 }
966
Mark Fashehe63aecb62007-10-18 15:30:42 -0700967 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800968 if (status < 0) {
969 mlog_errno(status);
970 goto bail;
971 }
972
973 bm_lock = (struct ocfs2_dinode *) bh->b_data;
974
975 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
976 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
977
978 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -0700979 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -0800980 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
981 buf->f_blocks = ((sector_t) numbits) *
982 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
983 buf->f_bfree = ((sector_t) freebits) *
984 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
985 buf->f_bavail = buf->f_bfree;
986 buf->f_files = numbits;
987 buf->f_ffree = freebits;
988
989 brelse(bh);
990
Mark Fashehe63aecb62007-10-18 15:30:42 -0700991 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800992 status = 0;
993bail:
994 if (inode)
995 iput(inode);
996
997 mlog_exit(status);
998
999 return status;
1000}
1001
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001002static void ocfs2_inode_init_once(struct kmem_cache *cachep, void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001003{
1004 struct ocfs2_inode_info *oi = data;
1005
Christoph Lametera35afb82007-05-16 22:10:57 -07001006 oi->ip_flags = 0;
1007 oi->ip_open_count = 0;
1008 spin_lock_init(&oi->ip_lock);
1009 ocfs2_extent_map_init(&oi->vfs_inode);
1010 INIT_LIST_HEAD(&oi->ip_io_markers);
1011 oi->ip_created_trans = 0;
1012 oi->ip_last_trans = 0;
1013 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001014
Christoph Lametera35afb82007-05-16 22:10:57 -07001015 init_rwsem(&oi->ip_alloc_sem);
1016 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001017
Christoph Lametera35afb82007-05-16 22:10:57 -07001018 oi->ip_blkno = 0ULL;
1019 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001020
Christoph Lametera35afb82007-05-16 22:10:57 -07001021 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001022 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001023 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001024
Christoph Lametera35afb82007-05-16 22:10:57 -07001025 ocfs2_metadata_cache_init(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001026
Christoph Lametera35afb82007-05-16 22:10:57 -07001027 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001028}
1029
1030static int ocfs2_initialize_mem_caches(void)
1031{
1032 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001033 sizeof(struct ocfs2_inode_info),
1034 0,
1035 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1036 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001037 ocfs2_inode_init_once);
Mark Fashehccd979b2005-12-15 14:31:24 -08001038 if (!ocfs2_inode_cachep)
1039 return -ENOMEM;
1040
Mark Fashehccd979b2005-12-15 14:31:24 -08001041 return 0;
1042}
1043
1044static void ocfs2_free_mem_caches(void)
1045{
1046 if (ocfs2_inode_cachep)
1047 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001048
1049 ocfs2_inode_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001050}
1051
1052static int ocfs2_get_sector(struct super_block *sb,
1053 struct buffer_head **bh,
1054 int block,
1055 int sect_size)
1056{
1057 if (!sb_set_blocksize(sb, sect_size)) {
1058 mlog(ML_ERROR, "unable to set blocksize\n");
1059 return -EIO;
1060 }
1061
1062 *bh = sb_getblk(sb, block);
1063 if (!*bh) {
1064 mlog_errno(-EIO);
1065 return -EIO;
1066 }
1067 lock_buffer(*bh);
1068 if (!buffer_dirty(*bh))
1069 clear_buffer_uptodate(*bh);
1070 unlock_buffer(*bh);
1071 ll_rw_block(READ, 1, bh);
1072 wait_on_buffer(*bh);
1073 return 0;
1074}
1075
1076/* ocfs2 1.0 only allows one cluster and node identity per kernel image. */
1077static int ocfs2_fill_local_node_info(struct ocfs2_super *osb)
1078{
1079 int status;
1080
1081 /* XXX hold a ref on the node while mounte? easy enough, if
1082 * desirable. */
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001083 if (ocfs2_mount_local(osb))
1084 osb->node_num = 0;
1085 else
1086 osb->node_num = o2nm_this_node();
1087
Mark Fashehccd979b2005-12-15 14:31:24 -08001088 if (osb->node_num == O2NM_MAX_NODES) {
1089 mlog(ML_ERROR, "could not find this host's node number\n");
1090 status = -ENOENT;
1091 goto bail;
1092 }
1093
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001094 mlog(0, "I am node %d\n", osb->node_num);
Mark Fashehccd979b2005-12-15 14:31:24 -08001095
1096 status = 0;
1097bail:
1098 return status;
1099}
1100
1101static int ocfs2_mount_volume(struct super_block *sb)
1102{
1103 int status = 0;
1104 int unlock_super = 0;
1105 struct ocfs2_super *osb = OCFS2_SB(sb);
1106
1107 mlog_entry_void();
1108
1109 if (ocfs2_is_hard_readonly(osb))
1110 goto leave;
1111
1112 status = ocfs2_fill_local_node_info(osb);
1113 if (status < 0) {
1114 mlog_errno(status);
1115 goto leave;
1116 }
1117
Mark Fashehccd979b2005-12-15 14:31:24 -08001118 status = ocfs2_dlm_init(osb);
1119 if (status < 0) {
1120 mlog_errno(status);
1121 goto leave;
1122 }
1123
Mark Fashehccd979b2005-12-15 14:31:24 -08001124 status = ocfs2_super_lock(osb, 1);
1125 if (status < 0) {
1126 mlog_errno(status);
1127 goto leave;
1128 }
1129 unlock_super = 1;
1130
1131 /* This will load up the node map and add ourselves to it. */
1132 status = ocfs2_find_slot(osb);
1133 if (status < 0) {
1134 mlog_errno(status);
1135 goto leave;
1136 }
1137
Mark Fashehccd979b2005-12-15 14:31:24 -08001138 /* load all node-local system inodes */
1139 status = ocfs2_init_local_system_inodes(osb);
1140 if (status < 0) {
1141 mlog_errno(status);
1142 goto leave;
1143 }
1144
1145 status = ocfs2_check_volume(osb);
1146 if (status < 0) {
1147 mlog_errno(status);
1148 goto leave;
1149 }
1150
1151 status = ocfs2_truncate_log_init(osb);
1152 if (status < 0) {
1153 mlog_errno(status);
1154 goto leave;
1155 }
1156
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001157 if (ocfs2_mount_local(osb))
1158 goto leave;
1159
Mark Fashehccd979b2005-12-15 14:31:24 -08001160leave:
1161 if (unlock_super)
1162 ocfs2_super_unlock(osb, 1);
1163
1164 mlog_exit(status);
1165 return status;
1166}
1167
1168/* we can't grab the goofy sem lock from inside wait_event, so we use
1169 * memory barriers to make sure that we'll see the null task before
1170 * being woken up */
1171static int ocfs2_recovery_thread_running(struct ocfs2_super *osb)
1172{
1173 mb();
1174 return osb->recovery_thread_task != NULL;
1175}
1176
1177static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1178{
1179 int tmp;
1180 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001181 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001182
1183 mlog_entry("(0x%p)\n", sb);
1184
1185 BUG_ON(!sb);
1186 osb = OCFS2_SB(sb);
1187 BUG_ON(!osb);
1188
1189 ocfs2_shutdown_local_alloc(osb);
1190
1191 ocfs2_truncate_log_shutdown(osb);
1192
1193 /* disable any new recovery threads and wait for any currently
1194 * running ones to exit. Do this before setting the vol_state. */
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001195 mutex_lock(&osb->recovery_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001196 osb->disable_recovery = 1;
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001197 mutex_unlock(&osb->recovery_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001198 wait_event(osb->recovery_event, !ocfs2_recovery_thread_running(osb));
1199
1200 /* At this point, we know that no more recovery threads can be
1201 * launched, so wait for any recovery completion work to
1202 * complete. */
1203 flush_workqueue(ocfs2_wq);
1204
1205 ocfs2_journal_shutdown(osb);
1206
1207 ocfs2_sync_blockdev(sb);
1208
1209 /* No dlm means we've failed during mount, so skip all the
1210 * steps which depended on that to complete. */
1211 if (osb->dlm) {
1212 tmp = ocfs2_super_lock(osb, 1);
1213 if (tmp < 0) {
1214 mlog_errno(tmp);
1215 return;
1216 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001217 }
1218
Mark Fasheh19b613d2007-10-04 14:47:09 -07001219 if (osb->slot_num != OCFS2_INVALID_SLOT)
1220 ocfs2_put_slot(osb);
1221
1222 if (osb->dlm)
1223 ocfs2_super_unlock(osb, 1);
1224
Mark Fashehccd979b2005-12-15 14:31:24 -08001225 ocfs2_release_system_inodes(osb);
1226
Mark Fasheh34d024f2007-09-24 15:56:19 -07001227 if (osb->dlm)
Mark Fashehccd979b2005-12-15 14:31:24 -08001228 ocfs2_dlm_shutdown(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001229
Mark Fashehccd979b2005-12-15 14:31:24 -08001230 debugfs_remove(osb->osb_debug_root);
1231
1232 if (!mnt_err)
1233 ocfs2_stop_heartbeat(osb);
1234
1235 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
1236
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001237 if (ocfs2_mount_local(osb))
1238 snprintf(nodestr, sizeof(nodestr), "local");
1239 else
1240 snprintf(nodestr, sizeof(nodestr), "%d", osb->node_num);
1241
1242 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
1243 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001244
1245 ocfs2_delete_osb(osb);
1246 kfree(osb);
1247 sb->s_dev = 0;
1248 sb->s_fs_info = NULL;
1249}
1250
1251static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
1252 unsigned uuid_bytes)
1253{
1254 int i, ret;
1255 char *ptr;
1256
1257 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
1258
Robert P. J. Daycd861282006-12-13 00:34:52 -08001259 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001260 if (osb->uuid_str == NULL)
1261 return -ENOMEM;
1262
Mark Fashehccd979b2005-12-15 14:31:24 -08001263 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
1264 /* print with null */
1265 ret = snprintf(ptr, 3, "%02X", uuid[i]);
1266 if (ret != 2) /* drop super cleans up */
1267 return -EINVAL;
1268 /* then only advance past the last char */
1269 ptr += 2;
1270 }
1271
1272 return 0;
1273}
1274
1275static int ocfs2_initialize_super(struct super_block *sb,
1276 struct buffer_head *bh,
1277 int sector_size)
1278{
Denis Chengbddb8eb32007-09-27 02:10:04 +08001279 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07001280 int i, cbits, bbits;
1281 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001282 struct inode *inode = NULL;
1283 struct buffer_head *bitmap_bh = NULL;
1284 struct ocfs2_journal *journal;
1285 __le32 uuid_net_key;
1286 struct ocfs2_super *osb;
1287
1288 mlog_entry_void();
1289
Robert P. J. Daycd861282006-12-13 00:34:52 -08001290 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001291 if (!osb) {
1292 status = -ENOMEM;
1293 mlog_errno(status);
1294 goto bail;
1295 }
1296
1297 sb->s_fs_info = osb;
1298 sb->s_op = &ocfs2_sops;
1299 sb->s_export_op = &ocfs2_export_ops;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07001300 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001301 sb->s_flags |= MS_NOATIME;
1302 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07001303 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
1304 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
1305 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001306
1307 osb->sb = sb;
1308 /* Save off for ocfs2_rw_direct */
1309 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01001310 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001311
Mark Fashehccd979b2005-12-15 14:31:24 -08001312 init_waitqueue_head(&osb->recovery_event);
Mark Fasheh34d024f2007-09-24 15:56:19 -07001313 spin_lock_init(&osb->dc_task_lock);
1314 init_waitqueue_head(&osb->dc_event);
1315 osb->dc_work_sequence = 0;
1316 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001317 INIT_LIST_HEAD(&osb->blocked_lock_list);
1318 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001319 spin_lock_init(&osb->osb_lock);
1320
1321 atomic_set(&osb->alloc_stats.moves, 0);
1322 atomic_set(&osb->alloc_stats.local_data, 0);
1323 atomic_set(&osb->alloc_stats.bitmap_data, 0);
1324 atomic_set(&osb->alloc_stats.bg_allocs, 0);
1325 atomic_set(&osb->alloc_stats.bg_extends, 0);
1326
1327 ocfs2_init_node_maps(osb);
1328
1329 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
1330 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
1331
Arjan van de Venc74ec2f2006-01-13 21:54:23 -08001332 mutex_init(&osb->recovery_lock);
Mark Fashehccd979b2005-12-15 14:31:24 -08001333
1334 osb->disable_recovery = 0;
1335 osb->recovery_thread_task = NULL;
1336
1337 init_waitqueue_head(&osb->checkpoint_event);
1338 atomic_set(&osb->needs_checkpoint, 0);
1339
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001340 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1341
Mark Fashehccd979b2005-12-15 14:31:24 -08001342 osb->node_num = O2NM_INVALID_NODE_NUM;
1343 osb->slot_num = OCFS2_INVALID_SLOT;
1344
1345 osb->local_alloc_state = OCFS2_LA_UNUSED;
1346 osb->local_alloc_bh = NULL;
1347
1348 ocfs2_setup_hb_callbacks(osb);
1349
1350 init_waitqueue_head(&osb->osb_mount_event);
1351
1352 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
1353 if (!osb->vol_label) {
1354 mlog(ML_ERROR, "unable to alloc vol label\n");
1355 status = -ENOMEM;
1356 goto bail;
1357 }
1358
Mark Fashehccd979b2005-12-15 14:31:24 -08001359 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
1360 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
1361 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
1362 osb->max_slots);
1363 status = -EINVAL;
1364 goto bail;
1365 }
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001366 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
Mark Fashehccd979b2005-12-15 14:31:24 -08001367
Mark Fashehb4df6ed2006-02-22 17:35:08 -08001368 init_waitqueue_head(&osb->osb_wipe_event);
1369 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
1370 sizeof(*osb->osb_orphan_wipes),
1371 GFP_KERNEL);
1372 if (!osb->osb_orphan_wipes) {
1373 status = -ENOMEM;
1374 mlog_errno(status);
1375 goto bail;
1376 }
1377
Mark Fashehccd979b2005-12-15 14:31:24 -08001378 osb->s_feature_compat =
1379 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
1380 osb->s_feature_ro_compat =
1381 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
1382 osb->s_feature_incompat =
1383 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
1384
1385 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
1386 mlog(ML_ERROR, "couldn't mount because of unsupported "
1387 "optional features (%x).\n", i);
1388 status = -EINVAL;
1389 goto bail;
1390 }
1391 if (!(osb->sb->s_flags & MS_RDONLY) &&
1392 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
1393 mlog(ML_ERROR, "couldn't mount RDWR because of "
1394 "unsupported optional features (%x).\n", i);
1395 status = -EINVAL;
1396 goto bail;
1397 }
1398
1399 get_random_bytes(&osb->s_next_generation, sizeof(u32));
1400
1401 /* FIXME
1402 * This should be done in ocfs2_journal_init(), but unknown
1403 * ordering issues will cause the filesystem to crash.
1404 * If anyone wants to figure out what part of the code
1405 * refers to osb->journal before ocfs2_journal_init() is run,
1406 * be my guest.
1407 */
1408 /* initialize our journal structure */
1409
Robert P. J. Daycd861282006-12-13 00:34:52 -08001410 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001411 if (!journal) {
1412 mlog(ML_ERROR, "unable to alloc journal\n");
1413 status = -ENOMEM;
1414 goto bail;
1415 }
1416 osb->journal = journal;
1417 journal->j_osb = osb;
1418
1419 atomic_set(&journal->j_num_trans, 0);
1420 init_rwsem(&journal->j_trans_barrier);
1421 init_waitqueue_head(&journal->j_checkpointed);
1422 spin_lock_init(&journal->j_lock);
1423 journal->j_trans_id = (unsigned long) 1;
1424 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00001425 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08001426 journal->j_state = OCFS2_JOURNAL_FREE;
1427
1428 /* get some pseudo constants for clustersize bits */
1429 osb->s_clustersize_bits =
1430 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
1431 osb->s_clustersize = 1 << osb->s_clustersize_bits;
1432 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
1433
1434 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
1435 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
1436 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
1437 osb->s_clustersize);
1438 status = -EINVAL;
1439 goto bail;
1440 }
1441
1442 if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1)
1443 > (u32)~0UL) {
1444 mlog(ML_ERROR, "Volume might try to write to blocks beyond "
1445 "what jbd can address in 32 bits.\n");
1446 status = -EINVAL;
1447 goto bail;
1448 }
1449
1450 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
1451 sizeof(di->id2.i_super.s_uuid))) {
1452 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
1453 status = -ENOMEM;
1454 goto bail;
1455 }
1456
Mark Fasheh78427042006-05-04 12:03:26 -07001457 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08001458
1459 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
1460 osb->vol_label[63] = '\0';
1461 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
1462 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
1463 osb->first_cluster_group_blkno =
1464 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
1465 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
1466 mlog(0, "vol_label: %s\n", osb->vol_label);
1467 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb0697052006-03-03 10:24:33 -08001468 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
1469 (unsigned long long)osb->root_blkno,
1470 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001471
1472 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
1473 if (!osb->osb_dlm_debug) {
1474 status = -ENOMEM;
1475 mlog_errno(status);
1476 goto bail;
1477 }
1478
1479 atomic_set(&osb->vol_state, VOLUME_INIT);
1480
1481 /* load root, system_dir, and all global system inodes */
1482 status = ocfs2_init_global_system_inodes(osb);
1483 if (status < 0) {
1484 mlog_errno(status);
1485 goto bail;
1486 }
1487
1488 /*
1489 * global bitmap
1490 */
1491 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
1492 OCFS2_INVALID_SLOT);
1493 if (!inode) {
1494 status = -EINVAL;
1495 mlog_errno(status);
1496 goto bail;
1497 }
1498
1499 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
1500
Mark Fasheh101ebf22006-05-02 17:54:45 -07001501 /* We don't have a cluster lock on the bitmap here because
1502 * we're only interested in static information and the extra
1503 * complexity at mount time isn't worht it. Don't pass the
1504 * inode in to the read function though as we don't want it to
1505 * be put in the cache. */
Mark Fashehccd979b2005-12-15 14:31:24 -08001506 status = ocfs2_read_block(osb, osb->bitmap_blkno, &bitmap_bh, 0,
Mark Fasheh101ebf22006-05-02 17:54:45 -07001507 NULL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001508 iput(inode);
1509 if (status < 0) {
1510 mlog_errno(status);
1511 goto bail;
1512 }
1513
1514 di = (struct ocfs2_dinode *) bitmap_bh->b_data;
1515 osb->bitmap_cpg = le16_to_cpu(di->id2.i_chain.cl_cpg);
Mark Fashehccd979b2005-12-15 14:31:24 -08001516 brelse(bitmap_bh);
Mark Fashehb0697052006-03-03 10:24:33 -08001517 mlog(0, "cluster bitmap inode: %llu, clusters per group: %u\n",
1518 (unsigned long long)osb->bitmap_blkno, osb->bitmap_cpg);
Mark Fashehccd979b2005-12-15 14:31:24 -08001519
1520 status = ocfs2_init_slot_info(osb);
1521 if (status < 0) {
1522 mlog_errno(status);
1523 goto bail;
1524 }
1525
Mark Fashehccd979b2005-12-15 14:31:24 -08001526bail:
1527 mlog_exit(status);
1528 return status;
1529}
1530
1531/*
1532 * will return: -EAGAIN if it is ok to keep searching for superblocks
1533 * -EINVAL if there is a bad superblock
1534 * 0 on success
1535 */
1536static int ocfs2_verify_volume(struct ocfs2_dinode *di,
1537 struct buffer_head *bh,
1538 u32 blksz)
1539{
1540 int status = -EAGAIN;
1541
1542 mlog_entry_void();
1543
1544 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
1545 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
1546 status = -EINVAL;
1547 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
1548 mlog(ML_ERROR, "found superblock with incorrect block "
1549 "size: found %u, should be %u\n",
1550 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
1551 blksz);
1552 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
1553 OCFS2_MAJOR_REV_LEVEL ||
1554 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
1555 OCFS2_MINOR_REV_LEVEL) {
1556 mlog(ML_ERROR, "found superblock with bad version: "
1557 "found %u.%u, should be %u.%u\n",
1558 le16_to_cpu(di->id2.i_super.s_major_rev_level),
1559 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
1560 OCFS2_MAJOR_REV_LEVEL,
1561 OCFS2_MINOR_REV_LEVEL);
1562 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
1563 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb0697052006-03-03 10:24:33 -08001564 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07001565 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb0697052006-03-03 10:24:33 -08001566 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001567 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
1568 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
1569 mlog(ML_ERROR, "bad cluster size found: %u\n",
1570 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
1571 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
1572 mlog(ML_ERROR, "bad root_blkno: 0\n");
1573 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
1574 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
1575 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
1576 mlog(ML_ERROR,
1577 "Superblock slots found greater than file system "
1578 "maximum: found %u, max %u\n",
1579 le16_to_cpu(di->id2.i_super.s_max_slots),
1580 OCFS2_MAX_SLOTS);
1581 } else {
1582 /* found it! */
1583 status = 0;
1584 }
1585 }
1586
1587 mlog_exit(status);
1588 return status;
1589}
1590
1591static int ocfs2_check_volume(struct ocfs2_super *osb)
1592{
Denis Chengbddb8eb32007-09-27 02:10:04 +08001593 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08001594 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001595 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08001596 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
1597 * recover
1598 * ourselves. */
1599
1600 mlog_entry_void();
1601
1602 /* Init our journal object. */
1603 status = ocfs2_journal_init(osb->journal, &dirty);
1604 if (status < 0) {
1605 mlog(ML_ERROR, "Could not initialize journal!\n");
1606 goto finally;
1607 }
1608
1609 /* If the journal was unmounted cleanly then we don't want to
1610 * recover anything. Otherwise, journal_load will do that
1611 * dirty work for us :) */
1612 if (!dirty) {
1613 status = ocfs2_journal_wipe(osb->journal, 0);
1614 if (status < 0) {
1615 mlog_errno(status);
1616 goto finally;
1617 }
1618 } else {
1619 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
1620 "recovering volume.\n");
1621 }
1622
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001623 local = ocfs2_mount_local(osb);
1624
Mark Fashehccd979b2005-12-15 14:31:24 -08001625 /* will play back anything left in the journal. */
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001626 ocfs2_journal_load(osb->journal, local);
Mark Fashehccd979b2005-12-15 14:31:24 -08001627
1628 if (dirty) {
1629 /* recover my local alloc if we didn't unmount cleanly. */
1630 status = ocfs2_begin_local_alloc_recovery(osb,
1631 osb->slot_num,
1632 &local_alloc);
1633 if (status < 0) {
1634 mlog_errno(status);
1635 goto finally;
1636 }
1637 /* we complete the recovery process after we've marked
1638 * ourselves as mounted. */
1639 }
1640
1641 mlog(0, "Journal loaded.\n");
1642
1643 status = ocfs2_load_local_alloc(osb);
1644 if (status < 0) {
1645 mlog_errno(status);
1646 goto finally;
1647 }
1648
1649 if (dirty) {
1650 /* Recovery will be completed after we've mounted the
1651 * rest of the volume. */
1652 osb->dirty = 1;
1653 osb->local_alloc_copy = local_alloc;
1654 local_alloc = NULL;
1655 }
1656
1657 /* go through each journal, trylock it and if you get the
1658 * lock, and it's marked as dirty, set the bit in the recover
1659 * map and launch a recovery thread for it. */
1660 status = ocfs2_mark_dead_nodes(osb);
1661 if (status < 0)
1662 mlog_errno(status);
1663
1664finally:
1665 if (local_alloc)
1666 kfree(local_alloc);
1667
1668 mlog_exit(status);
1669 return status;
1670}
1671
1672/*
1673 * The routine gets called from dismount or close whenever a dismount on
1674 * volume is requested and the osb open count becomes 1.
1675 * It will remove the osb from the global list and also free up all the
1676 * initialized resources and fileobject.
1677 */
1678static void ocfs2_delete_osb(struct ocfs2_super *osb)
1679{
1680 mlog_entry_void();
1681
1682 /* This function assumes that the caller has the main osb resource */
1683
1684 if (osb->slot_info)
1685 ocfs2_free_slot_info(osb->slot_info);
1686
Mark Fashehb4df6ed2006-02-22 17:35:08 -08001687 kfree(osb->osb_orphan_wipes);
Mark Fashehccd979b2005-12-15 14:31:24 -08001688 /* FIXME
1689 * This belongs in journal shutdown, but because we have to
1690 * allocate osb->journal at the start of ocfs2_initalize_osb(),
1691 * we free it here.
1692 */
1693 kfree(osb->journal);
1694 if (osb->local_alloc_copy)
1695 kfree(osb->local_alloc_copy);
1696 kfree(osb->uuid_str);
1697 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
1698 memset(osb, 0, sizeof(struct ocfs2_super));
1699
1700 mlog_exit_void();
1701}
1702
1703/* Put OCFS2 into a readonly state, or (if the user specifies it),
1704 * panic(). We do not support continue-on-error operation. */
1705static void ocfs2_handle_error(struct super_block *sb)
1706{
1707 struct ocfs2_super *osb = OCFS2_SB(sb);
1708
1709 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
1710 panic("OCFS2: (device %s): panic forced after error\n",
1711 sb->s_id);
1712
1713 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
1714
1715 if (sb->s_flags & MS_RDONLY &&
1716 (ocfs2_is_soft_readonly(osb) ||
1717 ocfs2_is_hard_readonly(osb)))
1718 return;
1719
1720 printk(KERN_CRIT "File system is now read-only due to the potential "
1721 "of on-disk corruption. Please run fsck.ocfs2 once the file "
1722 "system is unmounted.\n");
1723 sb->s_flags |= MS_RDONLY;
1724 ocfs2_set_ro_flag(osb, 0);
1725}
1726
1727static char error_buf[1024];
1728
1729void __ocfs2_error(struct super_block *sb,
1730 const char *function,
1731 const char *fmt, ...)
1732{
1733 va_list args;
1734
1735 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08001736 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08001737 va_end(args);
1738
1739 /* Not using mlog here because we want to show the actual
1740 * function the error came from. */
1741 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
1742 sb->s_id, function, error_buf);
1743
1744 ocfs2_handle_error(sb);
1745}
1746
1747/* Handle critical errors. This is intentionally more drastic than
1748 * ocfs2_handle_error, so we only use for things like journal errors,
1749 * etc. */
1750void __ocfs2_abort(struct super_block* sb,
1751 const char *function,
1752 const char *fmt, ...)
1753{
1754 va_list args;
1755
1756 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08001757 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08001758 va_end(args);
1759
1760 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
1761 sb->s_id, function, error_buf);
1762
1763 /* We don't have the cluster support yet to go straight to
1764 * hard readonly in here. Until then, we want to keep
1765 * ocfs2_abort() so that we can at least mark critical
1766 * errors.
1767 *
1768 * TODO: This should abort the journal and alert other nodes
1769 * that our slot needs recovery. */
1770
1771 /* Force a panic(). This stinks, but it's better than letting
1772 * things continue without having a proper hard readonly
1773 * here. */
1774 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
1775 ocfs2_handle_error(sb);
1776}
1777
1778module_init(ocfs2_init);
1779module_exit(ocfs2_exit);