blob: 0773873d590a8308e21b8a002290627a0e2652c1 [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;
Mark Fasheh73c8a802010-04-05 18:17:13 -070097 int localalloc_opt;
Mark Fashehd02f00c2009-12-07 13:10:48 -080098 unsigned int resv_level;
Mark Fasheh83f92312010-04-05 18:17:16 -070099 int dir_resv_level;
Joel Beckerb61817e2008-02-01 15:08:23 -0800100 char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
Tiger Yangc0123ad2007-09-08 00:16:10 +0800101};
102
Mark Fashehccd979b2005-12-15 14:31:24 -0800103static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800104 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700105 int is_remount);
Jan Kara5297aad2009-10-15 14:54:04 +0200106static int ocfs2_check_set_options(struct super_block *sb,
107 struct mount_options *options);
Sunil Mushrand5500712007-09-06 13:34:16 -0700108static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800109static void ocfs2_put_super(struct super_block *sb);
110static int ocfs2_mount_volume(struct super_block *sb);
111static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
112static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
113static int ocfs2_initialize_mem_caches(void);
114static void ocfs2_free_mem_caches(void);
115static void ocfs2_delete_osb(struct ocfs2_super *osb);
116
David Howells726c3342006-06-23 02:02:58 -0700117static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800118
119static int ocfs2_sync_fs(struct super_block *sb, int wait);
120
121static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
122static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800123static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800124static int ocfs2_check_volume(struct ocfs2_super *osb);
125static int ocfs2_verify_volume(struct ocfs2_dinode *di,
126 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800127 u32 sectsize,
128 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800129static int ocfs2_initialize_super(struct super_block *sb,
130 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800131 int sector_size,
132 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800133static int ocfs2_get_sector(struct super_block *sb,
134 struct buffer_head **bh,
135 int block,
136 int sect_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800137static struct inode *ocfs2_alloc_inode(struct super_block *sb);
138static void ocfs2_destroy_inode(struct inode *inode);
Jan Kara19ece542008-08-21 20:13:17 +0200139static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
140static int ocfs2_enable_quotas(struct ocfs2_super *osb);
141static void ocfs2_disable_quotas(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800142
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800143static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800144 .statfs = ocfs2_statfs,
145 .alloc_inode = ocfs2_alloc_inode,
146 .destroy_inode = ocfs2_destroy_inode,
147 .drop_inode = ocfs2_drop_inode,
148 .clear_inode = ocfs2_clear_inode,
149 .delete_inode = ocfs2_delete_inode,
150 .sync_fs = ocfs2_sync_fs,
Mark Fashehccd979b2005-12-15 14:31:24 -0800151 .put_super = ocfs2_put_super,
152 .remount_fs = ocfs2_remount,
Sunil Mushrand5500712007-09-06 13:34:16 -0700153 .show_options = ocfs2_show_options,
Jan Kara9e33d692008-08-25 19:56:50 +0200154 .quota_read = ocfs2_quota_read,
155 .quota_write = ocfs2_quota_write,
Mark Fashehccd979b2005-12-15 14:31:24 -0800156};
157
158enum {
159 Opt_barrier,
160 Opt_err_panic,
161 Opt_err_ro,
162 Opt_intr,
163 Opt_nointr,
164 Opt_hb_none,
165 Opt_hb_local,
166 Opt_data_ordered,
167 Opt_data_writeback,
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800168 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700169 Opt_slot,
Mark Fashehd147b3d2007-11-07 14:40:36 -0800170 Opt_commit,
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800171 Opt_localalloc,
Mark Fasheh53fc6222007-12-20 16:49:04 -0800172 Opt_localflocks,
Joel Beckerb61817e2008-02-01 15:08:23 -0800173 Opt_stack,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800174 Opt_user_xattr,
175 Opt_nouser_xattr,
Joel Becker12462f12008-09-03 20:03:40 -0700176 Opt_inode64,
Tiger Yanga68979b2008-11-14 11:17:52 +0800177 Opt_acl,
178 Opt_noacl,
Jan Kara19ece542008-08-21 20:13:17 +0200179 Opt_usrquota,
180 Opt_grpquota,
Mark Fashehd02f00c2009-12-07 13:10:48 -0800181 Opt_resv_level,
Mark Fasheh83f92312010-04-05 18:17:16 -0700182 Opt_dir_resv_level,
Mark Fashehccd979b2005-12-15 14:31:24 -0800183 Opt_err,
184};
185
Steven Whitehousea447c092008-10-13 10:46:57 +0100186static const match_table_t tokens = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800187 {Opt_barrier, "barrier=%u"},
188 {Opt_err_panic, "errors=panic"},
189 {Opt_err_ro, "errors=remount-ro"},
190 {Opt_intr, "intr"},
191 {Opt_nointr, "nointr"},
192 {Opt_hb_none, OCFS2_HB_NONE},
193 {Opt_hb_local, OCFS2_HB_LOCAL},
194 {Opt_data_ordered, "data=ordered"},
195 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800196 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700197 {Opt_slot, "preferred_slot=%u"},
Mark Fashehd147b3d2007-11-07 14:40:36 -0800198 {Opt_commit, "commit=%u"},
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800199 {Opt_localalloc, "localalloc=%d"},
Mark Fasheh53fc6222007-12-20 16:49:04 -0800200 {Opt_localflocks, "localflocks"},
Joel Beckerb61817e2008-02-01 15:08:23 -0800201 {Opt_stack, "cluster_stack=%s"},
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800202 {Opt_user_xattr, "user_xattr"},
203 {Opt_nouser_xattr, "nouser_xattr"},
Joel Becker12462f12008-09-03 20:03:40 -0700204 {Opt_inode64, "inode64"},
Tiger Yanga68979b2008-11-14 11:17:52 +0800205 {Opt_acl, "acl"},
206 {Opt_noacl, "noacl"},
Jan Kara19ece542008-08-21 20:13:17 +0200207 {Opt_usrquota, "usrquota"},
208 {Opt_grpquota, "grpquota"},
Mark Fashehd02f00c2009-12-07 13:10:48 -0800209 {Opt_resv_level, "resv_level=%u"},
Mark Fasheh83f92312010-04-05 18:17:16 -0700210 {Opt_dir_resv_level, "dir_resv_level=%u"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800211 {Opt_err, NULL}
212};
213
Sunil Mushran50397502008-12-17 14:17:43 -0800214#ifdef CONFIG_DEBUG_FS
215static int ocfs2_osb_dump(struct ocfs2_super *osb, char *buf, int len)
216{
Sunil Mushran50397502008-12-17 14:17:43 -0800217 struct ocfs2_cluster_connection *cconn = osb->cconn;
218 struct ocfs2_recovery_map *rm = osb->recovery_map;
Sunil Mushrandf152c22009-06-22 11:40:07 -0700219 struct ocfs2_orphan_scan *os = &osb->osb_orphan_scan;
220 int i, out = 0;
Sunil Mushran50397502008-12-17 14:17:43 -0800221
222 out += snprintf(buf + out, len - out,
223 "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n",
224 "Device", osb->dev_str, osb->uuid_str,
225 osb->fs_generation, osb->vol_label);
226
227 out += snprintf(buf + out, len - out,
228 "%10s => State: %d Flags: 0x%lX\n", "Volume",
229 atomic_read(&osb->vol_state), osb->osb_flags);
230
231 out += snprintf(buf + out, len - out,
232 "%10s => Block: %lu Cluster: %d\n", "Sizes",
233 osb->sb->s_blocksize, osb->s_clustersize);
234
235 out += snprintf(buf + out, len - out,
236 "%10s => Compat: 0x%X Incompat: 0x%X "
237 "ROcompat: 0x%X\n",
238 "Features", osb->s_feature_compat,
239 osb->s_feature_incompat, osb->s_feature_ro_compat);
240
241 out += snprintf(buf + out, len - out,
242 "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount",
243 osb->s_mount_opt, osb->s_atime_quantum);
244
Sunil Mushranc3d38842009-06-19 14:45:55 -0700245 if (cconn) {
246 out += snprintf(buf + out, len - out,
247 "%10s => Stack: %s Name: %*s "
248 "Version: %d.%d\n", "Cluster",
249 (*osb->osb_cluster_stack == '\0' ?
250 "o2cb" : osb->osb_cluster_stack),
251 cconn->cc_namelen, cconn->cc_name,
252 cconn->cc_version.pv_major,
253 cconn->cc_version.pv_minor);
254 }
Sunil Mushran50397502008-12-17 14:17:43 -0800255
256 spin_lock(&osb->dc_task_lock);
257 out += snprintf(buf + out, len - out,
258 "%10s => Pid: %d Count: %lu WakeSeq: %lu "
259 "WorkSeq: %lu\n", "DownCnvt",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700260 (osb->dc_task ? task_pid_nr(osb->dc_task) : -1),
261 osb->blocked_lock_count, osb->dc_wake_sequence,
262 osb->dc_work_sequence);
Sunil Mushran50397502008-12-17 14:17:43 -0800263 spin_unlock(&osb->dc_task_lock);
264
265 spin_lock(&osb->osb_lock);
266 out += snprintf(buf + out, len - out, "%10s => Pid: %d Nodes:",
267 "Recovery",
268 (osb->recovery_thread_task ?
269 task_pid_nr(osb->recovery_thread_task) : -1));
270 if (rm->rm_used == 0)
271 out += snprintf(buf + out, len - out, " None\n");
272 else {
273 for (i = 0; i < rm->rm_used; i++)
274 out += snprintf(buf + out, len - out, " %d",
275 rm->rm_entries[i]);
276 out += snprintf(buf + out, len - out, "\n");
277 }
278 spin_unlock(&osb->osb_lock);
279
280 out += snprintf(buf + out, len - out,
281 "%10s => Pid: %d Interval: %lu Needs: %d\n", "Commit",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700282 (osb->commit_task ? task_pid_nr(osb->commit_task) : -1),
283 osb->osb_commit_interval,
Sunil Mushran50397502008-12-17 14:17:43 -0800284 atomic_read(&osb->needs_checkpoint));
285
286 out += snprintf(buf + out, len - out,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700287 "%10s => State: %d TxnId: %lu NumTxns: %d\n",
Sunil Mushran50397502008-12-17 14:17:43 -0800288 "Journal", osb->journal->j_state,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700289 osb->journal->j_trans_id,
290 atomic_read(&osb->journal->j_num_trans));
Sunil Mushran50397502008-12-17 14:17:43 -0800291
292 out += snprintf(buf + out, len - out,
293 "%10s => GlobalAllocs: %d LocalAllocs: %d "
294 "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n",
295 "Stats",
296 atomic_read(&osb->alloc_stats.bitmap_data),
297 atomic_read(&osb->alloc_stats.local_data),
298 atomic_read(&osb->alloc_stats.bg_allocs),
299 atomic_read(&osb->alloc_stats.moves),
300 atomic_read(&osb->alloc_stats.bg_extends));
301
302 out += snprintf(buf + out, len - out,
303 "%10s => State: %u Descriptor: %llu Size: %u bits "
304 "Default: %u bits\n",
305 "LocalAlloc", osb->local_alloc_state,
306 (unsigned long long)osb->la_last_gd,
307 osb->local_alloc_bits, osb->local_alloc_default_bits);
308
309 spin_lock(&osb->osb_lock);
310 out += snprintf(buf + out, len - out,
Tiger Yangb89c5422010-01-25 14:11:06 +0800311 "%10s => InodeSlot: %d StolenInodes: %d, "
312 "MetaSlot: %d StolenMeta: %d\n", "Steal",
Sunil Mushran50397502008-12-17 14:17:43 -0800313 osb->s_inode_steal_slot,
Tiger Yangb89c5422010-01-25 14:11:06 +0800314 atomic_read(&osb->s_num_inodes_stolen),
315 osb->s_meta_steal_slot,
316 atomic_read(&osb->s_num_meta_stolen));
Sunil Mushran50397502008-12-17 14:17:43 -0800317 spin_unlock(&osb->osb_lock);
318
Sunil Mushrandf152c22009-06-22 11:40:07 -0700319 out += snprintf(buf + out, len - out, "OrphanScan => ");
320 out += snprintf(buf + out, len - out, "Local: %u Global: %u ",
321 os->os_count, os->os_seqno);
322 out += snprintf(buf + out, len - out, " Last Scan: ");
323 if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE)
324 out += snprintf(buf + out, len - out, "Disabled\n");
325 else
326 out += snprintf(buf + out, len - out, "%lu seconds ago\n",
327 (get_seconds() - os->os_scantime.tv_sec));
328
Sunil Mushran50397502008-12-17 14:17:43 -0800329 out += snprintf(buf + out, len - out, "%10s => %3s %10s\n",
330 "Slots", "Num", "RecoGen");
Sunil Mushran50397502008-12-17 14:17:43 -0800331 for (i = 0; i < osb->max_slots; ++i) {
332 out += snprintf(buf + out, len - out,
333 "%10s %c %3d %10d\n",
334 " ",
335 (i == osb->slot_num ? '*' : ' '),
336 i, osb->slot_recovery_generations[i]);
337 }
338
339 return out;
340}
341
342static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
343{
344 struct ocfs2_super *osb = inode->i_private;
345 char *buf = NULL;
346
347 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
348 if (!buf)
349 goto bail;
350
351 i_size_write(inode, ocfs2_osb_dump(osb, buf, PAGE_SIZE));
352
353 file->private_data = buf;
354
355 return 0;
356bail:
357 return -ENOMEM;
358}
359
360static int ocfs2_debug_release(struct inode *inode, struct file *file)
361{
362 kfree(file->private_data);
363 return 0;
364}
365
366static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
367 size_t nbytes, loff_t *ppos)
368{
369 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
370 i_size_read(file->f_mapping->host));
371}
372#else
373static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
374{
375 return 0;
376}
377static int ocfs2_debug_release(struct inode *inode, struct file *file)
378{
379 return 0;
380}
381static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
382 size_t nbytes, loff_t *ppos)
383{
384 return 0;
385}
386#endif /* CONFIG_DEBUG_FS */
387
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700388static const struct file_operations ocfs2_osb_debug_fops = {
Sunil Mushran50397502008-12-17 14:17:43 -0800389 .open = ocfs2_osb_debug_open,
390 .release = ocfs2_debug_release,
391 .read = ocfs2_debug_read,
392 .llseek = generic_file_llseek,
393};
394
Mark Fashehccd979b2005-12-15 14:31:24 -0800395static int ocfs2_sync_fs(struct super_block *sb, int wait)
396{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800397 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800398 tid_t target;
399 struct ocfs2_super *osb = OCFS2_SB(sb);
400
Mark Fashehccd979b2005-12-15 14:31:24 -0800401 if (ocfs2_is_hard_readonly(osb))
402 return -EROFS;
403
404 if (wait) {
405 status = ocfs2_flush_truncate_log(osb);
406 if (status < 0)
407 mlog_errno(status);
408 } else {
409 ocfs2_schedule_truncate_log_flush(osb, 0);
410 }
411
Joel Becker2b4e30f2008-09-03 20:03:41 -0700412 if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal,
413 &target)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800414 if (wait)
Joel Becker2b4e30f2008-09-03 20:03:41 -0700415 jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
416 target);
Mark Fashehccd979b2005-12-15 14:31:24 -0800417 }
418 return 0;
419}
420
Jan Kara1a224ad2008-08-20 15:43:36 +0200421static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino)
422{
423 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
424 && (ino == USER_QUOTA_SYSTEM_INODE
425 || ino == LOCAL_USER_QUOTA_SYSTEM_INODE))
426 return 0;
427 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)
428 && (ino == GROUP_QUOTA_SYSTEM_INODE
429 || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE))
430 return 0;
431 return 1;
432}
433
Mark Fashehccd979b2005-12-15 14:31:24 -0800434static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
435{
436 struct inode *new = NULL;
437 int status = 0;
438 int i;
439
440 mlog_entry_void();
441
Jan Kara5fa06132008-01-11 00:11:45 +0100442 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800443 if (IS_ERR(new)) {
444 status = PTR_ERR(new);
445 mlog_errno(status);
446 goto bail;
447 }
448 osb->root_inode = new;
449
Jan Kara5fa06132008-01-11 00:11:45 +0100450 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800451 if (IS_ERR(new)) {
452 status = PTR_ERR(new);
453 mlog_errno(status);
454 goto bail;
455 }
456 osb->sys_root_inode = new;
457
458 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
459 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200460 if (!ocfs2_need_system_inode(osb, i))
461 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800462 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
463 if (!new) {
464 ocfs2_release_system_inodes(osb);
465 status = -EINVAL;
466 mlog_errno(status);
467 /* FIXME: Should ERROR_RO_FS */
468 mlog(ML_ERROR, "Unable to load system inode %d, "
469 "possibly corrupt fs?", i);
470 goto bail;
471 }
472 // the array now has one ref, so drop this one
473 iput(new);
474 }
475
476bail:
477 mlog_exit(status);
478 return status;
479}
480
481static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
482{
483 struct inode *new = NULL;
484 int status = 0;
485 int i;
486
487 mlog_entry_void();
488
489 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
490 i < NUM_SYSTEM_INODES;
491 i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200492 if (!ocfs2_need_system_inode(osb, i))
493 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800494 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
495 if (!new) {
496 ocfs2_release_system_inodes(osb);
497 status = -EINVAL;
498 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
499 status, i, osb->slot_num);
500 goto bail;
501 }
502 /* the array now has one ref, so drop this one */
503 iput(new);
504 }
505
506bail:
507 mlog_exit(status);
508 return status;
509}
510
Denis Chengbddb8eb32007-09-27 02:10:04 +0800511static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800512{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800513 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800514 struct inode *inode;
515
516 mlog_entry_void();
517
518 for (i = 0; i < NUM_SYSTEM_INODES; i++) {
519 inode = osb->system_inodes[i];
520 if (inode) {
521 iput(inode);
522 osb->system_inodes[i] = NULL;
523 }
524 }
525
526 inode = osb->sys_root_inode;
527 if (inode) {
528 iput(inode);
529 osb->sys_root_inode = NULL;
530 }
531
532 inode = osb->root_inode;
533 if (inode) {
534 iput(inode);
535 osb->root_inode = NULL;
536 }
537
Denis Chengbddb8eb32007-09-27 02:10:04 +0800538 mlog_exit(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800539}
540
541/* We're allocating fs objects, use GFP_NOFS */
542static struct inode *ocfs2_alloc_inode(struct super_block *sb)
543{
544 struct ocfs2_inode_info *oi;
545
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800546 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800547 if (!oi)
548 return NULL;
549
Joel Becker2b4e30f2008-09-03 20:03:41 -0700550 jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800551 return &oi->vfs_inode;
552}
553
554static void ocfs2_destroy_inode(struct inode *inode)
555{
556 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
557}
558
Mark Fasheh5a254032007-07-20 12:56:16 -0700559static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
560 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800561{
Mark Fasheh5a254032007-07-20 12:56:16 -0700562 unsigned int bytes = 1 << cbits;
563 unsigned int trim = bytes;
564 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800565
Mark Fasheh5a254032007-07-20 12:56:16 -0700566 /*
567 * i_size and all block offsets in ocfs2 are always 64 bits
568 * wide. i_clusters is 32 bits, in cluster-sized units. So on
569 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800570 */
571
572#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200573# if defined(CONFIG_LBDAF)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700574 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700575 /*
576 * We might be limited by page cache size.
577 */
578 if (bytes > PAGE_CACHE_SIZE) {
579 bytes = PAGE_CACHE_SIZE;
580 trim = 1;
581 /*
582 * Shift by 31 here so that we don't get larger than
583 * MAX_LFS_FILESIZE
584 */
585 bitshift = 31;
586 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800587# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700588 /*
589 * We are limited by the size of sector_t. Use block size, as
590 * that's what we expose to the VFS.
591 */
592 bytes = 1 << bbits;
593 trim = 1;
594 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800595# endif
596#endif
597
Mark Fasheh5a254032007-07-20 12:56:16 -0700598 /*
599 * Trim by a whole cluster when we can actually approach the
600 * on-disk limits. Otherwise we can overflow i_clusters when
601 * an extent start is at the max offset.
602 */
603 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800604}
605
606static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
607{
608 int incompat_features;
609 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800610 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800611 struct ocfs2_super *osb = OCFS2_SB(sb);
612
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200613 lock_kernel();
614
Jan Kara5297aad2009-10-15 14:54:04 +0200615 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) ||
616 !ocfs2_check_set_options(sb, &parsed_options)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800617 ret = -EINVAL;
618 goto out;
619 }
620
621 if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800622 (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800623 ret = -EINVAL;
624 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
625 goto out;
626 }
627
628 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800629 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800630 ret = -EINVAL;
631 mlog(ML_ERROR, "Cannot change data mode on remount\n");
632 goto out;
633 }
634
Joel Becker12462f12008-09-03 20:03:40 -0700635 /* Probably don't want this on remount; it might
636 * mess with other nodes */
637 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) &&
638 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) {
639 ret = -EINVAL;
640 mlog(ML_ERROR, "Cannot enable inode64 on remount\n");
641 goto out;
642 }
643
Mark Fashehccd979b2005-12-15 14:31:24 -0800644 /* We're going to/from readonly mode. */
645 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
Jan Kara19ece542008-08-21 20:13:17 +0200646 /* Disable quota accounting before remounting RO */
647 if (*flags & MS_RDONLY) {
648 ret = ocfs2_susp_quotas(osb, 0);
649 if (ret < 0)
650 goto out;
651 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800652 /* Lock here so the check of HARD_RO and the potential
653 * setting of SOFT_RO is atomic. */
654 spin_lock(&osb->osb_lock);
655 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
656 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
657 ret = -EROFS;
658 goto unlock_osb;
659 }
660
661 if (*flags & MS_RDONLY) {
662 mlog(0, "Going to ro mode.\n");
663 sb->s_flags |= MS_RDONLY;
664 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
665 } else {
666 mlog(0, "Making ro filesystem writeable.\n");
667
668 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
669 mlog(ML_ERROR, "Cannot remount RDWR "
670 "filesystem due to previous errors.\n");
671 ret = -EROFS;
672 goto unlock_osb;
673 }
674 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
675 if (incompat_features) {
676 mlog(ML_ERROR, "Cannot remount RDWR because "
677 "of unsupported optional features "
678 "(%x).\n", incompat_features);
679 ret = -EINVAL;
680 goto unlock_osb;
681 }
682 sb->s_flags &= ~MS_RDONLY;
683 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
684 }
685unlock_osb:
686 spin_unlock(&osb->osb_lock);
Jan Kara19ece542008-08-21 20:13:17 +0200687 /* Enable quota accounting after remounting RW */
688 if (!ret && !(*flags & MS_RDONLY)) {
689 if (sb_any_quota_suspended(sb))
690 ret = ocfs2_susp_quotas(osb, 1);
691 else
692 ret = ocfs2_enable_quotas(osb);
693 if (ret < 0) {
694 /* Return back changes... */
695 spin_lock(&osb->osb_lock);
696 sb->s_flags |= MS_RDONLY;
697 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
698 spin_unlock(&osb->osb_lock);
699 goto out;
700 }
701 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800702 }
703
704 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800705 /* Only save off the new mount options in case of a successful
706 * remount. */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800707 osb->s_mount_opt = parsed_options.mount_opt;
708 osb->s_atime_quantum = parsed_options.atime_quantum;
709 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800710 if (parsed_options.commit_interval)
711 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fashehe001e792007-11-07 14:21:45 -0800712
713 if (!ocfs2_is_hard_readonly(osb))
714 ocfs2_set_journal_params(osb);
Jan Kara57b09bb2009-10-15 14:54:05 +0200715
716 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
717 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ?
718 MS_POSIXACL : 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800719 }
720out:
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200721 unlock_kernel();
Mark Fashehccd979b2005-12-15 14:31:24 -0800722 return ret;
723}
724
725static int ocfs2_sb_probe(struct super_block *sb,
726 struct buffer_head **bh,
Joel Becker73be1922009-01-06 14:57:08 -0800727 int *sector_size,
728 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -0800729{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800730 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800731 struct ocfs1_vol_disk_hdr *hdr;
732 struct ocfs2_dinode *di;
733 int blksize;
734
735 *bh = NULL;
736
737 /* may be > 512 */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400738 *sector_size = bdev_logical_block_size(sb->s_bdev);
Mark Fashehccd979b2005-12-15 14:31:24 -0800739 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
740 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
741 *sector_size, OCFS2_MAX_BLOCKSIZE);
742 status = -EINVAL;
743 goto bail;
744 }
745
746 /* Can this really happen? */
747 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
748 *sector_size = OCFS2_MIN_BLOCKSIZE;
749
750 /* check block zero for old format */
751 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
752 if (status < 0) {
753 mlog_errno(status);
754 goto bail;
755 }
756 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
757 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
758 mlog(ML_ERROR, "incompatible version: %u.%u\n",
759 hdr->major_version, hdr->minor_version);
760 status = -EINVAL;
761 }
762 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
763 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
764 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
765 hdr->signature);
766 status = -EINVAL;
767 }
768 brelse(*bh);
769 *bh = NULL;
770 if (status < 0) {
771 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
772 "upgraded before mounting with ocfs v2\n");
773 goto bail;
774 }
775
776 /*
777 * Now check at magic offset for 512, 1024, 2048, 4096
778 * blocksizes. 4096 is the maximum blocksize because it is
779 * the minimum clustersize.
780 */
781 status = -EINVAL;
782 for (blksize = *sector_size;
783 blksize <= OCFS2_MAX_BLOCKSIZE;
784 blksize <<= 1) {
785 tmpstat = ocfs2_get_sector(sb, bh,
786 OCFS2_SUPER_BLOCK_BLKNO,
787 blksize);
788 if (tmpstat < 0) {
789 status = tmpstat;
790 mlog_errno(status);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700791 break;
Mark Fashehccd979b2005-12-15 14:31:24 -0800792 }
793 di = (struct ocfs2_dinode *) (*bh)->b_data;
Joel Becker73be1922009-01-06 14:57:08 -0800794 memset(stats, 0, sizeof(struct ocfs2_blockcheck_stats));
Jan Kara1c1d9792009-07-22 13:17:19 +0200795 spin_lock_init(&stats->b_lock);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700796 tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats);
797 if (tmpstat < 0) {
798 brelse(*bh);
799 *bh = NULL;
800 }
801 if (tmpstat != -EAGAIN) {
802 status = tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800803 break;
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700804 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800805 }
806
807bail:
808 return status;
809}
810
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800811static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
812{
813 if (ocfs2_mount_local(osb)) {
814 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
815 mlog(ML_ERROR, "Cannot heartbeat on a locally "
816 "mounted device.\n");
817 return -EINVAL;
818 }
819 }
820
Joel Beckerb61817e2008-02-01 15:08:23 -0800821 if (ocfs2_userspace_stack(osb)) {
822 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
823 mlog(ML_ERROR, "Userspace stack expected, but "
824 "o2cb heartbeat arguments passed to mount\n");
825 return -EINVAL;
826 }
827 }
828
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800829 if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800830 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
831 !ocfs2_userspace_stack(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800832 mlog(ML_ERROR, "Heartbeat has to be started to mount "
833 "a read-write clustered device.\n");
834 return -EINVAL;
835 }
836 }
837
838 return 0;
839}
840
Joel Beckerb61817e2008-02-01 15:08:23 -0800841/*
842 * If we're using a userspace stack, mount should have passed
843 * a name that matches the disk. If not, mount should not
844 * have passed a stack.
845 */
846static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
847 struct mount_options *mopt)
848{
849 if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
850 mlog(ML_ERROR,
851 "cluster stack passed to mount, but this filesystem "
852 "does not support it\n");
853 return -EINVAL;
854 }
855
856 if (ocfs2_userspace_stack(osb) &&
857 strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
858 OCFS2_STACK_LABEL_LEN)) {
859 mlog(ML_ERROR,
860 "cluster stack passed to mount (\"%s\") does not "
861 "match the filesystem (\"%s\")\n",
862 mopt->cluster_stack,
863 osb->osb_cluster_stack);
864 return -EINVAL;
865 }
866
867 return 0;
868}
869
Jan Kara19ece542008-08-21 20:13:17 +0200870static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend)
871{
872 int type;
873 struct super_block *sb = osb->sb;
874 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
875 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
876 int status = 0;
877
878 for (type = 0; type < MAXQUOTAS; type++) {
879 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
880 continue;
881 if (unsuspend)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400882 status = dquot_resume(sb, type);
Jan Karaeea7feb2010-05-13 22:14:53 +0200883 else {
884 struct ocfs2_mem_dqinfo *oinfo;
885
886 /* Cancel periodic syncing before suspending */
887 oinfo = sb_dqinfo(sb, type)->dqi_priv;
888 cancel_delayed_work_sync(&oinfo->dqi_sync_work);
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400889 status = dquot_suspend(sb, type);
Jan Karaeea7feb2010-05-13 22:14:53 +0200890 }
Jan Kara19ece542008-08-21 20:13:17 +0200891 if (status < 0)
892 break;
893 }
894 if (status < 0)
895 mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on "
896 "remount (error = %d).\n", status);
897 return status;
898}
899
900static int ocfs2_enable_quotas(struct ocfs2_super *osb)
901{
902 struct inode *inode[MAXQUOTAS] = { NULL, NULL };
903 struct super_block *sb = osb->sb;
904 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
905 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
906 unsigned int ino[MAXQUOTAS] = { LOCAL_USER_QUOTA_SYSTEM_INODE,
907 LOCAL_GROUP_QUOTA_SYSTEM_INODE };
908 int status;
909 int type;
910
911 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE;
912 for (type = 0; type < MAXQUOTAS; type++) {
913 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
914 continue;
915 inode[type] = ocfs2_get_system_file_inode(osb, ino[type],
916 osb->slot_num);
917 if (!inode[type]) {
918 status = -ENOENT;
919 goto out_quota_off;
920 }
921 status = vfs_quota_enable(inode[type], type, QFMT_OCFS2,
922 DQUOT_USAGE_ENABLED);
923 if (status < 0)
924 goto out_quota_off;
925 }
926
927 for (type = 0; type < MAXQUOTAS; type++)
928 iput(inode[type]);
929 return 0;
930out_quota_off:
931 ocfs2_disable_quotas(osb);
932 for (type = 0; type < MAXQUOTAS; type++)
933 iput(inode[type]);
934 mlog_errno(status);
935 return status;
936}
937
938static void ocfs2_disable_quotas(struct ocfs2_super *osb)
939{
940 int type;
941 struct inode *inode;
942 struct super_block *sb = osb->sb;
Jan Karac06bcbf2010-05-13 22:14:53 +0200943 struct ocfs2_mem_dqinfo *oinfo;
Jan Kara19ece542008-08-21 20:13:17 +0200944
945 /* We mostly ignore errors in this function because there's not much
946 * we can do when we see them */
947 for (type = 0; type < MAXQUOTAS; type++) {
948 if (!sb_has_quota_loaded(sb, type))
949 continue;
Jan Karac06bcbf2010-05-13 22:14:53 +0200950 /* Cancel periodic syncing before we grab dqonoff_mutex */
951 oinfo = sb_dqinfo(sb, type)->dqi_priv;
952 cancel_delayed_work_sync(&oinfo->dqi_sync_work);
Jan Kara19ece542008-08-21 20:13:17 +0200953 inode = igrab(sb->s_dquot.files[type]);
954 /* Turn off quotas. This will remove all dquot structures from
955 * memory and so they will be automatically synced to global
956 * quota files */
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400957 dquot_disable(sb, type, DQUOT_USAGE_ENABLED |
958 DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200959 if (!inode)
960 continue;
961 iput(inode);
962 }
963}
964
965/* Handle quota on quotactl */
966static int ocfs2_quota_on(struct super_block *sb, int type, int format_id,
967 char *path, int remount)
968{
969 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
970 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
971
972 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
973 return -EINVAL;
974
975 if (remount)
976 return 0; /* Just ignore it has been handled in
977 * ocfs2_remount() */
978 return vfs_quota_enable(sb_dqopt(sb)->files[type], type,
979 format_id, DQUOT_LIMITS_ENABLED);
980}
981
982/* Handle quota off quotactl */
983static int ocfs2_quota_off(struct super_block *sb, int type, int remount)
984{
985 if (remount)
986 return 0; /* Ignore now and handle later in
987 * ocfs2_remount() */
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400988 return dquot_disable(sb, type, DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200989}
990
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700991static const struct quotactl_ops ocfs2_quotactl_ops = {
Jan Kara19ece542008-08-21 20:13:17 +0200992 .quota_on = ocfs2_quota_on,
993 .quota_off = ocfs2_quota_off,
994 .quota_sync = vfs_quota_sync,
995 .get_info = vfs_get_dqinfo,
996 .set_info = vfs_set_dqinfo,
997 .get_dqblk = vfs_get_dqblk,
998 .set_dqblk = vfs_set_dqblk,
999};
1000
Mark Fashehccd979b2005-12-15 14:31:24 -08001001static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
1002{
1003 struct dentry *root;
1004 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001005 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -08001006 struct inode *inode = NULL;
1007 struct ocfs2_super *osb = NULL;
1008 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001009 char nodestr[8];
Joel Becker73be1922009-01-06 14:57:08 -08001010 struct ocfs2_blockcheck_stats stats;
Mark Fashehccd979b2005-12-15 14:31:24 -08001011
1012 mlog_entry("%p, %p, %i", sb, data, silent);
1013
Tiger Yangc0123ad2007-09-08 00:16:10 +08001014 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001015 status = -EINVAL;
1016 goto read_super_error;
1017 }
1018
1019 /* probe for superblock */
Joel Becker73be1922009-01-06 14:57:08 -08001020 status = ocfs2_sb_probe(sb, &bh, &sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001021 if (status < 0) {
1022 mlog(ML_ERROR, "superblock probe failed!\n");
1023 goto read_super_error;
1024 }
1025
Joel Becker73be1922009-01-06 14:57:08 -08001026 status = ocfs2_initialize_super(sb, bh, sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001027 osb = OCFS2_SB(sb);
1028 if (status < 0) {
1029 mlog_errno(status);
1030 goto read_super_error;
1031 }
1032 brelse(bh);
1033 bh = NULL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001034
Jan Kara5297aad2009-10-15 14:54:04 +02001035 if (!ocfs2_check_set_options(sb, &parsed_options)) {
1036 status = -EINVAL;
1037 goto read_super_error;
1038 }
Tiger Yangc0123ad2007-09-08 00:16:10 +08001039 osb->s_mount_opt = parsed_options.mount_opt;
1040 osb->s_atime_quantum = parsed_options.atime_quantum;
1041 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001042 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fasheh73c8a802010-04-05 18:17:13 -07001043
1044 ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt);
Mark Fashehd02f00c2009-12-07 13:10:48 -08001045 osb->osb_resv_level = parsed_options.resv_level;
Mark Fasheh83f92312010-04-05 18:17:16 -07001046 osb->osb_dir_resv_level = parsed_options.resv_level;
1047 if (parsed_options.dir_resv_level == -1)
1048 osb->osb_dir_resv_level = parsed_options.resv_level;
1049 else
1050 osb->osb_dir_resv_level = parsed_options.dir_resv_level;
Mark Fashehccd979b2005-12-15 14:31:24 -08001051
Joel Beckerb61817e2008-02-01 15:08:23 -08001052 status = ocfs2_verify_userspace_stack(osb, &parsed_options);
1053 if (status)
1054 goto read_super_error;
1055
Mark Fashehccd979b2005-12-15 14:31:24 -08001056 sb->s_magic = OCFS2_SUPER_MAGIC;
1057
Tiger Yanga68979b2008-11-14 11:17:52 +08001058 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1059 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1060
Mark Fashehccd979b2005-12-15 14:31:24 -08001061 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
1062 * heartbeat=none */
1063 if (bdev_read_only(sb->s_bdev)) {
1064 if (!(sb->s_flags & MS_RDONLY)) {
1065 status = -EACCES;
1066 mlog(ML_ERROR, "Readonly device detected but readonly "
1067 "mount was not specified.\n");
1068 goto read_super_error;
1069 }
1070
1071 /* You should not be able to start a local heartbeat
1072 * on a readonly device. */
1073 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
1074 status = -EROFS;
1075 mlog(ML_ERROR, "Local heartbeat specified on readonly "
1076 "device.\n");
1077 goto read_super_error;
1078 }
1079
1080 status = ocfs2_check_journals_nolocks(osb);
1081 if (status < 0) {
1082 if (status == -EROFS)
1083 mlog(ML_ERROR, "Recovery required on readonly "
1084 "file system, but write access is "
1085 "unavailable.\n");
1086 else
Sunil Mushran2bd63212010-01-25 16:57:38 -08001087 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001088 goto read_super_error;
1089 }
1090
1091 ocfs2_set_ro_flag(osb, 1);
1092
1093 printk(KERN_NOTICE "Readonly device detected. No cluster "
1094 "services will be utilized for this mount. Recovery "
1095 "will be skipped.\n");
1096 }
1097
1098 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001099 if (sb->s_flags & MS_RDONLY)
1100 ocfs2_set_ro_flag(osb, 0);
1101 }
1102
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001103 status = ocfs2_verify_heartbeat(osb);
1104 if (status < 0) {
1105 mlog_errno(status);
1106 goto read_super_error;
1107 }
1108
Mark Fashehccd979b2005-12-15 14:31:24 -08001109 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
1110 ocfs2_debugfs_root);
1111 if (!osb->osb_debug_root) {
1112 status = -EINVAL;
1113 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
1114 goto read_super_error;
1115 }
1116
Sunil Mushran50397502008-12-17 14:17:43 -08001117 osb->osb_ctxt = debugfs_create_file("fs_state", S_IFREG|S_IRUSR,
1118 osb->osb_debug_root,
1119 osb,
1120 &ocfs2_osb_debug_fops);
1121 if (!osb->osb_ctxt) {
1122 status = -EINVAL;
1123 mlog_errno(status);
1124 goto read_super_error;
1125 }
1126
Joel Becker73be1922009-01-06 14:57:08 -08001127 if (ocfs2_meta_ecc(osb)) {
1128 status = ocfs2_blockcheck_stats_debugfs_install(
1129 &osb->osb_ecc_stats,
1130 osb->osb_debug_root);
1131 if (status) {
1132 mlog(ML_ERROR,
1133 "Unable to create blockcheck statistics "
1134 "files\n");
1135 goto read_super_error;
1136 }
1137 }
1138
Mark Fashehccd979b2005-12-15 14:31:24 -08001139 status = ocfs2_mount_volume(sb);
1140 if (osb->root_inode)
1141 inode = igrab(osb->root_inode);
1142
1143 if (status < 0)
1144 goto read_super_error;
1145
1146 if (!inode) {
1147 status = -EIO;
1148 mlog_errno(status);
1149 goto read_super_error;
1150 }
1151
1152 root = d_alloc_root(inode);
1153 if (!root) {
1154 status = -ENOMEM;
1155 mlog_errno(status);
1156 goto read_super_error;
1157 }
1158
1159 sb->s_root = root;
1160
1161 ocfs2_complete_mount_recovery(osb);
1162
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001163 if (ocfs2_mount_local(osb))
1164 snprintf(nodestr, sizeof(nodestr), "local");
1165 else
Joel Becker19fdb622008-01-30 15:38:24 -08001166 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001167
1168 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001169 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001170 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -08001171 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
1172 "ordered");
1173
1174 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
1175 wake_up(&osb->osb_mount_event);
1176
Jan Kara19ece542008-08-21 20:13:17 +02001177 /* Now we can initialize quotas because we can afford to wait
1178 * for cluster locks recovery now. That also means that truncation
1179 * log recovery can happen but that waits for proper quota setup */
1180 if (!(sb->s_flags & MS_RDONLY)) {
1181 status = ocfs2_enable_quotas(osb);
1182 if (status < 0) {
1183 /* We have to err-out specially here because
1184 * s_root is already set */
1185 mlog_errno(status);
1186 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1187 wake_up(&osb->osb_mount_event);
1188 mlog_exit(status);
1189 return status;
1190 }
1191 }
1192
1193 ocfs2_complete_quota_recovery(osb);
1194
1195 /* Now we wake up again for processes waiting for quotas */
1196 atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS);
1197 wake_up(&osb->osb_mount_event);
1198
Sunil Mushrandf152c22009-06-22 11:40:07 -07001199 /* Start this when the mount is almost sure of being successful */
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04001200 ocfs2_orphan_scan_start(osb);
Sunil Mushrandf152c22009-06-22 11:40:07 -07001201
Mark Fashehccd979b2005-12-15 14:31:24 -08001202 mlog_exit(status);
1203 return status;
1204
1205read_super_error:
Mark Fasheha81cb882008-10-07 14:25:16 -07001206 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001207
1208 if (inode)
1209 iput(inode);
1210
1211 if (osb) {
1212 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1213 wake_up(&osb->osb_mount_event);
1214 ocfs2_dismount_volume(sb, 1);
1215 }
1216
1217 mlog_exit(status);
1218 return status;
1219}
1220
David Howells454e2392006-06-23 02:02:57 -07001221static int ocfs2_get_sb(struct file_system_type *fs_type,
1222 int flags,
1223 const char *dev_name,
1224 void *data,
1225 struct vfsmount *mnt)
Mark Fashehccd979b2005-12-15 14:31:24 -08001226{
David Howells454e2392006-06-23 02:02:57 -07001227 return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
1228 mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -08001229}
1230
Jan Karaf7b1aa692009-07-20 12:12:36 +02001231static void ocfs2_kill_sb(struct super_block *sb)
1232{
1233 struct ocfs2_super *osb = OCFS2_SB(sb);
1234
Jan Kara5fd13182009-07-30 17:01:53 +02001235 /* Failed mount? */
1236 if (!osb || atomic_read(&osb->vol_state) == VOLUME_DISABLED)
1237 goto out;
1238
Jan Karaf7b1aa692009-07-20 12:12:36 +02001239 /* Prevent further queueing of inode drop events */
1240 spin_lock(&dentry_list_lock);
1241 ocfs2_set_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED);
1242 spin_unlock(&dentry_list_lock);
1243 /* Wait for work to finish and/or remove it */
1244 cancel_work_sync(&osb->dentry_lock_work);
Jan Kara5fd13182009-07-30 17:01:53 +02001245out:
Jan Karaf7b1aa692009-07-20 12:12:36 +02001246 kill_block_super(sb);
1247}
1248
Mark Fashehccd979b2005-12-15 14:31:24 -08001249static struct file_system_type ocfs2_fs_type = {
1250 .owner = THIS_MODULE,
1251 .name = "ocfs2",
1252 .get_sb = ocfs2_get_sb, /* is this called when we mount
1253 * the fs? */
Jan Karaf7b1aa692009-07-20 12:12:36 +02001254 .kill_sb = ocfs2_kill_sb,
1255
Mark Fasheh1ba9da22006-09-08 14:22:54 -07001256 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -08001257 .next = NULL
1258};
1259
Jan Kara5297aad2009-10-15 14:54:04 +02001260static int ocfs2_check_set_options(struct super_block *sb,
1261 struct mount_options *options)
1262{
1263 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA &&
1264 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1265 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
1266 mlog(ML_ERROR, "User quotas were requested, but this "
1267 "filesystem does not have the feature enabled.\n");
1268 return 0;
1269 }
1270 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA &&
1271 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1272 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
1273 mlog(ML_ERROR, "Group quotas were requested, but this "
1274 "filesystem does not have the feature enabled.\n");
1275 return 0;
1276 }
1277 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL &&
1278 !OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR)) {
1279 mlog(ML_ERROR, "ACL support requested but extended attributes "
1280 "feature is not enabled\n");
1281 return 0;
1282 }
1283 /* No ACL setting specified? Use XATTR feature... */
1284 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL |
1285 OCFS2_MOUNT_NO_POSIX_ACL))) {
1286 if (OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR))
1287 options->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
1288 else
1289 options->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
1290 }
1291 return 1;
1292}
1293
Mark Fashehccd979b2005-12-15 14:31:24 -08001294static int ocfs2_parse_options(struct super_block *sb,
1295 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +08001296 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -08001297 int is_remount)
1298{
1299 int status;
1300 char *p;
1301
1302 mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
1303 options ? options : "(none)");
1304
Mark Fashehd147b3d2007-11-07 14:40:36 -08001305 mopt->commit_interval = 0;
Sunil Mushran4b37fcb2010-04-13 18:00:31 -07001306 mopt->mount_opt = OCFS2_MOUNT_NOINTR;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001307 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1308 mopt->slot = OCFS2_INVALID_SLOT;
Mark Fasheh73c8a802010-04-05 18:17:13 -07001309 mopt->localalloc_opt = -1;
Joel Beckerb61817e2008-02-01 15:08:23 -08001310 mopt->cluster_stack[0] = '\0';
Mark Fashehd02f00c2009-12-07 13:10:48 -08001311 mopt->resv_level = OCFS2_DEFAULT_RESV_LEVEL;
Mark Fasheh83f92312010-04-05 18:17:16 -07001312 mopt->dir_resv_level = -1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001313
1314 if (!options) {
1315 status = 1;
1316 goto bail;
1317 }
1318
1319 while ((p = strsep(&options, ",")) != NULL) {
1320 int token, option;
1321 substring_t args[MAX_OPT_ARGS];
1322
1323 if (!*p)
1324 continue;
1325
1326 token = match_token(p, tokens, args);
1327 switch (token) {
1328 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001329 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001330 break;
1331 case Opt_hb_none:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001332 mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001333 break;
1334 case Opt_barrier:
1335 if (match_int(&args[0], &option)) {
1336 status = 0;
1337 goto bail;
1338 }
1339 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001340 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001341 else
Tiger Yangc0123ad2007-09-08 00:16:10 +08001342 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001343 break;
1344 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001345 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001346 break;
1347 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001348 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001349 break;
1350 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001351 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001352 break;
1353 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001354 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001355 break;
1356 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001357 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001358 break;
1359 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001360 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001361 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001362 case Opt_user_xattr:
1363 mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
1364 break;
1365 case Opt_nouser_xattr:
1366 mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
1367 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001368 case Opt_atime_quantum:
1369 if (match_int(&args[0], &option)) {
1370 status = 0;
1371 goto bail;
1372 }
1373 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001374 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001375 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001376 case Opt_slot:
1377 option = 0;
1378 if (match_int(&args[0], &option)) {
1379 status = 0;
1380 goto bail;
1381 }
1382 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001383 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001384 break;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001385 case Opt_commit:
1386 option = 0;
1387 if (match_int(&args[0], &option)) {
1388 status = 0;
1389 goto bail;
1390 }
1391 if (option < 0)
1392 return 0;
1393 if (option == 0)
Joel Becker2b4e30f2008-09-03 20:03:41 -07001394 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001395 mopt->commit_interval = HZ * option;
1396 break;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001397 case Opt_localalloc:
1398 option = 0;
1399 if (match_int(&args[0], &option)) {
1400 status = 0;
1401 goto bail;
1402 }
Mark Fasheh73c8a802010-04-05 18:17:13 -07001403 if (option >= 0)
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001404 mopt->localalloc_opt = option;
1405 break;
Mark Fasheh53fc6222007-12-20 16:49:04 -08001406 case Opt_localflocks:
1407 /*
1408 * Changing this during remount could race
1409 * flock() requests, or "unbalance" existing
1410 * ones (e.g., a lock is taken in one mode but
1411 * dropped in the other). If users care enough
1412 * to flip locking modes during remount, we
1413 * could add a "local" flag to individual
1414 * flock structures for proper tracking of
1415 * state.
1416 */
1417 if (!is_remount)
1418 mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
1419 break;
Joel Beckerb61817e2008-02-01 15:08:23 -08001420 case Opt_stack:
1421 /* Check both that the option we were passed
1422 * is of the right length and that it is a proper
1423 * string of the right length.
1424 */
1425 if (((args[0].to - args[0].from) !=
1426 OCFS2_STACK_LABEL_LEN) ||
1427 (strnlen(args[0].from,
1428 OCFS2_STACK_LABEL_LEN) !=
1429 OCFS2_STACK_LABEL_LEN)) {
1430 mlog(ML_ERROR,
1431 "Invalid cluster_stack option\n");
1432 status = 0;
1433 goto bail;
1434 }
1435 memcpy(mopt->cluster_stack, args[0].from,
1436 OCFS2_STACK_LABEL_LEN);
1437 mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
1438 break;
Joel Becker12462f12008-09-03 20:03:40 -07001439 case Opt_inode64:
1440 mopt->mount_opt |= OCFS2_MOUNT_INODE64;
1441 break;
Jan Kara19ece542008-08-21 20:13:17 +02001442 case Opt_usrquota:
Jan Kara19ece542008-08-21 20:13:17 +02001443 mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA;
1444 break;
1445 case Opt_grpquota:
Jan Kara19ece542008-08-21 20:13:17 +02001446 mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA;
1447 break;
Tiger Yanga68979b2008-11-14 11:17:52 +08001448 case Opt_acl:
1449 mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
Jan Kara5297aad2009-10-15 14:54:04 +02001450 mopt->mount_opt &= ~OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001451 break;
1452 case Opt_noacl:
Jan Kara5297aad2009-10-15 14:54:04 +02001453 mopt->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001454 mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
1455 break;
Mark Fashehd02f00c2009-12-07 13:10:48 -08001456 case Opt_resv_level:
1457 if (is_remount)
1458 break;
1459 if (match_int(&args[0], &option)) {
1460 status = 0;
1461 goto bail;
1462 }
1463 if (option >= OCFS2_MIN_RESV_LEVEL &&
1464 option < OCFS2_MAX_RESV_LEVEL)
1465 mopt->resv_level = option;
1466 break;
Mark Fasheh83f92312010-04-05 18:17:16 -07001467 case Opt_dir_resv_level:
1468 if (is_remount)
1469 break;
1470 if (match_int(&args[0], &option)) {
1471 status = 0;
1472 goto bail;
1473 }
1474 if (option >= OCFS2_MIN_RESV_LEVEL &&
1475 option < OCFS2_MAX_RESV_LEVEL)
1476 mopt->dir_resv_level = option;
1477 break;
Mark Fashehccd979b2005-12-15 14:31:24 -08001478 default:
1479 mlog(ML_ERROR,
1480 "Unrecognized mount option \"%s\" "
1481 "or missing value\n", p);
1482 status = 0;
1483 goto bail;
1484 }
1485 }
1486
1487 status = 1;
1488
1489bail:
1490 mlog_exit(status);
1491 return status;
1492}
1493
Sunil Mushrand5500712007-09-06 13:34:16 -07001494static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
1495{
1496 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
1497 unsigned long opts = osb->s_mount_opt;
Mark Fashehebcee4b2008-07-28 14:55:20 -07001498 unsigned int local_alloc_megs;
Sunil Mushrand5500712007-09-06 13:34:16 -07001499
1500 if (opts & OCFS2_MOUNT_HB_LOCAL)
1501 seq_printf(s, ",_netdev,heartbeat=local");
1502 else
1503 seq_printf(s, ",heartbeat=none");
1504
1505 if (opts & OCFS2_MOUNT_NOINTR)
1506 seq_printf(s, ",nointr");
1507
1508 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
1509 seq_printf(s, ",data=writeback");
1510 else
1511 seq_printf(s, ",data=ordered");
1512
1513 if (opts & OCFS2_MOUNT_BARRIER)
1514 seq_printf(s, ",barrier=1");
1515
1516 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
1517 seq_printf(s, ",errors=panic");
1518 else
1519 seq_printf(s, ",errors=remount-ro");
1520
1521 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
1522 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
1523
1524 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
1525 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
1526
Mark Fashehd147b3d2007-11-07 14:40:36 -08001527 if (osb->osb_commit_interval)
1528 seq_printf(s, ",commit=%u",
1529 (unsigned) (osb->osb_commit_interval / HZ));
1530
Mark Fashehebcee4b2008-07-28 14:55:20 -07001531 local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
Mark Fasheh6b820212010-04-05 18:17:14 -07001532 if (local_alloc_megs != ocfs2_la_default_mb(osb))
Mark Fashehebcee4b2008-07-28 14:55:20 -07001533 seq_printf(s, ",localalloc=%d", local_alloc_megs);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001534
Mark Fasheh53fc6222007-12-20 16:49:04 -08001535 if (opts & OCFS2_MOUNT_LOCALFLOCKS)
1536 seq_printf(s, ",localflocks,");
1537
Joel Beckerb61817e2008-02-01 15:08:23 -08001538 if (osb->osb_cluster_stack[0])
1539 seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
1540 osb->osb_cluster_stack);
Jan Kara19ece542008-08-21 20:13:17 +02001541 if (opts & OCFS2_MOUNT_USRQUOTA)
1542 seq_printf(s, ",usrquota");
1543 if (opts & OCFS2_MOUNT_GRPQUOTA)
1544 seq_printf(s, ",grpquota");
Joel Beckerb61817e2008-02-01 15:08:23 -08001545
Sunil Mushranb0f73cf2008-09-05 11:29:14 -07001546 if (opts & OCFS2_MOUNT_NOUSERXATTR)
1547 seq_printf(s, ",nouser_xattr");
1548 else
1549 seq_printf(s, ",user_xattr");
1550
Joel Becker12462f12008-09-03 20:03:40 -07001551 if (opts & OCFS2_MOUNT_INODE64)
1552 seq_printf(s, ",inode64");
1553
Tiger Yanga68979b2008-11-14 11:17:52 +08001554 if (opts & OCFS2_MOUNT_POSIX_ACL)
1555 seq_printf(s, ",acl");
1556 else
1557 seq_printf(s, ",noacl");
Tiger Yanga68979b2008-11-14 11:17:52 +08001558
Mark Fashehd02f00c2009-12-07 13:10:48 -08001559 if (osb->osb_resv_level != OCFS2_DEFAULT_RESV_LEVEL)
1560 seq_printf(s, ",resv_level=%d", osb->osb_resv_level);
1561
Mark Fasheh83f92312010-04-05 18:17:16 -07001562 if (osb->osb_dir_resv_level != osb->osb_resv_level)
1563 seq_printf(s, ",dir_resv_level=%d", osb->osb_resv_level);
1564
Sunil Mushrand5500712007-09-06 13:34:16 -07001565 return 0;
1566}
1567
Mark Fashehccd979b2005-12-15 14:31:24 -08001568static int __init ocfs2_init(void)
1569{
1570 int status;
1571
1572 mlog_entry_void();
1573
1574 ocfs2_print_version();
1575
Mark Fashehccd979b2005-12-15 14:31:24 -08001576 status = init_ocfs2_uptodate_cache();
1577 if (status < 0) {
1578 mlog_errno(status);
1579 goto leave;
1580 }
1581
1582 status = ocfs2_initialize_mem_caches();
1583 if (status < 0) {
1584 mlog_errno(status);
1585 goto leave;
1586 }
1587
1588 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
1589 if (!ocfs2_wq) {
1590 status = -ENOMEM;
1591 goto leave;
1592 }
1593
Mark Fashehccd979b2005-12-15 14:31:24 -08001594 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
1595 if (!ocfs2_debugfs_root) {
1596 status = -EFAULT;
1597 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
1598 }
1599
Mark Fasheh171bf932008-10-20 15:36:47 +02001600 status = ocfs2_quota_setup();
1601 if (status)
1602 goto leave;
1603
Joel Becker63e0c482008-01-30 16:58:36 -08001604 ocfs2_set_locking_protocol();
1605
Jan Kara9e33d692008-08-25 19:56:50 +02001606 status = register_quota_format(&ocfs2_quota_format);
Mark Fashehccd979b2005-12-15 14:31:24 -08001607leave:
1608 if (status < 0) {
Mark Fasheh171bf932008-10-20 15:36:47 +02001609 ocfs2_quota_shutdown();
Mark Fashehccd979b2005-12-15 14:31:24 -08001610 ocfs2_free_mem_caches();
1611 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -08001612 }
1613
1614 mlog_exit(status);
1615
1616 if (status >= 0) {
1617 return register_filesystem(&ocfs2_fs_type);
1618 } else
1619 return -1;
1620}
1621
1622static void __exit ocfs2_exit(void)
1623{
1624 mlog_entry_void();
1625
Mark Fasheh171bf932008-10-20 15:36:47 +02001626 ocfs2_quota_shutdown();
1627
Mark Fashehccd979b2005-12-15 14:31:24 -08001628 if (ocfs2_wq) {
1629 flush_workqueue(ocfs2_wq);
1630 destroy_workqueue(ocfs2_wq);
1631 }
1632
Jan Kara9e33d692008-08-25 19:56:50 +02001633 unregister_quota_format(&ocfs2_quota_format);
1634
Mark Fashehccd979b2005-12-15 14:31:24 -08001635 debugfs_remove(ocfs2_debugfs_root);
1636
1637 ocfs2_free_mem_caches();
1638
1639 unregister_filesystem(&ocfs2_fs_type);
1640
Mark Fashehccd979b2005-12-15 14:31:24 -08001641 exit_ocfs2_uptodate_cache();
1642
1643 mlog_exit_void();
1644}
1645
1646static void ocfs2_put_super(struct super_block *sb)
1647{
1648 mlog_entry("(0x%p)\n", sb);
1649
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02001650 lock_kernel();
1651
Mark Fashehccd979b2005-12-15 14:31:24 -08001652 ocfs2_sync_blockdev(sb);
1653 ocfs2_dismount_volume(sb, 0);
1654
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02001655 unlock_kernel();
1656
Mark Fashehccd979b2005-12-15 14:31:24 -08001657 mlog_exit_void();
1658}
1659
David Howells726c3342006-06-23 02:02:58 -07001660static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -08001661{
1662 struct ocfs2_super *osb;
1663 u32 numbits, freebits;
1664 int status;
1665 struct ocfs2_dinode *bm_lock;
1666 struct buffer_head *bh = NULL;
1667 struct inode *inode = NULL;
1668
David Howells726c3342006-06-23 02:02:58 -07001669 mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -08001670
David Howells726c3342006-06-23 02:02:58 -07001671 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001672
1673 inode = ocfs2_get_system_file_inode(osb,
1674 GLOBAL_BITMAP_SYSTEM_INODE,
1675 OCFS2_INVALID_SLOT);
1676 if (!inode) {
1677 mlog(ML_ERROR, "failed to get bitmap inode\n");
1678 status = -EIO;
1679 goto bail;
1680 }
1681
Mark Fashehe63aecb62007-10-18 15:30:42 -07001682 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001683 if (status < 0) {
1684 mlog_errno(status);
1685 goto bail;
1686 }
1687
1688 bm_lock = (struct ocfs2_dinode *) bh->b_data;
1689
1690 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
1691 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
1692
1693 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -07001694 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -08001695 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
1696 buf->f_blocks = ((sector_t) numbits) *
1697 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1698 buf->f_bfree = ((sector_t) freebits) *
1699 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1700 buf->f_bavail = buf->f_bfree;
1701 buf->f_files = numbits;
1702 buf->f_ffree = freebits;
Coly Li837711f2009-01-16 16:33:05 +08001703 buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN)
1704 & 0xFFFFFFFFUL;
1705 buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN,
1706 OCFS2_VOL_UUID_LEN) & 0xFFFFFFFFUL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001707
1708 brelse(bh);
1709
Mark Fashehe63aecb62007-10-18 15:30:42 -07001710 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001711 status = 0;
1712bail:
1713 if (inode)
1714 iput(inode);
1715
1716 mlog_exit(status);
1717
1718 return status;
1719}
1720
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001721static void ocfs2_inode_init_once(void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001722{
1723 struct ocfs2_inode_info *oi = data;
1724
Christoph Lametera35afb82007-05-16 22:10:57 -07001725 oi->ip_flags = 0;
1726 oi->ip_open_count = 0;
1727 spin_lock_init(&oi->ip_lock);
1728 ocfs2_extent_map_init(&oi->vfs_inode);
1729 INIT_LIST_HEAD(&oi->ip_io_markers);
Christoph Lametera35afb82007-05-16 22:10:57 -07001730 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001731
Christoph Lametera35afb82007-05-16 22:10:57 -07001732 init_rwsem(&oi->ip_alloc_sem);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001733 init_rwsem(&oi->ip_xattr_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -07001734 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001735
Christoph Lametera35afb82007-05-16 22:10:57 -07001736 oi->ip_blkno = 0ULL;
1737 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001738
Mark Fasheh4fe370a2009-12-07 13:15:40 -08001739 ocfs2_resv_init_once(&oi->ip_la_data_resv);
1740
Christoph Lametera35afb82007-05-16 22:10:57 -07001741 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001742 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001743 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001744
Joel Becker8cb471e2009-02-10 20:00:41 -08001745 ocfs2_metadata_cache_init(INODE_CACHE(&oi->vfs_inode),
Joel Becker6e5a3d72009-02-10 19:00:37 -08001746 &ocfs2_inode_caching_ops);
Mark Fashehccd979b2005-12-15 14:31:24 -08001747
Christoph Lametera35afb82007-05-16 22:10:57 -07001748 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001749}
1750
1751static int ocfs2_initialize_mem_caches(void)
1752{
1753 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001754 sizeof(struct ocfs2_inode_info),
1755 0,
1756 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1757 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001758 ocfs2_inode_init_once);
Jan Kara9e33d692008-08-25 19:56:50 +02001759 ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
1760 sizeof(struct ocfs2_dquot),
1761 0,
1762 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1763 SLAB_MEM_SPREAD),
1764 NULL);
1765 ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
1766 sizeof(struct ocfs2_quota_chunk),
1767 0,
1768 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
1769 NULL);
1770 if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
1771 !ocfs2_qf_chunk_cachep) {
1772 if (ocfs2_inode_cachep)
1773 kmem_cache_destroy(ocfs2_inode_cachep);
1774 if (ocfs2_dquot_cachep)
1775 kmem_cache_destroy(ocfs2_dquot_cachep);
1776 if (ocfs2_qf_chunk_cachep)
1777 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001778 return -ENOMEM;
Jan Kara9e33d692008-08-25 19:56:50 +02001779 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001780
Mark Fashehccd979b2005-12-15 14:31:24 -08001781 return 0;
1782}
1783
1784static void ocfs2_free_mem_caches(void)
1785{
1786 if (ocfs2_inode_cachep)
1787 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001788 ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +02001789
1790 if (ocfs2_dquot_cachep)
1791 kmem_cache_destroy(ocfs2_dquot_cachep);
1792 ocfs2_dquot_cachep = NULL;
1793
1794 if (ocfs2_qf_chunk_cachep)
1795 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
1796 ocfs2_qf_chunk_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001797}
1798
1799static int ocfs2_get_sector(struct super_block *sb,
1800 struct buffer_head **bh,
1801 int block,
1802 int sect_size)
1803{
1804 if (!sb_set_blocksize(sb, sect_size)) {
1805 mlog(ML_ERROR, "unable to set blocksize\n");
1806 return -EIO;
1807 }
1808
1809 *bh = sb_getblk(sb, block);
1810 if (!*bh) {
1811 mlog_errno(-EIO);
1812 return -EIO;
1813 }
1814 lock_buffer(*bh);
1815 if (!buffer_dirty(*bh))
1816 clear_buffer_uptodate(*bh);
1817 unlock_buffer(*bh);
1818 ll_rw_block(READ, 1, bh);
1819 wait_on_buffer(*bh);
wengang wang28d57d42009-02-13 10:11:47 +08001820 if (!buffer_uptodate(*bh)) {
1821 mlog_errno(-EIO);
1822 brelse(*bh);
1823 *bh = NULL;
1824 return -EIO;
1825 }
1826
Mark Fashehccd979b2005-12-15 14:31:24 -08001827 return 0;
1828}
1829
Mark Fashehccd979b2005-12-15 14:31:24 -08001830static int ocfs2_mount_volume(struct super_block *sb)
1831{
1832 int status = 0;
1833 int unlock_super = 0;
1834 struct ocfs2_super *osb = OCFS2_SB(sb);
1835
1836 mlog_entry_void();
1837
1838 if (ocfs2_is_hard_readonly(osb))
1839 goto leave;
1840
Mark Fashehccd979b2005-12-15 14:31:24 -08001841 status = ocfs2_dlm_init(osb);
1842 if (status < 0) {
1843 mlog_errno(status);
1844 goto leave;
1845 }
1846
Mark Fashehccd979b2005-12-15 14:31:24 -08001847 status = ocfs2_super_lock(osb, 1);
1848 if (status < 0) {
1849 mlog_errno(status);
1850 goto leave;
1851 }
1852 unlock_super = 1;
1853
1854 /* This will load up the node map and add ourselves to it. */
1855 status = ocfs2_find_slot(osb);
1856 if (status < 0) {
1857 mlog_errno(status);
1858 goto leave;
1859 }
1860
Mark Fashehccd979b2005-12-15 14:31:24 -08001861 /* load all node-local system inodes */
1862 status = ocfs2_init_local_system_inodes(osb);
1863 if (status < 0) {
1864 mlog_errno(status);
1865 goto leave;
1866 }
1867
1868 status = ocfs2_check_volume(osb);
1869 if (status < 0) {
1870 mlog_errno(status);
1871 goto leave;
1872 }
1873
1874 status = ocfs2_truncate_log_init(osb);
Tao Ma06c59bb2009-05-19 06:47:20 +08001875 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08001876 mlog_errno(status);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001877
Mark Fashehccd979b2005-12-15 14:31:24 -08001878leave:
1879 if (unlock_super)
1880 ocfs2_super_unlock(osb, 1);
1881
1882 mlog_exit(status);
1883 return status;
1884}
1885
Mark Fashehccd979b2005-12-15 14:31:24 -08001886static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1887{
Joel Becker286eaa92008-02-01 15:03:57 -08001888 int tmp, hangup_needed = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001889 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001890 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001891
1892 mlog_entry("(0x%p)\n", sb);
1893
1894 BUG_ON(!sb);
1895 osb = OCFS2_SB(sb);
1896 BUG_ON(!osb);
1897
Sunil Mushran50397502008-12-17 14:17:43 -08001898 debugfs_remove(osb->osb_ctxt);
1899
Jan Karaf7b1aa692009-07-20 12:12:36 +02001900 /*
1901 * Flush inode dropping work queue so that deletes are
1902 * performed while the filesystem is still working
1903 */
1904 ocfs2_drop_all_dl_inodes(osb);
1905
Sunil Mushran692684e2009-06-19 16:53:17 -07001906 /* Orphan scan should be stopped as early as possible */
1907 ocfs2_orphan_scan_stop(osb);
1908
Jan Kara19ece542008-08-21 20:13:17 +02001909 ocfs2_disable_quotas(osb);
1910
Mark Fashehccd979b2005-12-15 14:31:24 -08001911 ocfs2_shutdown_local_alloc(osb);
1912
1913 ocfs2_truncate_log_shutdown(osb);
1914
Joel Becker553abd02008-02-01 12:03:57 -08001915 /* This will disable recovery and flush any recovery work. */
1916 ocfs2_recovery_exit(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001917
1918 ocfs2_journal_shutdown(osb);
1919
1920 ocfs2_sync_blockdev(sb);
1921
Tao Ma374a2632009-08-24 11:13:37 +08001922 ocfs2_purge_refcount_trees(osb);
1923
Joel Becker4670c462008-02-01 14:39:35 -08001924 /* No cluster connection means we've failed during mount, so skip
1925 * all the steps which depended on that to complete. */
1926 if (osb->cconn) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001927 tmp = ocfs2_super_lock(osb, 1);
1928 if (tmp < 0) {
1929 mlog_errno(tmp);
1930 return;
1931 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001932 }
1933
Mark Fasheh19b613d2007-10-04 14:47:09 -07001934 if (osb->slot_num != OCFS2_INVALID_SLOT)
1935 ocfs2_put_slot(osb);
1936
Joel Becker4670c462008-02-01 14:39:35 -08001937 if (osb->cconn)
Mark Fasheh19b613d2007-10-04 14:47:09 -07001938 ocfs2_super_unlock(osb, 1);
1939
Mark Fashehccd979b2005-12-15 14:31:24 -08001940 ocfs2_release_system_inodes(osb);
1941
Joel Becker6953b4c2008-01-29 16:59:56 -08001942 /*
Joel Becker6953b4c2008-01-29 16:59:56 -08001943 * If we're dismounting due to mount error, mount.ocfs2 will clean
1944 * up heartbeat. If we're a local mount, there is no heartbeat.
1945 * If we failed before we got a uuid_str yet, we can't stop
1946 * heartbeat. Otherwise, do it.
1947 */
1948 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
Joel Becker286eaa92008-02-01 15:03:57 -08001949 hangup_needed = 1;
1950
1951 if (osb->cconn)
1952 ocfs2_dlm_shutdown(osb, hangup_needed);
1953
Joel Becker73be1922009-01-06 14:57:08 -08001954 ocfs2_blockcheck_stats_debugfs_remove(&osb->osb_ecc_stats);
Joel Becker286eaa92008-02-01 15:03:57 -08001955 debugfs_remove(osb->osb_debug_root);
1956
1957 if (hangup_needed)
Joel Becker6953b4c2008-01-29 16:59:56 -08001958 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
Mark Fashehccd979b2005-12-15 14:31:24 -08001959
1960 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
1961
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001962 if (ocfs2_mount_local(osb))
1963 snprintf(nodestr, sizeof(nodestr), "local");
1964 else
Joel Becker19fdb622008-01-30 15:38:24 -08001965 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001966
1967 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
1968 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001969
1970 ocfs2_delete_osb(osb);
1971 kfree(osb);
1972 sb->s_dev = 0;
1973 sb->s_fs_info = NULL;
1974}
1975
1976static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
1977 unsigned uuid_bytes)
1978{
1979 int i, ret;
1980 char *ptr;
1981
1982 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
1983
Robert P. J. Daycd861282006-12-13 00:34:52 -08001984 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001985 if (osb->uuid_str == NULL)
1986 return -ENOMEM;
1987
Mark Fashehccd979b2005-12-15 14:31:24 -08001988 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
1989 /* print with null */
1990 ret = snprintf(ptr, 3, "%02X", uuid[i]);
1991 if (ret != 2) /* drop super cleans up */
1992 return -EINVAL;
1993 /* then only advance past the last char */
1994 ptr += 2;
1995 }
1996
1997 return 0;
1998}
1999
2000static int ocfs2_initialize_super(struct super_block *sb,
2001 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002002 int sector_size,
2003 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002004{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002005 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07002006 int i, cbits, bbits;
2007 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08002008 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002009 struct ocfs2_journal *journal;
2010 __le32 uuid_net_key;
2011 struct ocfs2_super *osb;
2012
2013 mlog_entry_void();
2014
Robert P. J. Daycd861282006-12-13 00:34:52 -08002015 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002016 if (!osb) {
2017 status = -ENOMEM;
2018 mlog_errno(status);
2019 goto bail;
2020 }
2021
2022 sb->s_fs_info = osb;
2023 sb->s_op = &ocfs2_sops;
2024 sb->s_export_op = &ocfs2_export_ops;
Jan Kara19ece542008-08-21 20:13:17 +02002025 sb->s_qcop = &ocfs2_quotactl_ops;
2026 sb->dq_op = &ocfs2_quota_operations;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002027 sb->s_xattr = ocfs2_xattr_handlers;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07002028 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08002029 sb->s_flags |= MS_NOATIME;
2030 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07002031 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2032 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
2033 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002034
Mark Fasheh9b7895e2008-11-12 16:27:44 -08002035 osb->osb_dx_mask = (1 << (cbits - bbits)) - 1;
2036
2037 for (i = 0; i < 3; i++)
2038 osb->osb_dx_seed[i] = le32_to_cpu(di->id2.i_super.s_dx_seed[i]);
2039 osb->osb_dx_seed[3] = le32_to_cpu(di->id2.i_super.s_uuid_hash);
2040
Mark Fashehccd979b2005-12-15 14:31:24 -08002041 osb->sb = sb;
2042 /* Save off for ocfs2_rw_direct */
2043 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01002044 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002045
Mark Fasheh34d024f2007-09-24 15:56:19 -07002046 spin_lock_init(&osb->dc_task_lock);
2047 init_waitqueue_head(&osb->dc_event);
2048 osb->dc_work_sequence = 0;
2049 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002050 INIT_LIST_HEAD(&osb->blocked_lock_list);
2051 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002052 spin_lock_init(&osb->osb_lock);
Tao Mac8b9cf92009-02-24 17:40:26 -08002053 spin_lock_init(&osb->osb_xattr_lock);
Tiger Yangb89c5422010-01-25 14:11:06 +08002054 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002055
2056 atomic_set(&osb->alloc_stats.moves, 0);
2057 atomic_set(&osb->alloc_stats.local_data, 0);
2058 atomic_set(&osb->alloc_stats.bitmap_data, 0);
2059 atomic_set(&osb->alloc_stats.bg_allocs, 0);
2060 atomic_set(&osb->alloc_stats.bg_extends, 0);
2061
Joel Becker73be1922009-01-06 14:57:08 -08002062 /* Copy the blockcheck stats from the superblock probe */
2063 osb->osb_ecc_stats = *stats;
2064
Mark Fashehccd979b2005-12-15 14:31:24 -08002065 ocfs2_init_node_maps(osb);
2066
2067 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
2068 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
2069
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04002070 ocfs2_orphan_scan_init(osb);
2071
Joel Becker553abd02008-02-01 12:03:57 -08002072 status = ocfs2_recovery_init(osb);
2073 if (status) {
2074 mlog(ML_ERROR, "Unable to initialize recovery state\n");
2075 mlog_errno(status);
2076 goto bail;
2077 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002078
2079 init_waitqueue_head(&osb->checkpoint_event);
2080 atomic_set(&osb->needs_checkpoint, 0);
2081
Tiger Yang7f1a37e2006-11-15 15:48:42 +08002082 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
2083
Mark Fashehccd979b2005-12-15 14:31:24 -08002084 osb->slot_num = OCFS2_INVALID_SLOT;
2085
Tiger Yang8154da32008-08-18 17:11:46 +08002086 osb->s_xattr_inline_size = le16_to_cpu(
2087 di->id2.i_super.s_xattr_inline_size);
Tiger Yangfdd77702008-08-18 17:08:55 +08002088
Mark Fashehccd979b2005-12-15 14:31:24 -08002089 osb->local_alloc_state = OCFS2_LA_UNUSED;
2090 osb->local_alloc_bh = NULL;
Mark Fasheh9c7af402008-07-28 18:02:53 -07002091 INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08002092
Mark Fashehccd979b2005-12-15 14:31:24 -08002093 init_waitqueue_head(&osb->osb_mount_event);
2094
Mark Fashehd02f00c2009-12-07 13:10:48 -08002095 status = ocfs2_resmap_init(osb, &osb->osb_la_resmap);
2096 if (status) {
2097 mlog_errno(status);
2098 goto bail;
2099 }
2100
Mark Fashehccd979b2005-12-15 14:31:24 -08002101 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
2102 if (!osb->vol_label) {
2103 mlog(ML_ERROR, "unable to alloc vol label\n");
2104 status = -ENOMEM;
2105 goto bail;
2106 }
2107
Mark Fashehccd979b2005-12-15 14:31:24 -08002108 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
2109 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
2110 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
2111 osb->max_slots);
2112 status = -EINVAL;
2113 goto bail;
2114 }
Sunil Mushran781ee3e2006-04-27 16:41:31 -07002115 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
Mark Fashehccd979b2005-12-15 14:31:24 -08002116
Sunil Mushran539d8262008-07-14 17:31:10 -07002117 osb->slot_recovery_generations =
2118 kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
2119 GFP_KERNEL);
2120 if (!osb->slot_recovery_generations) {
2121 status = -ENOMEM;
2122 mlog_errno(status);
2123 goto bail;
2124 }
2125
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002126 init_waitqueue_head(&osb->osb_wipe_event);
2127 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
2128 sizeof(*osb->osb_orphan_wipes),
2129 GFP_KERNEL);
2130 if (!osb->osb_orphan_wipes) {
2131 status = -ENOMEM;
2132 mlog_errno(status);
2133 goto bail;
2134 }
2135
Tao Ma374a2632009-08-24 11:13:37 +08002136 osb->osb_rf_lock_tree = RB_ROOT;
2137
Mark Fashehccd979b2005-12-15 14:31:24 -08002138 osb->s_feature_compat =
2139 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
2140 osb->s_feature_ro_compat =
2141 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
2142 osb->s_feature_incompat =
2143 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
2144
2145 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
2146 mlog(ML_ERROR, "couldn't mount because of unsupported "
2147 "optional features (%x).\n", i);
2148 status = -EINVAL;
2149 goto bail;
2150 }
2151 if (!(osb->sb->s_flags & MS_RDONLY) &&
2152 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
2153 mlog(ML_ERROR, "couldn't mount RDWR because of "
2154 "unsupported optional features (%x).\n", i);
2155 status = -EINVAL;
2156 goto bail;
2157 }
2158
Joel Beckerb61817e2008-02-01 15:08:23 -08002159 if (ocfs2_userspace_stack(osb)) {
2160 memcpy(osb->osb_cluster_stack,
2161 OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
2162 OCFS2_STACK_LABEL_LEN);
2163 osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
2164 if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
2165 mlog(ML_ERROR,
2166 "couldn't mount because of an invalid "
2167 "cluster stack label (%s) \n",
2168 osb->osb_cluster_stack);
2169 status = -EINVAL;
2170 goto bail;
2171 }
2172 } else {
2173 /* The empty string is identical with classic tools that
2174 * don't know about s_cluster_info. */
2175 osb->osb_cluster_stack[0] = '\0';
2176 }
2177
Mark Fashehccd979b2005-12-15 14:31:24 -08002178 get_random_bytes(&osb->s_next_generation, sizeof(u32));
2179
2180 /* FIXME
2181 * This should be done in ocfs2_journal_init(), but unknown
2182 * ordering issues will cause the filesystem to crash.
2183 * If anyone wants to figure out what part of the code
2184 * refers to osb->journal before ocfs2_journal_init() is run,
2185 * be my guest.
2186 */
2187 /* initialize our journal structure */
2188
Robert P. J. Daycd861282006-12-13 00:34:52 -08002189 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002190 if (!journal) {
2191 mlog(ML_ERROR, "unable to alloc journal\n");
2192 status = -ENOMEM;
2193 goto bail;
2194 }
2195 osb->journal = journal;
2196 journal->j_osb = osb;
2197
2198 atomic_set(&journal->j_num_trans, 0);
2199 init_rwsem(&journal->j_trans_barrier);
2200 init_waitqueue_head(&journal->j_checkpointed);
2201 spin_lock_init(&journal->j_lock);
2202 journal->j_trans_id = (unsigned long) 1;
2203 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00002204 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08002205 journal->j_state = OCFS2_JOURNAL_FREE;
2206
Jan Karaea455f82009-01-12 23:20:31 +01002207 INIT_WORK(&osb->dentry_lock_work, ocfs2_drop_dl_inodes);
2208 osb->dentry_lock_list = NULL;
2209
Mark Fashehccd979b2005-12-15 14:31:24 -08002210 /* get some pseudo constants for clustersize bits */
2211 osb->s_clustersize_bits =
2212 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2213 osb->s_clustersize = 1 << osb->s_clustersize_bits;
2214 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
2215
2216 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
2217 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
2218 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
2219 osb->s_clustersize);
2220 status = -EINVAL;
2221 goto bail;
2222 }
2223
2224 if (ocfs2_clusters_to_blocks(osb->sb, le32_to_cpu(di->i_clusters) - 1)
2225 > (u32)~0UL) {
2226 mlog(ML_ERROR, "Volume might try to write to blocks beyond "
2227 "what jbd can address in 32 bits.\n");
2228 status = -EINVAL;
2229 goto bail;
2230 }
2231
2232 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
2233 sizeof(di->id2.i_super.s_uuid))) {
2234 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
2235 status = -ENOMEM;
2236 goto bail;
2237 }
2238
Mark Fasheh78427042006-05-04 12:03:26 -07002239 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08002240
2241 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
2242 osb->vol_label[63] = '\0';
2243 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
2244 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
2245 osb->first_cluster_group_blkno =
2246 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
2247 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002248 osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
Mark Fashehccd979b2005-12-15 14:31:24 -08002249 mlog(0, "vol_label: %s\n", osb->vol_label);
2250 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb06970532006-03-03 10:24:33 -08002251 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
2252 (unsigned long long)osb->root_blkno,
2253 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002254
2255 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
2256 if (!osb->osb_dlm_debug) {
2257 status = -ENOMEM;
2258 mlog_errno(status);
2259 goto bail;
2260 }
2261
2262 atomic_set(&osb->vol_state, VOLUME_INIT);
2263
2264 /* load root, system_dir, and all global system inodes */
2265 status = ocfs2_init_global_system_inodes(osb);
2266 if (status < 0) {
2267 mlog_errno(status);
2268 goto bail;
2269 }
2270
2271 /*
2272 * global bitmap
2273 */
2274 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
2275 OCFS2_INVALID_SLOT);
2276 if (!inode) {
2277 status = -EINVAL;
2278 mlog_errno(status);
2279 goto bail;
2280 }
2281
2282 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
Mark Fasheh6b820212010-04-05 18:17:14 -07002283 osb->osb_clusters_at_boot = OCFS2_I(inode)->ip_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08002284 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002285
Tao Ma85718822010-04-13 14:38:06 +08002286 osb->bitmap_cpg = ocfs2_group_bitmap_size(sb, 0,
2287 osb->s_feature_incompat) * 8;
Mark Fashehccd979b2005-12-15 14:31:24 -08002288
2289 status = ocfs2_init_slot_info(osb);
2290 if (status < 0) {
2291 mlog_errno(status);
2292 goto bail;
2293 }
2294
Mark Fashehccd979b2005-12-15 14:31:24 -08002295bail:
2296 mlog_exit(status);
2297 return status;
2298}
2299
2300/*
2301 * will return: -EAGAIN if it is ok to keep searching for superblocks
2302 * -EINVAL if there is a bad superblock
2303 * 0 on success
2304 */
2305static int ocfs2_verify_volume(struct ocfs2_dinode *di,
2306 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002307 u32 blksz,
2308 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002309{
2310 int status = -EAGAIN;
2311
2312 mlog_entry_void();
2313
2314 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
2315 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
Joel Beckerd030cc92008-12-11 15:04:14 -08002316 /* We have to do a raw check of the feature here */
2317 if (le32_to_cpu(di->id2.i_super.s_feature_incompat) &
2318 OCFS2_FEATURE_INCOMPAT_META_ECC) {
2319 status = ocfs2_block_check_validate(bh->b_data,
2320 bh->b_size,
Joel Becker73be1922009-01-06 14:57:08 -08002321 &di->i_check,
2322 stats);
Joel Beckerd030cc92008-12-11 15:04:14 -08002323 if (status)
2324 goto out;
2325 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002326 status = -EINVAL;
2327 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
2328 mlog(ML_ERROR, "found superblock with incorrect block "
2329 "size: found %u, should be %u\n",
2330 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
2331 blksz);
2332 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
2333 OCFS2_MAJOR_REV_LEVEL ||
2334 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
2335 OCFS2_MINOR_REV_LEVEL) {
2336 mlog(ML_ERROR, "found superblock with bad version: "
2337 "found %u.%u, should be %u.%u\n",
2338 le16_to_cpu(di->id2.i_super.s_major_rev_level),
2339 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
2340 OCFS2_MAJOR_REV_LEVEL,
2341 OCFS2_MINOR_REV_LEVEL);
2342 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
2343 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb06970532006-03-03 10:24:33 -08002344 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07002345 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb06970532006-03-03 10:24:33 -08002346 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08002347 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
2348 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
2349 mlog(ML_ERROR, "bad cluster size found: %u\n",
2350 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
2351 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
2352 mlog(ML_ERROR, "bad root_blkno: 0\n");
2353 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
2354 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
2355 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
2356 mlog(ML_ERROR,
2357 "Superblock slots found greater than file system "
2358 "maximum: found %u, max %u\n",
2359 le16_to_cpu(di->id2.i_super.s_max_slots),
2360 OCFS2_MAX_SLOTS);
2361 } else {
2362 /* found it! */
2363 status = 0;
2364 }
2365 }
2366
Joel Beckerd030cc92008-12-11 15:04:14 -08002367out:
Mark Fashehccd979b2005-12-15 14:31:24 -08002368 mlog_exit(status);
2369 return status;
2370}
2371
2372static int ocfs2_check_volume(struct ocfs2_super *osb)
2373{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002374 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08002375 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002376 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08002377 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
2378 * recover
2379 * ourselves. */
2380
2381 mlog_entry_void();
2382
2383 /* Init our journal object. */
2384 status = ocfs2_journal_init(osb->journal, &dirty);
2385 if (status < 0) {
2386 mlog(ML_ERROR, "Could not initialize journal!\n");
2387 goto finally;
2388 }
2389
2390 /* If the journal was unmounted cleanly then we don't want to
2391 * recover anything. Otherwise, journal_load will do that
2392 * dirty work for us :) */
2393 if (!dirty) {
2394 status = ocfs2_journal_wipe(osb->journal, 0);
2395 if (status < 0) {
2396 mlog_errno(status);
2397 goto finally;
2398 }
2399 } else {
2400 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
2401 "recovering volume.\n");
2402 }
2403
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002404 local = ocfs2_mount_local(osb);
2405
Mark Fashehccd979b2005-12-15 14:31:24 -08002406 /* will play back anything left in the journal. */
Sunil Mushran539d8262008-07-14 17:31:10 -07002407 status = ocfs2_journal_load(osb->journal, local, dirty);
Wengang Wang01af4822008-06-10 14:24:48 +08002408 if (status < 0) {
2409 mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
2410 goto finally;
2411 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002412
2413 if (dirty) {
2414 /* recover my local alloc if we didn't unmount cleanly. */
2415 status = ocfs2_begin_local_alloc_recovery(osb,
2416 osb->slot_num,
2417 &local_alloc);
2418 if (status < 0) {
2419 mlog_errno(status);
2420 goto finally;
2421 }
2422 /* we complete the recovery process after we've marked
2423 * ourselves as mounted. */
2424 }
2425
2426 mlog(0, "Journal loaded.\n");
2427
2428 status = ocfs2_load_local_alloc(osb);
2429 if (status < 0) {
2430 mlog_errno(status);
2431 goto finally;
2432 }
2433
2434 if (dirty) {
2435 /* Recovery will be completed after we've mounted the
2436 * rest of the volume. */
2437 osb->dirty = 1;
2438 osb->local_alloc_copy = local_alloc;
2439 local_alloc = NULL;
2440 }
2441
2442 /* go through each journal, trylock it and if you get the
2443 * lock, and it's marked as dirty, set the bit in the recover
2444 * map and launch a recovery thread for it. */
2445 status = ocfs2_mark_dead_nodes(osb);
Srinivas Eeda9140db02009-03-06 14:21:46 -08002446 if (status < 0) {
2447 mlog_errno(status);
2448 goto finally;
2449 }
2450
2451 status = ocfs2_compute_replay_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002452 if (status < 0)
2453 mlog_errno(status);
2454
2455finally:
2456 if (local_alloc)
2457 kfree(local_alloc);
2458
2459 mlog_exit(status);
2460 return status;
2461}
2462
2463/*
2464 * The routine gets called from dismount or close whenever a dismount on
2465 * volume is requested and the osb open count becomes 1.
2466 * It will remove the osb from the global list and also free up all the
2467 * initialized resources and fileobject.
2468 */
2469static void ocfs2_delete_osb(struct ocfs2_super *osb)
2470{
2471 mlog_entry_void();
2472
2473 /* This function assumes that the caller has the main osb resource */
2474
Mark Fasheh8e8a4602008-02-01 11:59:09 -08002475 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002476
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002477 kfree(osb->osb_orphan_wipes);
Sunil Mushran539d8262008-07-14 17:31:10 -07002478 kfree(osb->slot_recovery_generations);
Mark Fashehccd979b2005-12-15 14:31:24 -08002479 /* FIXME
2480 * This belongs in journal shutdown, but because we have to
2481 * allocate osb->journal at the start of ocfs2_initalize_osb(),
2482 * we free it here.
2483 */
2484 kfree(osb->journal);
2485 if (osb->local_alloc_copy)
2486 kfree(osb->local_alloc_copy);
2487 kfree(osb->uuid_str);
2488 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
2489 memset(osb, 0, sizeof(struct ocfs2_super));
2490
2491 mlog_exit_void();
2492}
2493
2494/* Put OCFS2 into a readonly state, or (if the user specifies it),
2495 * panic(). We do not support continue-on-error operation. */
2496static void ocfs2_handle_error(struct super_block *sb)
2497{
2498 struct ocfs2_super *osb = OCFS2_SB(sb);
2499
2500 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
2501 panic("OCFS2: (device %s): panic forced after error\n",
2502 sb->s_id);
2503
2504 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
2505
2506 if (sb->s_flags & MS_RDONLY &&
2507 (ocfs2_is_soft_readonly(osb) ||
2508 ocfs2_is_hard_readonly(osb)))
2509 return;
2510
2511 printk(KERN_CRIT "File system is now read-only due to the potential "
2512 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2513 "system is unmounted.\n");
2514 sb->s_flags |= MS_RDONLY;
2515 ocfs2_set_ro_flag(osb, 0);
2516}
2517
2518static char error_buf[1024];
2519
2520void __ocfs2_error(struct super_block *sb,
2521 const char *function,
2522 const char *fmt, ...)
2523{
2524 va_list args;
2525
2526 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002527 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002528 va_end(args);
2529
2530 /* Not using mlog here because we want to show the actual
2531 * function the error came from. */
2532 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
2533 sb->s_id, function, error_buf);
2534
2535 ocfs2_handle_error(sb);
2536}
2537
2538/* Handle critical errors. This is intentionally more drastic than
2539 * ocfs2_handle_error, so we only use for things like journal errors,
2540 * etc. */
2541void __ocfs2_abort(struct super_block* sb,
2542 const char *function,
2543 const char *fmt, ...)
2544{
2545 va_list args;
2546
2547 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002548 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002549 va_end(args);
2550
2551 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
2552 sb->s_id, function, error_buf);
2553
2554 /* We don't have the cluster support yet to go straight to
2555 * hard readonly in here. Until then, we want to keep
2556 * ocfs2_abort() so that we can at least mark critical
2557 * errors.
2558 *
2559 * TODO: This should abort the journal and alert other nodes
2560 * that our slot needs recovery. */
2561
2562 /* Force a panic(). This stinks, but it's better than letting
2563 * things continue without having a proper hard readonly
2564 * here. */
Sunil Mushrana2f2ddb2009-08-19 15:16:01 -07002565 if (!ocfs2_mount_local(OCFS2_SB(sb)))
2566 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08002567 ocfs2_handle_error(sb);
2568}
2569
Joel Beckere4b963f2009-09-02 17:17:36 -07002570/*
2571 * Void signal blockers, because in-kernel sigprocmask() only fails
2572 * when SIG_* is wrong.
2573 */
2574void ocfs2_block_signals(sigset_t *oldset)
2575{
2576 int rc;
2577 sigset_t blocked;
2578
2579 sigfillset(&blocked);
2580 rc = sigprocmask(SIG_BLOCK, &blocked, oldset);
2581 BUG_ON(rc);
2582}
2583
2584void ocfs2_unblock_signals(sigset_t *oldset)
2585{
2586 int rc = sigprocmask(SIG_SETMASK, oldset, NULL);
2587 BUG_ON(rc);
2588}
2589
Mark Fashehccd979b2005-12-15 14:31:24 -08002590module_init(ocfs2_init);
2591module_exit(ocfs2_exit);