blob: 1c3acc4654d8273f213e3ab970dec32fbd86ca09 [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>
Jan Kara19ece542008-08-21 20:13:17 +020044#include <linux/quotaops.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080045
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"
Joel Beckerd030cc92008-12-11 15:04:14 -080055#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080056#include "dlmglue.h"
57#include "export.h"
58#include "extent_map.h"
59#include "heartbeat.h"
60#include "inode.h"
61#include "journal.h"
62#include "localalloc.h"
63#include "namei.h"
64#include "slot_map.h"
65#include "super.h"
66#include "sysfile.h"
67#include "uptodate.h"
68#include "ver.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080069#include "xattr.h"
Jan Kara9e33d692008-08-25 19:56:50 +020070#include "quota.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080071
72#include "buffer_head_io.h"
73
Christoph Lametere18b8902006-12-06 20:33:20 -080074static struct kmem_cache *ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +020075struct kmem_cache *ocfs2_dquot_cachep;
76struct kmem_cache *ocfs2_qf_chunk_cachep;
Mark Fashehccd979b2005-12-15 14:31:24 -080077
Mark Fashehccd979b2005-12-15 14:31:24 -080078/* OCFS2 needs to schedule several differnt types of work which
79 * require cluster locking, disk I/O, recovery waits, etc. Since these
80 * types of work tend to be heavy we avoid using the kernel events
81 * workqueue and schedule on our own. */
82struct workqueue_struct *ocfs2_wq = NULL;
83
84static struct dentry *ocfs2_debugfs_root = NULL;
85
86MODULE_AUTHOR("Oracle");
87MODULE_LICENSE("GPL");
88
Tiger Yangc0123ad2007-09-08 00:16:10 +080089struct mount_options
90{
Mark Fashehd147b3d2007-11-07 14:40:36 -080091 unsigned long commit_interval;
Tiger Yangc0123ad2007-09-08 00:16:10 +080092 unsigned long mount_opt;
93 unsigned int atime_quantum;
94 signed short slot;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -080095 unsigned int localalloc_opt;
Joel Beckerb61817e2008-02-01 15:08:23 -080096 char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
Tiger Yangc0123ad2007-09-08 00:16:10 +080097};
98
Mark Fashehccd979b2005-12-15 14:31:24 -080099static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800100 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700101 int is_remount);
Sunil Mushrand5500712007-09-06 13:34:16 -0700102static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800103static void ocfs2_put_super(struct super_block *sb);
104static int ocfs2_mount_volume(struct super_block *sb);
105static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
106static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
107static int ocfs2_initialize_mem_caches(void);
108static void ocfs2_free_mem_caches(void);
109static void ocfs2_delete_osb(struct ocfs2_super *osb);
110
David Howells726c3342006-06-23 02:02:58 -0700111static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800112
113static int ocfs2_sync_fs(struct super_block *sb, int wait);
114
115static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
116static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800117static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800118static int ocfs2_check_volume(struct ocfs2_super *osb);
119static int ocfs2_verify_volume(struct ocfs2_dinode *di,
120 struct buffer_head *bh,
121 u32 sectsize);
122static int ocfs2_initialize_super(struct super_block *sb,
123 struct buffer_head *bh,
124 int sector_size);
125static int ocfs2_get_sector(struct super_block *sb,
126 struct buffer_head **bh,
127 int block,
128 int sect_size);
129static void ocfs2_write_super(struct super_block *sb);
130static struct inode *ocfs2_alloc_inode(struct super_block *sb);
131static void ocfs2_destroy_inode(struct inode *inode);
Jan Kara19ece542008-08-21 20:13:17 +0200132static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
133static int ocfs2_enable_quotas(struct ocfs2_super *osb);
134static void ocfs2_disable_quotas(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800135
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800136static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800137 .statfs = ocfs2_statfs,
138 .alloc_inode = ocfs2_alloc_inode,
139 .destroy_inode = ocfs2_destroy_inode,
140 .drop_inode = ocfs2_drop_inode,
141 .clear_inode = ocfs2_clear_inode,
142 .delete_inode = ocfs2_delete_inode,
143 .sync_fs = ocfs2_sync_fs,
144 .write_super = ocfs2_write_super,
145 .put_super = ocfs2_put_super,
146 .remount_fs = ocfs2_remount,
Sunil Mushrand5500712007-09-06 13:34:16 -0700147 .show_options = ocfs2_show_options,
Jan Kara9e33d692008-08-25 19:56:50 +0200148 .quota_read = ocfs2_quota_read,
149 .quota_write = ocfs2_quota_write,
Mark Fashehccd979b2005-12-15 14:31:24 -0800150};
151
152enum {
153 Opt_barrier,
154 Opt_err_panic,
155 Opt_err_ro,
156 Opt_intr,
157 Opt_nointr,
158 Opt_hb_none,
159 Opt_hb_local,
160 Opt_data_ordered,
161 Opt_data_writeback,
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800162 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700163 Opt_slot,
Mark Fashehd147b3d2007-11-07 14:40:36 -0800164 Opt_commit,
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800165 Opt_localalloc,
Mark Fasheh53fc6222007-12-20 16:49:04 -0800166 Opt_localflocks,
Joel Beckerb61817e2008-02-01 15:08:23 -0800167 Opt_stack,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800168 Opt_user_xattr,
169 Opt_nouser_xattr,
Joel Becker12462f12008-09-03 20:03:40 -0700170 Opt_inode64,
Tiger Yanga68979b2008-11-14 11:17:52 +0800171 Opt_acl,
172 Opt_noacl,
Jan Kara19ece542008-08-21 20:13:17 +0200173 Opt_usrquota,
174 Opt_grpquota,
Mark Fashehccd979b2005-12-15 14:31:24 -0800175 Opt_err,
176};
177
Steven Whitehousea447c092008-10-13 10:46:57 +0100178static const match_table_t tokens = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800179 {Opt_barrier, "barrier=%u"},
180 {Opt_err_panic, "errors=panic"},
181 {Opt_err_ro, "errors=remount-ro"},
182 {Opt_intr, "intr"},
183 {Opt_nointr, "nointr"},
184 {Opt_hb_none, OCFS2_HB_NONE},
185 {Opt_hb_local, OCFS2_HB_LOCAL},
186 {Opt_data_ordered, "data=ordered"},
187 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800188 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700189 {Opt_slot, "preferred_slot=%u"},
Mark Fashehd147b3d2007-11-07 14:40:36 -0800190 {Opt_commit, "commit=%u"},
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800191 {Opt_localalloc, "localalloc=%d"},
Mark Fasheh53fc6222007-12-20 16:49:04 -0800192 {Opt_localflocks, "localflocks"},
Joel Beckerb61817e2008-02-01 15:08:23 -0800193 {Opt_stack, "cluster_stack=%s"},
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800194 {Opt_user_xattr, "user_xattr"},
195 {Opt_nouser_xattr, "nouser_xattr"},
Joel Becker12462f12008-09-03 20:03:40 -0700196 {Opt_inode64, "inode64"},
Tiger Yanga68979b2008-11-14 11:17:52 +0800197 {Opt_acl, "acl"},
198 {Opt_noacl, "noacl"},
Jan Kara19ece542008-08-21 20:13:17 +0200199 {Opt_usrquota, "usrquota"},
200 {Opt_grpquota, "grpquota"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800201 {Opt_err, NULL}
202};
203
204/*
205 * write_super and sync_fs ripped right out of ext3.
206 */
207static void ocfs2_write_super(struct super_block *sb)
208{
Ingo Molnar7892f2f2006-01-09 15:59:25 -0800209 if (mutex_trylock(&sb->s_lock) != 0)
Mark Fashehccd979b2005-12-15 14:31:24 -0800210 BUG();
211 sb->s_dirt = 0;
212}
213
214static int ocfs2_sync_fs(struct super_block *sb, int wait)
215{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800216 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800217 tid_t target;
218 struct ocfs2_super *osb = OCFS2_SB(sb);
219
220 sb->s_dirt = 0;
221
222 if (ocfs2_is_hard_readonly(osb))
223 return -EROFS;
224
225 if (wait) {
226 status = ocfs2_flush_truncate_log(osb);
227 if (status < 0)
228 mlog_errno(status);
229 } else {
230 ocfs2_schedule_truncate_log_flush(osb, 0);
231 }
232
Joel Becker2b4e30f2008-09-03 20:03:41 -0700233 if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal,
234 &target)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800235 if (wait)
Joel Becker2b4e30f2008-09-03 20:03:41 -0700236 jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
237 target);
Mark Fashehccd979b2005-12-15 14:31:24 -0800238 }
239 return 0;
240}
241
Jan Kara1a224ad2008-08-20 15:43:36 +0200242static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino)
243{
244 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
245 && (ino == USER_QUOTA_SYSTEM_INODE
246 || ino == LOCAL_USER_QUOTA_SYSTEM_INODE))
247 return 0;
248 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)
249 && (ino == GROUP_QUOTA_SYSTEM_INODE
250 || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE))
251 return 0;
252 return 1;
253}
254
Mark Fashehccd979b2005-12-15 14:31:24 -0800255static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
256{
257 struct inode *new = NULL;
258 int status = 0;
259 int i;
260
261 mlog_entry_void();
262
Jan Kara5fa06132008-01-11 00:11:45 +0100263 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800264 if (IS_ERR(new)) {
265 status = PTR_ERR(new);
266 mlog_errno(status);
267 goto bail;
268 }
269 osb->root_inode = new;
270
Jan Kara5fa06132008-01-11 00:11:45 +0100271 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800272 if (IS_ERR(new)) {
273 status = PTR_ERR(new);
274 mlog_errno(status);
275 goto bail;
276 }
277 osb->sys_root_inode = new;
278
279 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
280 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200281 if (!ocfs2_need_system_inode(osb, i))
282 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800283 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
284 if (!new) {
285 ocfs2_release_system_inodes(osb);
286 status = -EINVAL;
287 mlog_errno(status);
288 /* FIXME: Should ERROR_RO_FS */
289 mlog(ML_ERROR, "Unable to load system inode %d, "
290 "possibly corrupt fs?", i);
291 goto bail;
292 }
293 // the array now has one ref, so drop this one
294 iput(new);
295 }
296
297bail:
298 mlog_exit(status);
299 return status;
300}
301
302static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
303{
304 struct inode *new = NULL;
305 int status = 0;
306 int i;
307
308 mlog_entry_void();
309
310 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
311 i < NUM_SYSTEM_INODES;
312 i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200313 if (!ocfs2_need_system_inode(osb, i))
314 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800315 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
316 if (!new) {
317 ocfs2_release_system_inodes(osb);
318 status = -EINVAL;
319 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
320 status, i, osb->slot_num);
321 goto bail;
322 }
323 /* the array now has one ref, so drop this one */
324 iput(new);
325 }
326
327bail:
328 mlog_exit(status);
329 return status;
330}
331
Denis Chengbddb8eb32007-09-27 02:10:04 +0800332static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800333{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800334 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800335 struct inode *inode;
336
337 mlog_entry_void();
338
339 for (i = 0; i < NUM_SYSTEM_INODES; i++) {
340 inode = osb->system_inodes[i];
341 if (inode) {
342 iput(inode);
343 osb->system_inodes[i] = NULL;
344 }
345 }
346
347 inode = osb->sys_root_inode;
348 if (inode) {
349 iput(inode);
350 osb->sys_root_inode = NULL;
351 }
352
353 inode = osb->root_inode;
354 if (inode) {
355 iput(inode);
356 osb->root_inode = NULL;
357 }
358
Denis Chengbddb8eb32007-09-27 02:10:04 +0800359 mlog_exit(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800360}
361
362/* We're allocating fs objects, use GFP_NOFS */
363static struct inode *ocfs2_alloc_inode(struct super_block *sb)
364{
365 struct ocfs2_inode_info *oi;
366
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800367 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800368 if (!oi)
369 return NULL;
370
Joel Becker2b4e30f2008-09-03 20:03:41 -0700371 jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800372 return &oi->vfs_inode;
373}
374
375static void ocfs2_destroy_inode(struct inode *inode)
376{
377 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
378}
379
Mark Fasheh5a254032007-07-20 12:56:16 -0700380static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
381 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800382{
Mark Fasheh5a254032007-07-20 12:56:16 -0700383 unsigned int bytes = 1 << cbits;
384 unsigned int trim = bytes;
385 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800386
Mark Fasheh5a254032007-07-20 12:56:16 -0700387 /*
388 * i_size and all block offsets in ocfs2 are always 64 bits
389 * wide. i_clusters is 32 bits, in cluster-sized units. So on
390 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800391 */
392
393#if BITS_PER_LONG == 32
394# if defined(CONFIG_LBD)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700395 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700396 /*
397 * We might be limited by page cache size.
398 */
399 if (bytes > PAGE_CACHE_SIZE) {
400 bytes = PAGE_CACHE_SIZE;
401 trim = 1;
402 /*
403 * Shift by 31 here so that we don't get larger than
404 * MAX_LFS_FILESIZE
405 */
406 bitshift = 31;
407 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800408# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700409 /*
410 * We are limited by the size of sector_t. Use block size, as
411 * that's what we expose to the VFS.
412 */
413 bytes = 1 << bbits;
414 trim = 1;
415 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800416# endif
417#endif
418
Mark Fasheh5a254032007-07-20 12:56:16 -0700419 /*
420 * Trim by a whole cluster when we can actually approach the
421 * on-disk limits. Otherwise we can overflow i_clusters when
422 * an extent start is at the max offset.
423 */
424 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800425}
426
427static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
428{
429 int incompat_features;
430 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800431 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800432 struct ocfs2_super *osb = OCFS2_SB(sb);
433
Tiger Yangc0123ad2007-09-08 00:16:10 +0800434 if (!ocfs2_parse_options(sb, data, &parsed_options, 1)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800435 ret = -EINVAL;
436 goto out;
437 }
438
439 if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800440 (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800441 ret = -EINVAL;
442 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
443 goto out;
444 }
445
446 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800447 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800448 ret = -EINVAL;
449 mlog(ML_ERROR, "Cannot change data mode on remount\n");
450 goto out;
451 }
452
Joel Becker12462f12008-09-03 20:03:40 -0700453 /* Probably don't want this on remount; it might
454 * mess with other nodes */
455 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) &&
456 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) {
457 ret = -EINVAL;
458 mlog(ML_ERROR, "Cannot enable inode64 on remount\n");
459 goto out;
460 }
461
Mark Fashehccd979b2005-12-15 14:31:24 -0800462 /* We're going to/from readonly mode. */
463 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
Jan Kara19ece542008-08-21 20:13:17 +0200464 /* Disable quota accounting before remounting RO */
465 if (*flags & MS_RDONLY) {
466 ret = ocfs2_susp_quotas(osb, 0);
467 if (ret < 0)
468 goto out;
469 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800470 /* Lock here so the check of HARD_RO and the potential
471 * setting of SOFT_RO is atomic. */
472 spin_lock(&osb->osb_lock);
473 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
474 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
475 ret = -EROFS;
476 goto unlock_osb;
477 }
478
479 if (*flags & MS_RDONLY) {
480 mlog(0, "Going to ro mode.\n");
481 sb->s_flags |= MS_RDONLY;
482 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
483 } else {
484 mlog(0, "Making ro filesystem writeable.\n");
485
486 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
487 mlog(ML_ERROR, "Cannot remount RDWR "
488 "filesystem due to previous errors.\n");
489 ret = -EROFS;
490 goto unlock_osb;
491 }
492 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
493 if (incompat_features) {
494 mlog(ML_ERROR, "Cannot remount RDWR because "
495 "of unsupported optional features "
496 "(%x).\n", incompat_features);
497 ret = -EINVAL;
498 goto unlock_osb;
499 }
500 sb->s_flags &= ~MS_RDONLY;
501 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
502 }
503unlock_osb:
504 spin_unlock(&osb->osb_lock);
Jan Kara19ece542008-08-21 20:13:17 +0200505 /* Enable quota accounting after remounting RW */
506 if (!ret && !(*flags & MS_RDONLY)) {
507 if (sb_any_quota_suspended(sb))
508 ret = ocfs2_susp_quotas(osb, 1);
509 else
510 ret = ocfs2_enable_quotas(osb);
511 if (ret < 0) {
512 /* Return back changes... */
513 spin_lock(&osb->osb_lock);
514 sb->s_flags |= MS_RDONLY;
515 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
516 spin_unlock(&osb->osb_lock);
517 goto out;
518 }
519 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800520 }
521
522 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800523 /* Only save off the new mount options in case of a successful
524 * remount. */
Tiger Yanga68979b2008-11-14 11:17:52 +0800525 if (!(osb->s_feature_incompat & OCFS2_FEATURE_INCOMPAT_XATTR))
526 parsed_options.mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800527 osb->s_mount_opt = parsed_options.mount_opt;
528 osb->s_atime_quantum = parsed_options.atime_quantum;
529 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800530 if (parsed_options.commit_interval)
531 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fashehe001e792007-11-07 14:21:45 -0800532
533 if (!ocfs2_is_hard_readonly(osb))
534 ocfs2_set_journal_params(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800535 }
536out:
537 return ret;
538}
539
540static int ocfs2_sb_probe(struct super_block *sb,
541 struct buffer_head **bh,
542 int *sector_size)
543{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800544 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800545 struct ocfs1_vol_disk_hdr *hdr;
546 struct ocfs2_dinode *di;
547 int blksize;
548
549 *bh = NULL;
550
551 /* may be > 512 */
552 *sector_size = bdev_hardsect_size(sb->s_bdev);
553 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
554 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
555 *sector_size, OCFS2_MAX_BLOCKSIZE);
556 status = -EINVAL;
557 goto bail;
558 }
559
560 /* Can this really happen? */
561 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
562 *sector_size = OCFS2_MIN_BLOCKSIZE;
563
564 /* check block zero for old format */
565 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
566 if (status < 0) {
567 mlog_errno(status);
568 goto bail;
569 }
570 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
571 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
572 mlog(ML_ERROR, "incompatible version: %u.%u\n",
573 hdr->major_version, hdr->minor_version);
574 status = -EINVAL;
575 }
576 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
577 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
578 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
579 hdr->signature);
580 status = -EINVAL;
581 }
582 brelse(*bh);
583 *bh = NULL;
584 if (status < 0) {
585 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
586 "upgraded before mounting with ocfs v2\n");
587 goto bail;
588 }
589
590 /*
591 * Now check at magic offset for 512, 1024, 2048, 4096
592 * blocksizes. 4096 is the maximum blocksize because it is
593 * the minimum clustersize.
594 */
595 status = -EINVAL;
596 for (blksize = *sector_size;
597 blksize <= OCFS2_MAX_BLOCKSIZE;
598 blksize <<= 1) {
599 tmpstat = ocfs2_get_sector(sb, bh,
600 OCFS2_SUPER_BLOCK_BLKNO,
601 blksize);
602 if (tmpstat < 0) {
603 status = tmpstat;
604 mlog_errno(status);
605 goto bail;
606 }
607 di = (struct ocfs2_dinode *) (*bh)->b_data;
608 status = ocfs2_verify_volume(di, *bh, blksize);
609 if (status >= 0)
610 goto bail;
611 brelse(*bh);
612 *bh = NULL;
613 if (status != -EAGAIN)
614 break;
615 }
616
617bail:
618 return status;
619}
620
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800621static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
622{
623 if (ocfs2_mount_local(osb)) {
624 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
625 mlog(ML_ERROR, "Cannot heartbeat on a locally "
626 "mounted device.\n");
627 return -EINVAL;
628 }
629 }
630
Joel Beckerb61817e2008-02-01 15:08:23 -0800631 if (ocfs2_userspace_stack(osb)) {
632 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
633 mlog(ML_ERROR, "Userspace stack expected, but "
634 "o2cb heartbeat arguments passed to mount\n");
635 return -EINVAL;
636 }
637 }
638
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800639 if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800640 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
641 !ocfs2_userspace_stack(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800642 mlog(ML_ERROR, "Heartbeat has to be started to mount "
643 "a read-write clustered device.\n");
644 return -EINVAL;
645 }
646 }
647
648 return 0;
649}
650
Joel Beckerb61817e2008-02-01 15:08:23 -0800651/*
652 * If we're using a userspace stack, mount should have passed
653 * a name that matches the disk. If not, mount should not
654 * have passed a stack.
655 */
656static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
657 struct mount_options *mopt)
658{
659 if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
660 mlog(ML_ERROR,
661 "cluster stack passed to mount, but this filesystem "
662 "does not support it\n");
663 return -EINVAL;
664 }
665
666 if (ocfs2_userspace_stack(osb) &&
667 strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
668 OCFS2_STACK_LABEL_LEN)) {
669 mlog(ML_ERROR,
670 "cluster stack passed to mount (\"%s\") does not "
671 "match the filesystem (\"%s\")\n",
672 mopt->cluster_stack,
673 osb->osb_cluster_stack);
674 return -EINVAL;
675 }
676
677 return 0;
678}
679
Jan Kara19ece542008-08-21 20:13:17 +0200680static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend)
681{
682 int type;
683 struct super_block *sb = osb->sb;
684 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
685 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
686 int status = 0;
687
688 for (type = 0; type < MAXQUOTAS; type++) {
689 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
690 continue;
691 if (unsuspend)
692 status = vfs_quota_enable(
693 sb_dqopt(sb)->files[type],
694 type, QFMT_OCFS2,
695 DQUOT_SUSPENDED);
696 else
697 status = vfs_quota_disable(sb, type,
698 DQUOT_SUSPENDED);
699 if (status < 0)
700 break;
701 }
702 if (status < 0)
703 mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on "
704 "remount (error = %d).\n", status);
705 return status;
706}
707
708static int ocfs2_enable_quotas(struct ocfs2_super *osb)
709{
710 struct inode *inode[MAXQUOTAS] = { NULL, NULL };
711 struct super_block *sb = osb->sb;
712 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
713 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
714 unsigned int ino[MAXQUOTAS] = { LOCAL_USER_QUOTA_SYSTEM_INODE,
715 LOCAL_GROUP_QUOTA_SYSTEM_INODE };
716 int status;
717 int type;
718
719 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE;
720 for (type = 0; type < MAXQUOTAS; type++) {
721 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
722 continue;
723 inode[type] = ocfs2_get_system_file_inode(osb, ino[type],
724 osb->slot_num);
725 if (!inode[type]) {
726 status = -ENOENT;
727 goto out_quota_off;
728 }
729 status = vfs_quota_enable(inode[type], type, QFMT_OCFS2,
730 DQUOT_USAGE_ENABLED);
731 if (status < 0)
732 goto out_quota_off;
733 }
734
735 for (type = 0; type < MAXQUOTAS; type++)
736 iput(inode[type]);
737 return 0;
738out_quota_off:
739 ocfs2_disable_quotas(osb);
740 for (type = 0; type < MAXQUOTAS; type++)
741 iput(inode[type]);
742 mlog_errno(status);
743 return status;
744}
745
746static void ocfs2_disable_quotas(struct ocfs2_super *osb)
747{
748 int type;
749 struct inode *inode;
750 struct super_block *sb = osb->sb;
751
752 /* We mostly ignore errors in this function because there's not much
753 * we can do when we see them */
754 for (type = 0; type < MAXQUOTAS; type++) {
755 if (!sb_has_quota_loaded(sb, type))
756 continue;
757 inode = igrab(sb->s_dquot.files[type]);
758 /* Turn off quotas. This will remove all dquot structures from
759 * memory and so they will be automatically synced to global
760 * quota files */
761 vfs_quota_disable(sb, type, DQUOT_USAGE_ENABLED |
762 DQUOT_LIMITS_ENABLED);
763 if (!inode)
764 continue;
765 iput(inode);
766 }
767}
768
769/* Handle quota on quotactl */
770static int ocfs2_quota_on(struct super_block *sb, int type, int format_id,
771 char *path, int remount)
772{
773 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
774 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
775
776 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
777 return -EINVAL;
778
779 if (remount)
780 return 0; /* Just ignore it has been handled in
781 * ocfs2_remount() */
782 return vfs_quota_enable(sb_dqopt(sb)->files[type], type,
783 format_id, DQUOT_LIMITS_ENABLED);
784}
785
786/* Handle quota off quotactl */
787static int ocfs2_quota_off(struct super_block *sb, int type, int remount)
788{
789 if (remount)
790 return 0; /* Ignore now and handle later in
791 * ocfs2_remount() */
792 return vfs_quota_disable(sb, type, DQUOT_LIMITS_ENABLED);
793}
794
795static struct quotactl_ops ocfs2_quotactl_ops = {
796 .quota_on = ocfs2_quota_on,
797 .quota_off = ocfs2_quota_off,
798 .quota_sync = vfs_quota_sync,
799 .get_info = vfs_get_dqinfo,
800 .set_info = vfs_set_dqinfo,
801 .get_dqblk = vfs_get_dqblk,
802 .set_dqblk = vfs_set_dqblk,
803};
804
Mark Fashehccd979b2005-12-15 14:31:24 -0800805static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
806{
807 struct dentry *root;
808 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800809 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800810 struct inode *inode = NULL;
811 struct ocfs2_super *osb = NULL;
812 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800813 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -0800814
815 mlog_entry("%p, %p, %i", sb, data, silent);
816
Tiger Yangc0123ad2007-09-08 00:16:10 +0800817 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800818 status = -EINVAL;
819 goto read_super_error;
820 }
821
822 /* probe for superblock */
823 status = ocfs2_sb_probe(sb, &bh, &sector_size);
824 if (status < 0) {
825 mlog(ML_ERROR, "superblock probe failed!\n");
826 goto read_super_error;
827 }
828
829 status = ocfs2_initialize_super(sb, bh, sector_size);
830 osb = OCFS2_SB(sb);
831 if (status < 0) {
832 mlog_errno(status);
833 goto read_super_error;
834 }
835 brelse(bh);
836 bh = NULL;
Tiger Yanga68979b2008-11-14 11:17:52 +0800837
838 if (!(osb->s_feature_incompat & OCFS2_FEATURE_INCOMPAT_XATTR))
839 parsed_options.mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
840
Tiger Yangc0123ad2007-09-08 00:16:10 +0800841 osb->s_mount_opt = parsed_options.mount_opt;
842 osb->s_atime_quantum = parsed_options.atime_quantum;
843 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800844 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fasheh9c7af402008-07-28 18:02:53 -0700845 osb->local_alloc_default_bits = ocfs2_megabytes_to_clusters(sb, parsed_options.localalloc_opt);
846 osb->local_alloc_bits = osb->local_alloc_default_bits;
Jan Kara19ece542008-08-21 20:13:17 +0200847 if (osb->s_mount_opt & OCFS2_MOUNT_USRQUOTA &&
848 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
849 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
850 status = -EINVAL;
851 mlog(ML_ERROR, "User quotas were requested, but this "
852 "filesystem does not have the feature enabled.\n");
853 goto read_super_error;
854 }
855 if (osb->s_mount_opt & OCFS2_MOUNT_GRPQUOTA &&
856 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
857 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
858 status = -EINVAL;
859 mlog(ML_ERROR, "Group quotas were requested, but this "
860 "filesystem does not have the feature enabled.\n");
861 goto read_super_error;
862 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800863
Joel Beckerb61817e2008-02-01 15:08:23 -0800864 status = ocfs2_verify_userspace_stack(osb, &parsed_options);
865 if (status)
866 goto read_super_error;
867
Mark Fashehccd979b2005-12-15 14:31:24 -0800868 sb->s_magic = OCFS2_SUPER_MAGIC;
869
Tiger Yanga68979b2008-11-14 11:17:52 +0800870 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
871 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
872
Mark Fashehccd979b2005-12-15 14:31:24 -0800873 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
874 * heartbeat=none */
875 if (bdev_read_only(sb->s_bdev)) {
876 if (!(sb->s_flags & MS_RDONLY)) {
877 status = -EACCES;
878 mlog(ML_ERROR, "Readonly device detected but readonly "
879 "mount was not specified.\n");
880 goto read_super_error;
881 }
882
883 /* You should not be able to start a local heartbeat
884 * on a readonly device. */
885 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
886 status = -EROFS;
887 mlog(ML_ERROR, "Local heartbeat specified on readonly "
888 "device.\n");
889 goto read_super_error;
890 }
891
892 status = ocfs2_check_journals_nolocks(osb);
893 if (status < 0) {
894 if (status == -EROFS)
895 mlog(ML_ERROR, "Recovery required on readonly "
896 "file system, but write access is "
897 "unavailable.\n");
898 else
899 mlog_errno(status);
900 goto read_super_error;
901 }
902
903 ocfs2_set_ro_flag(osb, 1);
904
905 printk(KERN_NOTICE "Readonly device detected. No cluster "
906 "services will be utilized for this mount. Recovery "
907 "will be skipped.\n");
908 }
909
910 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800911 if (sb->s_flags & MS_RDONLY)
912 ocfs2_set_ro_flag(osb, 0);
913 }
914
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800915 status = ocfs2_verify_heartbeat(osb);
916 if (status < 0) {
917 mlog_errno(status);
918 goto read_super_error;
919 }
920
Mark Fashehccd979b2005-12-15 14:31:24 -0800921 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
922 ocfs2_debugfs_root);
923 if (!osb->osb_debug_root) {
924 status = -EINVAL;
925 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
926 goto read_super_error;
927 }
928
929 status = ocfs2_mount_volume(sb);
930 if (osb->root_inode)
931 inode = igrab(osb->root_inode);
932
933 if (status < 0)
934 goto read_super_error;
935
936 if (!inode) {
937 status = -EIO;
938 mlog_errno(status);
939 goto read_super_error;
940 }
941
942 root = d_alloc_root(inode);
943 if (!root) {
944 status = -ENOMEM;
945 mlog_errno(status);
946 goto read_super_error;
947 }
948
949 sb->s_root = root;
950
951 ocfs2_complete_mount_recovery(osb);
952
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800953 if (ocfs2_mount_local(osb))
954 snprintf(nodestr, sizeof(nodestr), "local");
955 else
Joel Becker19fdb622008-01-30 15:38:24 -0800956 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800957
958 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -0700959 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800960 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -0800961 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
962 "ordered");
963
964 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
965 wake_up(&osb->osb_mount_event);
966
Jan Kara19ece542008-08-21 20:13:17 +0200967 /* Now we can initialize quotas because we can afford to wait
968 * for cluster locks recovery now. That also means that truncation
969 * log recovery can happen but that waits for proper quota setup */
970 if (!(sb->s_flags & MS_RDONLY)) {
971 status = ocfs2_enable_quotas(osb);
972 if (status < 0) {
973 /* We have to err-out specially here because
974 * s_root is already set */
975 mlog_errno(status);
976 atomic_set(&osb->vol_state, VOLUME_DISABLED);
977 wake_up(&osb->osb_mount_event);
978 mlog_exit(status);
979 return status;
980 }
981 }
982
983 ocfs2_complete_quota_recovery(osb);
984
985 /* Now we wake up again for processes waiting for quotas */
986 atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS);
987 wake_up(&osb->osb_mount_event);
988
Mark Fashehccd979b2005-12-15 14:31:24 -0800989 mlog_exit(status);
990 return status;
991
992read_super_error:
Mark Fasheha81cb882008-10-07 14:25:16 -0700993 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -0800994
995 if (inode)
996 iput(inode);
997
998 if (osb) {
999 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1000 wake_up(&osb->osb_mount_event);
1001 ocfs2_dismount_volume(sb, 1);
1002 }
1003
1004 mlog_exit(status);
1005 return status;
1006}
1007
David Howells454e2392006-06-23 02:02:57 -07001008static int ocfs2_get_sb(struct file_system_type *fs_type,
1009 int flags,
1010 const char *dev_name,
1011 void *data,
1012 struct vfsmount *mnt)
Mark Fashehccd979b2005-12-15 14:31:24 -08001013{
David Howells454e2392006-06-23 02:02:57 -07001014 return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
1015 mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -08001016}
1017
1018static struct file_system_type ocfs2_fs_type = {
1019 .owner = THIS_MODULE,
1020 .name = "ocfs2",
1021 .get_sb = ocfs2_get_sb, /* is this called when we mount
1022 * the fs? */
1023 .kill_sb = kill_block_super, /* set to the generic one
1024 * right now, but do we
1025 * need to change that? */
Mark Fasheh1ba9da22006-09-08 14:22:54 -07001026 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -08001027 .next = NULL
1028};
1029
1030static int ocfs2_parse_options(struct super_block *sb,
1031 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +08001032 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -08001033 int is_remount)
1034{
1035 int status;
1036 char *p;
1037
1038 mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
1039 options ? options : "(none)");
1040
Mark Fashehd147b3d2007-11-07 14:40:36 -08001041 mopt->commit_interval = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001042 mopt->mount_opt = 0;
1043 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1044 mopt->slot = OCFS2_INVALID_SLOT;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001045 mopt->localalloc_opt = OCFS2_DEFAULT_LOCAL_ALLOC_SIZE;
Joel Beckerb61817e2008-02-01 15:08:23 -08001046 mopt->cluster_stack[0] = '\0';
Mark Fashehccd979b2005-12-15 14:31:24 -08001047
1048 if (!options) {
1049 status = 1;
1050 goto bail;
1051 }
1052
1053 while ((p = strsep(&options, ",")) != NULL) {
1054 int token, option;
1055 substring_t args[MAX_OPT_ARGS];
1056
1057 if (!*p)
1058 continue;
1059
1060 token = match_token(p, tokens, args);
1061 switch (token) {
1062 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001063 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001064 break;
1065 case Opt_hb_none:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001066 mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001067 break;
1068 case Opt_barrier:
1069 if (match_int(&args[0], &option)) {
1070 status = 0;
1071 goto bail;
1072 }
1073 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001074 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001075 else
Tiger Yangc0123ad2007-09-08 00:16:10 +08001076 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001077 break;
1078 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001079 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001080 break;
1081 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001082 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001083 break;
1084 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001085 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001086 break;
1087 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001088 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001089 break;
1090 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001091 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001092 break;
1093 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001094 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001095 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001096 case Opt_user_xattr:
1097 mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
1098 break;
1099 case Opt_nouser_xattr:
1100 mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
1101 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001102 case Opt_atime_quantum:
1103 if (match_int(&args[0], &option)) {
1104 status = 0;
1105 goto bail;
1106 }
1107 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001108 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001109 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001110 case Opt_slot:
1111 option = 0;
1112 if (match_int(&args[0], &option)) {
1113 status = 0;
1114 goto bail;
1115 }
1116 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001117 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001118 break;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001119 case Opt_commit:
1120 option = 0;
1121 if (match_int(&args[0], &option)) {
1122 status = 0;
1123 goto bail;
1124 }
1125 if (option < 0)
1126 return 0;
1127 if (option == 0)
Joel Becker2b4e30f2008-09-03 20:03:41 -07001128 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001129 mopt->commit_interval = HZ * option;
1130 break;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001131 case Opt_localalloc:
1132 option = 0;
1133 if (match_int(&args[0], &option)) {
1134 status = 0;
1135 goto bail;
1136 }
1137 if (option >= 0 && (option <= ocfs2_local_alloc_size(sb) * 8))
1138 mopt->localalloc_opt = option;
1139 break;
Mark Fasheh53fc6222007-12-20 16:49:04 -08001140 case Opt_localflocks:
1141 /*
1142 * Changing this during remount could race
1143 * flock() requests, or "unbalance" existing
1144 * ones (e.g., a lock is taken in one mode but
1145 * dropped in the other). If users care enough
1146 * to flip locking modes during remount, we
1147 * could add a "local" flag to individual
1148 * flock structures for proper tracking of
1149 * state.
1150 */
1151 if (!is_remount)
1152 mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
1153 break;
Joel Beckerb61817e2008-02-01 15:08:23 -08001154 case Opt_stack:
1155 /* Check both that the option we were passed
1156 * is of the right length and that it is a proper
1157 * string of the right length.
1158 */
1159 if (((args[0].to - args[0].from) !=
1160 OCFS2_STACK_LABEL_LEN) ||
1161 (strnlen(args[0].from,
1162 OCFS2_STACK_LABEL_LEN) !=
1163 OCFS2_STACK_LABEL_LEN)) {
1164 mlog(ML_ERROR,
1165 "Invalid cluster_stack option\n");
1166 status = 0;
1167 goto bail;
1168 }
1169 memcpy(mopt->cluster_stack, args[0].from,
1170 OCFS2_STACK_LABEL_LEN);
1171 mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
1172 break;
Joel Becker12462f12008-09-03 20:03:40 -07001173 case Opt_inode64:
1174 mopt->mount_opt |= OCFS2_MOUNT_INODE64;
1175 break;
Jan Kara19ece542008-08-21 20:13:17 +02001176 case Opt_usrquota:
1177 /* We check only on remount, otherwise features
1178 * aren't yet initialized. */
1179 if (is_remount && !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1180 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
1181 mlog(ML_ERROR, "User quota requested but "
1182 "filesystem feature is not set\n");
1183 status = 0;
1184 goto bail;
1185 }
1186 mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA;
1187 break;
1188 case Opt_grpquota:
1189 if (is_remount && !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1190 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
1191 mlog(ML_ERROR, "Group quota requested but "
1192 "filesystem feature is not set\n");
1193 status = 0;
1194 goto bail;
1195 }
1196 mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA;
1197 break;
Tiger Yanga68979b2008-11-14 11:17:52 +08001198#ifdef CONFIG_OCFS2_FS_POSIX_ACL
1199 case Opt_acl:
1200 mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
1201 break;
1202 case Opt_noacl:
1203 mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
1204 break;
1205#else
1206 case Opt_acl:
1207 case Opt_noacl:
1208 printk(KERN_INFO "ocfs2 (no)acl options not supported\n");
1209 break;
1210#endif
Mark Fashehccd979b2005-12-15 14:31:24 -08001211 default:
1212 mlog(ML_ERROR,
1213 "Unrecognized mount option \"%s\" "
1214 "or missing value\n", p);
1215 status = 0;
1216 goto bail;
1217 }
1218 }
1219
1220 status = 1;
1221
1222bail:
1223 mlog_exit(status);
1224 return status;
1225}
1226
Sunil Mushrand5500712007-09-06 13:34:16 -07001227static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
1228{
1229 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
1230 unsigned long opts = osb->s_mount_opt;
Mark Fashehebcee4b2008-07-28 14:55:20 -07001231 unsigned int local_alloc_megs;
Sunil Mushrand5500712007-09-06 13:34:16 -07001232
1233 if (opts & OCFS2_MOUNT_HB_LOCAL)
1234 seq_printf(s, ",_netdev,heartbeat=local");
1235 else
1236 seq_printf(s, ",heartbeat=none");
1237
1238 if (opts & OCFS2_MOUNT_NOINTR)
1239 seq_printf(s, ",nointr");
1240
1241 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
1242 seq_printf(s, ",data=writeback");
1243 else
1244 seq_printf(s, ",data=ordered");
1245
1246 if (opts & OCFS2_MOUNT_BARRIER)
1247 seq_printf(s, ",barrier=1");
1248
1249 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
1250 seq_printf(s, ",errors=panic");
1251 else
1252 seq_printf(s, ",errors=remount-ro");
1253
1254 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
1255 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
1256
1257 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
1258 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
1259
Mark Fashehd147b3d2007-11-07 14:40:36 -08001260 if (osb->osb_commit_interval)
1261 seq_printf(s, ",commit=%u",
1262 (unsigned) (osb->osb_commit_interval / HZ));
1263
Mark Fashehebcee4b2008-07-28 14:55:20 -07001264 local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
1265 if (local_alloc_megs != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE)
1266 seq_printf(s, ",localalloc=%d", local_alloc_megs);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001267
Mark Fasheh53fc6222007-12-20 16:49:04 -08001268 if (opts & OCFS2_MOUNT_LOCALFLOCKS)
1269 seq_printf(s, ",localflocks,");
1270
Joel Beckerb61817e2008-02-01 15:08:23 -08001271 if (osb->osb_cluster_stack[0])
1272 seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
1273 osb->osb_cluster_stack);
Jan Kara19ece542008-08-21 20:13:17 +02001274 if (opts & OCFS2_MOUNT_USRQUOTA)
1275 seq_printf(s, ",usrquota");
1276 if (opts & OCFS2_MOUNT_GRPQUOTA)
1277 seq_printf(s, ",grpquota");
Joel Beckerb61817e2008-02-01 15:08:23 -08001278
Sunil Mushranb0f73cf2008-09-05 11:29:14 -07001279 if (opts & OCFS2_MOUNT_NOUSERXATTR)
1280 seq_printf(s, ",nouser_xattr");
1281 else
1282 seq_printf(s, ",user_xattr");
1283
Joel Becker12462f12008-09-03 20:03:40 -07001284 if (opts & OCFS2_MOUNT_INODE64)
1285 seq_printf(s, ",inode64");
1286
Tiger Yanga68979b2008-11-14 11:17:52 +08001287#ifdef CONFIG_OCFS2_FS_POSIX_ACL
1288 if (opts & OCFS2_MOUNT_POSIX_ACL)
1289 seq_printf(s, ",acl");
1290 else
1291 seq_printf(s, ",noacl");
1292#endif
1293
Sunil Mushrand5500712007-09-06 13:34:16 -07001294 return 0;
1295}
1296
Mark Fashehccd979b2005-12-15 14:31:24 -08001297static int __init ocfs2_init(void)
1298{
1299 int status;
1300
1301 mlog_entry_void();
1302
1303 ocfs2_print_version();
1304
Mark Fashehccd979b2005-12-15 14:31:24 -08001305 status = init_ocfs2_uptodate_cache();
1306 if (status < 0) {
1307 mlog_errno(status);
1308 goto leave;
1309 }
1310
1311 status = ocfs2_initialize_mem_caches();
1312 if (status < 0) {
1313 mlog_errno(status);
1314 goto leave;
1315 }
1316
1317 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
1318 if (!ocfs2_wq) {
1319 status = -ENOMEM;
1320 goto leave;
1321 }
1322
Mark Fashehccd979b2005-12-15 14:31:24 -08001323 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
1324 if (!ocfs2_debugfs_root) {
1325 status = -EFAULT;
1326 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
1327 }
1328
Mark Fasheh171bf932008-10-20 15:36:47 +02001329 status = ocfs2_quota_setup();
1330 if (status)
1331 goto leave;
1332
Joel Becker63e0c482008-01-30 16:58:36 -08001333 ocfs2_set_locking_protocol();
1334
Jan Kara9e33d692008-08-25 19:56:50 +02001335 status = register_quota_format(&ocfs2_quota_format);
Mark Fashehccd979b2005-12-15 14:31:24 -08001336leave:
1337 if (status < 0) {
Mark Fasheh171bf932008-10-20 15:36:47 +02001338 ocfs2_quota_shutdown();
Mark Fashehccd979b2005-12-15 14:31:24 -08001339 ocfs2_free_mem_caches();
1340 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -08001341 }
1342
1343 mlog_exit(status);
1344
1345 if (status >= 0) {
1346 return register_filesystem(&ocfs2_fs_type);
1347 } else
1348 return -1;
1349}
1350
1351static void __exit ocfs2_exit(void)
1352{
1353 mlog_entry_void();
1354
Mark Fasheh171bf932008-10-20 15:36:47 +02001355 ocfs2_quota_shutdown();
1356
Mark Fashehccd979b2005-12-15 14:31:24 -08001357 if (ocfs2_wq) {
1358 flush_workqueue(ocfs2_wq);
1359 destroy_workqueue(ocfs2_wq);
1360 }
1361
Jan Kara9e33d692008-08-25 19:56:50 +02001362 unregister_quota_format(&ocfs2_quota_format);
1363
Mark Fashehccd979b2005-12-15 14:31:24 -08001364 debugfs_remove(ocfs2_debugfs_root);
1365
1366 ocfs2_free_mem_caches();
1367
1368 unregister_filesystem(&ocfs2_fs_type);
1369
Mark Fashehccd979b2005-12-15 14:31:24 -08001370 exit_ocfs2_uptodate_cache();
1371
1372 mlog_exit_void();
1373}
1374
1375static void ocfs2_put_super(struct super_block *sb)
1376{
1377 mlog_entry("(0x%p)\n", sb);
1378
1379 ocfs2_sync_blockdev(sb);
1380 ocfs2_dismount_volume(sb, 0);
1381
1382 mlog_exit_void();
1383}
1384
David Howells726c3342006-06-23 02:02:58 -07001385static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -08001386{
1387 struct ocfs2_super *osb;
1388 u32 numbits, freebits;
1389 int status;
1390 struct ocfs2_dinode *bm_lock;
1391 struct buffer_head *bh = NULL;
1392 struct inode *inode = NULL;
1393
David Howells726c3342006-06-23 02:02:58 -07001394 mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -08001395
David Howells726c3342006-06-23 02:02:58 -07001396 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001397
1398 inode = ocfs2_get_system_file_inode(osb,
1399 GLOBAL_BITMAP_SYSTEM_INODE,
1400 OCFS2_INVALID_SLOT);
1401 if (!inode) {
1402 mlog(ML_ERROR, "failed to get bitmap inode\n");
1403 status = -EIO;
1404 goto bail;
1405 }
1406
Mark Fashehe63aecb62007-10-18 15:30:42 -07001407 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001408 if (status < 0) {
1409 mlog_errno(status);
1410 goto bail;
1411 }
1412
1413 bm_lock = (struct ocfs2_dinode *) bh->b_data;
1414
1415 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
1416 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
1417
1418 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -07001419 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -08001420 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
1421 buf->f_blocks = ((sector_t) numbits) *
1422 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1423 buf->f_bfree = ((sector_t) freebits) *
1424 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1425 buf->f_bavail = buf->f_bfree;
1426 buf->f_files = numbits;
1427 buf->f_ffree = freebits;
1428
1429 brelse(bh);
1430
Mark Fashehe63aecb62007-10-18 15:30:42 -07001431 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001432 status = 0;
1433bail:
1434 if (inode)
1435 iput(inode);
1436
1437 mlog_exit(status);
1438
1439 return status;
1440}
1441
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001442static void ocfs2_inode_init_once(void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001443{
1444 struct ocfs2_inode_info *oi = data;
1445
Christoph Lametera35afb82007-05-16 22:10:57 -07001446 oi->ip_flags = 0;
1447 oi->ip_open_count = 0;
1448 spin_lock_init(&oi->ip_lock);
1449 ocfs2_extent_map_init(&oi->vfs_inode);
1450 INIT_LIST_HEAD(&oi->ip_io_markers);
1451 oi->ip_created_trans = 0;
1452 oi->ip_last_trans = 0;
1453 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001454
Christoph Lametera35afb82007-05-16 22:10:57 -07001455 init_rwsem(&oi->ip_alloc_sem);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001456 init_rwsem(&oi->ip_xattr_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -07001457 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001458
Christoph Lametera35afb82007-05-16 22:10:57 -07001459 oi->ip_blkno = 0ULL;
1460 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001461
Christoph Lametera35afb82007-05-16 22:10:57 -07001462 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001463 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001464 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001465
Christoph Lametera35afb82007-05-16 22:10:57 -07001466 ocfs2_metadata_cache_init(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001467
Christoph Lametera35afb82007-05-16 22:10:57 -07001468 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001469}
1470
1471static int ocfs2_initialize_mem_caches(void)
1472{
1473 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001474 sizeof(struct ocfs2_inode_info),
1475 0,
1476 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1477 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001478 ocfs2_inode_init_once);
Jan Kara9e33d692008-08-25 19:56:50 +02001479 ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
1480 sizeof(struct ocfs2_dquot),
1481 0,
1482 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1483 SLAB_MEM_SPREAD),
1484 NULL);
1485 ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
1486 sizeof(struct ocfs2_quota_chunk),
1487 0,
1488 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
1489 NULL);
1490 if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
1491 !ocfs2_qf_chunk_cachep) {
1492 if (ocfs2_inode_cachep)
1493 kmem_cache_destroy(ocfs2_inode_cachep);
1494 if (ocfs2_dquot_cachep)
1495 kmem_cache_destroy(ocfs2_dquot_cachep);
1496 if (ocfs2_qf_chunk_cachep)
1497 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001498 return -ENOMEM;
Jan Kara9e33d692008-08-25 19:56:50 +02001499 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001500
Mark Fashehccd979b2005-12-15 14:31:24 -08001501 return 0;
1502}
1503
1504static void ocfs2_free_mem_caches(void)
1505{
1506 if (ocfs2_inode_cachep)
1507 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001508 ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +02001509
1510 if (ocfs2_dquot_cachep)
1511 kmem_cache_destroy(ocfs2_dquot_cachep);
1512 ocfs2_dquot_cachep = NULL;
1513
1514 if (ocfs2_qf_chunk_cachep)
1515 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
1516 ocfs2_qf_chunk_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001517}
1518
1519static int ocfs2_get_sector(struct super_block *sb,
1520 struct buffer_head **bh,
1521 int block,
1522 int sect_size)
1523{
1524 if (!sb_set_blocksize(sb, sect_size)) {
1525 mlog(ML_ERROR, "unable to set blocksize\n");
1526 return -EIO;
1527 }
1528
1529 *bh = sb_getblk(sb, block);
1530 if (!*bh) {
1531 mlog_errno(-EIO);
1532 return -EIO;
1533 }
1534 lock_buffer(*bh);
1535 if (!buffer_dirty(*bh))
1536 clear_buffer_uptodate(*bh);
1537 unlock_buffer(*bh);
1538 ll_rw_block(READ, 1, bh);
1539 wait_on_buffer(*bh);
1540 return 0;
1541}
1542
Mark Fashehccd979b2005-12-15 14:31:24 -08001543static int ocfs2_mount_volume(struct super_block *sb)
1544{
1545 int status = 0;
1546 int unlock_super = 0;
1547 struct ocfs2_super *osb = OCFS2_SB(sb);
1548
1549 mlog_entry_void();
1550
1551 if (ocfs2_is_hard_readonly(osb))
1552 goto leave;
1553
Mark Fashehccd979b2005-12-15 14:31:24 -08001554 status = ocfs2_dlm_init(osb);
1555 if (status < 0) {
1556 mlog_errno(status);
1557 goto leave;
1558 }
1559
Mark Fashehccd979b2005-12-15 14:31:24 -08001560 status = ocfs2_super_lock(osb, 1);
1561 if (status < 0) {
1562 mlog_errno(status);
1563 goto leave;
1564 }
1565 unlock_super = 1;
1566
1567 /* This will load up the node map and add ourselves to it. */
1568 status = ocfs2_find_slot(osb);
1569 if (status < 0) {
1570 mlog_errno(status);
1571 goto leave;
1572 }
1573
Mark Fashehccd979b2005-12-15 14:31:24 -08001574 /* load all node-local system inodes */
1575 status = ocfs2_init_local_system_inodes(osb);
1576 if (status < 0) {
1577 mlog_errno(status);
1578 goto leave;
1579 }
1580
1581 status = ocfs2_check_volume(osb);
1582 if (status < 0) {
1583 mlog_errno(status);
1584 goto leave;
1585 }
1586
1587 status = ocfs2_truncate_log_init(osb);
1588 if (status < 0) {
1589 mlog_errno(status);
1590 goto leave;
1591 }
1592
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001593 if (ocfs2_mount_local(osb))
1594 goto leave;
1595
Mark Fashehccd979b2005-12-15 14:31:24 -08001596leave:
1597 if (unlock_super)
1598 ocfs2_super_unlock(osb, 1);
1599
1600 mlog_exit(status);
1601 return status;
1602}
1603
Mark Fashehccd979b2005-12-15 14:31:24 -08001604static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1605{
Joel Becker286eaa92008-02-01 15:03:57 -08001606 int tmp, hangup_needed = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001607 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001608 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001609
1610 mlog_entry("(0x%p)\n", sb);
1611
1612 BUG_ON(!sb);
1613 osb = OCFS2_SB(sb);
1614 BUG_ON(!osb);
1615
Jan Kara19ece542008-08-21 20:13:17 +02001616 ocfs2_disable_quotas(osb);
1617
Mark Fashehccd979b2005-12-15 14:31:24 -08001618 ocfs2_shutdown_local_alloc(osb);
1619
1620 ocfs2_truncate_log_shutdown(osb);
1621
Joel Becker553abd02008-02-01 12:03:57 -08001622 /* This will disable recovery and flush any recovery work. */
1623 ocfs2_recovery_exit(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001624
1625 ocfs2_journal_shutdown(osb);
1626
1627 ocfs2_sync_blockdev(sb);
1628
Joel Becker4670c462008-02-01 14:39:35 -08001629 /* No cluster connection means we've failed during mount, so skip
1630 * all the steps which depended on that to complete. */
1631 if (osb->cconn) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001632 tmp = ocfs2_super_lock(osb, 1);
1633 if (tmp < 0) {
1634 mlog_errno(tmp);
1635 return;
1636 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001637 }
1638
Mark Fasheh19b613d2007-10-04 14:47:09 -07001639 if (osb->slot_num != OCFS2_INVALID_SLOT)
1640 ocfs2_put_slot(osb);
1641
Joel Becker4670c462008-02-01 14:39:35 -08001642 if (osb->cconn)
Mark Fasheh19b613d2007-10-04 14:47:09 -07001643 ocfs2_super_unlock(osb, 1);
1644
Mark Fashehccd979b2005-12-15 14:31:24 -08001645 ocfs2_release_system_inodes(osb);
1646
Joel Becker6953b4c2008-01-29 16:59:56 -08001647 /*
Joel Becker6953b4c2008-01-29 16:59:56 -08001648 * If we're dismounting due to mount error, mount.ocfs2 will clean
1649 * up heartbeat. If we're a local mount, there is no heartbeat.
1650 * If we failed before we got a uuid_str yet, we can't stop
1651 * heartbeat. Otherwise, do it.
1652 */
1653 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
Joel Becker286eaa92008-02-01 15:03:57 -08001654 hangup_needed = 1;
1655
1656 if (osb->cconn)
1657 ocfs2_dlm_shutdown(osb, hangup_needed);
1658
1659 debugfs_remove(osb->osb_debug_root);
1660
1661 if (hangup_needed)
Joel Becker6953b4c2008-01-29 16:59:56 -08001662 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
Mark Fashehccd979b2005-12-15 14:31:24 -08001663
1664 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
1665
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001666 if (ocfs2_mount_local(osb))
1667 snprintf(nodestr, sizeof(nodestr), "local");
1668 else
Joel Becker19fdb622008-01-30 15:38:24 -08001669 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001670
1671 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
1672 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001673
1674 ocfs2_delete_osb(osb);
1675 kfree(osb);
1676 sb->s_dev = 0;
1677 sb->s_fs_info = NULL;
1678}
1679
1680static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
1681 unsigned uuid_bytes)
1682{
1683 int i, ret;
1684 char *ptr;
1685
1686 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
1687
Robert P. J. Daycd861282006-12-13 00:34:52 -08001688 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001689 if (osb->uuid_str == NULL)
1690 return -ENOMEM;
1691
Mark Fashehccd979b2005-12-15 14:31:24 -08001692 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
1693 /* print with null */
1694 ret = snprintf(ptr, 3, "%02X", uuid[i]);
1695 if (ret != 2) /* drop super cleans up */
1696 return -EINVAL;
1697 /* then only advance past the last char */
1698 ptr += 2;
1699 }
1700
1701 return 0;
1702}
1703
1704static int ocfs2_initialize_super(struct super_block *sb,
1705 struct buffer_head *bh,
1706 int sector_size)
1707{
Denis Chengbddb8eb32007-09-27 02:10:04 +08001708 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07001709 int i, cbits, bbits;
1710 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001711 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001712 struct ocfs2_journal *journal;
1713 __le32 uuid_net_key;
1714 struct ocfs2_super *osb;
1715
1716 mlog_entry_void();
1717
Robert P. J. Daycd861282006-12-13 00:34:52 -08001718 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001719 if (!osb) {
1720 status = -ENOMEM;
1721 mlog_errno(status);
1722 goto bail;
1723 }
1724
1725 sb->s_fs_info = osb;
1726 sb->s_op = &ocfs2_sops;
1727 sb->s_export_op = &ocfs2_export_ops;
Jan Kara19ece542008-08-21 20:13:17 +02001728 sb->s_qcop = &ocfs2_quotactl_ops;
1729 sb->dq_op = &ocfs2_quota_operations;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001730 sb->s_xattr = ocfs2_xattr_handlers;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07001731 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001732 sb->s_flags |= MS_NOATIME;
1733 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07001734 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
1735 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
1736 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001737
1738 osb->sb = sb;
1739 /* Save off for ocfs2_rw_direct */
1740 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01001741 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08001742
Mark Fasheh34d024f2007-09-24 15:56:19 -07001743 spin_lock_init(&osb->dc_task_lock);
1744 init_waitqueue_head(&osb->dc_event);
1745 osb->dc_work_sequence = 0;
1746 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001747 INIT_LIST_HEAD(&osb->blocked_lock_list);
1748 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001749 spin_lock_init(&osb->osb_lock);
Tao Mac8b9cf92009-02-24 17:40:26 -08001750 spin_lock_init(&osb->osb_xattr_lock);
Tao Ma4d0ddb22008-03-05 16:11:46 +08001751 ocfs2_init_inode_steal_slot(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001752
1753 atomic_set(&osb->alloc_stats.moves, 0);
1754 atomic_set(&osb->alloc_stats.local_data, 0);
1755 atomic_set(&osb->alloc_stats.bitmap_data, 0);
1756 atomic_set(&osb->alloc_stats.bg_allocs, 0);
1757 atomic_set(&osb->alloc_stats.bg_extends, 0);
1758
1759 ocfs2_init_node_maps(osb);
1760
1761 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
1762 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
1763
Joel Becker553abd02008-02-01 12:03:57 -08001764 status = ocfs2_recovery_init(osb);
1765 if (status) {
1766 mlog(ML_ERROR, "Unable to initialize recovery state\n");
1767 mlog_errno(status);
1768 goto bail;
1769 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001770
1771 init_waitqueue_head(&osb->checkpoint_event);
1772 atomic_set(&osb->needs_checkpoint, 0);
1773
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001774 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1775
Mark Fashehccd979b2005-12-15 14:31:24 -08001776 osb->slot_num = OCFS2_INVALID_SLOT;
1777
Tiger Yang8154da32008-08-18 17:11:46 +08001778 osb->s_xattr_inline_size = le16_to_cpu(
1779 di->id2.i_super.s_xattr_inline_size);
Tiger Yangfdd77702008-08-18 17:08:55 +08001780
Mark Fashehccd979b2005-12-15 14:31:24 -08001781 osb->local_alloc_state = OCFS2_LA_UNUSED;
1782 osb->local_alloc_bh = NULL;
Mark Fasheh9c7af402008-07-28 18:02:53 -07001783 INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08001784
Mark Fashehccd979b2005-12-15 14:31:24 -08001785 init_waitqueue_head(&osb->osb_mount_event);
1786
1787 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
1788 if (!osb->vol_label) {
1789 mlog(ML_ERROR, "unable to alloc vol label\n");
1790 status = -ENOMEM;
1791 goto bail;
1792 }
1793
Mark Fashehccd979b2005-12-15 14:31:24 -08001794 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
1795 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
1796 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
1797 osb->max_slots);
1798 status = -EINVAL;
1799 goto bail;
1800 }
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001801 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
Mark Fashehccd979b2005-12-15 14:31:24 -08001802
Sunil Mushran539d8262008-07-14 17:31:10 -07001803 osb->slot_recovery_generations =
1804 kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
1805 GFP_KERNEL);
1806 if (!osb->slot_recovery_generations) {
1807 status = -ENOMEM;
1808 mlog_errno(status);
1809 goto bail;
1810 }
1811
Mark Fashehb4df6ed2006-02-22 17:35:08 -08001812 init_waitqueue_head(&osb->osb_wipe_event);
1813 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
1814 sizeof(*osb->osb_orphan_wipes),
1815 GFP_KERNEL);
1816 if (!osb->osb_orphan_wipes) {
1817 status = -ENOMEM;
1818 mlog_errno(status);
1819 goto bail;
1820 }
1821
Mark Fashehccd979b2005-12-15 14:31:24 -08001822 osb->s_feature_compat =
1823 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
1824 osb->s_feature_ro_compat =
1825 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
1826 osb->s_feature_incompat =
1827 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
1828
1829 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
1830 mlog(ML_ERROR, "couldn't mount because of unsupported "
1831 "optional features (%x).\n", i);
1832 status = -EINVAL;
1833 goto bail;
1834 }
1835 if (!(osb->sb->s_flags & MS_RDONLY) &&
1836 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
1837 mlog(ML_ERROR, "couldn't mount RDWR because of "
1838 "unsupported optional features (%x).\n", i);
1839 status = -EINVAL;
1840 goto bail;
1841 }
1842
Joel Beckerb61817e2008-02-01 15:08:23 -08001843 if (ocfs2_userspace_stack(osb)) {
1844 memcpy(osb->osb_cluster_stack,
1845 OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
1846 OCFS2_STACK_LABEL_LEN);
1847 osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
1848 if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
1849 mlog(ML_ERROR,
1850 "couldn't mount because of an invalid "
1851 "cluster stack label (%s) \n",
1852 osb->osb_cluster_stack);
1853 status = -EINVAL;
1854 goto bail;
1855 }
1856 } else {
1857 /* The empty string is identical with classic tools that
1858 * don't know about s_cluster_info. */
1859 osb->osb_cluster_stack[0] = '\0';
1860 }
1861
Mark Fashehccd979b2005-12-15 14:31:24 -08001862 get_random_bytes(&osb->s_next_generation, sizeof(u32));
1863
1864 /* FIXME
1865 * This should be done in ocfs2_journal_init(), but unknown
1866 * ordering issues will cause the filesystem to crash.
1867 * If anyone wants to figure out what part of the code
1868 * refers to osb->journal before ocfs2_journal_init() is run,
1869 * be my guest.
1870 */
1871 /* initialize our journal structure */
1872
Robert P. J. Daycd861282006-12-13 00:34:52 -08001873 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001874 if (!journal) {
1875 mlog(ML_ERROR, "unable to alloc journal\n");
1876 status = -ENOMEM;
1877 goto bail;
1878 }
1879 osb->journal = journal;
1880 journal->j_osb = osb;
1881
1882 atomic_set(&journal->j_num_trans, 0);
1883 init_rwsem(&journal->j_trans_barrier);
1884 init_waitqueue_head(&journal->j_checkpointed);
1885 spin_lock_init(&journal->j_lock);
1886 journal->j_trans_id = (unsigned long) 1;
1887 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00001888 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08001889 journal->j_state = OCFS2_JOURNAL_FREE;
1890
Jan Karaea455f82009-01-12 23:20:31 +01001891 INIT_WORK(&osb->dentry_lock_work, ocfs2_drop_dl_inodes);
1892 osb->dentry_lock_list = NULL;
1893
Mark Fashehccd979b2005-12-15 14:31:24 -08001894 /* get some pseudo constants for clustersize bits */
1895 osb->s_clustersize_bits =
1896 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
1897 osb->s_clustersize = 1 << osb->s_clustersize_bits;
1898 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
1899
1900 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
1901 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
1902 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
1903 osb->s_clustersize);
1904 status = -EINVAL;
1905 goto bail;
1906 }
1907
1908 if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1)
1909 > (u32)~0UL) {
1910 mlog(ML_ERROR, "Volume might try to write to blocks beyond "
1911 "what jbd can address in 32 bits.\n");
1912 status = -EINVAL;
1913 goto bail;
1914 }
1915
1916 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
1917 sizeof(di->id2.i_super.s_uuid))) {
1918 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
1919 status = -ENOMEM;
1920 goto bail;
1921 }
1922
Mark Fasheh78427042006-05-04 12:03:26 -07001923 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08001924
1925 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
1926 osb->vol_label[63] = '\0';
1927 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
1928 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
1929 osb->first_cluster_group_blkno =
1930 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
1931 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001932 osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
Mark Fashehccd979b2005-12-15 14:31:24 -08001933 mlog(0, "vol_label: %s\n", osb->vol_label);
1934 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb06970532006-03-03 10:24:33 -08001935 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
1936 (unsigned long long)osb->root_blkno,
1937 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08001938
1939 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
1940 if (!osb->osb_dlm_debug) {
1941 status = -ENOMEM;
1942 mlog_errno(status);
1943 goto bail;
1944 }
1945
1946 atomic_set(&osb->vol_state, VOLUME_INIT);
1947
1948 /* load root, system_dir, and all global system inodes */
1949 status = ocfs2_init_global_system_inodes(osb);
1950 if (status < 0) {
1951 mlog_errno(status);
1952 goto bail;
1953 }
1954
1955 /*
1956 * global bitmap
1957 */
1958 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
1959 OCFS2_INVALID_SLOT);
1960 if (!inode) {
1961 status = -EINVAL;
1962 mlog_errno(status);
1963 goto bail;
1964 }
1965
1966 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08001967 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001968
Tao Mae9d578a2007-12-18 15:46:10 +08001969 osb->bitmap_cpg = ocfs2_group_bitmap_size(sb) * 8;
Mark Fashehccd979b2005-12-15 14:31:24 -08001970
1971 status = ocfs2_init_slot_info(osb);
1972 if (status < 0) {
1973 mlog_errno(status);
1974 goto bail;
1975 }
1976
Mark Fashehccd979b2005-12-15 14:31:24 -08001977bail:
1978 mlog_exit(status);
1979 return status;
1980}
1981
1982/*
1983 * will return: -EAGAIN if it is ok to keep searching for superblocks
1984 * -EINVAL if there is a bad superblock
1985 * 0 on success
1986 */
1987static int ocfs2_verify_volume(struct ocfs2_dinode *di,
1988 struct buffer_head *bh,
1989 u32 blksz)
1990{
1991 int status = -EAGAIN;
1992
1993 mlog_entry_void();
1994
1995 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
1996 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
Joel Beckerd030cc92008-12-11 15:04:14 -08001997 /* We have to do a raw check of the feature here */
1998 if (le32_to_cpu(di->id2.i_super.s_feature_incompat) &
1999 OCFS2_FEATURE_INCOMPAT_META_ECC) {
2000 status = ocfs2_block_check_validate(bh->b_data,
2001 bh->b_size,
2002 &di->i_check);
2003 if (status)
2004 goto out;
2005 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002006 status = -EINVAL;
2007 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
2008 mlog(ML_ERROR, "found superblock with incorrect block "
2009 "size: found %u, should be %u\n",
2010 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
2011 blksz);
2012 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
2013 OCFS2_MAJOR_REV_LEVEL ||
2014 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
2015 OCFS2_MINOR_REV_LEVEL) {
2016 mlog(ML_ERROR, "found superblock with bad version: "
2017 "found %u.%u, should be %u.%u\n",
2018 le16_to_cpu(di->id2.i_super.s_major_rev_level),
2019 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
2020 OCFS2_MAJOR_REV_LEVEL,
2021 OCFS2_MINOR_REV_LEVEL);
2022 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
2023 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb06970532006-03-03 10:24:33 -08002024 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07002025 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb06970532006-03-03 10:24:33 -08002026 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08002027 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
2028 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
2029 mlog(ML_ERROR, "bad cluster size found: %u\n",
2030 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
2031 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
2032 mlog(ML_ERROR, "bad root_blkno: 0\n");
2033 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
2034 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
2035 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
2036 mlog(ML_ERROR,
2037 "Superblock slots found greater than file system "
2038 "maximum: found %u, max %u\n",
2039 le16_to_cpu(di->id2.i_super.s_max_slots),
2040 OCFS2_MAX_SLOTS);
2041 } else {
2042 /* found it! */
2043 status = 0;
2044 }
2045 }
2046
Joel Beckerd030cc92008-12-11 15:04:14 -08002047out:
Mark Fashehccd979b2005-12-15 14:31:24 -08002048 mlog_exit(status);
2049 return status;
2050}
2051
2052static int ocfs2_check_volume(struct ocfs2_super *osb)
2053{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002054 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08002055 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002056 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08002057 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
2058 * recover
2059 * ourselves. */
2060
2061 mlog_entry_void();
2062
2063 /* Init our journal object. */
2064 status = ocfs2_journal_init(osb->journal, &dirty);
2065 if (status < 0) {
2066 mlog(ML_ERROR, "Could not initialize journal!\n");
2067 goto finally;
2068 }
2069
2070 /* If the journal was unmounted cleanly then we don't want to
2071 * recover anything. Otherwise, journal_load will do that
2072 * dirty work for us :) */
2073 if (!dirty) {
2074 status = ocfs2_journal_wipe(osb->journal, 0);
2075 if (status < 0) {
2076 mlog_errno(status);
2077 goto finally;
2078 }
2079 } else {
2080 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
2081 "recovering volume.\n");
2082 }
2083
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002084 local = ocfs2_mount_local(osb);
2085
Mark Fashehccd979b2005-12-15 14:31:24 -08002086 /* will play back anything left in the journal. */
Sunil Mushran539d8262008-07-14 17:31:10 -07002087 status = ocfs2_journal_load(osb->journal, local, dirty);
Wengang Wang01af4822008-06-10 14:24:48 +08002088 if (status < 0) {
2089 mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
2090 goto finally;
2091 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002092
2093 if (dirty) {
2094 /* recover my local alloc if we didn't unmount cleanly. */
2095 status = ocfs2_begin_local_alloc_recovery(osb,
2096 osb->slot_num,
2097 &local_alloc);
2098 if (status < 0) {
2099 mlog_errno(status);
2100 goto finally;
2101 }
2102 /* we complete the recovery process after we've marked
2103 * ourselves as mounted. */
2104 }
2105
2106 mlog(0, "Journal loaded.\n");
2107
2108 status = ocfs2_load_local_alloc(osb);
2109 if (status < 0) {
2110 mlog_errno(status);
2111 goto finally;
2112 }
2113
2114 if (dirty) {
2115 /* Recovery will be completed after we've mounted the
2116 * rest of the volume. */
2117 osb->dirty = 1;
2118 osb->local_alloc_copy = local_alloc;
2119 local_alloc = NULL;
2120 }
2121
2122 /* go through each journal, trylock it and if you get the
2123 * lock, and it's marked as dirty, set the bit in the recover
2124 * map and launch a recovery thread for it. */
2125 status = ocfs2_mark_dead_nodes(osb);
2126 if (status < 0)
2127 mlog_errno(status);
2128
2129finally:
2130 if (local_alloc)
2131 kfree(local_alloc);
2132
2133 mlog_exit(status);
2134 return status;
2135}
2136
2137/*
2138 * The routine gets called from dismount or close whenever a dismount on
2139 * volume is requested and the osb open count becomes 1.
2140 * It will remove the osb from the global list and also free up all the
2141 * initialized resources and fileobject.
2142 */
2143static void ocfs2_delete_osb(struct ocfs2_super *osb)
2144{
2145 mlog_entry_void();
2146
2147 /* This function assumes that the caller has the main osb resource */
2148
Mark Fasheh8e8a4602008-02-01 11:59:09 -08002149 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002150
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002151 kfree(osb->osb_orphan_wipes);
Sunil Mushran539d8262008-07-14 17:31:10 -07002152 kfree(osb->slot_recovery_generations);
Mark Fashehccd979b2005-12-15 14:31:24 -08002153 /* FIXME
2154 * This belongs in journal shutdown, but because we have to
2155 * allocate osb->journal at the start of ocfs2_initalize_osb(),
2156 * we free it here.
2157 */
2158 kfree(osb->journal);
2159 if (osb->local_alloc_copy)
2160 kfree(osb->local_alloc_copy);
2161 kfree(osb->uuid_str);
2162 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
2163 memset(osb, 0, sizeof(struct ocfs2_super));
2164
2165 mlog_exit_void();
2166}
2167
2168/* Put OCFS2 into a readonly state, or (if the user specifies it),
2169 * panic(). We do not support continue-on-error operation. */
2170static void ocfs2_handle_error(struct super_block *sb)
2171{
2172 struct ocfs2_super *osb = OCFS2_SB(sb);
2173
2174 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
2175 panic("OCFS2: (device %s): panic forced after error\n",
2176 sb->s_id);
2177
2178 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
2179
2180 if (sb->s_flags & MS_RDONLY &&
2181 (ocfs2_is_soft_readonly(osb) ||
2182 ocfs2_is_hard_readonly(osb)))
2183 return;
2184
2185 printk(KERN_CRIT "File system is now read-only due to the potential "
2186 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2187 "system is unmounted.\n");
2188 sb->s_flags |= MS_RDONLY;
2189 ocfs2_set_ro_flag(osb, 0);
2190}
2191
2192static char error_buf[1024];
2193
2194void __ocfs2_error(struct super_block *sb,
2195 const char *function,
2196 const char *fmt, ...)
2197{
2198 va_list args;
2199
2200 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002201 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002202 va_end(args);
2203
2204 /* Not using mlog here because we want to show the actual
2205 * function the error came from. */
2206 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
2207 sb->s_id, function, error_buf);
2208
2209 ocfs2_handle_error(sb);
2210}
2211
2212/* Handle critical errors. This is intentionally more drastic than
2213 * ocfs2_handle_error, so we only use for things like journal errors,
2214 * etc. */
2215void __ocfs2_abort(struct super_block* sb,
2216 const char *function,
2217 const char *fmt, ...)
2218{
2219 va_list args;
2220
2221 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002222 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002223 va_end(args);
2224
2225 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
2226 sb->s_id, function, error_buf);
2227
2228 /* We don't have the cluster support yet to go straight to
2229 * hard readonly in here. Until then, we want to keep
2230 * ocfs2_abort() so that we can at least mark critical
2231 * errors.
2232 *
2233 * TODO: This should abort the journal and alert other nodes
2234 * that our slot needs recovery. */
2235
2236 /* Force a panic(). This stinks, but it's better than letting
2237 * things continue without having a proper hard readonly
2238 * here. */
2239 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
2240 ocfs2_handle_error(sb);
2241}
2242
2243module_init(ocfs2_init);
2244module_exit(ocfs2_exit);