blob: cfe672e72b27b9e9e171fa687eedcb7d853a8c3d [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>
Mark Fashehccd979b2005-12-15 14:31:24 -080031#include <linux/init.h>
32#include <linux/random.h>
33#include <linux/statfs.h>
34#include <linux/moduleparam.h>
35#include <linux/blkdev.h>
36#include <linux/socket.h>
37#include <linux/inet.h>
38#include <linux/parser.h>
39#include <linux/crc32.h>
40#include <linux/debugfs.h>
Sunil Mushrand5500712007-09-06 13:34:16 -070041#include <linux/mount.h>
Joel Becker6953b4c2008-01-29 16:59:56 -080042#include <linux/seq_file.h>
Jan Kara19ece542008-08-21 20:13:17 +020043#include <linux/quotaops.h>
Alessio Igor Bogani337eb002009-05-12 15:10:54 +020044#include <linux/smp_lock.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"
Tao Ma374a2632009-08-24 11:13:37 +080071#include "refcounttree.h"
Tiger Yangb89c5422010-01-25 14:11:06 +080072#include "suballoc.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080073
74#include "buffer_head_io.h"
75
Christoph Lametere18b8902006-12-06 20:33:20 -080076static struct kmem_cache *ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +020077struct kmem_cache *ocfs2_dquot_cachep;
78struct kmem_cache *ocfs2_qf_chunk_cachep;
Mark Fashehccd979b2005-12-15 14:31:24 -080079
Mark Fashehccd979b2005-12-15 14:31:24 -080080/* OCFS2 needs to schedule several differnt types of work which
81 * require cluster locking, disk I/O, recovery waits, etc. Since these
82 * types of work tend to be heavy we avoid using the kernel events
83 * workqueue and schedule on our own. */
84struct workqueue_struct *ocfs2_wq = NULL;
85
86static struct dentry *ocfs2_debugfs_root = NULL;
87
88MODULE_AUTHOR("Oracle");
89MODULE_LICENSE("GPL");
90
Tiger Yangc0123ad2007-09-08 00:16:10 +080091struct mount_options
92{
Mark Fashehd147b3d2007-11-07 14:40:36 -080093 unsigned long commit_interval;
Tiger Yangc0123ad2007-09-08 00:16:10 +080094 unsigned long mount_opt;
95 unsigned int atime_quantum;
96 signed short slot;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -080097 unsigned int localalloc_opt;
Mark Fashehd02f00c2009-12-07 13:10:48 -080098 unsigned int resv_level;
Joel Beckerb61817e2008-02-01 15:08:23 -080099 char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
Tiger Yangc0123ad2007-09-08 00:16:10 +0800100};
101
Mark Fashehccd979b2005-12-15 14:31:24 -0800102static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800103 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700104 int is_remount);
Jan Kara5297aad2009-10-15 14:54:04 +0200105static int ocfs2_check_set_options(struct super_block *sb,
106 struct mount_options *options);
Sunil Mushrand5500712007-09-06 13:34:16 -0700107static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800108static void ocfs2_put_super(struct super_block *sb);
109static int ocfs2_mount_volume(struct super_block *sb);
110static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
111static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
112static int ocfs2_initialize_mem_caches(void);
113static void ocfs2_free_mem_caches(void);
114static void ocfs2_delete_osb(struct ocfs2_super *osb);
115
David Howells726c3342006-06-23 02:02:58 -0700116static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800117
118static int ocfs2_sync_fs(struct super_block *sb, int wait);
119
120static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
121static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800122static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800123static int ocfs2_check_volume(struct ocfs2_super *osb);
124static int ocfs2_verify_volume(struct ocfs2_dinode *di,
125 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800126 u32 sectsize,
127 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800128static int ocfs2_initialize_super(struct super_block *sb,
129 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800130 int sector_size,
131 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800132static int ocfs2_get_sector(struct super_block *sb,
133 struct buffer_head **bh,
134 int block,
135 int sect_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800136static struct inode *ocfs2_alloc_inode(struct super_block *sb);
137static void ocfs2_destroy_inode(struct inode *inode);
Jan Kara19ece542008-08-21 20:13:17 +0200138static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
139static int ocfs2_enable_quotas(struct ocfs2_super *osb);
140static void ocfs2_disable_quotas(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800141
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800142static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800143 .statfs = ocfs2_statfs,
144 .alloc_inode = ocfs2_alloc_inode,
145 .destroy_inode = ocfs2_destroy_inode,
146 .drop_inode = ocfs2_drop_inode,
147 .clear_inode = ocfs2_clear_inode,
148 .delete_inode = ocfs2_delete_inode,
149 .sync_fs = ocfs2_sync_fs,
Mark Fashehccd979b2005-12-15 14:31:24 -0800150 .put_super = ocfs2_put_super,
151 .remount_fs = ocfs2_remount,
Sunil Mushrand5500712007-09-06 13:34:16 -0700152 .show_options = ocfs2_show_options,
Jan Kara9e33d692008-08-25 19:56:50 +0200153 .quota_read = ocfs2_quota_read,
154 .quota_write = ocfs2_quota_write,
Mark Fashehccd979b2005-12-15 14:31:24 -0800155};
156
157enum {
158 Opt_barrier,
159 Opt_err_panic,
160 Opt_err_ro,
161 Opt_intr,
162 Opt_nointr,
163 Opt_hb_none,
164 Opt_hb_local,
165 Opt_data_ordered,
166 Opt_data_writeback,
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800167 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700168 Opt_slot,
Mark Fashehd147b3d2007-11-07 14:40:36 -0800169 Opt_commit,
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800170 Opt_localalloc,
Mark Fasheh53fc6222007-12-20 16:49:04 -0800171 Opt_localflocks,
Joel Beckerb61817e2008-02-01 15:08:23 -0800172 Opt_stack,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800173 Opt_user_xattr,
174 Opt_nouser_xattr,
Joel Becker12462f12008-09-03 20:03:40 -0700175 Opt_inode64,
Tiger Yanga68979b2008-11-14 11:17:52 +0800176 Opt_acl,
177 Opt_noacl,
Jan Kara19ece542008-08-21 20:13:17 +0200178 Opt_usrquota,
179 Opt_grpquota,
Mark Fashehd02f00c2009-12-07 13:10:48 -0800180 Opt_resv_level,
Mark Fashehccd979b2005-12-15 14:31:24 -0800181 Opt_err,
182};
183
Steven Whitehousea447c092008-10-13 10:46:57 +0100184static const match_table_t tokens = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800185 {Opt_barrier, "barrier=%u"},
186 {Opt_err_panic, "errors=panic"},
187 {Opt_err_ro, "errors=remount-ro"},
188 {Opt_intr, "intr"},
189 {Opt_nointr, "nointr"},
190 {Opt_hb_none, OCFS2_HB_NONE},
191 {Opt_hb_local, OCFS2_HB_LOCAL},
192 {Opt_data_ordered, "data=ordered"},
193 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800194 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700195 {Opt_slot, "preferred_slot=%u"},
Mark Fashehd147b3d2007-11-07 14:40:36 -0800196 {Opt_commit, "commit=%u"},
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800197 {Opt_localalloc, "localalloc=%d"},
Mark Fasheh53fc6222007-12-20 16:49:04 -0800198 {Opt_localflocks, "localflocks"},
Joel Beckerb61817e2008-02-01 15:08:23 -0800199 {Opt_stack, "cluster_stack=%s"},
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800200 {Opt_user_xattr, "user_xattr"},
201 {Opt_nouser_xattr, "nouser_xattr"},
Joel Becker12462f12008-09-03 20:03:40 -0700202 {Opt_inode64, "inode64"},
Tiger Yanga68979b2008-11-14 11:17:52 +0800203 {Opt_acl, "acl"},
204 {Opt_noacl, "noacl"},
Jan Kara19ece542008-08-21 20:13:17 +0200205 {Opt_usrquota, "usrquota"},
206 {Opt_grpquota, "grpquota"},
Mark Fashehd02f00c2009-12-07 13:10:48 -0800207 {Opt_resv_level, "resv_level=%u"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800208 {Opt_err, NULL}
209};
210
Sunil Mushran50397502008-12-17 14:17:43 -0800211#ifdef CONFIG_DEBUG_FS
212static int ocfs2_osb_dump(struct ocfs2_super *osb, char *buf, int len)
213{
Sunil Mushran50397502008-12-17 14:17:43 -0800214 struct ocfs2_cluster_connection *cconn = osb->cconn;
215 struct ocfs2_recovery_map *rm = osb->recovery_map;
Sunil Mushrandf152c22009-06-22 11:40:07 -0700216 struct ocfs2_orphan_scan *os = &osb->osb_orphan_scan;
217 int i, out = 0;
Sunil Mushran50397502008-12-17 14:17:43 -0800218
219 out += snprintf(buf + out, len - out,
220 "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n",
221 "Device", osb->dev_str, osb->uuid_str,
222 osb->fs_generation, osb->vol_label);
223
224 out += snprintf(buf + out, len - out,
225 "%10s => State: %d Flags: 0x%lX\n", "Volume",
226 atomic_read(&osb->vol_state), osb->osb_flags);
227
228 out += snprintf(buf + out, len - out,
229 "%10s => Block: %lu Cluster: %d\n", "Sizes",
230 osb->sb->s_blocksize, osb->s_clustersize);
231
232 out += snprintf(buf + out, len - out,
233 "%10s => Compat: 0x%X Incompat: 0x%X "
234 "ROcompat: 0x%X\n",
235 "Features", osb->s_feature_compat,
236 osb->s_feature_incompat, osb->s_feature_ro_compat);
237
238 out += snprintf(buf + out, len - out,
239 "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount",
240 osb->s_mount_opt, osb->s_atime_quantum);
241
Sunil Mushranc3d38842009-06-19 14:45:55 -0700242 if (cconn) {
243 out += snprintf(buf + out, len - out,
244 "%10s => Stack: %s Name: %*s "
245 "Version: %d.%d\n", "Cluster",
246 (*osb->osb_cluster_stack == '\0' ?
247 "o2cb" : osb->osb_cluster_stack),
248 cconn->cc_namelen, cconn->cc_name,
249 cconn->cc_version.pv_major,
250 cconn->cc_version.pv_minor);
251 }
Sunil Mushran50397502008-12-17 14:17:43 -0800252
253 spin_lock(&osb->dc_task_lock);
254 out += snprintf(buf + out, len - out,
255 "%10s => Pid: %d Count: %lu WakeSeq: %lu "
256 "WorkSeq: %lu\n", "DownCnvt",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700257 (osb->dc_task ? task_pid_nr(osb->dc_task) : -1),
258 osb->blocked_lock_count, osb->dc_wake_sequence,
259 osb->dc_work_sequence);
Sunil Mushran50397502008-12-17 14:17:43 -0800260 spin_unlock(&osb->dc_task_lock);
261
262 spin_lock(&osb->osb_lock);
263 out += snprintf(buf + out, len - out, "%10s => Pid: %d Nodes:",
264 "Recovery",
265 (osb->recovery_thread_task ?
266 task_pid_nr(osb->recovery_thread_task) : -1));
267 if (rm->rm_used == 0)
268 out += snprintf(buf + out, len - out, " None\n");
269 else {
270 for (i = 0; i < rm->rm_used; i++)
271 out += snprintf(buf + out, len - out, " %d",
272 rm->rm_entries[i]);
273 out += snprintf(buf + out, len - out, "\n");
274 }
275 spin_unlock(&osb->osb_lock);
276
277 out += snprintf(buf + out, len - out,
278 "%10s => Pid: %d Interval: %lu Needs: %d\n", "Commit",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700279 (osb->commit_task ? task_pid_nr(osb->commit_task) : -1),
280 osb->osb_commit_interval,
Sunil Mushran50397502008-12-17 14:17:43 -0800281 atomic_read(&osb->needs_checkpoint));
282
283 out += snprintf(buf + out, len - out,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700284 "%10s => State: %d TxnId: %lu NumTxns: %d\n",
Sunil Mushran50397502008-12-17 14:17:43 -0800285 "Journal", osb->journal->j_state,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700286 osb->journal->j_trans_id,
287 atomic_read(&osb->journal->j_num_trans));
Sunil Mushran50397502008-12-17 14:17:43 -0800288
289 out += snprintf(buf + out, len - out,
290 "%10s => GlobalAllocs: %d LocalAllocs: %d "
291 "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n",
292 "Stats",
293 atomic_read(&osb->alloc_stats.bitmap_data),
294 atomic_read(&osb->alloc_stats.local_data),
295 atomic_read(&osb->alloc_stats.bg_allocs),
296 atomic_read(&osb->alloc_stats.moves),
297 atomic_read(&osb->alloc_stats.bg_extends));
298
299 out += snprintf(buf + out, len - out,
300 "%10s => State: %u Descriptor: %llu Size: %u bits "
301 "Default: %u bits\n",
302 "LocalAlloc", osb->local_alloc_state,
303 (unsigned long long)osb->la_last_gd,
304 osb->local_alloc_bits, osb->local_alloc_default_bits);
305
306 spin_lock(&osb->osb_lock);
307 out += snprintf(buf + out, len - out,
Tiger Yangb89c5422010-01-25 14:11:06 +0800308 "%10s => InodeSlot: %d StolenInodes: %d, "
309 "MetaSlot: %d StolenMeta: %d\n", "Steal",
Sunil Mushran50397502008-12-17 14:17:43 -0800310 osb->s_inode_steal_slot,
Tiger Yangb89c5422010-01-25 14:11:06 +0800311 atomic_read(&osb->s_num_inodes_stolen),
312 osb->s_meta_steal_slot,
313 atomic_read(&osb->s_num_meta_stolen));
Sunil Mushran50397502008-12-17 14:17:43 -0800314 spin_unlock(&osb->osb_lock);
315
Sunil Mushrandf152c22009-06-22 11:40:07 -0700316 out += snprintf(buf + out, len - out, "OrphanScan => ");
317 out += snprintf(buf + out, len - out, "Local: %u Global: %u ",
318 os->os_count, os->os_seqno);
319 out += snprintf(buf + out, len - out, " Last Scan: ");
320 if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE)
321 out += snprintf(buf + out, len - out, "Disabled\n");
322 else
323 out += snprintf(buf + out, len - out, "%lu seconds ago\n",
324 (get_seconds() - os->os_scantime.tv_sec));
325
Sunil Mushran50397502008-12-17 14:17:43 -0800326 out += snprintf(buf + out, len - out, "%10s => %3s %10s\n",
327 "Slots", "Num", "RecoGen");
Sunil Mushran50397502008-12-17 14:17:43 -0800328 for (i = 0; i < osb->max_slots; ++i) {
329 out += snprintf(buf + out, len - out,
330 "%10s %c %3d %10d\n",
331 " ",
332 (i == osb->slot_num ? '*' : ' '),
333 i, osb->slot_recovery_generations[i]);
334 }
335
336 return out;
337}
338
339static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
340{
341 struct ocfs2_super *osb = inode->i_private;
342 char *buf = NULL;
343
344 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
345 if (!buf)
346 goto bail;
347
348 i_size_write(inode, ocfs2_osb_dump(osb, buf, PAGE_SIZE));
349
350 file->private_data = buf;
351
352 return 0;
353bail:
354 return -ENOMEM;
355}
356
357static int ocfs2_debug_release(struct inode *inode, struct file *file)
358{
359 kfree(file->private_data);
360 return 0;
361}
362
363static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
364 size_t nbytes, loff_t *ppos)
365{
366 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
367 i_size_read(file->f_mapping->host));
368}
369#else
370static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
371{
372 return 0;
373}
374static int ocfs2_debug_release(struct inode *inode, struct file *file)
375{
376 return 0;
377}
378static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
379 size_t nbytes, loff_t *ppos)
380{
381 return 0;
382}
383#endif /* CONFIG_DEBUG_FS */
384
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700385static const struct file_operations ocfs2_osb_debug_fops = {
Sunil Mushran50397502008-12-17 14:17:43 -0800386 .open = ocfs2_osb_debug_open,
387 .release = ocfs2_debug_release,
388 .read = ocfs2_debug_read,
389 .llseek = generic_file_llseek,
390};
391
Mark Fashehccd979b2005-12-15 14:31:24 -0800392static int ocfs2_sync_fs(struct super_block *sb, int wait)
393{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800394 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800395 tid_t target;
396 struct ocfs2_super *osb = OCFS2_SB(sb);
397
Mark Fashehccd979b2005-12-15 14:31:24 -0800398 if (ocfs2_is_hard_readonly(osb))
399 return -EROFS;
400
401 if (wait) {
402 status = ocfs2_flush_truncate_log(osb);
403 if (status < 0)
404 mlog_errno(status);
405 } else {
406 ocfs2_schedule_truncate_log_flush(osb, 0);
407 }
408
Joel Becker2b4e30f2008-09-03 20:03:41 -0700409 if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal,
410 &target)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800411 if (wait)
Joel Becker2b4e30f2008-09-03 20:03:41 -0700412 jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
413 target);
Mark Fashehccd979b2005-12-15 14:31:24 -0800414 }
415 return 0;
416}
417
Jan Kara1a224ad2008-08-20 15:43:36 +0200418static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino)
419{
420 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
421 && (ino == USER_QUOTA_SYSTEM_INODE
422 || ino == LOCAL_USER_QUOTA_SYSTEM_INODE))
423 return 0;
424 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)
425 && (ino == GROUP_QUOTA_SYSTEM_INODE
426 || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE))
427 return 0;
428 return 1;
429}
430
Mark Fashehccd979b2005-12-15 14:31:24 -0800431static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
432{
433 struct inode *new = NULL;
434 int status = 0;
435 int i;
436
437 mlog_entry_void();
438
Jan Kara5fa06132008-01-11 00:11:45 +0100439 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800440 if (IS_ERR(new)) {
441 status = PTR_ERR(new);
442 mlog_errno(status);
443 goto bail;
444 }
445 osb->root_inode = new;
446
Jan Kara5fa06132008-01-11 00:11:45 +0100447 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800448 if (IS_ERR(new)) {
449 status = PTR_ERR(new);
450 mlog_errno(status);
451 goto bail;
452 }
453 osb->sys_root_inode = new;
454
455 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
456 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200457 if (!ocfs2_need_system_inode(osb, i))
458 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800459 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
460 if (!new) {
461 ocfs2_release_system_inodes(osb);
462 status = -EINVAL;
463 mlog_errno(status);
464 /* FIXME: Should ERROR_RO_FS */
465 mlog(ML_ERROR, "Unable to load system inode %d, "
466 "possibly corrupt fs?", i);
467 goto bail;
468 }
469 // the array now has one ref, so drop this one
470 iput(new);
471 }
472
473bail:
474 mlog_exit(status);
475 return status;
476}
477
478static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
479{
480 struct inode *new = NULL;
481 int status = 0;
482 int i;
483
484 mlog_entry_void();
485
486 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
487 i < NUM_SYSTEM_INODES;
488 i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200489 if (!ocfs2_need_system_inode(osb, i))
490 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800491 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
492 if (!new) {
493 ocfs2_release_system_inodes(osb);
494 status = -EINVAL;
495 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
496 status, i, osb->slot_num);
497 goto bail;
498 }
499 /* the array now has one ref, so drop this one */
500 iput(new);
501 }
502
503bail:
504 mlog_exit(status);
505 return status;
506}
507
Denis Chengbddb8eb32007-09-27 02:10:04 +0800508static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800509{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800510 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800511 struct inode *inode;
512
513 mlog_entry_void();
514
515 for (i = 0; i < NUM_SYSTEM_INODES; i++) {
516 inode = osb->system_inodes[i];
517 if (inode) {
518 iput(inode);
519 osb->system_inodes[i] = NULL;
520 }
521 }
522
523 inode = osb->sys_root_inode;
524 if (inode) {
525 iput(inode);
526 osb->sys_root_inode = NULL;
527 }
528
529 inode = osb->root_inode;
530 if (inode) {
531 iput(inode);
532 osb->root_inode = NULL;
533 }
534
Denis Chengbddb8eb32007-09-27 02:10:04 +0800535 mlog_exit(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800536}
537
538/* We're allocating fs objects, use GFP_NOFS */
539static struct inode *ocfs2_alloc_inode(struct super_block *sb)
540{
541 struct ocfs2_inode_info *oi;
542
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800543 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800544 if (!oi)
545 return NULL;
546
Joel Becker2b4e30f2008-09-03 20:03:41 -0700547 jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800548 return &oi->vfs_inode;
549}
550
551static void ocfs2_destroy_inode(struct inode *inode)
552{
553 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
554}
555
Mark Fasheh5a254032007-07-20 12:56:16 -0700556static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
557 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800558{
Mark Fasheh5a254032007-07-20 12:56:16 -0700559 unsigned int bytes = 1 << cbits;
560 unsigned int trim = bytes;
561 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800562
Mark Fasheh5a254032007-07-20 12:56:16 -0700563 /*
564 * i_size and all block offsets in ocfs2 are always 64 bits
565 * wide. i_clusters is 32 bits, in cluster-sized units. So on
566 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800567 */
568
569#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200570# if defined(CONFIG_LBDAF)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700571 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700572 /*
573 * We might be limited by page cache size.
574 */
575 if (bytes > PAGE_CACHE_SIZE) {
576 bytes = PAGE_CACHE_SIZE;
577 trim = 1;
578 /*
579 * Shift by 31 here so that we don't get larger than
580 * MAX_LFS_FILESIZE
581 */
582 bitshift = 31;
583 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800584# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700585 /*
586 * We are limited by the size of sector_t. Use block size, as
587 * that's what we expose to the VFS.
588 */
589 bytes = 1 << bbits;
590 trim = 1;
591 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800592# endif
593#endif
594
Mark Fasheh5a254032007-07-20 12:56:16 -0700595 /*
596 * Trim by a whole cluster when we can actually approach the
597 * on-disk limits. Otherwise we can overflow i_clusters when
598 * an extent start is at the max offset.
599 */
600 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800601}
602
603static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
604{
605 int incompat_features;
606 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800607 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800608 struct ocfs2_super *osb = OCFS2_SB(sb);
609
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200610 lock_kernel();
611
Jan Kara5297aad2009-10-15 14:54:04 +0200612 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) ||
613 !ocfs2_check_set_options(sb, &parsed_options)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800614 ret = -EINVAL;
615 goto out;
616 }
617
618 if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800619 (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800620 ret = -EINVAL;
621 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
622 goto out;
623 }
624
625 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800626 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800627 ret = -EINVAL;
628 mlog(ML_ERROR, "Cannot change data mode on remount\n");
629 goto out;
630 }
631
Joel Becker12462f12008-09-03 20:03:40 -0700632 /* Probably don't want this on remount; it might
633 * mess with other nodes */
634 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) &&
635 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) {
636 ret = -EINVAL;
637 mlog(ML_ERROR, "Cannot enable inode64 on remount\n");
638 goto out;
639 }
640
Mark Fashehccd979b2005-12-15 14:31:24 -0800641 /* We're going to/from readonly mode. */
642 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
Jan Kara19ece542008-08-21 20:13:17 +0200643 /* Disable quota accounting before remounting RO */
644 if (*flags & MS_RDONLY) {
645 ret = ocfs2_susp_quotas(osb, 0);
646 if (ret < 0)
647 goto out;
648 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800649 /* Lock here so the check of HARD_RO and the potential
650 * setting of SOFT_RO is atomic. */
651 spin_lock(&osb->osb_lock);
652 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
653 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
654 ret = -EROFS;
655 goto unlock_osb;
656 }
657
658 if (*flags & MS_RDONLY) {
659 mlog(0, "Going to ro mode.\n");
660 sb->s_flags |= MS_RDONLY;
661 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
662 } else {
663 mlog(0, "Making ro filesystem writeable.\n");
664
665 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
666 mlog(ML_ERROR, "Cannot remount RDWR "
667 "filesystem due to previous errors.\n");
668 ret = -EROFS;
669 goto unlock_osb;
670 }
671 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
672 if (incompat_features) {
673 mlog(ML_ERROR, "Cannot remount RDWR because "
674 "of unsupported optional features "
675 "(%x).\n", incompat_features);
676 ret = -EINVAL;
677 goto unlock_osb;
678 }
679 sb->s_flags &= ~MS_RDONLY;
680 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
681 }
682unlock_osb:
683 spin_unlock(&osb->osb_lock);
Jan Kara19ece542008-08-21 20:13:17 +0200684 /* Enable quota accounting after remounting RW */
685 if (!ret && !(*flags & MS_RDONLY)) {
686 if (sb_any_quota_suspended(sb))
687 ret = ocfs2_susp_quotas(osb, 1);
688 else
689 ret = ocfs2_enable_quotas(osb);
690 if (ret < 0) {
691 /* Return back changes... */
692 spin_lock(&osb->osb_lock);
693 sb->s_flags |= MS_RDONLY;
694 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
695 spin_unlock(&osb->osb_lock);
696 goto out;
697 }
698 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800699 }
700
701 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800702 /* Only save off the new mount options in case of a successful
703 * remount. */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800704 osb->s_mount_opt = parsed_options.mount_opt;
705 osb->s_atime_quantum = parsed_options.atime_quantum;
706 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800707 if (parsed_options.commit_interval)
708 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fashehe001e792007-11-07 14:21:45 -0800709
710 if (!ocfs2_is_hard_readonly(osb))
711 ocfs2_set_journal_params(osb);
Jan Kara57b09bb2009-10-15 14:54:05 +0200712
713 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
714 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ?
715 MS_POSIXACL : 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800716 }
717out:
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200718 unlock_kernel();
Mark Fashehccd979b2005-12-15 14:31:24 -0800719 return ret;
720}
721
722static int ocfs2_sb_probe(struct super_block *sb,
723 struct buffer_head **bh,
Joel Becker73be1922009-01-06 14:57:08 -0800724 int *sector_size,
725 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -0800726{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800727 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800728 struct ocfs1_vol_disk_hdr *hdr;
729 struct ocfs2_dinode *di;
730 int blksize;
731
732 *bh = NULL;
733
734 /* may be > 512 */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400735 *sector_size = bdev_logical_block_size(sb->s_bdev);
Mark Fashehccd979b2005-12-15 14:31:24 -0800736 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
737 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
738 *sector_size, OCFS2_MAX_BLOCKSIZE);
739 status = -EINVAL;
740 goto bail;
741 }
742
743 /* Can this really happen? */
744 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
745 *sector_size = OCFS2_MIN_BLOCKSIZE;
746
747 /* check block zero for old format */
748 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
749 if (status < 0) {
750 mlog_errno(status);
751 goto bail;
752 }
753 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
754 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
755 mlog(ML_ERROR, "incompatible version: %u.%u\n",
756 hdr->major_version, hdr->minor_version);
757 status = -EINVAL;
758 }
759 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
760 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
761 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
762 hdr->signature);
763 status = -EINVAL;
764 }
765 brelse(*bh);
766 *bh = NULL;
767 if (status < 0) {
768 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
769 "upgraded before mounting with ocfs v2\n");
770 goto bail;
771 }
772
773 /*
774 * Now check at magic offset for 512, 1024, 2048, 4096
775 * blocksizes. 4096 is the maximum blocksize because it is
776 * the minimum clustersize.
777 */
778 status = -EINVAL;
779 for (blksize = *sector_size;
780 blksize <= OCFS2_MAX_BLOCKSIZE;
781 blksize <<= 1) {
782 tmpstat = ocfs2_get_sector(sb, bh,
783 OCFS2_SUPER_BLOCK_BLKNO,
784 blksize);
785 if (tmpstat < 0) {
786 status = tmpstat;
787 mlog_errno(status);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700788 break;
Mark Fashehccd979b2005-12-15 14:31:24 -0800789 }
790 di = (struct ocfs2_dinode *) (*bh)->b_data;
Joel Becker73be1922009-01-06 14:57:08 -0800791 memset(stats, 0, sizeof(struct ocfs2_blockcheck_stats));
Jan Kara1c1d9792009-07-22 13:17:19 +0200792 spin_lock_init(&stats->b_lock);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700793 tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats);
794 if (tmpstat < 0) {
795 brelse(*bh);
796 *bh = NULL;
797 }
798 if (tmpstat != -EAGAIN) {
799 status = tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800800 break;
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700801 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800802 }
803
804bail:
805 return status;
806}
807
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800808static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
809{
810 if (ocfs2_mount_local(osb)) {
811 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
812 mlog(ML_ERROR, "Cannot heartbeat on a locally "
813 "mounted device.\n");
814 return -EINVAL;
815 }
816 }
817
Joel Beckerb61817e2008-02-01 15:08:23 -0800818 if (ocfs2_userspace_stack(osb)) {
819 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
820 mlog(ML_ERROR, "Userspace stack expected, but "
821 "o2cb heartbeat arguments passed to mount\n");
822 return -EINVAL;
823 }
824 }
825
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800826 if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800827 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
828 !ocfs2_userspace_stack(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800829 mlog(ML_ERROR, "Heartbeat has to be started to mount "
830 "a read-write clustered device.\n");
831 return -EINVAL;
832 }
833 }
834
835 return 0;
836}
837
Joel Beckerb61817e2008-02-01 15:08:23 -0800838/*
839 * If we're using a userspace stack, mount should have passed
840 * a name that matches the disk. If not, mount should not
841 * have passed a stack.
842 */
843static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
844 struct mount_options *mopt)
845{
846 if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
847 mlog(ML_ERROR,
848 "cluster stack passed to mount, but this filesystem "
849 "does not support it\n");
850 return -EINVAL;
851 }
852
853 if (ocfs2_userspace_stack(osb) &&
854 strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
855 OCFS2_STACK_LABEL_LEN)) {
856 mlog(ML_ERROR,
857 "cluster stack passed to mount (\"%s\") does not "
858 "match the filesystem (\"%s\")\n",
859 mopt->cluster_stack,
860 osb->osb_cluster_stack);
861 return -EINVAL;
862 }
863
864 return 0;
865}
866
Jan Kara19ece542008-08-21 20:13:17 +0200867static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend)
868{
869 int type;
870 struct super_block *sb = osb->sb;
871 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
872 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
873 int status = 0;
874
875 for (type = 0; type < MAXQUOTAS; type++) {
876 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
877 continue;
878 if (unsuspend)
879 status = vfs_quota_enable(
880 sb_dqopt(sb)->files[type],
881 type, QFMT_OCFS2,
882 DQUOT_SUSPENDED);
883 else
884 status = vfs_quota_disable(sb, type,
885 DQUOT_SUSPENDED);
886 if (status < 0)
887 break;
888 }
889 if (status < 0)
890 mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on "
891 "remount (error = %d).\n", status);
892 return status;
893}
894
895static int ocfs2_enable_quotas(struct ocfs2_super *osb)
896{
897 struct inode *inode[MAXQUOTAS] = { NULL, NULL };
898 struct super_block *sb = osb->sb;
899 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
900 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
901 unsigned int ino[MAXQUOTAS] = { LOCAL_USER_QUOTA_SYSTEM_INODE,
902 LOCAL_GROUP_QUOTA_SYSTEM_INODE };
903 int status;
904 int type;
905
906 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE;
907 for (type = 0; type < MAXQUOTAS; type++) {
908 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
909 continue;
910 inode[type] = ocfs2_get_system_file_inode(osb, ino[type],
911 osb->slot_num);
912 if (!inode[type]) {
913 status = -ENOENT;
914 goto out_quota_off;
915 }
916 status = vfs_quota_enable(inode[type], type, QFMT_OCFS2,
917 DQUOT_USAGE_ENABLED);
918 if (status < 0)
919 goto out_quota_off;
920 }
921
922 for (type = 0; type < MAXQUOTAS; type++)
923 iput(inode[type]);
924 return 0;
925out_quota_off:
926 ocfs2_disable_quotas(osb);
927 for (type = 0; type < MAXQUOTAS; type++)
928 iput(inode[type]);
929 mlog_errno(status);
930 return status;
931}
932
933static void ocfs2_disable_quotas(struct ocfs2_super *osb)
934{
935 int type;
936 struct inode *inode;
937 struct super_block *sb = osb->sb;
938
939 /* We mostly ignore errors in this function because there's not much
940 * we can do when we see them */
941 for (type = 0; type < MAXQUOTAS; type++) {
942 if (!sb_has_quota_loaded(sb, type))
943 continue;
944 inode = igrab(sb->s_dquot.files[type]);
945 /* Turn off quotas. This will remove all dquot structures from
946 * memory and so they will be automatically synced to global
947 * quota files */
948 vfs_quota_disable(sb, type, DQUOT_USAGE_ENABLED |
949 DQUOT_LIMITS_ENABLED);
950 if (!inode)
951 continue;
952 iput(inode);
953 }
954}
955
956/* Handle quota on quotactl */
957static int ocfs2_quota_on(struct super_block *sb, int type, int format_id,
958 char *path, int remount)
959{
960 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
961 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
962
963 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
964 return -EINVAL;
965
966 if (remount)
967 return 0; /* Just ignore it has been handled in
968 * ocfs2_remount() */
969 return vfs_quota_enable(sb_dqopt(sb)->files[type], type,
970 format_id, DQUOT_LIMITS_ENABLED);
971}
972
973/* Handle quota off quotactl */
974static int ocfs2_quota_off(struct super_block *sb, int type, int remount)
975{
976 if (remount)
977 return 0; /* Ignore now and handle later in
978 * ocfs2_remount() */
979 return vfs_quota_disable(sb, type, DQUOT_LIMITS_ENABLED);
980}
981
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700982static const struct quotactl_ops ocfs2_quotactl_ops = {
Jan Kara19ece542008-08-21 20:13:17 +0200983 .quota_on = ocfs2_quota_on,
984 .quota_off = ocfs2_quota_off,
985 .quota_sync = vfs_quota_sync,
986 .get_info = vfs_get_dqinfo,
987 .set_info = vfs_set_dqinfo,
988 .get_dqblk = vfs_get_dqblk,
989 .set_dqblk = vfs_set_dqblk,
990};
991
Mark Fashehccd979b2005-12-15 14:31:24 -0800992static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
993{
994 struct dentry *root;
995 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800996 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800997 struct inode *inode = NULL;
998 struct ocfs2_super *osb = NULL;
999 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001000 char nodestr[8];
Joel Becker73be1922009-01-06 14:57:08 -08001001 struct ocfs2_blockcheck_stats stats;
Mark Fashehccd979b2005-12-15 14:31:24 -08001002
1003 mlog_entry("%p, %p, %i", sb, data, silent);
1004
Tiger Yangc0123ad2007-09-08 00:16:10 +08001005 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001006 status = -EINVAL;
1007 goto read_super_error;
1008 }
1009
1010 /* probe for superblock */
Joel Becker73be1922009-01-06 14:57:08 -08001011 status = ocfs2_sb_probe(sb, &bh, &sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001012 if (status < 0) {
1013 mlog(ML_ERROR, "superblock probe failed!\n");
1014 goto read_super_error;
1015 }
1016
Joel Becker73be1922009-01-06 14:57:08 -08001017 status = ocfs2_initialize_super(sb, bh, sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001018 osb = OCFS2_SB(sb);
1019 if (status < 0) {
1020 mlog_errno(status);
1021 goto read_super_error;
1022 }
1023 brelse(bh);
1024 bh = NULL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001025
Jan Kara5297aad2009-10-15 14:54:04 +02001026 if (!ocfs2_check_set_options(sb, &parsed_options)) {
1027 status = -EINVAL;
1028 goto read_super_error;
1029 }
Tiger Yangc0123ad2007-09-08 00:16:10 +08001030 osb->s_mount_opt = parsed_options.mount_opt;
1031 osb->s_atime_quantum = parsed_options.atime_quantum;
1032 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001033 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fasheh9c7af402008-07-28 18:02:53 -07001034 osb->local_alloc_default_bits = ocfs2_megabytes_to_clusters(sb, parsed_options.localalloc_opt);
1035 osb->local_alloc_bits = osb->local_alloc_default_bits;
Mark Fashehd02f00c2009-12-07 13:10:48 -08001036 osb->osb_resv_level = parsed_options.resv_level;
Mark Fashehccd979b2005-12-15 14:31:24 -08001037
Joel Beckerb61817e2008-02-01 15:08:23 -08001038 status = ocfs2_verify_userspace_stack(osb, &parsed_options);
1039 if (status)
1040 goto read_super_error;
1041
Mark Fashehccd979b2005-12-15 14:31:24 -08001042 sb->s_magic = OCFS2_SUPER_MAGIC;
1043
Tiger Yanga68979b2008-11-14 11:17:52 +08001044 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1045 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1046
Mark Fashehccd979b2005-12-15 14:31:24 -08001047 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
1048 * heartbeat=none */
1049 if (bdev_read_only(sb->s_bdev)) {
1050 if (!(sb->s_flags & MS_RDONLY)) {
1051 status = -EACCES;
1052 mlog(ML_ERROR, "Readonly device detected but readonly "
1053 "mount was not specified.\n");
1054 goto read_super_error;
1055 }
1056
1057 /* You should not be able to start a local heartbeat
1058 * on a readonly device. */
1059 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
1060 status = -EROFS;
1061 mlog(ML_ERROR, "Local heartbeat specified on readonly "
1062 "device.\n");
1063 goto read_super_error;
1064 }
1065
1066 status = ocfs2_check_journals_nolocks(osb);
1067 if (status < 0) {
1068 if (status == -EROFS)
1069 mlog(ML_ERROR, "Recovery required on readonly "
1070 "file system, but write access is "
1071 "unavailable.\n");
1072 else
Sunil Mushran2bd63212010-01-25 16:57:38 -08001073 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001074 goto read_super_error;
1075 }
1076
1077 ocfs2_set_ro_flag(osb, 1);
1078
1079 printk(KERN_NOTICE "Readonly device detected. No cluster "
1080 "services will be utilized for this mount. Recovery "
1081 "will be skipped.\n");
1082 }
1083
1084 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001085 if (sb->s_flags & MS_RDONLY)
1086 ocfs2_set_ro_flag(osb, 0);
1087 }
1088
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001089 status = ocfs2_verify_heartbeat(osb);
1090 if (status < 0) {
1091 mlog_errno(status);
1092 goto read_super_error;
1093 }
1094
Mark Fashehccd979b2005-12-15 14:31:24 -08001095 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
1096 ocfs2_debugfs_root);
1097 if (!osb->osb_debug_root) {
1098 status = -EINVAL;
1099 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
1100 goto read_super_error;
1101 }
1102
Sunil Mushran50397502008-12-17 14:17:43 -08001103 osb->osb_ctxt = debugfs_create_file("fs_state", S_IFREG|S_IRUSR,
1104 osb->osb_debug_root,
1105 osb,
1106 &ocfs2_osb_debug_fops);
1107 if (!osb->osb_ctxt) {
1108 status = -EINVAL;
1109 mlog_errno(status);
1110 goto read_super_error;
1111 }
1112
Joel Becker73be1922009-01-06 14:57:08 -08001113 if (ocfs2_meta_ecc(osb)) {
1114 status = ocfs2_blockcheck_stats_debugfs_install(
1115 &osb->osb_ecc_stats,
1116 osb->osb_debug_root);
1117 if (status) {
1118 mlog(ML_ERROR,
1119 "Unable to create blockcheck statistics "
1120 "files\n");
1121 goto read_super_error;
1122 }
1123 }
1124
Mark Fashehccd979b2005-12-15 14:31:24 -08001125 status = ocfs2_mount_volume(sb);
1126 if (osb->root_inode)
1127 inode = igrab(osb->root_inode);
1128
1129 if (status < 0)
1130 goto read_super_error;
1131
1132 if (!inode) {
1133 status = -EIO;
1134 mlog_errno(status);
1135 goto read_super_error;
1136 }
1137
1138 root = d_alloc_root(inode);
1139 if (!root) {
1140 status = -ENOMEM;
1141 mlog_errno(status);
1142 goto read_super_error;
1143 }
1144
1145 sb->s_root = root;
1146
1147 ocfs2_complete_mount_recovery(osb);
1148
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001149 if (ocfs2_mount_local(osb))
1150 snprintf(nodestr, sizeof(nodestr), "local");
1151 else
Joel Becker19fdb622008-01-30 15:38:24 -08001152 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001153
1154 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001155 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001156 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -08001157 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
1158 "ordered");
1159
1160 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
1161 wake_up(&osb->osb_mount_event);
1162
Jan Kara19ece542008-08-21 20:13:17 +02001163 /* Now we can initialize quotas because we can afford to wait
1164 * for cluster locks recovery now. That also means that truncation
1165 * log recovery can happen but that waits for proper quota setup */
1166 if (!(sb->s_flags & MS_RDONLY)) {
1167 status = ocfs2_enable_quotas(osb);
1168 if (status < 0) {
1169 /* We have to err-out specially here because
1170 * s_root is already set */
1171 mlog_errno(status);
1172 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1173 wake_up(&osb->osb_mount_event);
1174 mlog_exit(status);
1175 return status;
1176 }
1177 }
1178
1179 ocfs2_complete_quota_recovery(osb);
1180
1181 /* Now we wake up again for processes waiting for quotas */
1182 atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS);
1183 wake_up(&osb->osb_mount_event);
1184
Sunil Mushrandf152c22009-06-22 11:40:07 -07001185 /* Start this when the mount is almost sure of being successful */
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04001186 ocfs2_orphan_scan_start(osb);
Sunil Mushrandf152c22009-06-22 11:40:07 -07001187
Mark Fashehccd979b2005-12-15 14:31:24 -08001188 mlog_exit(status);
1189 return status;
1190
1191read_super_error:
Mark Fasheha81cb882008-10-07 14:25:16 -07001192 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001193
1194 if (inode)
1195 iput(inode);
1196
1197 if (osb) {
1198 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1199 wake_up(&osb->osb_mount_event);
1200 ocfs2_dismount_volume(sb, 1);
1201 }
1202
1203 mlog_exit(status);
1204 return status;
1205}
1206
David Howells454e2392006-06-23 02:02:57 -07001207static int ocfs2_get_sb(struct file_system_type *fs_type,
1208 int flags,
1209 const char *dev_name,
1210 void *data,
1211 struct vfsmount *mnt)
Mark Fashehccd979b2005-12-15 14:31:24 -08001212{
David Howells454e2392006-06-23 02:02:57 -07001213 return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
1214 mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -08001215}
1216
Jan Karaf7b1aa62009-07-20 12:12:36 +02001217static void ocfs2_kill_sb(struct super_block *sb)
1218{
1219 struct ocfs2_super *osb = OCFS2_SB(sb);
1220
Jan Kara5fd13182009-07-30 17:01:53 +02001221 /* Failed mount? */
1222 if (!osb || atomic_read(&osb->vol_state) == VOLUME_DISABLED)
1223 goto out;
1224
Jan Karaf7b1aa62009-07-20 12:12:36 +02001225 /* Prevent further queueing of inode drop events */
1226 spin_lock(&dentry_list_lock);
1227 ocfs2_set_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED);
1228 spin_unlock(&dentry_list_lock);
1229 /* Wait for work to finish and/or remove it */
1230 cancel_work_sync(&osb->dentry_lock_work);
Jan Kara5fd13182009-07-30 17:01:53 +02001231out:
Jan Karaf7b1aa62009-07-20 12:12:36 +02001232 kill_block_super(sb);
1233}
1234
Mark Fashehccd979b2005-12-15 14:31:24 -08001235static struct file_system_type ocfs2_fs_type = {
1236 .owner = THIS_MODULE,
1237 .name = "ocfs2",
1238 .get_sb = ocfs2_get_sb, /* is this called when we mount
1239 * the fs? */
Jan Karaf7b1aa62009-07-20 12:12:36 +02001240 .kill_sb = ocfs2_kill_sb,
1241
Mark Fasheh1ba9da22006-09-08 14:22:54 -07001242 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -08001243 .next = NULL
1244};
1245
Jan Kara5297aad2009-10-15 14:54:04 +02001246static int ocfs2_check_set_options(struct super_block *sb,
1247 struct mount_options *options)
1248{
1249 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA &&
1250 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1251 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
1252 mlog(ML_ERROR, "User quotas were requested, but this "
1253 "filesystem does not have the feature enabled.\n");
1254 return 0;
1255 }
1256 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA &&
1257 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1258 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
1259 mlog(ML_ERROR, "Group quotas were requested, but this "
1260 "filesystem does not have the feature enabled.\n");
1261 return 0;
1262 }
1263 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL &&
1264 !OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR)) {
1265 mlog(ML_ERROR, "ACL support requested but extended attributes "
1266 "feature is not enabled\n");
1267 return 0;
1268 }
1269 /* No ACL setting specified? Use XATTR feature... */
1270 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL |
1271 OCFS2_MOUNT_NO_POSIX_ACL))) {
1272 if (OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR))
1273 options->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
1274 else
1275 options->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
1276 }
1277 return 1;
1278}
1279
Mark Fashehccd979b2005-12-15 14:31:24 -08001280static int ocfs2_parse_options(struct super_block *sb,
1281 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +08001282 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -08001283 int is_remount)
1284{
1285 int status;
1286 char *p;
1287
1288 mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
1289 options ? options : "(none)");
1290
Mark Fashehd147b3d2007-11-07 14:40:36 -08001291 mopt->commit_interval = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001292 mopt->mount_opt = 0;
1293 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1294 mopt->slot = OCFS2_INVALID_SLOT;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001295 mopt->localalloc_opt = OCFS2_DEFAULT_LOCAL_ALLOC_SIZE;
Joel Beckerb61817e2008-02-01 15:08:23 -08001296 mopt->cluster_stack[0] = '\0';
Mark Fashehd02f00c2009-12-07 13:10:48 -08001297 mopt->resv_level = OCFS2_DEFAULT_RESV_LEVEL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001298
1299 if (!options) {
1300 status = 1;
1301 goto bail;
1302 }
1303
1304 while ((p = strsep(&options, ",")) != NULL) {
1305 int token, option;
1306 substring_t args[MAX_OPT_ARGS];
1307
1308 if (!*p)
1309 continue;
1310
1311 token = match_token(p, tokens, args);
1312 switch (token) {
1313 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001314 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001315 break;
1316 case Opt_hb_none:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001317 mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001318 break;
1319 case Opt_barrier:
1320 if (match_int(&args[0], &option)) {
1321 status = 0;
1322 goto bail;
1323 }
1324 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001325 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001326 else
Tiger Yangc0123ad2007-09-08 00:16:10 +08001327 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001328 break;
1329 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001330 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001331 break;
1332 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001333 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001334 break;
1335 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001336 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001337 break;
1338 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001339 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001340 break;
1341 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001342 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001343 break;
1344 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001345 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001346 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001347 case Opt_user_xattr:
1348 mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
1349 break;
1350 case Opt_nouser_xattr:
1351 mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
1352 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001353 case Opt_atime_quantum:
1354 if (match_int(&args[0], &option)) {
1355 status = 0;
1356 goto bail;
1357 }
1358 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001359 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001360 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001361 case Opt_slot:
1362 option = 0;
1363 if (match_int(&args[0], &option)) {
1364 status = 0;
1365 goto bail;
1366 }
1367 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001368 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001369 break;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001370 case Opt_commit:
1371 option = 0;
1372 if (match_int(&args[0], &option)) {
1373 status = 0;
1374 goto bail;
1375 }
1376 if (option < 0)
1377 return 0;
1378 if (option == 0)
Joel Becker2b4e30f2008-09-03 20:03:41 -07001379 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001380 mopt->commit_interval = HZ * option;
1381 break;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001382 case Opt_localalloc:
1383 option = 0;
1384 if (match_int(&args[0], &option)) {
1385 status = 0;
1386 goto bail;
1387 }
1388 if (option >= 0 && (option <= ocfs2_local_alloc_size(sb) * 8))
1389 mopt->localalloc_opt = option;
1390 break;
Mark Fasheh53fc6222007-12-20 16:49:04 -08001391 case Opt_localflocks:
1392 /*
1393 * Changing this during remount could race
1394 * flock() requests, or "unbalance" existing
1395 * ones (e.g., a lock is taken in one mode but
1396 * dropped in the other). If users care enough
1397 * to flip locking modes during remount, we
1398 * could add a "local" flag to individual
1399 * flock structures for proper tracking of
1400 * state.
1401 */
1402 if (!is_remount)
1403 mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
1404 break;
Joel Beckerb61817e2008-02-01 15:08:23 -08001405 case Opt_stack:
1406 /* Check both that the option we were passed
1407 * is of the right length and that it is a proper
1408 * string of the right length.
1409 */
1410 if (((args[0].to - args[0].from) !=
1411 OCFS2_STACK_LABEL_LEN) ||
1412 (strnlen(args[0].from,
1413 OCFS2_STACK_LABEL_LEN) !=
1414 OCFS2_STACK_LABEL_LEN)) {
1415 mlog(ML_ERROR,
1416 "Invalid cluster_stack option\n");
1417 status = 0;
1418 goto bail;
1419 }
1420 memcpy(mopt->cluster_stack, args[0].from,
1421 OCFS2_STACK_LABEL_LEN);
1422 mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
1423 break;
Joel Becker12462f12008-09-03 20:03:40 -07001424 case Opt_inode64:
1425 mopt->mount_opt |= OCFS2_MOUNT_INODE64;
1426 break;
Jan Kara19ece542008-08-21 20:13:17 +02001427 case Opt_usrquota:
Jan Kara19ece542008-08-21 20:13:17 +02001428 mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA;
1429 break;
1430 case Opt_grpquota:
Jan Kara19ece542008-08-21 20:13:17 +02001431 mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA;
1432 break;
Tiger Yanga68979b2008-11-14 11:17:52 +08001433 case Opt_acl:
1434 mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
Jan Kara5297aad2009-10-15 14:54:04 +02001435 mopt->mount_opt &= ~OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001436 break;
1437 case Opt_noacl:
Jan Kara5297aad2009-10-15 14:54:04 +02001438 mopt->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001439 mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
1440 break;
Mark Fashehd02f00c2009-12-07 13:10:48 -08001441 case Opt_resv_level:
1442 if (is_remount)
1443 break;
1444 if (match_int(&args[0], &option)) {
1445 status = 0;
1446 goto bail;
1447 }
1448 if (option >= OCFS2_MIN_RESV_LEVEL &&
1449 option < OCFS2_MAX_RESV_LEVEL)
1450 mopt->resv_level = option;
1451 break;
Mark Fashehccd979b2005-12-15 14:31:24 -08001452 default:
1453 mlog(ML_ERROR,
1454 "Unrecognized mount option \"%s\" "
1455 "or missing value\n", p);
1456 status = 0;
1457 goto bail;
1458 }
1459 }
1460
1461 status = 1;
1462
1463bail:
1464 mlog_exit(status);
1465 return status;
1466}
1467
Sunil Mushrand5500712007-09-06 13:34:16 -07001468static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
1469{
1470 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
1471 unsigned long opts = osb->s_mount_opt;
Mark Fashehebcee4b2008-07-28 14:55:20 -07001472 unsigned int local_alloc_megs;
Sunil Mushrand5500712007-09-06 13:34:16 -07001473
1474 if (opts & OCFS2_MOUNT_HB_LOCAL)
1475 seq_printf(s, ",_netdev,heartbeat=local");
1476 else
1477 seq_printf(s, ",heartbeat=none");
1478
1479 if (opts & OCFS2_MOUNT_NOINTR)
1480 seq_printf(s, ",nointr");
1481
1482 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
1483 seq_printf(s, ",data=writeback");
1484 else
1485 seq_printf(s, ",data=ordered");
1486
1487 if (opts & OCFS2_MOUNT_BARRIER)
1488 seq_printf(s, ",barrier=1");
1489
1490 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
1491 seq_printf(s, ",errors=panic");
1492 else
1493 seq_printf(s, ",errors=remount-ro");
1494
1495 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
1496 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
1497
1498 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
1499 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
1500
Mark Fashehd147b3d2007-11-07 14:40:36 -08001501 if (osb->osb_commit_interval)
1502 seq_printf(s, ",commit=%u",
1503 (unsigned) (osb->osb_commit_interval / HZ));
1504
Mark Fashehebcee4b2008-07-28 14:55:20 -07001505 local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
1506 if (local_alloc_megs != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE)
1507 seq_printf(s, ",localalloc=%d", local_alloc_megs);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001508
Mark Fasheh53fc6222007-12-20 16:49:04 -08001509 if (opts & OCFS2_MOUNT_LOCALFLOCKS)
1510 seq_printf(s, ",localflocks,");
1511
Joel Beckerb61817e2008-02-01 15:08:23 -08001512 if (osb->osb_cluster_stack[0])
1513 seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
1514 osb->osb_cluster_stack);
Jan Kara19ece542008-08-21 20:13:17 +02001515 if (opts & OCFS2_MOUNT_USRQUOTA)
1516 seq_printf(s, ",usrquota");
1517 if (opts & OCFS2_MOUNT_GRPQUOTA)
1518 seq_printf(s, ",grpquota");
Joel Beckerb61817e2008-02-01 15:08:23 -08001519
Sunil Mushranb0f73cf2008-09-05 11:29:14 -07001520 if (opts & OCFS2_MOUNT_NOUSERXATTR)
1521 seq_printf(s, ",nouser_xattr");
1522 else
1523 seq_printf(s, ",user_xattr");
1524
Joel Becker12462f12008-09-03 20:03:40 -07001525 if (opts & OCFS2_MOUNT_INODE64)
1526 seq_printf(s, ",inode64");
1527
Tiger Yanga68979b2008-11-14 11:17:52 +08001528 if (opts & OCFS2_MOUNT_POSIX_ACL)
1529 seq_printf(s, ",acl");
1530 else
1531 seq_printf(s, ",noacl");
Tiger Yanga68979b2008-11-14 11:17:52 +08001532
Mark Fashehd02f00c2009-12-07 13:10:48 -08001533 if (osb->osb_resv_level != OCFS2_DEFAULT_RESV_LEVEL)
1534 seq_printf(s, ",resv_level=%d", osb->osb_resv_level);
1535
Sunil Mushrand5500712007-09-06 13:34:16 -07001536 return 0;
1537}
1538
Mark Fashehccd979b2005-12-15 14:31:24 -08001539static int __init ocfs2_init(void)
1540{
1541 int status;
1542
1543 mlog_entry_void();
1544
1545 ocfs2_print_version();
1546
Mark Fashehccd979b2005-12-15 14:31:24 -08001547 status = init_ocfs2_uptodate_cache();
1548 if (status < 0) {
1549 mlog_errno(status);
1550 goto leave;
1551 }
1552
1553 status = ocfs2_initialize_mem_caches();
1554 if (status < 0) {
1555 mlog_errno(status);
1556 goto leave;
1557 }
1558
1559 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
1560 if (!ocfs2_wq) {
1561 status = -ENOMEM;
1562 goto leave;
1563 }
1564
Mark Fashehccd979b2005-12-15 14:31:24 -08001565 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
1566 if (!ocfs2_debugfs_root) {
1567 status = -EFAULT;
1568 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
1569 }
1570
Mark Fasheh171bf932008-10-20 15:36:47 +02001571 status = ocfs2_quota_setup();
1572 if (status)
1573 goto leave;
1574
Joel Becker63e0c482008-01-30 16:58:36 -08001575 ocfs2_set_locking_protocol();
1576
Jan Kara9e33d692008-08-25 19:56:50 +02001577 status = register_quota_format(&ocfs2_quota_format);
Mark Fashehccd979b2005-12-15 14:31:24 -08001578leave:
1579 if (status < 0) {
Mark Fasheh171bf932008-10-20 15:36:47 +02001580 ocfs2_quota_shutdown();
Mark Fashehccd979b2005-12-15 14:31:24 -08001581 ocfs2_free_mem_caches();
1582 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -08001583 }
1584
1585 mlog_exit(status);
1586
1587 if (status >= 0) {
1588 return register_filesystem(&ocfs2_fs_type);
1589 } else
1590 return -1;
1591}
1592
1593static void __exit ocfs2_exit(void)
1594{
1595 mlog_entry_void();
1596
Mark Fasheh171bf932008-10-20 15:36:47 +02001597 ocfs2_quota_shutdown();
1598
Mark Fashehccd979b2005-12-15 14:31:24 -08001599 if (ocfs2_wq) {
1600 flush_workqueue(ocfs2_wq);
1601 destroy_workqueue(ocfs2_wq);
1602 }
1603
Jan Kara9e33d692008-08-25 19:56:50 +02001604 unregister_quota_format(&ocfs2_quota_format);
1605
Mark Fashehccd979b2005-12-15 14:31:24 -08001606 debugfs_remove(ocfs2_debugfs_root);
1607
1608 ocfs2_free_mem_caches();
1609
1610 unregister_filesystem(&ocfs2_fs_type);
1611
Mark Fashehccd979b2005-12-15 14:31:24 -08001612 exit_ocfs2_uptodate_cache();
1613
1614 mlog_exit_void();
1615}
1616
1617static void ocfs2_put_super(struct super_block *sb)
1618{
1619 mlog_entry("(0x%p)\n", sb);
1620
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02001621 lock_kernel();
1622
Mark Fashehccd979b2005-12-15 14:31:24 -08001623 ocfs2_sync_blockdev(sb);
1624 ocfs2_dismount_volume(sb, 0);
1625
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02001626 unlock_kernel();
1627
Mark Fashehccd979b2005-12-15 14:31:24 -08001628 mlog_exit_void();
1629}
1630
David Howells726c3342006-06-23 02:02:58 -07001631static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -08001632{
1633 struct ocfs2_super *osb;
1634 u32 numbits, freebits;
1635 int status;
1636 struct ocfs2_dinode *bm_lock;
1637 struct buffer_head *bh = NULL;
1638 struct inode *inode = NULL;
1639
David Howells726c3342006-06-23 02:02:58 -07001640 mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -08001641
David Howells726c3342006-06-23 02:02:58 -07001642 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001643
1644 inode = ocfs2_get_system_file_inode(osb,
1645 GLOBAL_BITMAP_SYSTEM_INODE,
1646 OCFS2_INVALID_SLOT);
1647 if (!inode) {
1648 mlog(ML_ERROR, "failed to get bitmap inode\n");
1649 status = -EIO;
1650 goto bail;
1651 }
1652
Mark Fashehe63aecb62007-10-18 15:30:42 -07001653 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001654 if (status < 0) {
1655 mlog_errno(status);
1656 goto bail;
1657 }
1658
1659 bm_lock = (struct ocfs2_dinode *) bh->b_data;
1660
1661 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
1662 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
1663
1664 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -07001665 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -08001666 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
1667 buf->f_blocks = ((sector_t) numbits) *
1668 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1669 buf->f_bfree = ((sector_t) freebits) *
1670 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1671 buf->f_bavail = buf->f_bfree;
1672 buf->f_files = numbits;
1673 buf->f_ffree = freebits;
Coly Li837711f2009-01-16 16:33:05 +08001674 buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN)
1675 & 0xFFFFFFFFUL;
1676 buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN,
1677 OCFS2_VOL_UUID_LEN) & 0xFFFFFFFFUL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001678
1679 brelse(bh);
1680
Mark Fashehe63aecb62007-10-18 15:30:42 -07001681 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001682 status = 0;
1683bail:
1684 if (inode)
1685 iput(inode);
1686
1687 mlog_exit(status);
1688
1689 return status;
1690}
1691
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001692static void ocfs2_inode_init_once(void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001693{
1694 struct ocfs2_inode_info *oi = data;
1695
Christoph Lametera35afb82007-05-16 22:10:57 -07001696 oi->ip_flags = 0;
1697 oi->ip_open_count = 0;
1698 spin_lock_init(&oi->ip_lock);
1699 ocfs2_extent_map_init(&oi->vfs_inode);
1700 INIT_LIST_HEAD(&oi->ip_io_markers);
Christoph Lametera35afb82007-05-16 22:10:57 -07001701 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001702
Christoph Lametera35afb82007-05-16 22:10:57 -07001703 init_rwsem(&oi->ip_alloc_sem);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001704 init_rwsem(&oi->ip_xattr_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -07001705 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001706
Christoph Lametera35afb82007-05-16 22:10:57 -07001707 oi->ip_blkno = 0ULL;
1708 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001709
Christoph Lametera35afb82007-05-16 22:10:57 -07001710 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001711 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001712 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001713
Joel Becker8cb471e2009-02-10 20:00:41 -08001714 ocfs2_metadata_cache_init(INODE_CACHE(&oi->vfs_inode),
Joel Becker6e5a3d72009-02-10 19:00:37 -08001715 &ocfs2_inode_caching_ops);
Mark Fashehccd979b2005-12-15 14:31:24 -08001716
Christoph Lametera35afb82007-05-16 22:10:57 -07001717 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001718}
1719
1720static int ocfs2_initialize_mem_caches(void)
1721{
1722 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001723 sizeof(struct ocfs2_inode_info),
1724 0,
1725 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1726 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001727 ocfs2_inode_init_once);
Jan Kara9e33d692008-08-25 19:56:50 +02001728 ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
1729 sizeof(struct ocfs2_dquot),
1730 0,
1731 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1732 SLAB_MEM_SPREAD),
1733 NULL);
1734 ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
1735 sizeof(struct ocfs2_quota_chunk),
1736 0,
1737 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
1738 NULL);
1739 if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
1740 !ocfs2_qf_chunk_cachep) {
1741 if (ocfs2_inode_cachep)
1742 kmem_cache_destroy(ocfs2_inode_cachep);
1743 if (ocfs2_dquot_cachep)
1744 kmem_cache_destroy(ocfs2_dquot_cachep);
1745 if (ocfs2_qf_chunk_cachep)
1746 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001747 return -ENOMEM;
Jan Kara9e33d692008-08-25 19:56:50 +02001748 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001749
Mark Fashehccd979b2005-12-15 14:31:24 -08001750 return 0;
1751}
1752
1753static void ocfs2_free_mem_caches(void)
1754{
1755 if (ocfs2_inode_cachep)
1756 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001757 ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +02001758
1759 if (ocfs2_dquot_cachep)
1760 kmem_cache_destroy(ocfs2_dquot_cachep);
1761 ocfs2_dquot_cachep = NULL;
1762
1763 if (ocfs2_qf_chunk_cachep)
1764 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
1765 ocfs2_qf_chunk_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001766}
1767
1768static int ocfs2_get_sector(struct super_block *sb,
1769 struct buffer_head **bh,
1770 int block,
1771 int sect_size)
1772{
1773 if (!sb_set_blocksize(sb, sect_size)) {
1774 mlog(ML_ERROR, "unable to set blocksize\n");
1775 return -EIO;
1776 }
1777
1778 *bh = sb_getblk(sb, block);
1779 if (!*bh) {
1780 mlog_errno(-EIO);
1781 return -EIO;
1782 }
1783 lock_buffer(*bh);
1784 if (!buffer_dirty(*bh))
1785 clear_buffer_uptodate(*bh);
1786 unlock_buffer(*bh);
1787 ll_rw_block(READ, 1, bh);
1788 wait_on_buffer(*bh);
wengang wang28d57d42009-02-13 10:11:47 +08001789 if (!buffer_uptodate(*bh)) {
1790 mlog_errno(-EIO);
1791 brelse(*bh);
1792 *bh = NULL;
1793 return -EIO;
1794 }
1795
Mark Fashehccd979b2005-12-15 14:31:24 -08001796 return 0;
1797}
1798
Mark Fashehccd979b2005-12-15 14:31:24 -08001799static int ocfs2_mount_volume(struct super_block *sb)
1800{
1801 int status = 0;
1802 int unlock_super = 0;
1803 struct ocfs2_super *osb = OCFS2_SB(sb);
1804
1805 mlog_entry_void();
1806
1807 if (ocfs2_is_hard_readonly(osb))
1808 goto leave;
1809
Mark Fashehccd979b2005-12-15 14:31:24 -08001810 status = ocfs2_dlm_init(osb);
1811 if (status < 0) {
1812 mlog_errno(status);
1813 goto leave;
1814 }
1815
Mark Fashehccd979b2005-12-15 14:31:24 -08001816 status = ocfs2_super_lock(osb, 1);
1817 if (status < 0) {
1818 mlog_errno(status);
1819 goto leave;
1820 }
1821 unlock_super = 1;
1822
1823 /* This will load up the node map and add ourselves to it. */
1824 status = ocfs2_find_slot(osb);
1825 if (status < 0) {
1826 mlog_errno(status);
1827 goto leave;
1828 }
1829
Mark Fashehccd979b2005-12-15 14:31:24 -08001830 /* load all node-local system inodes */
1831 status = ocfs2_init_local_system_inodes(osb);
1832 if (status < 0) {
1833 mlog_errno(status);
1834 goto leave;
1835 }
1836
1837 status = ocfs2_check_volume(osb);
1838 if (status < 0) {
1839 mlog_errno(status);
1840 goto leave;
1841 }
1842
1843 status = ocfs2_truncate_log_init(osb);
Tao Ma06c59bb2009-05-19 06:47:20 +08001844 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08001845 mlog_errno(status);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001846
Mark Fashehccd979b2005-12-15 14:31:24 -08001847leave:
1848 if (unlock_super)
1849 ocfs2_super_unlock(osb, 1);
1850
1851 mlog_exit(status);
1852 return status;
1853}
1854
Mark Fashehccd979b2005-12-15 14:31:24 -08001855static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1856{
Joel Becker286eaa92008-02-01 15:03:57 -08001857 int tmp, hangup_needed = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001858 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001859 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001860
1861 mlog_entry("(0x%p)\n", sb);
1862
1863 BUG_ON(!sb);
1864 osb = OCFS2_SB(sb);
1865 BUG_ON(!osb);
1866
Sunil Mushran50397502008-12-17 14:17:43 -08001867 debugfs_remove(osb->osb_ctxt);
1868
Jan Karaf7b1aa62009-07-20 12:12:36 +02001869 /*
1870 * Flush inode dropping work queue so that deletes are
1871 * performed while the filesystem is still working
1872 */
1873 ocfs2_drop_all_dl_inodes(osb);
1874
Sunil Mushran692684e2009-06-19 16:53:17 -07001875 /* Orphan scan should be stopped as early as possible */
1876 ocfs2_orphan_scan_stop(osb);
1877
Jan Kara19ece542008-08-21 20:13:17 +02001878 ocfs2_disable_quotas(osb);
1879
Mark Fashehccd979b2005-12-15 14:31:24 -08001880 ocfs2_shutdown_local_alloc(osb);
1881
1882 ocfs2_truncate_log_shutdown(osb);
1883
Joel Becker553abd02008-02-01 12:03:57 -08001884 /* This will disable recovery and flush any recovery work. */
1885 ocfs2_recovery_exit(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001886
1887 ocfs2_journal_shutdown(osb);
1888
1889 ocfs2_sync_blockdev(sb);
1890
Tao Ma374a2632009-08-24 11:13:37 +08001891 ocfs2_purge_refcount_trees(osb);
1892
Joel Becker4670c462008-02-01 14:39:35 -08001893 /* No cluster connection means we've failed during mount, so skip
1894 * all the steps which depended on that to complete. */
1895 if (osb->cconn) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001896 tmp = ocfs2_super_lock(osb, 1);
1897 if (tmp < 0) {
1898 mlog_errno(tmp);
1899 return;
1900 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001901 }
1902
Mark Fasheh19b613d2007-10-04 14:47:09 -07001903 if (osb->slot_num != OCFS2_INVALID_SLOT)
1904 ocfs2_put_slot(osb);
1905
Joel Becker4670c462008-02-01 14:39:35 -08001906 if (osb->cconn)
Mark Fasheh19b613d2007-10-04 14:47:09 -07001907 ocfs2_super_unlock(osb, 1);
1908
Mark Fashehccd979b2005-12-15 14:31:24 -08001909 ocfs2_release_system_inodes(osb);
1910
Joel Becker6953b4c2008-01-29 16:59:56 -08001911 /*
Joel Becker6953b4c2008-01-29 16:59:56 -08001912 * If we're dismounting due to mount error, mount.ocfs2 will clean
1913 * up heartbeat. If we're a local mount, there is no heartbeat.
1914 * If we failed before we got a uuid_str yet, we can't stop
1915 * heartbeat. Otherwise, do it.
1916 */
1917 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
Joel Becker286eaa92008-02-01 15:03:57 -08001918 hangup_needed = 1;
1919
1920 if (osb->cconn)
1921 ocfs2_dlm_shutdown(osb, hangup_needed);
1922
Joel Becker73be1922009-01-06 14:57:08 -08001923 ocfs2_blockcheck_stats_debugfs_remove(&osb->osb_ecc_stats);
Joel Becker286eaa92008-02-01 15:03:57 -08001924 debugfs_remove(osb->osb_debug_root);
1925
1926 if (hangup_needed)
Joel Becker6953b4c2008-01-29 16:59:56 -08001927 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
Mark Fashehccd979b2005-12-15 14:31:24 -08001928
1929 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
1930
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001931 if (ocfs2_mount_local(osb))
1932 snprintf(nodestr, sizeof(nodestr), "local");
1933 else
Joel Becker19fdb622008-01-30 15:38:24 -08001934 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001935
1936 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
1937 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001938
1939 ocfs2_delete_osb(osb);
1940 kfree(osb);
1941 sb->s_dev = 0;
1942 sb->s_fs_info = NULL;
1943}
1944
1945static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
1946 unsigned uuid_bytes)
1947{
1948 int i, ret;
1949 char *ptr;
1950
1951 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
1952
Robert P. J. Daycd861282006-12-13 00:34:52 -08001953 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001954 if (osb->uuid_str == NULL)
1955 return -ENOMEM;
1956
Mark Fashehccd979b2005-12-15 14:31:24 -08001957 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
1958 /* print with null */
1959 ret = snprintf(ptr, 3, "%02X", uuid[i]);
1960 if (ret != 2) /* drop super cleans up */
1961 return -EINVAL;
1962 /* then only advance past the last char */
1963 ptr += 2;
1964 }
1965
1966 return 0;
1967}
1968
1969static int ocfs2_initialize_super(struct super_block *sb,
1970 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08001971 int sector_size,
1972 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08001973{
Denis Chengbddb8eb32007-09-27 02:10:04 +08001974 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07001975 int i, cbits, bbits;
1976 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08001977 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001978 struct ocfs2_journal *journal;
1979 __le32 uuid_net_key;
1980 struct ocfs2_super *osb;
1981
1982 mlog_entry_void();
1983
Robert P. J. Daycd861282006-12-13 00:34:52 -08001984 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001985 if (!osb) {
1986 status = -ENOMEM;
1987 mlog_errno(status);
1988 goto bail;
1989 }
1990
1991 sb->s_fs_info = osb;
1992 sb->s_op = &ocfs2_sops;
1993 sb->s_export_op = &ocfs2_export_ops;
Jan Kara19ece542008-08-21 20:13:17 +02001994 sb->s_qcop = &ocfs2_quotactl_ops;
1995 sb->dq_op = &ocfs2_quota_operations;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001996 sb->s_xattr = ocfs2_xattr_handlers;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07001997 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001998 sb->s_flags |= MS_NOATIME;
1999 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07002000 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2001 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
2002 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002003
Mark Fasheh9b7895e2008-11-12 16:27:44 -08002004 osb->osb_dx_mask = (1 << (cbits - bbits)) - 1;
2005
2006 for (i = 0; i < 3; i++)
2007 osb->osb_dx_seed[i] = le32_to_cpu(di->id2.i_super.s_dx_seed[i]);
2008 osb->osb_dx_seed[3] = le32_to_cpu(di->id2.i_super.s_uuid_hash);
2009
Mark Fashehccd979b2005-12-15 14:31:24 -08002010 osb->sb = sb;
2011 /* Save off for ocfs2_rw_direct */
2012 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01002013 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002014
Mark Fasheh34d024f2007-09-24 15:56:19 -07002015 spin_lock_init(&osb->dc_task_lock);
2016 init_waitqueue_head(&osb->dc_event);
2017 osb->dc_work_sequence = 0;
2018 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002019 INIT_LIST_HEAD(&osb->blocked_lock_list);
2020 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002021 spin_lock_init(&osb->osb_lock);
Tao Mac8b9cf92009-02-24 17:40:26 -08002022 spin_lock_init(&osb->osb_xattr_lock);
Tiger Yangb89c5422010-01-25 14:11:06 +08002023 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002024
2025 atomic_set(&osb->alloc_stats.moves, 0);
2026 atomic_set(&osb->alloc_stats.local_data, 0);
2027 atomic_set(&osb->alloc_stats.bitmap_data, 0);
2028 atomic_set(&osb->alloc_stats.bg_allocs, 0);
2029 atomic_set(&osb->alloc_stats.bg_extends, 0);
2030
Joel Becker73be1922009-01-06 14:57:08 -08002031 /* Copy the blockcheck stats from the superblock probe */
2032 osb->osb_ecc_stats = *stats;
2033
Mark Fashehccd979b2005-12-15 14:31:24 -08002034 ocfs2_init_node_maps(osb);
2035
2036 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
2037 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
2038
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04002039 ocfs2_orphan_scan_init(osb);
2040
Joel Becker553abd02008-02-01 12:03:57 -08002041 status = ocfs2_recovery_init(osb);
2042 if (status) {
2043 mlog(ML_ERROR, "Unable to initialize recovery state\n");
2044 mlog_errno(status);
2045 goto bail;
2046 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002047
2048 init_waitqueue_head(&osb->checkpoint_event);
2049 atomic_set(&osb->needs_checkpoint, 0);
2050
Tiger Yang7f1a37e2006-11-15 15:48:42 +08002051 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
2052
Mark Fashehccd979b2005-12-15 14:31:24 -08002053 osb->slot_num = OCFS2_INVALID_SLOT;
2054
Tiger Yang8154da32008-08-18 17:11:46 +08002055 osb->s_xattr_inline_size = le16_to_cpu(
2056 di->id2.i_super.s_xattr_inline_size);
Tiger Yangfdd77702008-08-18 17:08:55 +08002057
Mark Fashehccd979b2005-12-15 14:31:24 -08002058 osb->local_alloc_state = OCFS2_LA_UNUSED;
2059 osb->local_alloc_bh = NULL;
Mark Fasheh9c7af402008-07-28 18:02:53 -07002060 INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08002061
Mark Fashehccd979b2005-12-15 14:31:24 -08002062 init_waitqueue_head(&osb->osb_mount_event);
2063
Mark Fashehd02f00c2009-12-07 13:10:48 -08002064 status = ocfs2_resmap_init(osb, &osb->osb_la_resmap);
2065 if (status) {
2066 mlog_errno(status);
2067 goto bail;
2068 }
2069
Mark Fashehccd979b2005-12-15 14:31:24 -08002070 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
2071 if (!osb->vol_label) {
2072 mlog(ML_ERROR, "unable to alloc vol label\n");
2073 status = -ENOMEM;
2074 goto bail;
2075 }
2076
Mark Fashehccd979b2005-12-15 14:31:24 -08002077 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
2078 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
2079 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
2080 osb->max_slots);
2081 status = -EINVAL;
2082 goto bail;
2083 }
Sunil Mushran781ee3e2006-04-27 16:41:31 -07002084 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
Mark Fashehccd979b2005-12-15 14:31:24 -08002085
Sunil Mushran539d8262008-07-14 17:31:10 -07002086 osb->slot_recovery_generations =
2087 kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
2088 GFP_KERNEL);
2089 if (!osb->slot_recovery_generations) {
2090 status = -ENOMEM;
2091 mlog_errno(status);
2092 goto bail;
2093 }
2094
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002095 init_waitqueue_head(&osb->osb_wipe_event);
2096 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
2097 sizeof(*osb->osb_orphan_wipes),
2098 GFP_KERNEL);
2099 if (!osb->osb_orphan_wipes) {
2100 status = -ENOMEM;
2101 mlog_errno(status);
2102 goto bail;
2103 }
2104
Tao Ma374a2632009-08-24 11:13:37 +08002105 osb->osb_rf_lock_tree = RB_ROOT;
2106
Mark Fashehccd979b2005-12-15 14:31:24 -08002107 osb->s_feature_compat =
2108 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
2109 osb->s_feature_ro_compat =
2110 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
2111 osb->s_feature_incompat =
2112 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
2113
2114 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
2115 mlog(ML_ERROR, "couldn't mount because of unsupported "
2116 "optional features (%x).\n", i);
2117 status = -EINVAL;
2118 goto bail;
2119 }
2120 if (!(osb->sb->s_flags & MS_RDONLY) &&
2121 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
2122 mlog(ML_ERROR, "couldn't mount RDWR because of "
2123 "unsupported optional features (%x).\n", i);
2124 status = -EINVAL;
2125 goto bail;
2126 }
2127
Joel Beckerb61817e2008-02-01 15:08:23 -08002128 if (ocfs2_userspace_stack(osb)) {
2129 memcpy(osb->osb_cluster_stack,
2130 OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
2131 OCFS2_STACK_LABEL_LEN);
2132 osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
2133 if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
2134 mlog(ML_ERROR,
2135 "couldn't mount because of an invalid "
2136 "cluster stack label (%s) \n",
2137 osb->osb_cluster_stack);
2138 status = -EINVAL;
2139 goto bail;
2140 }
2141 } else {
2142 /* The empty string is identical with classic tools that
2143 * don't know about s_cluster_info. */
2144 osb->osb_cluster_stack[0] = '\0';
2145 }
2146
Mark Fashehccd979b2005-12-15 14:31:24 -08002147 get_random_bytes(&osb->s_next_generation, sizeof(u32));
2148
2149 /* FIXME
2150 * This should be done in ocfs2_journal_init(), but unknown
2151 * ordering issues will cause the filesystem to crash.
2152 * If anyone wants to figure out what part of the code
2153 * refers to osb->journal before ocfs2_journal_init() is run,
2154 * be my guest.
2155 */
2156 /* initialize our journal structure */
2157
Robert P. J. Daycd861282006-12-13 00:34:52 -08002158 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002159 if (!journal) {
2160 mlog(ML_ERROR, "unable to alloc journal\n");
2161 status = -ENOMEM;
2162 goto bail;
2163 }
2164 osb->journal = journal;
2165 journal->j_osb = osb;
2166
2167 atomic_set(&journal->j_num_trans, 0);
2168 init_rwsem(&journal->j_trans_barrier);
2169 init_waitqueue_head(&journal->j_checkpointed);
2170 spin_lock_init(&journal->j_lock);
2171 journal->j_trans_id = (unsigned long) 1;
2172 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00002173 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08002174 journal->j_state = OCFS2_JOURNAL_FREE;
2175
Jan Karaea455f82009-01-12 23:20:31 +01002176 INIT_WORK(&osb->dentry_lock_work, ocfs2_drop_dl_inodes);
2177 osb->dentry_lock_list = NULL;
2178
Mark Fashehccd979b2005-12-15 14:31:24 -08002179 /* get some pseudo constants for clustersize bits */
2180 osb->s_clustersize_bits =
2181 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2182 osb->s_clustersize = 1 << osb->s_clustersize_bits;
2183 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
2184
2185 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
2186 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
2187 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
2188 osb->s_clustersize);
2189 status = -EINVAL;
2190 goto bail;
2191 }
2192
2193 if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1)
2194 > (u32)~0UL) {
2195 mlog(ML_ERROR, "Volume might try to write to blocks beyond "
2196 "what jbd can address in 32 bits.\n");
2197 status = -EINVAL;
2198 goto bail;
2199 }
2200
2201 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
2202 sizeof(di->id2.i_super.s_uuid))) {
2203 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
2204 status = -ENOMEM;
2205 goto bail;
2206 }
2207
Mark Fasheh78427042006-05-04 12:03:26 -07002208 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08002209
2210 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
2211 osb->vol_label[63] = '\0';
2212 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
2213 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
2214 osb->first_cluster_group_blkno =
2215 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
2216 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002217 osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
Mark Fashehccd979b2005-12-15 14:31:24 -08002218 mlog(0, "vol_label: %s\n", osb->vol_label);
2219 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb0697052006-03-03 10:24:33 -08002220 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
2221 (unsigned long long)osb->root_blkno,
2222 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002223
2224 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
2225 if (!osb->osb_dlm_debug) {
2226 status = -ENOMEM;
2227 mlog_errno(status);
2228 goto bail;
2229 }
2230
2231 atomic_set(&osb->vol_state, VOLUME_INIT);
2232
2233 /* load root, system_dir, and all global system inodes */
2234 status = ocfs2_init_global_system_inodes(osb);
2235 if (status < 0) {
2236 mlog_errno(status);
2237 goto bail;
2238 }
2239
2240 /*
2241 * global bitmap
2242 */
2243 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
2244 OCFS2_INVALID_SLOT);
2245 if (!inode) {
2246 status = -EINVAL;
2247 mlog_errno(status);
2248 goto bail;
2249 }
2250
2251 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
Mark Fashehccd979b2005-12-15 14:31:24 -08002252 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002253
Tao Mae9d578a2007-12-18 15:46:10 +08002254 osb->bitmap_cpg = ocfs2_group_bitmap_size(sb) * 8;
Mark Fashehccd979b2005-12-15 14:31:24 -08002255
2256 status = ocfs2_init_slot_info(osb);
2257 if (status < 0) {
2258 mlog_errno(status);
2259 goto bail;
2260 }
2261
Mark Fashehccd979b2005-12-15 14:31:24 -08002262bail:
2263 mlog_exit(status);
2264 return status;
2265}
2266
2267/*
2268 * will return: -EAGAIN if it is ok to keep searching for superblocks
2269 * -EINVAL if there is a bad superblock
2270 * 0 on success
2271 */
2272static int ocfs2_verify_volume(struct ocfs2_dinode *di,
2273 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002274 u32 blksz,
2275 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002276{
2277 int status = -EAGAIN;
2278
2279 mlog_entry_void();
2280
2281 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
2282 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
Joel Beckerd030cc92008-12-11 15:04:14 -08002283 /* We have to do a raw check of the feature here */
2284 if (le32_to_cpu(di->id2.i_super.s_feature_incompat) &
2285 OCFS2_FEATURE_INCOMPAT_META_ECC) {
2286 status = ocfs2_block_check_validate(bh->b_data,
2287 bh->b_size,
Joel Becker73be1922009-01-06 14:57:08 -08002288 &di->i_check,
2289 stats);
Joel Beckerd030cc92008-12-11 15:04:14 -08002290 if (status)
2291 goto out;
2292 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002293 status = -EINVAL;
2294 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
2295 mlog(ML_ERROR, "found superblock with incorrect block "
2296 "size: found %u, should be %u\n",
2297 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
2298 blksz);
2299 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
2300 OCFS2_MAJOR_REV_LEVEL ||
2301 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
2302 OCFS2_MINOR_REV_LEVEL) {
2303 mlog(ML_ERROR, "found superblock with bad version: "
2304 "found %u.%u, should be %u.%u\n",
2305 le16_to_cpu(di->id2.i_super.s_major_rev_level),
2306 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
2307 OCFS2_MAJOR_REV_LEVEL,
2308 OCFS2_MINOR_REV_LEVEL);
2309 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
2310 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb0697052006-03-03 10:24:33 -08002311 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07002312 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb0697052006-03-03 10:24:33 -08002313 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08002314 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
2315 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
2316 mlog(ML_ERROR, "bad cluster size found: %u\n",
2317 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
2318 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
2319 mlog(ML_ERROR, "bad root_blkno: 0\n");
2320 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
2321 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
2322 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
2323 mlog(ML_ERROR,
2324 "Superblock slots found greater than file system "
2325 "maximum: found %u, max %u\n",
2326 le16_to_cpu(di->id2.i_super.s_max_slots),
2327 OCFS2_MAX_SLOTS);
2328 } else {
2329 /* found it! */
2330 status = 0;
2331 }
2332 }
2333
Joel Beckerd030cc92008-12-11 15:04:14 -08002334out:
Mark Fashehccd979b2005-12-15 14:31:24 -08002335 mlog_exit(status);
2336 return status;
2337}
2338
2339static int ocfs2_check_volume(struct ocfs2_super *osb)
2340{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002341 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08002342 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002343 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08002344 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
2345 * recover
2346 * ourselves. */
2347
2348 mlog_entry_void();
2349
2350 /* Init our journal object. */
2351 status = ocfs2_journal_init(osb->journal, &dirty);
2352 if (status < 0) {
2353 mlog(ML_ERROR, "Could not initialize journal!\n");
2354 goto finally;
2355 }
2356
2357 /* If the journal was unmounted cleanly then we don't want to
2358 * recover anything. Otherwise, journal_load will do that
2359 * dirty work for us :) */
2360 if (!dirty) {
2361 status = ocfs2_journal_wipe(osb->journal, 0);
2362 if (status < 0) {
2363 mlog_errno(status);
2364 goto finally;
2365 }
2366 } else {
2367 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
2368 "recovering volume.\n");
2369 }
2370
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002371 local = ocfs2_mount_local(osb);
2372
Mark Fashehccd979b2005-12-15 14:31:24 -08002373 /* will play back anything left in the journal. */
Sunil Mushran539d8262008-07-14 17:31:10 -07002374 status = ocfs2_journal_load(osb->journal, local, dirty);
Wengang Wang01af4822008-06-10 14:24:48 +08002375 if (status < 0) {
2376 mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
2377 goto finally;
2378 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002379
2380 if (dirty) {
2381 /* recover my local alloc if we didn't unmount cleanly. */
2382 status = ocfs2_begin_local_alloc_recovery(osb,
2383 osb->slot_num,
2384 &local_alloc);
2385 if (status < 0) {
2386 mlog_errno(status);
2387 goto finally;
2388 }
2389 /* we complete the recovery process after we've marked
2390 * ourselves as mounted. */
2391 }
2392
2393 mlog(0, "Journal loaded.\n");
2394
2395 status = ocfs2_load_local_alloc(osb);
2396 if (status < 0) {
2397 mlog_errno(status);
2398 goto finally;
2399 }
2400
2401 if (dirty) {
2402 /* Recovery will be completed after we've mounted the
2403 * rest of the volume. */
2404 osb->dirty = 1;
2405 osb->local_alloc_copy = local_alloc;
2406 local_alloc = NULL;
2407 }
2408
2409 /* go through each journal, trylock it and if you get the
2410 * lock, and it's marked as dirty, set the bit in the recover
2411 * map and launch a recovery thread for it. */
2412 status = ocfs2_mark_dead_nodes(osb);
Srinivas Eeda9140db02009-03-06 14:21:46 -08002413 if (status < 0) {
2414 mlog_errno(status);
2415 goto finally;
2416 }
2417
2418 status = ocfs2_compute_replay_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002419 if (status < 0)
2420 mlog_errno(status);
2421
2422finally:
2423 if (local_alloc)
2424 kfree(local_alloc);
2425
2426 mlog_exit(status);
2427 return status;
2428}
2429
2430/*
2431 * The routine gets called from dismount or close whenever a dismount on
2432 * volume is requested and the osb open count becomes 1.
2433 * It will remove the osb from the global list and also free up all the
2434 * initialized resources and fileobject.
2435 */
2436static void ocfs2_delete_osb(struct ocfs2_super *osb)
2437{
2438 mlog_entry_void();
2439
2440 /* This function assumes that the caller has the main osb resource */
2441
Mark Fasheh8e8a4602008-02-01 11:59:09 -08002442 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002443
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002444 kfree(osb->osb_orphan_wipes);
Sunil Mushran539d8262008-07-14 17:31:10 -07002445 kfree(osb->slot_recovery_generations);
Mark Fashehccd979b2005-12-15 14:31:24 -08002446 /* FIXME
2447 * This belongs in journal shutdown, but because we have to
2448 * allocate osb->journal at the start of ocfs2_initalize_osb(),
2449 * we free it here.
2450 */
2451 kfree(osb->journal);
2452 if (osb->local_alloc_copy)
2453 kfree(osb->local_alloc_copy);
2454 kfree(osb->uuid_str);
2455 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
2456 memset(osb, 0, sizeof(struct ocfs2_super));
2457
2458 mlog_exit_void();
2459}
2460
2461/* Put OCFS2 into a readonly state, or (if the user specifies it),
2462 * panic(). We do not support continue-on-error operation. */
2463static void ocfs2_handle_error(struct super_block *sb)
2464{
2465 struct ocfs2_super *osb = OCFS2_SB(sb);
2466
2467 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
2468 panic("OCFS2: (device %s): panic forced after error\n",
2469 sb->s_id);
2470
2471 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
2472
2473 if (sb->s_flags & MS_RDONLY &&
2474 (ocfs2_is_soft_readonly(osb) ||
2475 ocfs2_is_hard_readonly(osb)))
2476 return;
2477
2478 printk(KERN_CRIT "File system is now read-only due to the potential "
2479 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2480 "system is unmounted.\n");
2481 sb->s_flags |= MS_RDONLY;
2482 ocfs2_set_ro_flag(osb, 0);
2483}
2484
2485static char error_buf[1024];
2486
2487void __ocfs2_error(struct super_block *sb,
2488 const char *function,
2489 const char *fmt, ...)
2490{
2491 va_list args;
2492
2493 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002494 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002495 va_end(args);
2496
2497 /* Not using mlog here because we want to show the actual
2498 * function the error came from. */
2499 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
2500 sb->s_id, function, error_buf);
2501
2502 ocfs2_handle_error(sb);
2503}
2504
2505/* Handle critical errors. This is intentionally more drastic than
2506 * ocfs2_handle_error, so we only use for things like journal errors,
2507 * etc. */
2508void __ocfs2_abort(struct super_block* sb,
2509 const char *function,
2510 const char *fmt, ...)
2511{
2512 va_list args;
2513
2514 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002515 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002516 va_end(args);
2517
2518 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
2519 sb->s_id, function, error_buf);
2520
2521 /* We don't have the cluster support yet to go straight to
2522 * hard readonly in here. Until then, we want to keep
2523 * ocfs2_abort() so that we can at least mark critical
2524 * errors.
2525 *
2526 * TODO: This should abort the journal and alert other nodes
2527 * that our slot needs recovery. */
2528
2529 /* Force a panic(). This stinks, but it's better than letting
2530 * things continue without having a proper hard readonly
2531 * here. */
Sunil Mushrana2f2ddb2009-08-19 15:16:01 -07002532 if (!ocfs2_mount_local(OCFS2_SB(sb)))
2533 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08002534 ocfs2_handle_error(sb);
2535}
2536
2537module_init(ocfs2_init);
2538module_exit(ocfs2_exit);