blob: f7e73a029844c299a190607425d16d8bba7d284d [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>
Mark Fashehccd979b2005-12-15 14:31:24 -080044
Wengang Wang80a9a842011-02-21 11:13:14 +080045#define CREATE_TRACE_POINTS
46#include "ocfs2_trace.h"
47
Mark Fashehccd979b2005-12-15 14:31:24 -080048#define MLOG_MASK_PREFIX ML_SUPER
49#include <cluster/masklog.h>
50
51#include "ocfs2.h"
52
53/* this should be the only file to include a version 1 header */
54#include "ocfs1_fs_compat.h"
55
56#include "alloc.h"
Joel Beckerd030cc92008-12-11 15:04:14 -080057#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080058#include "dlmglue.h"
59#include "export.h"
60#include "extent_map.h"
61#include "heartbeat.h"
62#include "inode.h"
63#include "journal.h"
64#include "localalloc.h"
65#include "namei.h"
66#include "slot_map.h"
67#include "super.h"
68#include "sysfile.h"
69#include "uptodate.h"
70#include "ver.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080071#include "xattr.h"
Jan Kara9e33d692008-08-25 19:56:50 +020072#include "quota.h"
Tao Ma374a2632009-08-24 11:13:37 +080073#include "refcounttree.h"
Tiger Yangb89c5422010-01-25 14:11:06 +080074#include "suballoc.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080075
76#include "buffer_head_io.h"
77
Christoph Lametere18b8902006-12-06 20:33:20 -080078static struct kmem_cache *ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +020079struct kmem_cache *ocfs2_dquot_cachep;
80struct kmem_cache *ocfs2_qf_chunk_cachep;
Mark Fashehccd979b2005-12-15 14:31:24 -080081
Mark Fashehccd979b2005-12-15 14:31:24 -080082/* OCFS2 needs to schedule several differnt types of work which
83 * require cluster locking, disk I/O, recovery waits, etc. Since these
84 * types of work tend to be heavy we avoid using the kernel events
85 * workqueue and schedule on our own. */
86struct workqueue_struct *ocfs2_wq = NULL;
87
88static struct dentry *ocfs2_debugfs_root = NULL;
89
90MODULE_AUTHOR("Oracle");
91MODULE_LICENSE("GPL");
92
Tiger Yangc0123ad2007-09-08 00:16:10 +080093struct mount_options
94{
Mark Fashehd147b3d2007-11-07 14:40:36 -080095 unsigned long commit_interval;
Tiger Yangc0123ad2007-09-08 00:16:10 +080096 unsigned long mount_opt;
97 unsigned int atime_quantum;
98 signed short slot;
Mark Fasheh73c8a802010-04-05 18:17:13 -070099 int localalloc_opt;
Mark Fashehd02f00c2009-12-07 13:10:48 -0800100 unsigned int resv_level;
Mark Fasheh83f92312010-04-05 18:17:16 -0700101 int dir_resv_level;
Joel Beckerb61817e2008-02-01 15:08:23 -0800102 char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
Tiger Yangc0123ad2007-09-08 00:16:10 +0800103};
104
Mark Fashehccd979b2005-12-15 14:31:24 -0800105static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800106 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700107 int is_remount);
Jan Kara5297aad2009-10-15 14:54:04 +0200108static int ocfs2_check_set_options(struct super_block *sb,
109 struct mount_options *options);
Sunil Mushrand5500712007-09-06 13:34:16 -0700110static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800111static void ocfs2_put_super(struct super_block *sb);
112static int ocfs2_mount_volume(struct super_block *sb);
113static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
114static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
115static int ocfs2_initialize_mem_caches(void);
116static void ocfs2_free_mem_caches(void);
117static void ocfs2_delete_osb(struct ocfs2_super *osb);
118
David Howells726c3342006-06-23 02:02:58 -0700119static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800120
121static int ocfs2_sync_fs(struct super_block *sb, int wait);
122
123static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
124static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800125static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800126static int ocfs2_check_volume(struct ocfs2_super *osb);
127static int ocfs2_verify_volume(struct ocfs2_dinode *di,
128 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800129 u32 sectsize,
130 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800131static int ocfs2_initialize_super(struct super_block *sb,
132 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800133 int sector_size,
134 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800135static int ocfs2_get_sector(struct super_block *sb,
136 struct buffer_head **bh,
137 int block,
138 int sect_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800139static struct inode *ocfs2_alloc_inode(struct super_block *sb);
140static void ocfs2_destroy_inode(struct inode *inode);
Jan Kara19ece542008-08-21 20:13:17 +0200141static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
142static int ocfs2_enable_quotas(struct ocfs2_super *osb);
143static void ocfs2_disable_quotas(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800144
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800145static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800146 .statfs = ocfs2_statfs,
147 .alloc_inode = ocfs2_alloc_inode,
148 .destroy_inode = ocfs2_destroy_inode,
149 .drop_inode = ocfs2_drop_inode,
Al Viro066d92d2010-06-08 21:28:10 -0400150 .evict_inode = ocfs2_evict_inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800151 .sync_fs = ocfs2_sync_fs,
Mark Fashehccd979b2005-12-15 14:31:24 -0800152 .put_super = ocfs2_put_super,
153 .remount_fs = ocfs2_remount,
Sunil Mushrand5500712007-09-06 13:34:16 -0700154 .show_options = ocfs2_show_options,
Jan Kara9e33d692008-08-25 19:56:50 +0200155 .quota_read = ocfs2_quota_read,
156 .quota_write = ocfs2_quota_write,
Mark Fashehccd979b2005-12-15 14:31:24 -0800157};
158
159enum {
160 Opt_barrier,
161 Opt_err_panic,
162 Opt_err_ro,
163 Opt_intr,
164 Opt_nointr,
165 Opt_hb_none,
166 Opt_hb_local,
Sunil Mushran2c442712010-10-07 15:23:50 -0700167 Opt_hb_global,
Mark Fashehccd979b2005-12-15 14:31:24 -0800168 Opt_data_ordered,
169 Opt_data_writeback,
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800170 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700171 Opt_slot,
Mark Fashehd147b3d2007-11-07 14:40:36 -0800172 Opt_commit,
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800173 Opt_localalloc,
Mark Fasheh53fc6222007-12-20 16:49:04 -0800174 Opt_localflocks,
Joel Beckerb61817e2008-02-01 15:08:23 -0800175 Opt_stack,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800176 Opt_user_xattr,
177 Opt_nouser_xattr,
Joel Becker12462f12008-09-03 20:03:40 -0700178 Opt_inode64,
Tiger Yanga68979b2008-11-14 11:17:52 +0800179 Opt_acl,
180 Opt_noacl,
Jan Kara19ece542008-08-21 20:13:17 +0200181 Opt_usrquota,
182 Opt_grpquota,
Tristan Ye7bdb0d12010-10-11 16:46:39 +0800183 Opt_coherency_buffered,
184 Opt_coherency_full,
Mark Fashehd02f00c2009-12-07 13:10:48 -0800185 Opt_resv_level,
Mark Fasheh83f92312010-04-05 18:17:16 -0700186 Opt_dir_resv_level,
Mark Fashehccd979b2005-12-15 14:31:24 -0800187 Opt_err,
188};
189
Steven Whitehousea447c092008-10-13 10:46:57 +0100190static const match_table_t tokens = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800191 {Opt_barrier, "barrier=%u"},
192 {Opt_err_panic, "errors=panic"},
193 {Opt_err_ro, "errors=remount-ro"},
194 {Opt_intr, "intr"},
195 {Opt_nointr, "nointr"},
196 {Opt_hb_none, OCFS2_HB_NONE},
197 {Opt_hb_local, OCFS2_HB_LOCAL},
Sunil Mushran2c442712010-10-07 15:23:50 -0700198 {Opt_hb_global, OCFS2_HB_GLOBAL},
Mark Fashehccd979b2005-12-15 14:31:24 -0800199 {Opt_data_ordered, "data=ordered"},
200 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800201 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700202 {Opt_slot, "preferred_slot=%u"},
Mark Fashehd147b3d2007-11-07 14:40:36 -0800203 {Opt_commit, "commit=%u"},
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800204 {Opt_localalloc, "localalloc=%d"},
Mark Fasheh53fc6222007-12-20 16:49:04 -0800205 {Opt_localflocks, "localflocks"},
Joel Beckerb61817e2008-02-01 15:08:23 -0800206 {Opt_stack, "cluster_stack=%s"},
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800207 {Opt_user_xattr, "user_xattr"},
208 {Opt_nouser_xattr, "nouser_xattr"},
Joel Becker12462f12008-09-03 20:03:40 -0700209 {Opt_inode64, "inode64"},
Tiger Yanga68979b2008-11-14 11:17:52 +0800210 {Opt_acl, "acl"},
211 {Opt_noacl, "noacl"},
Jan Kara19ece542008-08-21 20:13:17 +0200212 {Opt_usrquota, "usrquota"},
213 {Opt_grpquota, "grpquota"},
Tristan Ye7bdb0d12010-10-11 16:46:39 +0800214 {Opt_coherency_buffered, "coherency=buffered"},
215 {Opt_coherency_full, "coherency=full"},
Mark Fashehd02f00c2009-12-07 13:10:48 -0800216 {Opt_resv_level, "resv_level=%u"},
Mark Fasheh83f92312010-04-05 18:17:16 -0700217 {Opt_dir_resv_level, "dir_resv_level=%u"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800218 {Opt_err, NULL}
219};
220
Sunil Mushran50397502008-12-17 14:17:43 -0800221#ifdef CONFIG_DEBUG_FS
222static int ocfs2_osb_dump(struct ocfs2_super *osb, char *buf, int len)
223{
Sunil Mushran50397502008-12-17 14:17:43 -0800224 struct ocfs2_cluster_connection *cconn = osb->cconn;
225 struct ocfs2_recovery_map *rm = osb->recovery_map;
Sunil Mushrandf152c22009-06-22 11:40:07 -0700226 struct ocfs2_orphan_scan *os = &osb->osb_orphan_scan;
227 int i, out = 0;
Sunil Mushran50397502008-12-17 14:17:43 -0800228
229 out += snprintf(buf + out, len - out,
230 "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n",
231 "Device", osb->dev_str, osb->uuid_str,
232 osb->fs_generation, osb->vol_label);
233
234 out += snprintf(buf + out, len - out,
235 "%10s => State: %d Flags: 0x%lX\n", "Volume",
236 atomic_read(&osb->vol_state), osb->osb_flags);
237
238 out += snprintf(buf + out, len - out,
239 "%10s => Block: %lu Cluster: %d\n", "Sizes",
240 osb->sb->s_blocksize, osb->s_clustersize);
241
242 out += snprintf(buf + out, len - out,
243 "%10s => Compat: 0x%X Incompat: 0x%X "
244 "ROcompat: 0x%X\n",
245 "Features", osb->s_feature_compat,
246 osb->s_feature_incompat, osb->s_feature_ro_compat);
247
248 out += snprintf(buf + out, len - out,
249 "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount",
250 osb->s_mount_opt, osb->s_atime_quantum);
251
Sunil Mushranc3d38842009-06-19 14:45:55 -0700252 if (cconn) {
253 out += snprintf(buf + out, len - out,
254 "%10s => Stack: %s Name: %*s "
255 "Version: %d.%d\n", "Cluster",
256 (*osb->osb_cluster_stack == '\0' ?
257 "o2cb" : osb->osb_cluster_stack),
258 cconn->cc_namelen, cconn->cc_name,
259 cconn->cc_version.pv_major,
260 cconn->cc_version.pv_minor);
261 }
Sunil Mushran50397502008-12-17 14:17:43 -0800262
263 spin_lock(&osb->dc_task_lock);
264 out += snprintf(buf + out, len - out,
265 "%10s => Pid: %d Count: %lu WakeSeq: %lu "
266 "WorkSeq: %lu\n", "DownCnvt",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700267 (osb->dc_task ? task_pid_nr(osb->dc_task) : -1),
268 osb->blocked_lock_count, osb->dc_wake_sequence,
269 osb->dc_work_sequence);
Sunil Mushran50397502008-12-17 14:17:43 -0800270 spin_unlock(&osb->dc_task_lock);
271
272 spin_lock(&osb->osb_lock);
273 out += snprintf(buf + out, len - out, "%10s => Pid: %d Nodes:",
274 "Recovery",
275 (osb->recovery_thread_task ?
276 task_pid_nr(osb->recovery_thread_task) : -1));
277 if (rm->rm_used == 0)
278 out += snprintf(buf + out, len - out, " None\n");
279 else {
280 for (i = 0; i < rm->rm_used; i++)
281 out += snprintf(buf + out, len - out, " %d",
282 rm->rm_entries[i]);
283 out += snprintf(buf + out, len - out, "\n");
284 }
285 spin_unlock(&osb->osb_lock);
286
287 out += snprintf(buf + out, len - out,
288 "%10s => Pid: %d Interval: %lu Needs: %d\n", "Commit",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700289 (osb->commit_task ? task_pid_nr(osb->commit_task) : -1),
290 osb->osb_commit_interval,
Sunil Mushran50397502008-12-17 14:17:43 -0800291 atomic_read(&osb->needs_checkpoint));
292
293 out += snprintf(buf + out, len - out,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700294 "%10s => State: %d TxnId: %lu NumTxns: %d\n",
Sunil Mushran50397502008-12-17 14:17:43 -0800295 "Journal", osb->journal->j_state,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700296 osb->journal->j_trans_id,
297 atomic_read(&osb->journal->j_num_trans));
Sunil Mushran50397502008-12-17 14:17:43 -0800298
299 out += snprintf(buf + out, len - out,
300 "%10s => GlobalAllocs: %d LocalAllocs: %d "
301 "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n",
302 "Stats",
303 atomic_read(&osb->alloc_stats.bitmap_data),
304 atomic_read(&osb->alloc_stats.local_data),
305 atomic_read(&osb->alloc_stats.bg_allocs),
306 atomic_read(&osb->alloc_stats.moves),
307 atomic_read(&osb->alloc_stats.bg_extends));
308
309 out += snprintf(buf + out, len - out,
310 "%10s => State: %u Descriptor: %llu Size: %u bits "
311 "Default: %u bits\n",
312 "LocalAlloc", osb->local_alloc_state,
313 (unsigned long long)osb->la_last_gd,
314 osb->local_alloc_bits, osb->local_alloc_default_bits);
315
316 spin_lock(&osb->osb_lock);
317 out += snprintf(buf + out, len - out,
Tiger Yangb89c5422010-01-25 14:11:06 +0800318 "%10s => InodeSlot: %d StolenInodes: %d, "
319 "MetaSlot: %d StolenMeta: %d\n", "Steal",
Sunil Mushran50397502008-12-17 14:17:43 -0800320 osb->s_inode_steal_slot,
Tiger Yangb89c5422010-01-25 14:11:06 +0800321 atomic_read(&osb->s_num_inodes_stolen),
322 osb->s_meta_steal_slot,
323 atomic_read(&osb->s_num_meta_stolen));
Sunil Mushran50397502008-12-17 14:17:43 -0800324 spin_unlock(&osb->osb_lock);
325
Sunil Mushrandf152c22009-06-22 11:40:07 -0700326 out += snprintf(buf + out, len - out, "OrphanScan => ");
327 out += snprintf(buf + out, len - out, "Local: %u Global: %u ",
328 os->os_count, os->os_seqno);
329 out += snprintf(buf + out, len - out, " Last Scan: ");
330 if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE)
331 out += snprintf(buf + out, len - out, "Disabled\n");
332 else
333 out += snprintf(buf + out, len - out, "%lu seconds ago\n",
334 (get_seconds() - os->os_scantime.tv_sec));
335
Sunil Mushran50397502008-12-17 14:17:43 -0800336 out += snprintf(buf + out, len - out, "%10s => %3s %10s\n",
337 "Slots", "Num", "RecoGen");
Sunil Mushran50397502008-12-17 14:17:43 -0800338 for (i = 0; i < osb->max_slots; ++i) {
339 out += snprintf(buf + out, len - out,
340 "%10s %c %3d %10d\n",
341 " ",
342 (i == osb->slot_num ? '*' : ' '),
343 i, osb->slot_recovery_generations[i]);
344 }
345
346 return out;
347}
348
349static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
350{
351 struct ocfs2_super *osb = inode->i_private;
352 char *buf = NULL;
353
354 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
355 if (!buf)
356 goto bail;
357
358 i_size_write(inode, ocfs2_osb_dump(osb, buf, PAGE_SIZE));
359
360 file->private_data = buf;
361
362 return 0;
363bail:
364 return -ENOMEM;
365}
366
367static int ocfs2_debug_release(struct inode *inode, struct file *file)
368{
369 kfree(file->private_data);
370 return 0;
371}
372
373static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
374 size_t nbytes, loff_t *ppos)
375{
376 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
377 i_size_read(file->f_mapping->host));
378}
379#else
380static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
381{
382 return 0;
383}
384static int ocfs2_debug_release(struct inode *inode, struct file *file)
385{
386 return 0;
387}
388static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
389 size_t nbytes, loff_t *ppos)
390{
391 return 0;
392}
393#endif /* CONFIG_DEBUG_FS */
394
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700395static const struct file_operations ocfs2_osb_debug_fops = {
Sunil Mushran50397502008-12-17 14:17:43 -0800396 .open = ocfs2_osb_debug_open,
397 .release = ocfs2_debug_release,
398 .read = ocfs2_debug_read,
399 .llseek = generic_file_llseek,
400};
401
Mark Fashehccd979b2005-12-15 14:31:24 -0800402static int ocfs2_sync_fs(struct super_block *sb, int wait)
403{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800404 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800405 tid_t target;
406 struct ocfs2_super *osb = OCFS2_SB(sb);
407
Mark Fashehccd979b2005-12-15 14:31:24 -0800408 if (ocfs2_is_hard_readonly(osb))
409 return -EROFS;
410
411 if (wait) {
412 status = ocfs2_flush_truncate_log(osb);
413 if (status < 0)
414 mlog_errno(status);
415 } else {
416 ocfs2_schedule_truncate_log_flush(osb, 0);
417 }
418
Joel Becker2b4e30f2008-09-03 20:03:41 -0700419 if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal,
420 &target)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800421 if (wait)
Joel Becker2b4e30f2008-09-03 20:03:41 -0700422 jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
423 target);
Mark Fashehccd979b2005-12-15 14:31:24 -0800424 }
425 return 0;
426}
427
Jan Kara1a224ad2008-08-20 15:43:36 +0200428static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino)
429{
430 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
431 && (ino == USER_QUOTA_SYSTEM_INODE
432 || ino == LOCAL_USER_QUOTA_SYSTEM_INODE))
433 return 0;
434 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)
435 && (ino == GROUP_QUOTA_SYSTEM_INODE
436 || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE))
437 return 0;
438 return 1;
439}
440
Mark Fashehccd979b2005-12-15 14:31:24 -0800441static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
442{
443 struct inode *new = NULL;
444 int status = 0;
445 int i;
446
Jan Kara5fa06132008-01-11 00:11:45 +0100447 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800448 if (IS_ERR(new)) {
449 status = PTR_ERR(new);
450 mlog_errno(status);
451 goto bail;
452 }
453 osb->root_inode = new;
454
Jan Kara5fa06132008-01-11 00:11:45 +0100455 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800456 if (IS_ERR(new)) {
457 status = PTR_ERR(new);
458 mlog_errno(status);
459 goto bail;
460 }
461 osb->sys_root_inode = new;
462
463 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
464 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200465 if (!ocfs2_need_system_inode(osb, i))
466 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800467 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
468 if (!new) {
469 ocfs2_release_system_inodes(osb);
470 status = -EINVAL;
471 mlog_errno(status);
472 /* FIXME: Should ERROR_RO_FS */
473 mlog(ML_ERROR, "Unable to load system inode %d, "
474 "possibly corrupt fs?", i);
475 goto bail;
476 }
477 // the array now has one ref, so drop this one
478 iput(new);
479 }
480
481bail:
Tao Mac1e8d352011-03-07 16:43:21 +0800482 if (status)
483 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800484 return status;
485}
486
487static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
488{
489 struct inode *new = NULL;
490 int status = 0;
491 int i;
492
Mark Fashehccd979b2005-12-15 14:31:24 -0800493 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
494 i < NUM_SYSTEM_INODES;
495 i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200496 if (!ocfs2_need_system_inode(osb, i))
497 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800498 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
499 if (!new) {
500 ocfs2_release_system_inodes(osb);
501 status = -EINVAL;
502 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
503 status, i, osb->slot_num);
504 goto bail;
505 }
506 /* the array now has one ref, so drop this one */
507 iput(new);
508 }
509
510bail:
Tao Mac1e8d352011-03-07 16:43:21 +0800511 if (status)
512 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -0800513 return status;
514}
515
Denis Chengbddb8eb32007-09-27 02:10:04 +0800516static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800517{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800518 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800519 struct inode *inode;
520
Tao Mab4d693f2010-08-16 16:58:21 +0800521 for (i = 0; i < NUM_GLOBAL_SYSTEM_INODES; i++) {
522 inode = osb->global_system_inodes[i];
Mark Fashehccd979b2005-12-15 14:31:24 -0800523 if (inode) {
524 iput(inode);
Tao Mab4d693f2010-08-16 16:58:21 +0800525 osb->global_system_inodes[i] = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800526 }
527 }
528
529 inode = osb->sys_root_inode;
530 if (inode) {
531 iput(inode);
532 osb->sys_root_inode = NULL;
533 }
534
535 inode = osb->root_inode;
536 if (inode) {
537 iput(inode);
538 osb->root_inode = NULL;
539 }
540
Tao Mab4d693f2010-08-16 16:58:21 +0800541 if (!osb->local_system_inodes)
Tao Mac1e8d352011-03-07 16:43:21 +0800542 return;
Tao Mab4d693f2010-08-16 16:58:21 +0800543
544 for (i = 0; i < NUM_LOCAL_SYSTEM_INODES * osb->max_slots; i++) {
545 if (osb->local_system_inodes[i]) {
546 iput(osb->local_system_inodes[i]);
547 osb->local_system_inodes[i] = NULL;
548 }
549 }
550
551 kfree(osb->local_system_inodes);
552 osb->local_system_inodes = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800553}
554
555/* We're allocating fs objects, use GFP_NOFS */
556static struct inode *ocfs2_alloc_inode(struct super_block *sb)
557{
558 struct ocfs2_inode_info *oi;
559
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800560 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800561 if (!oi)
562 return NULL;
563
Joel Becker2b4e30f2008-09-03 20:03:41 -0700564 jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800565 return &oi->vfs_inode;
566}
567
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100568static void ocfs2_i_callback(struct rcu_head *head)
569{
570 struct inode *inode = container_of(head, struct inode, i_rcu);
571 INIT_LIST_HEAD(&inode->i_dentry);
572 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
573}
574
Mark Fashehccd979b2005-12-15 14:31:24 -0800575static void ocfs2_destroy_inode(struct inode *inode)
576{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100577 call_rcu(&inode->i_rcu, ocfs2_i_callback);
Mark Fashehccd979b2005-12-15 14:31:24 -0800578}
579
Mark Fasheh5a254032007-07-20 12:56:16 -0700580static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
581 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800582{
Mark Fasheh5a254032007-07-20 12:56:16 -0700583 unsigned int bytes = 1 << cbits;
584 unsigned int trim = bytes;
585 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800586
Mark Fasheh5a254032007-07-20 12:56:16 -0700587 /*
588 * i_size and all block offsets in ocfs2 are always 64 bits
589 * wide. i_clusters is 32 bits, in cluster-sized units. So on
590 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800591 */
592
593#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200594# if defined(CONFIG_LBDAF)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700595 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700596 /*
597 * We might be limited by page cache size.
598 */
599 if (bytes > PAGE_CACHE_SIZE) {
600 bytes = PAGE_CACHE_SIZE;
601 trim = 1;
602 /*
603 * Shift by 31 here so that we don't get larger than
604 * MAX_LFS_FILESIZE
605 */
606 bitshift = 31;
607 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800608# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700609 /*
610 * We are limited by the size of sector_t. Use block size, as
611 * that's what we expose to the VFS.
612 */
613 bytes = 1 << bbits;
614 trim = 1;
615 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800616# endif
617#endif
618
Mark Fasheh5a254032007-07-20 12:56:16 -0700619 /*
620 * Trim by a whole cluster when we can actually approach the
621 * on-disk limits. Otherwise we can overflow i_clusters when
622 * an extent start is at the max offset.
623 */
624 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800625}
626
627static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
628{
629 int incompat_features;
630 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800631 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800632 struct ocfs2_super *osb = OCFS2_SB(sb);
Sunil Mushran2c442712010-10-07 15:23:50 -0700633 u32 tmp;
Mark Fashehccd979b2005-12-15 14:31:24 -0800634
Jan Kara5297aad2009-10-15 14:54:04 +0200635 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) ||
636 !ocfs2_check_set_options(sb, &parsed_options)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800637 ret = -EINVAL;
638 goto out;
639 }
640
Sunil Mushran2c442712010-10-07 15:23:50 -0700641 tmp = OCFS2_MOUNT_HB_LOCAL | OCFS2_MOUNT_HB_GLOBAL |
642 OCFS2_MOUNT_HB_NONE;
643 if ((osb->s_mount_opt & tmp) != (parsed_options.mount_opt & tmp)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800644 ret = -EINVAL;
645 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
646 goto out;
647 }
648
649 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800650 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800651 ret = -EINVAL;
652 mlog(ML_ERROR, "Cannot change data mode on remount\n");
653 goto out;
654 }
655
Joel Becker12462f12008-09-03 20:03:40 -0700656 /* Probably don't want this on remount; it might
657 * mess with other nodes */
658 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) &&
659 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) {
660 ret = -EINVAL;
661 mlog(ML_ERROR, "Cannot enable inode64 on remount\n");
662 goto out;
663 }
664
Mark Fashehccd979b2005-12-15 14:31:24 -0800665 /* We're going to/from readonly mode. */
666 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
Jan Kara19ece542008-08-21 20:13:17 +0200667 /* Disable quota accounting before remounting RO */
668 if (*flags & MS_RDONLY) {
669 ret = ocfs2_susp_quotas(osb, 0);
670 if (ret < 0)
671 goto out;
672 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800673 /* Lock here so the check of HARD_RO and the potential
674 * setting of SOFT_RO is atomic. */
675 spin_lock(&osb->osb_lock);
676 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
677 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
678 ret = -EROFS;
679 goto unlock_osb;
680 }
681
682 if (*flags & MS_RDONLY) {
683 mlog(0, "Going to ro mode.\n");
684 sb->s_flags |= MS_RDONLY;
685 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
686 } else {
687 mlog(0, "Making ro filesystem writeable.\n");
688
689 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
690 mlog(ML_ERROR, "Cannot remount RDWR "
691 "filesystem due to previous errors.\n");
692 ret = -EROFS;
693 goto unlock_osb;
694 }
695 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
696 if (incompat_features) {
697 mlog(ML_ERROR, "Cannot remount RDWR because "
698 "of unsupported optional features "
699 "(%x).\n", incompat_features);
700 ret = -EINVAL;
701 goto unlock_osb;
702 }
703 sb->s_flags &= ~MS_RDONLY;
704 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
705 }
706unlock_osb:
707 spin_unlock(&osb->osb_lock);
Jan Kara19ece542008-08-21 20:13:17 +0200708 /* Enable quota accounting after remounting RW */
709 if (!ret && !(*flags & MS_RDONLY)) {
710 if (sb_any_quota_suspended(sb))
711 ret = ocfs2_susp_quotas(osb, 1);
712 else
713 ret = ocfs2_enable_quotas(osb);
714 if (ret < 0) {
715 /* Return back changes... */
716 spin_lock(&osb->osb_lock);
717 sb->s_flags |= MS_RDONLY;
718 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
719 spin_unlock(&osb->osb_lock);
720 goto out;
721 }
722 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800723 }
724
725 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800726 /* Only save off the new mount options in case of a successful
727 * remount. */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800728 osb->s_mount_opt = parsed_options.mount_opt;
729 osb->s_atime_quantum = parsed_options.atime_quantum;
730 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800731 if (parsed_options.commit_interval)
732 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fashehe001e792007-11-07 14:21:45 -0800733
734 if (!ocfs2_is_hard_readonly(osb))
735 ocfs2_set_journal_params(osb);
Jan Kara57b09bb2009-10-15 14:54:05 +0200736
737 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
738 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ?
739 MS_POSIXACL : 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800740 }
741out:
742 return ret;
743}
744
745static int ocfs2_sb_probe(struct super_block *sb,
746 struct buffer_head **bh,
Joel Becker73be1922009-01-06 14:57:08 -0800747 int *sector_size,
748 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -0800749{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800750 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800751 struct ocfs1_vol_disk_hdr *hdr;
752 struct ocfs2_dinode *di;
753 int blksize;
754
755 *bh = NULL;
756
757 /* may be > 512 */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400758 *sector_size = bdev_logical_block_size(sb->s_bdev);
Mark Fashehccd979b2005-12-15 14:31:24 -0800759 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
760 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
761 *sector_size, OCFS2_MAX_BLOCKSIZE);
762 status = -EINVAL;
763 goto bail;
764 }
765
766 /* Can this really happen? */
767 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
768 *sector_size = OCFS2_MIN_BLOCKSIZE;
769
770 /* check block zero for old format */
771 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
772 if (status < 0) {
773 mlog_errno(status);
774 goto bail;
775 }
776 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
777 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
778 mlog(ML_ERROR, "incompatible version: %u.%u\n",
779 hdr->major_version, hdr->minor_version);
780 status = -EINVAL;
781 }
782 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
783 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
784 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
785 hdr->signature);
786 status = -EINVAL;
787 }
788 brelse(*bh);
789 *bh = NULL;
790 if (status < 0) {
791 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
792 "upgraded before mounting with ocfs v2\n");
793 goto bail;
794 }
795
796 /*
797 * Now check at magic offset for 512, 1024, 2048, 4096
798 * blocksizes. 4096 is the maximum blocksize because it is
799 * the minimum clustersize.
800 */
801 status = -EINVAL;
802 for (blksize = *sector_size;
803 blksize <= OCFS2_MAX_BLOCKSIZE;
804 blksize <<= 1) {
805 tmpstat = ocfs2_get_sector(sb, bh,
806 OCFS2_SUPER_BLOCK_BLKNO,
807 blksize);
808 if (tmpstat < 0) {
809 status = tmpstat;
810 mlog_errno(status);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700811 break;
Mark Fashehccd979b2005-12-15 14:31:24 -0800812 }
813 di = (struct ocfs2_dinode *) (*bh)->b_data;
Joel Becker73be1922009-01-06 14:57:08 -0800814 memset(stats, 0, sizeof(struct ocfs2_blockcheck_stats));
Jan Kara1c1d9792009-07-22 13:17:19 +0200815 spin_lock_init(&stats->b_lock);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700816 tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats);
817 if (tmpstat < 0) {
818 brelse(*bh);
819 *bh = NULL;
820 }
821 if (tmpstat != -EAGAIN) {
822 status = tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800823 break;
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700824 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800825 }
826
827bail:
828 return status;
829}
830
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800831static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
832{
Sunil Mushran2c442712010-10-07 15:23:50 -0700833 u32 hb_enabled = OCFS2_MOUNT_HB_LOCAL | OCFS2_MOUNT_HB_GLOBAL;
834
835 if (osb->s_mount_opt & hb_enabled) {
836 if (ocfs2_mount_local(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800837 mlog(ML_ERROR, "Cannot heartbeat on a locally "
838 "mounted device.\n");
839 return -EINVAL;
840 }
Sunil Mushran2c442712010-10-07 15:23:50 -0700841 if (ocfs2_userspace_stack(osb)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800842 mlog(ML_ERROR, "Userspace stack expected, but "
843 "o2cb heartbeat arguments passed to mount\n");
844 return -EINVAL;
845 }
Sunil Mushran2c442712010-10-07 15:23:50 -0700846 if (((osb->s_mount_opt & OCFS2_MOUNT_HB_GLOBAL) &&
847 !ocfs2_cluster_o2cb_global_heartbeat(osb)) ||
848 ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) &&
849 ocfs2_cluster_o2cb_global_heartbeat(osb))) {
850 mlog(ML_ERROR, "Mismatching o2cb heartbeat modes\n");
851 return -EINVAL;
852 }
Joel Beckerb61817e2008-02-01 15:08:23 -0800853 }
854
Sunil Mushran2c442712010-10-07 15:23:50 -0700855 if (!(osb->s_mount_opt & hb_enabled)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800856 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
857 !ocfs2_userspace_stack(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800858 mlog(ML_ERROR, "Heartbeat has to be started to mount "
859 "a read-write clustered device.\n");
860 return -EINVAL;
861 }
862 }
863
864 return 0;
865}
866
Joel Beckerb61817e2008-02-01 15:08:23 -0800867/*
868 * If we're using a userspace stack, mount should have passed
869 * a name that matches the disk. If not, mount should not
870 * have passed a stack.
871 */
872static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
873 struct mount_options *mopt)
874{
875 if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
876 mlog(ML_ERROR,
877 "cluster stack passed to mount, but this filesystem "
878 "does not support it\n");
879 return -EINVAL;
880 }
881
882 if (ocfs2_userspace_stack(osb) &&
883 strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
884 OCFS2_STACK_LABEL_LEN)) {
885 mlog(ML_ERROR,
886 "cluster stack passed to mount (\"%s\") does not "
887 "match the filesystem (\"%s\")\n",
888 mopt->cluster_stack,
889 osb->osb_cluster_stack);
890 return -EINVAL;
891 }
892
893 return 0;
894}
895
Jan Kara19ece542008-08-21 20:13:17 +0200896static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend)
897{
898 int type;
899 struct super_block *sb = osb->sb;
900 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
901 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
902 int status = 0;
903
904 for (type = 0; type < MAXQUOTAS; type++) {
905 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
906 continue;
907 if (unsuspend)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400908 status = dquot_resume(sb, type);
Jan Karaeea7feb2010-05-13 22:14:53 +0200909 else {
910 struct ocfs2_mem_dqinfo *oinfo;
911
912 /* Cancel periodic syncing before suspending */
913 oinfo = sb_dqinfo(sb, type)->dqi_priv;
914 cancel_delayed_work_sync(&oinfo->dqi_sync_work);
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400915 status = dquot_suspend(sb, type);
Jan Karaeea7feb2010-05-13 22:14:53 +0200916 }
Jan Kara19ece542008-08-21 20:13:17 +0200917 if (status < 0)
918 break;
919 }
920 if (status < 0)
921 mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on "
922 "remount (error = %d).\n", status);
923 return status;
924}
925
926static int ocfs2_enable_quotas(struct ocfs2_super *osb)
927{
928 struct inode *inode[MAXQUOTAS] = { NULL, NULL };
929 struct super_block *sb = osb->sb;
930 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
931 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
932 unsigned int ino[MAXQUOTAS] = { LOCAL_USER_QUOTA_SYSTEM_INODE,
933 LOCAL_GROUP_QUOTA_SYSTEM_INODE };
934 int status;
935 int type;
936
937 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE;
938 for (type = 0; type < MAXQUOTAS; type++) {
939 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
940 continue;
941 inode[type] = ocfs2_get_system_file_inode(osb, ino[type],
942 osb->slot_num);
943 if (!inode[type]) {
944 status = -ENOENT;
945 goto out_quota_off;
946 }
Christoph Hellwig287a8092010-05-19 07:16:45 -0400947 status = dquot_enable(inode[type], type, QFMT_OCFS2,
948 DQUOT_USAGE_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200949 if (status < 0)
950 goto out_quota_off;
951 }
952
953 for (type = 0; type < MAXQUOTAS; type++)
954 iput(inode[type]);
955 return 0;
956out_quota_off:
957 ocfs2_disable_quotas(osb);
958 for (type = 0; type < MAXQUOTAS; type++)
959 iput(inode[type]);
960 mlog_errno(status);
961 return status;
962}
963
964static void ocfs2_disable_quotas(struct ocfs2_super *osb)
965{
966 int type;
967 struct inode *inode;
968 struct super_block *sb = osb->sb;
Jan Karac06bcbf2010-05-13 22:14:53 +0200969 struct ocfs2_mem_dqinfo *oinfo;
Jan Kara19ece542008-08-21 20:13:17 +0200970
971 /* We mostly ignore errors in this function because there's not much
972 * we can do when we see them */
973 for (type = 0; type < MAXQUOTAS; type++) {
974 if (!sb_has_quota_loaded(sb, type))
975 continue;
Jan Karac06bcbf2010-05-13 22:14:53 +0200976 /* Cancel periodic syncing before we grab dqonoff_mutex */
977 oinfo = sb_dqinfo(sb, type)->dqi_priv;
978 cancel_delayed_work_sync(&oinfo->dqi_sync_work);
Jan Kara19ece542008-08-21 20:13:17 +0200979 inode = igrab(sb->s_dquot.files[type]);
980 /* Turn off quotas. This will remove all dquot structures from
981 * memory and so they will be automatically synced to global
982 * quota files */
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400983 dquot_disable(sb, type, DQUOT_USAGE_ENABLED |
984 DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200985 if (!inode)
986 continue;
987 iput(inode);
988 }
989}
990
991/* Handle quota on quotactl */
Jan Karaf00c9e42010-09-15 17:38:58 +0200992static int ocfs2_quota_on(struct super_block *sb, int type, int format_id)
Jan Kara19ece542008-08-21 20:13:17 +0200993{
994 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
995 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
996
997 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
998 return -EINVAL;
999
Christoph Hellwig287a8092010-05-19 07:16:45 -04001000 return dquot_enable(sb_dqopt(sb)->files[type], type,
1001 format_id, DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +02001002}
1003
1004/* Handle quota off quotactl */
Christoph Hellwig307ae182010-05-19 07:16:43 -04001005static int ocfs2_quota_off(struct super_block *sb, int type)
Jan Kara19ece542008-08-21 20:13:17 +02001006{
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04001007 return dquot_disable(sb, type, DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +02001008}
1009
Alexey Dobriyan0d54b212009-09-21 17:01:09 -07001010static const struct quotactl_ops ocfs2_quotactl_ops = {
Jan Karaf00c9e42010-09-15 17:38:58 +02001011 .quota_on_meta = ocfs2_quota_on,
Jan Kara19ece542008-08-21 20:13:17 +02001012 .quota_off = ocfs2_quota_off,
Christoph Hellwig287a8092010-05-19 07:16:45 -04001013 .quota_sync = dquot_quota_sync,
1014 .get_info = dquot_get_dqinfo,
1015 .set_info = dquot_set_dqinfo,
1016 .get_dqblk = dquot_get_dqblk,
1017 .set_dqblk = dquot_set_dqblk,
Jan Kara19ece542008-08-21 20:13:17 +02001018};
1019
Mark Fashehccd979b2005-12-15 14:31:24 -08001020static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
1021{
1022 struct dentry *root;
1023 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001024 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -08001025 struct inode *inode = NULL;
1026 struct ocfs2_super *osb = NULL;
1027 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001028 char nodestr[8];
Joel Becker73be1922009-01-06 14:57:08 -08001029 struct ocfs2_blockcheck_stats stats;
Mark Fashehccd979b2005-12-15 14:31:24 -08001030
Tao Maef6b6892011-02-21 11:10:44 +08001031 mlog(0, "%p, %p, %i", sb, data, silent);
Mark Fashehccd979b2005-12-15 14:31:24 -08001032
Tiger Yangc0123ad2007-09-08 00:16:10 +08001033 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001034 status = -EINVAL;
1035 goto read_super_error;
1036 }
1037
1038 /* probe for superblock */
Joel Becker73be1922009-01-06 14:57:08 -08001039 status = ocfs2_sb_probe(sb, &bh, &sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001040 if (status < 0) {
1041 mlog(ML_ERROR, "superblock probe failed!\n");
1042 goto read_super_error;
1043 }
1044
Joel Becker73be1922009-01-06 14:57:08 -08001045 status = ocfs2_initialize_super(sb, bh, sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001046 osb = OCFS2_SB(sb);
1047 if (status < 0) {
1048 mlog_errno(status);
1049 goto read_super_error;
1050 }
1051 brelse(bh);
1052 bh = NULL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001053
Jan Kara5297aad2009-10-15 14:54:04 +02001054 if (!ocfs2_check_set_options(sb, &parsed_options)) {
1055 status = -EINVAL;
1056 goto read_super_error;
1057 }
Tiger Yangc0123ad2007-09-08 00:16:10 +08001058 osb->s_mount_opt = parsed_options.mount_opt;
1059 osb->s_atime_quantum = parsed_options.atime_quantum;
1060 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001061 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fasheh73c8a802010-04-05 18:17:13 -07001062
1063 ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt);
Mark Fashehd02f00c2009-12-07 13:10:48 -08001064 osb->osb_resv_level = parsed_options.resv_level;
Mark Fasheh83f92312010-04-05 18:17:16 -07001065 osb->osb_dir_resv_level = parsed_options.resv_level;
1066 if (parsed_options.dir_resv_level == -1)
1067 osb->osb_dir_resv_level = parsed_options.resv_level;
1068 else
1069 osb->osb_dir_resv_level = parsed_options.dir_resv_level;
Mark Fashehccd979b2005-12-15 14:31:24 -08001070
Joel Beckerb61817e2008-02-01 15:08:23 -08001071 status = ocfs2_verify_userspace_stack(osb, &parsed_options);
1072 if (status)
1073 goto read_super_error;
1074
Mark Fashehccd979b2005-12-15 14:31:24 -08001075 sb->s_magic = OCFS2_SUPER_MAGIC;
1076
Tiger Yanga68979b2008-11-14 11:17:52 +08001077 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1078 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1079
Mark Fashehccd979b2005-12-15 14:31:24 -08001080 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
1081 * heartbeat=none */
1082 if (bdev_read_only(sb->s_bdev)) {
1083 if (!(sb->s_flags & MS_RDONLY)) {
1084 status = -EACCES;
1085 mlog(ML_ERROR, "Readonly device detected but readonly "
1086 "mount was not specified.\n");
1087 goto read_super_error;
1088 }
1089
1090 /* You should not be able to start a local heartbeat
1091 * on a readonly device. */
1092 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
1093 status = -EROFS;
1094 mlog(ML_ERROR, "Local heartbeat specified on readonly "
1095 "device.\n");
1096 goto read_super_error;
1097 }
1098
1099 status = ocfs2_check_journals_nolocks(osb);
1100 if (status < 0) {
1101 if (status == -EROFS)
1102 mlog(ML_ERROR, "Recovery required on readonly "
1103 "file system, but write access is "
1104 "unavailable.\n");
1105 else
Sunil Mushran2bd63212010-01-25 16:57:38 -08001106 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001107 goto read_super_error;
1108 }
1109
1110 ocfs2_set_ro_flag(osb, 1);
1111
1112 printk(KERN_NOTICE "Readonly device detected. No cluster "
1113 "services will be utilized for this mount. Recovery "
1114 "will be skipped.\n");
1115 }
1116
1117 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001118 if (sb->s_flags & MS_RDONLY)
1119 ocfs2_set_ro_flag(osb, 0);
1120 }
1121
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001122 status = ocfs2_verify_heartbeat(osb);
1123 if (status < 0) {
1124 mlog_errno(status);
1125 goto read_super_error;
1126 }
1127
Mark Fashehccd979b2005-12-15 14:31:24 -08001128 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
1129 ocfs2_debugfs_root);
1130 if (!osb->osb_debug_root) {
1131 status = -EINVAL;
1132 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
1133 goto read_super_error;
1134 }
1135
Sunil Mushran50397502008-12-17 14:17:43 -08001136 osb->osb_ctxt = debugfs_create_file("fs_state", S_IFREG|S_IRUSR,
1137 osb->osb_debug_root,
1138 osb,
1139 &ocfs2_osb_debug_fops);
1140 if (!osb->osb_ctxt) {
1141 status = -EINVAL;
1142 mlog_errno(status);
1143 goto read_super_error;
1144 }
1145
Joel Becker73be1922009-01-06 14:57:08 -08001146 if (ocfs2_meta_ecc(osb)) {
1147 status = ocfs2_blockcheck_stats_debugfs_install(
1148 &osb->osb_ecc_stats,
1149 osb->osb_debug_root);
1150 if (status) {
1151 mlog(ML_ERROR,
1152 "Unable to create blockcheck statistics "
1153 "files\n");
1154 goto read_super_error;
1155 }
1156 }
1157
Mark Fashehccd979b2005-12-15 14:31:24 -08001158 status = ocfs2_mount_volume(sb);
1159 if (osb->root_inode)
1160 inode = igrab(osb->root_inode);
1161
1162 if (status < 0)
1163 goto read_super_error;
1164
1165 if (!inode) {
1166 status = -EIO;
1167 mlog_errno(status);
1168 goto read_super_error;
1169 }
1170
1171 root = d_alloc_root(inode);
1172 if (!root) {
1173 status = -ENOMEM;
1174 mlog_errno(status);
1175 goto read_super_error;
1176 }
1177
1178 sb->s_root = root;
1179
1180 ocfs2_complete_mount_recovery(osb);
1181
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001182 if (ocfs2_mount_local(osb))
1183 snprintf(nodestr, sizeof(nodestr), "local");
1184 else
Joel Becker19fdb622008-01-30 15:38:24 -08001185 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001186
1187 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001188 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001189 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -08001190 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
1191 "ordered");
1192
1193 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
1194 wake_up(&osb->osb_mount_event);
1195
Jan Kara19ece542008-08-21 20:13:17 +02001196 /* Now we can initialize quotas because we can afford to wait
1197 * for cluster locks recovery now. That also means that truncation
1198 * log recovery can happen but that waits for proper quota setup */
1199 if (!(sb->s_flags & MS_RDONLY)) {
1200 status = ocfs2_enable_quotas(osb);
1201 if (status < 0) {
1202 /* We have to err-out specially here because
1203 * s_root is already set */
1204 mlog_errno(status);
1205 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1206 wake_up(&osb->osb_mount_event);
Jan Kara19ece542008-08-21 20:13:17 +02001207 return status;
1208 }
1209 }
1210
1211 ocfs2_complete_quota_recovery(osb);
1212
1213 /* Now we wake up again for processes waiting for quotas */
1214 atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS);
1215 wake_up(&osb->osb_mount_event);
1216
Sunil Mushrandf152c22009-06-22 11:40:07 -07001217 /* Start this when the mount is almost sure of being successful */
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04001218 ocfs2_orphan_scan_start(osb);
Sunil Mushrandf152c22009-06-22 11:40:07 -07001219
Mark Fashehccd979b2005-12-15 14:31:24 -08001220 return status;
1221
1222read_super_error:
Mark Fasheha81cb882008-10-07 14:25:16 -07001223 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001224
1225 if (inode)
1226 iput(inode);
1227
1228 if (osb) {
1229 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1230 wake_up(&osb->osb_mount_event);
1231 ocfs2_dismount_volume(sb, 1);
1232 }
1233
Tao Mac1e8d352011-03-07 16:43:21 +08001234 if (status)
1235 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001236 return status;
1237}
1238
Al Viro152a0832010-07-25 00:46:55 +04001239static struct dentry *ocfs2_mount(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -07001240 int flags,
1241 const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +04001242 void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001243{
Al Viro152a0832010-07-25 00:46:55 +04001244 return mount_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super);
Mark Fashehccd979b2005-12-15 14:31:24 -08001245}
1246
Jan Karaf7b1aa62009-07-20 12:12:36 +02001247static void ocfs2_kill_sb(struct super_block *sb)
1248{
1249 struct ocfs2_super *osb = OCFS2_SB(sb);
1250
Jan Kara5fd13182009-07-30 17:01:53 +02001251 /* Failed mount? */
1252 if (!osb || atomic_read(&osb->vol_state) == VOLUME_DISABLED)
1253 goto out;
1254
Jan Karaf7b1aa62009-07-20 12:12:36 +02001255 /* Prevent further queueing of inode drop events */
1256 spin_lock(&dentry_list_lock);
1257 ocfs2_set_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED);
1258 spin_unlock(&dentry_list_lock);
1259 /* Wait for work to finish and/or remove it */
1260 cancel_work_sync(&osb->dentry_lock_work);
Jan Kara5fd13182009-07-30 17:01:53 +02001261out:
Jan Karaf7b1aa62009-07-20 12:12:36 +02001262 kill_block_super(sb);
1263}
1264
Mark Fashehccd979b2005-12-15 14:31:24 -08001265static struct file_system_type ocfs2_fs_type = {
1266 .owner = THIS_MODULE,
1267 .name = "ocfs2",
Al Viro152a0832010-07-25 00:46:55 +04001268 .mount = ocfs2_mount,
Jan Karaf7b1aa62009-07-20 12:12:36 +02001269 .kill_sb = ocfs2_kill_sb,
1270
Mark Fasheh1ba9da22006-09-08 14:22:54 -07001271 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -08001272 .next = NULL
1273};
1274
Jan Kara5297aad2009-10-15 14:54:04 +02001275static int ocfs2_check_set_options(struct super_block *sb,
1276 struct mount_options *options)
1277{
1278 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA &&
1279 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1280 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
1281 mlog(ML_ERROR, "User quotas were requested, but this "
1282 "filesystem does not have the feature enabled.\n");
1283 return 0;
1284 }
1285 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA &&
1286 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1287 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
1288 mlog(ML_ERROR, "Group quotas were requested, but this "
1289 "filesystem does not have the feature enabled.\n");
1290 return 0;
1291 }
1292 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL &&
1293 !OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR)) {
1294 mlog(ML_ERROR, "ACL support requested but extended attributes "
1295 "feature is not enabled\n");
1296 return 0;
1297 }
1298 /* No ACL setting specified? Use XATTR feature... */
1299 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL |
1300 OCFS2_MOUNT_NO_POSIX_ACL))) {
1301 if (OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR))
1302 options->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
1303 else
1304 options->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
1305 }
1306 return 1;
1307}
1308
Mark Fashehccd979b2005-12-15 14:31:24 -08001309static int ocfs2_parse_options(struct super_block *sb,
1310 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +08001311 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -08001312 int is_remount)
1313{
Mark Fasheh52c303c2011-01-31 11:31:04 -08001314 int status, user_stack = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001315 char *p;
Sunil Mushran2c442712010-10-07 15:23:50 -07001316 u32 tmp;
Mark Fashehccd979b2005-12-15 14:31:24 -08001317
Tao Maef6b6892011-02-21 11:10:44 +08001318 mlog(0, "remount: %d, options: \"%s\"\n", is_remount,
1319 options ? options : "(none)");
Mark Fashehccd979b2005-12-15 14:31:24 -08001320
Mark Fashehd147b3d2007-11-07 14:40:36 -08001321 mopt->commit_interval = 0;
Sunil Mushran4b37fcb2010-04-13 18:00:31 -07001322 mopt->mount_opt = OCFS2_MOUNT_NOINTR;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001323 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1324 mopt->slot = OCFS2_INVALID_SLOT;
Mark Fasheh73c8a802010-04-05 18:17:13 -07001325 mopt->localalloc_opt = -1;
Joel Beckerb61817e2008-02-01 15:08:23 -08001326 mopt->cluster_stack[0] = '\0';
Mark Fashehd02f00c2009-12-07 13:10:48 -08001327 mopt->resv_level = OCFS2_DEFAULT_RESV_LEVEL;
Mark Fasheh83f92312010-04-05 18:17:16 -07001328 mopt->dir_resv_level = -1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001329
1330 if (!options) {
1331 status = 1;
1332 goto bail;
1333 }
1334
1335 while ((p = strsep(&options, ",")) != NULL) {
1336 int token, option;
1337 substring_t args[MAX_OPT_ARGS];
1338
1339 if (!*p)
1340 continue;
1341
1342 token = match_token(p, tokens, args);
1343 switch (token) {
1344 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001345 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001346 break;
1347 case Opt_hb_none:
Sunil Mushran2c442712010-10-07 15:23:50 -07001348 mopt->mount_opt |= OCFS2_MOUNT_HB_NONE;
1349 break;
1350 case Opt_hb_global:
1351 mopt->mount_opt |= OCFS2_MOUNT_HB_GLOBAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001352 break;
1353 case Opt_barrier:
1354 if (match_int(&args[0], &option)) {
1355 status = 0;
1356 goto bail;
1357 }
1358 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001359 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001360 else
Tiger Yangc0123ad2007-09-08 00:16:10 +08001361 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001362 break;
1363 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001364 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001365 break;
1366 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001367 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001368 break;
1369 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001370 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001371 break;
1372 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001373 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001374 break;
1375 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001376 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001377 break;
1378 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001379 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001380 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001381 case Opt_user_xattr:
1382 mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
1383 break;
1384 case Opt_nouser_xattr:
1385 mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
1386 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001387 case Opt_atime_quantum:
1388 if (match_int(&args[0], &option)) {
1389 status = 0;
1390 goto bail;
1391 }
1392 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001393 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001394 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001395 case Opt_slot:
1396 option = 0;
1397 if (match_int(&args[0], &option)) {
1398 status = 0;
1399 goto bail;
1400 }
1401 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001402 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001403 break;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001404 case Opt_commit:
1405 option = 0;
1406 if (match_int(&args[0], &option)) {
1407 status = 0;
1408 goto bail;
1409 }
1410 if (option < 0)
1411 return 0;
1412 if (option == 0)
Joel Becker2b4e30f2008-09-03 20:03:41 -07001413 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001414 mopt->commit_interval = HZ * option;
1415 break;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001416 case Opt_localalloc:
1417 option = 0;
1418 if (match_int(&args[0], &option)) {
1419 status = 0;
1420 goto bail;
1421 }
Mark Fasheh73c8a802010-04-05 18:17:13 -07001422 if (option >= 0)
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001423 mopt->localalloc_opt = option;
1424 break;
Mark Fasheh53fc6222007-12-20 16:49:04 -08001425 case Opt_localflocks:
1426 /*
1427 * Changing this during remount could race
1428 * flock() requests, or "unbalance" existing
1429 * ones (e.g., a lock is taken in one mode but
1430 * dropped in the other). If users care enough
1431 * to flip locking modes during remount, we
1432 * could add a "local" flag to individual
1433 * flock structures for proper tracking of
1434 * state.
1435 */
1436 if (!is_remount)
1437 mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
1438 break;
Joel Beckerb61817e2008-02-01 15:08:23 -08001439 case Opt_stack:
1440 /* Check both that the option we were passed
1441 * is of the right length and that it is a proper
1442 * string of the right length.
1443 */
1444 if (((args[0].to - args[0].from) !=
1445 OCFS2_STACK_LABEL_LEN) ||
1446 (strnlen(args[0].from,
1447 OCFS2_STACK_LABEL_LEN) !=
1448 OCFS2_STACK_LABEL_LEN)) {
1449 mlog(ML_ERROR,
1450 "Invalid cluster_stack option\n");
1451 status = 0;
1452 goto bail;
1453 }
1454 memcpy(mopt->cluster_stack, args[0].from,
1455 OCFS2_STACK_LABEL_LEN);
1456 mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
Mark Fasheh52c303c2011-01-31 11:31:04 -08001457 /*
1458 * Open code the memcmp here as we don't have
1459 * an osb to pass to
1460 * ocfs2_userspace_stack().
1461 */
1462 if (memcmp(mopt->cluster_stack,
1463 OCFS2_CLASSIC_CLUSTER_STACK,
1464 OCFS2_STACK_LABEL_LEN))
1465 user_stack = 1;
Joel Beckerb61817e2008-02-01 15:08:23 -08001466 break;
Joel Becker12462f12008-09-03 20:03:40 -07001467 case Opt_inode64:
1468 mopt->mount_opt |= OCFS2_MOUNT_INODE64;
1469 break;
Jan Kara19ece542008-08-21 20:13:17 +02001470 case Opt_usrquota:
Jan Kara19ece542008-08-21 20:13:17 +02001471 mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA;
1472 break;
1473 case Opt_grpquota:
Jan Kara19ece542008-08-21 20:13:17 +02001474 mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA;
1475 break;
Tristan Ye7bdb0d12010-10-11 16:46:39 +08001476 case Opt_coherency_buffered:
1477 mopt->mount_opt |= OCFS2_MOUNT_COHERENCY_BUFFERED;
1478 break;
1479 case Opt_coherency_full:
1480 mopt->mount_opt &= ~OCFS2_MOUNT_COHERENCY_BUFFERED;
1481 break;
Tiger Yanga68979b2008-11-14 11:17:52 +08001482 case Opt_acl:
1483 mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
Jan Kara5297aad2009-10-15 14:54:04 +02001484 mopt->mount_opt &= ~OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001485 break;
1486 case Opt_noacl:
Jan Kara5297aad2009-10-15 14:54:04 +02001487 mopt->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001488 mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
1489 break;
Mark Fashehd02f00c2009-12-07 13:10:48 -08001490 case Opt_resv_level:
1491 if (is_remount)
1492 break;
1493 if (match_int(&args[0], &option)) {
1494 status = 0;
1495 goto bail;
1496 }
1497 if (option >= OCFS2_MIN_RESV_LEVEL &&
1498 option < OCFS2_MAX_RESV_LEVEL)
1499 mopt->resv_level = option;
1500 break;
Mark Fasheh83f92312010-04-05 18:17:16 -07001501 case Opt_dir_resv_level:
1502 if (is_remount)
1503 break;
1504 if (match_int(&args[0], &option)) {
1505 status = 0;
1506 goto bail;
1507 }
1508 if (option >= OCFS2_MIN_RESV_LEVEL &&
1509 option < OCFS2_MAX_RESV_LEVEL)
1510 mopt->dir_resv_level = option;
1511 break;
Mark Fashehccd979b2005-12-15 14:31:24 -08001512 default:
1513 mlog(ML_ERROR,
1514 "Unrecognized mount option \"%s\" "
1515 "or missing value\n", p);
1516 status = 0;
1517 goto bail;
1518 }
1519 }
1520
Mark Fasheh52c303c2011-01-31 11:31:04 -08001521 if (user_stack == 0) {
1522 /* Ensure only one heartbeat mode */
1523 tmp = mopt->mount_opt & (OCFS2_MOUNT_HB_LOCAL |
1524 OCFS2_MOUNT_HB_GLOBAL |
1525 OCFS2_MOUNT_HB_NONE);
1526 if (hweight32(tmp) != 1) {
1527 mlog(ML_ERROR, "Invalid heartbeat mount options\n");
1528 status = 0;
1529 goto bail;
1530 }
Sunil Mushran2c442712010-10-07 15:23:50 -07001531 }
1532
Mark Fashehccd979b2005-12-15 14:31:24 -08001533 status = 1;
1534
1535bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08001536 return status;
1537}
1538
Sunil Mushrand5500712007-09-06 13:34:16 -07001539static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
1540{
1541 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
1542 unsigned long opts = osb->s_mount_opt;
Mark Fashehebcee4b2008-07-28 14:55:20 -07001543 unsigned int local_alloc_megs;
Sunil Mushrand5500712007-09-06 13:34:16 -07001544
Sunil Mushran2c442712010-10-07 15:23:50 -07001545 if (opts & (OCFS2_MOUNT_HB_LOCAL | OCFS2_MOUNT_HB_GLOBAL)) {
1546 seq_printf(s, ",_netdev");
1547 if (opts & OCFS2_MOUNT_HB_LOCAL)
1548 seq_printf(s, ",%s", OCFS2_HB_LOCAL);
1549 else
1550 seq_printf(s, ",%s", OCFS2_HB_GLOBAL);
1551 } else
1552 seq_printf(s, ",%s", OCFS2_HB_NONE);
Sunil Mushrand5500712007-09-06 13:34:16 -07001553
1554 if (opts & OCFS2_MOUNT_NOINTR)
1555 seq_printf(s, ",nointr");
1556
1557 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
1558 seq_printf(s, ",data=writeback");
1559 else
1560 seq_printf(s, ",data=ordered");
1561
1562 if (opts & OCFS2_MOUNT_BARRIER)
1563 seq_printf(s, ",barrier=1");
1564
1565 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
1566 seq_printf(s, ",errors=panic");
1567 else
1568 seq_printf(s, ",errors=remount-ro");
1569
1570 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
1571 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
1572
1573 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
1574 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
1575
Mark Fashehd147b3d2007-11-07 14:40:36 -08001576 if (osb->osb_commit_interval)
1577 seq_printf(s, ",commit=%u",
1578 (unsigned) (osb->osb_commit_interval / HZ));
1579
Mark Fashehebcee4b2008-07-28 14:55:20 -07001580 local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
Mark Fasheh6b820212010-04-05 18:17:14 -07001581 if (local_alloc_megs != ocfs2_la_default_mb(osb))
Mark Fashehebcee4b2008-07-28 14:55:20 -07001582 seq_printf(s, ",localalloc=%d", local_alloc_megs);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001583
Mark Fasheh53fc6222007-12-20 16:49:04 -08001584 if (opts & OCFS2_MOUNT_LOCALFLOCKS)
1585 seq_printf(s, ",localflocks,");
1586
Joel Beckerb61817e2008-02-01 15:08:23 -08001587 if (osb->osb_cluster_stack[0])
1588 seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
1589 osb->osb_cluster_stack);
Jan Kara19ece542008-08-21 20:13:17 +02001590 if (opts & OCFS2_MOUNT_USRQUOTA)
1591 seq_printf(s, ",usrquota");
1592 if (opts & OCFS2_MOUNT_GRPQUOTA)
1593 seq_printf(s, ",grpquota");
Joel Beckerb61817e2008-02-01 15:08:23 -08001594
Tristan Ye7bdb0d12010-10-11 16:46:39 +08001595 if (opts & OCFS2_MOUNT_COHERENCY_BUFFERED)
1596 seq_printf(s, ",coherency=buffered");
1597 else
1598 seq_printf(s, ",coherency=full");
1599
Sunil Mushranb0f73cf2008-09-05 11:29:14 -07001600 if (opts & OCFS2_MOUNT_NOUSERXATTR)
1601 seq_printf(s, ",nouser_xattr");
1602 else
1603 seq_printf(s, ",user_xattr");
1604
Joel Becker12462f12008-09-03 20:03:40 -07001605 if (opts & OCFS2_MOUNT_INODE64)
1606 seq_printf(s, ",inode64");
1607
Tiger Yanga68979b2008-11-14 11:17:52 +08001608 if (opts & OCFS2_MOUNT_POSIX_ACL)
1609 seq_printf(s, ",acl");
1610 else
1611 seq_printf(s, ",noacl");
Tiger Yanga68979b2008-11-14 11:17:52 +08001612
Mark Fashehd02f00c2009-12-07 13:10:48 -08001613 if (osb->osb_resv_level != OCFS2_DEFAULT_RESV_LEVEL)
1614 seq_printf(s, ",resv_level=%d", osb->osb_resv_level);
1615
Mark Fasheh83f92312010-04-05 18:17:16 -07001616 if (osb->osb_dir_resv_level != osb->osb_resv_level)
1617 seq_printf(s, ",dir_resv_level=%d", osb->osb_resv_level);
1618
Sunil Mushrand5500712007-09-06 13:34:16 -07001619 return 0;
1620}
1621
Mark Fashehccd979b2005-12-15 14:31:24 -08001622static int __init ocfs2_init(void)
1623{
1624 int status;
1625
Mark Fashehccd979b2005-12-15 14:31:24 -08001626 ocfs2_print_version();
1627
Mark Fashehccd979b2005-12-15 14:31:24 -08001628 status = init_ocfs2_uptodate_cache();
1629 if (status < 0) {
1630 mlog_errno(status);
1631 goto leave;
1632 }
1633
1634 status = ocfs2_initialize_mem_caches();
1635 if (status < 0) {
1636 mlog_errno(status);
1637 goto leave;
1638 }
1639
1640 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
1641 if (!ocfs2_wq) {
1642 status = -ENOMEM;
1643 goto leave;
1644 }
1645
Mark Fashehccd979b2005-12-15 14:31:24 -08001646 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
1647 if (!ocfs2_debugfs_root) {
1648 status = -EFAULT;
1649 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
1650 }
1651
Mark Fasheh171bf932008-10-20 15:36:47 +02001652 status = ocfs2_quota_setup();
1653 if (status)
1654 goto leave;
1655
Joel Becker63e0c482008-01-30 16:58:36 -08001656 ocfs2_set_locking_protocol();
1657
Jan Kara9e33d692008-08-25 19:56:50 +02001658 status = register_quota_format(&ocfs2_quota_format);
Mark Fashehccd979b2005-12-15 14:31:24 -08001659leave:
1660 if (status < 0) {
Mark Fasheh171bf932008-10-20 15:36:47 +02001661 ocfs2_quota_shutdown();
Mark Fashehccd979b2005-12-15 14:31:24 -08001662 ocfs2_free_mem_caches();
1663 exit_ocfs2_uptodate_cache();
Tao Mac1e8d352011-03-07 16:43:21 +08001664 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001665 }
1666
Mark Fashehccd979b2005-12-15 14:31:24 -08001667 if (status >= 0) {
1668 return register_filesystem(&ocfs2_fs_type);
1669 } else
1670 return -1;
1671}
1672
1673static void __exit ocfs2_exit(void)
1674{
Mark Fasheh171bf932008-10-20 15:36:47 +02001675 ocfs2_quota_shutdown();
1676
Mark Fashehccd979b2005-12-15 14:31:24 -08001677 if (ocfs2_wq) {
1678 flush_workqueue(ocfs2_wq);
1679 destroy_workqueue(ocfs2_wq);
1680 }
1681
Jan Kara9e33d692008-08-25 19:56:50 +02001682 unregister_quota_format(&ocfs2_quota_format);
1683
Mark Fashehccd979b2005-12-15 14:31:24 -08001684 debugfs_remove(ocfs2_debugfs_root);
1685
1686 ocfs2_free_mem_caches();
1687
1688 unregister_filesystem(&ocfs2_fs_type);
1689
Mark Fashehccd979b2005-12-15 14:31:24 -08001690 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -08001691}
1692
1693static void ocfs2_put_super(struct super_block *sb)
1694{
Tao Maef6b6892011-02-21 11:10:44 +08001695 mlog(0, "(0x%p)\n", sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001696
1697 ocfs2_sync_blockdev(sb);
1698 ocfs2_dismount_volume(sb, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001699}
1700
David Howells726c3342006-06-23 02:02:58 -07001701static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -08001702{
1703 struct ocfs2_super *osb;
1704 u32 numbits, freebits;
1705 int status;
1706 struct ocfs2_dinode *bm_lock;
1707 struct buffer_head *bh = NULL;
1708 struct inode *inode = NULL;
1709
Tao Maef6b6892011-02-21 11:10:44 +08001710 mlog(0, "(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -08001711
David Howells726c3342006-06-23 02:02:58 -07001712 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001713
1714 inode = ocfs2_get_system_file_inode(osb,
1715 GLOBAL_BITMAP_SYSTEM_INODE,
1716 OCFS2_INVALID_SLOT);
1717 if (!inode) {
1718 mlog(ML_ERROR, "failed to get bitmap inode\n");
1719 status = -EIO;
1720 goto bail;
1721 }
1722
Mark Fashehe63aecb62007-10-18 15:30:42 -07001723 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001724 if (status < 0) {
1725 mlog_errno(status);
1726 goto bail;
1727 }
1728
1729 bm_lock = (struct ocfs2_dinode *) bh->b_data;
1730
1731 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
1732 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
1733
1734 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -07001735 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -08001736 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
1737 buf->f_blocks = ((sector_t) numbits) *
1738 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1739 buf->f_bfree = ((sector_t) freebits) *
1740 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1741 buf->f_bavail = buf->f_bfree;
1742 buf->f_files = numbits;
1743 buf->f_ffree = freebits;
Coly Li837711f2009-01-16 16:33:05 +08001744 buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN)
1745 & 0xFFFFFFFFUL;
1746 buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN,
1747 OCFS2_VOL_UUID_LEN) & 0xFFFFFFFFUL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001748
1749 brelse(bh);
1750
Mark Fashehe63aecb62007-10-18 15:30:42 -07001751 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001752 status = 0;
1753bail:
1754 if (inode)
1755 iput(inode);
1756
Tao Mac1e8d352011-03-07 16:43:21 +08001757 if (status)
1758 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001759
1760 return status;
1761}
1762
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001763static void ocfs2_inode_init_once(void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001764{
1765 struct ocfs2_inode_info *oi = data;
1766
Christoph Lametera35afb82007-05-16 22:10:57 -07001767 oi->ip_flags = 0;
1768 oi->ip_open_count = 0;
1769 spin_lock_init(&oi->ip_lock);
1770 ocfs2_extent_map_init(&oi->vfs_inode);
1771 INIT_LIST_HEAD(&oi->ip_io_markers);
Christoph Lametera35afb82007-05-16 22:10:57 -07001772 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001773
Christoph Lametera35afb82007-05-16 22:10:57 -07001774 init_rwsem(&oi->ip_alloc_sem);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001775 init_rwsem(&oi->ip_xattr_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -07001776 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001777
Christoph Lametera35afb82007-05-16 22:10:57 -07001778 oi->ip_blkno = 0ULL;
1779 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001780
Mark Fasheh4fe370a2009-12-07 13:15:40 -08001781 ocfs2_resv_init_once(&oi->ip_la_data_resv);
1782
Christoph Lametera35afb82007-05-16 22:10:57 -07001783 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001784 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001785 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001786
Joel Becker8cb471e2009-02-10 20:00:41 -08001787 ocfs2_metadata_cache_init(INODE_CACHE(&oi->vfs_inode),
Joel Becker6e5a3d72009-02-10 19:00:37 -08001788 &ocfs2_inode_caching_ops);
Mark Fashehccd979b2005-12-15 14:31:24 -08001789
Christoph Lametera35afb82007-05-16 22:10:57 -07001790 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001791}
1792
1793static int ocfs2_initialize_mem_caches(void)
1794{
1795 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001796 sizeof(struct ocfs2_inode_info),
1797 0,
1798 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1799 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001800 ocfs2_inode_init_once);
Jan Kara9e33d692008-08-25 19:56:50 +02001801 ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
1802 sizeof(struct ocfs2_dquot),
1803 0,
1804 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1805 SLAB_MEM_SPREAD),
1806 NULL);
1807 ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
1808 sizeof(struct ocfs2_quota_chunk),
1809 0,
1810 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
1811 NULL);
1812 if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
1813 !ocfs2_qf_chunk_cachep) {
1814 if (ocfs2_inode_cachep)
1815 kmem_cache_destroy(ocfs2_inode_cachep);
1816 if (ocfs2_dquot_cachep)
1817 kmem_cache_destroy(ocfs2_dquot_cachep);
1818 if (ocfs2_qf_chunk_cachep)
1819 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001820 return -ENOMEM;
Jan Kara9e33d692008-08-25 19:56:50 +02001821 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001822
Mark Fashehccd979b2005-12-15 14:31:24 -08001823 return 0;
1824}
1825
1826static void ocfs2_free_mem_caches(void)
1827{
1828 if (ocfs2_inode_cachep)
1829 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001830 ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +02001831
1832 if (ocfs2_dquot_cachep)
1833 kmem_cache_destroy(ocfs2_dquot_cachep);
1834 ocfs2_dquot_cachep = NULL;
1835
1836 if (ocfs2_qf_chunk_cachep)
1837 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
1838 ocfs2_qf_chunk_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001839}
1840
1841static int ocfs2_get_sector(struct super_block *sb,
1842 struct buffer_head **bh,
1843 int block,
1844 int sect_size)
1845{
1846 if (!sb_set_blocksize(sb, sect_size)) {
1847 mlog(ML_ERROR, "unable to set blocksize\n");
1848 return -EIO;
1849 }
1850
1851 *bh = sb_getblk(sb, block);
1852 if (!*bh) {
1853 mlog_errno(-EIO);
1854 return -EIO;
1855 }
1856 lock_buffer(*bh);
1857 if (!buffer_dirty(*bh))
1858 clear_buffer_uptodate(*bh);
1859 unlock_buffer(*bh);
1860 ll_rw_block(READ, 1, bh);
1861 wait_on_buffer(*bh);
wengang wang28d57d42009-02-13 10:11:47 +08001862 if (!buffer_uptodate(*bh)) {
1863 mlog_errno(-EIO);
1864 brelse(*bh);
1865 *bh = NULL;
1866 return -EIO;
1867 }
1868
Mark Fashehccd979b2005-12-15 14:31:24 -08001869 return 0;
1870}
1871
Mark Fashehccd979b2005-12-15 14:31:24 -08001872static int ocfs2_mount_volume(struct super_block *sb)
1873{
1874 int status = 0;
1875 int unlock_super = 0;
1876 struct ocfs2_super *osb = OCFS2_SB(sb);
1877
Mark Fashehccd979b2005-12-15 14:31:24 -08001878 if (ocfs2_is_hard_readonly(osb))
1879 goto leave;
1880
Mark Fashehccd979b2005-12-15 14:31:24 -08001881 status = ocfs2_dlm_init(osb);
1882 if (status < 0) {
1883 mlog_errno(status);
1884 goto leave;
1885 }
1886
Mark Fashehccd979b2005-12-15 14:31:24 -08001887 status = ocfs2_super_lock(osb, 1);
1888 if (status < 0) {
1889 mlog_errno(status);
1890 goto leave;
1891 }
1892 unlock_super = 1;
1893
1894 /* This will load up the node map and add ourselves to it. */
1895 status = ocfs2_find_slot(osb);
1896 if (status < 0) {
1897 mlog_errno(status);
1898 goto leave;
1899 }
1900
Mark Fashehccd979b2005-12-15 14:31:24 -08001901 /* load all node-local system inodes */
1902 status = ocfs2_init_local_system_inodes(osb);
1903 if (status < 0) {
1904 mlog_errno(status);
1905 goto leave;
1906 }
1907
1908 status = ocfs2_check_volume(osb);
1909 if (status < 0) {
1910 mlog_errno(status);
1911 goto leave;
1912 }
1913
1914 status = ocfs2_truncate_log_init(osb);
Tao Ma06c59bb2009-05-19 06:47:20 +08001915 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08001916 mlog_errno(status);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001917
Mark Fashehccd979b2005-12-15 14:31:24 -08001918leave:
1919 if (unlock_super)
1920 ocfs2_super_unlock(osb, 1);
1921
Mark Fashehccd979b2005-12-15 14:31:24 -08001922 return status;
1923}
1924
Mark Fashehccd979b2005-12-15 14:31:24 -08001925static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1926{
Joel Becker286eaa92008-02-01 15:03:57 -08001927 int tmp, hangup_needed = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001928 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001929 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001930
Tao Maef6b6892011-02-21 11:10:44 +08001931 mlog(0, "(0x%p)\n", sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001932
1933 BUG_ON(!sb);
1934 osb = OCFS2_SB(sb);
1935 BUG_ON(!osb);
1936
Sunil Mushran50397502008-12-17 14:17:43 -08001937 debugfs_remove(osb->osb_ctxt);
1938
Jan Karaf7b1aa62009-07-20 12:12:36 +02001939 /*
1940 * Flush inode dropping work queue so that deletes are
1941 * performed while the filesystem is still working
1942 */
1943 ocfs2_drop_all_dl_inodes(osb);
1944
Sunil Mushran692684e2009-06-19 16:53:17 -07001945 /* Orphan scan should be stopped as early as possible */
1946 ocfs2_orphan_scan_stop(osb);
1947
Jan Kara19ece542008-08-21 20:13:17 +02001948 ocfs2_disable_quotas(osb);
1949
Mark Fashehccd979b2005-12-15 14:31:24 -08001950 ocfs2_shutdown_local_alloc(osb);
1951
1952 ocfs2_truncate_log_shutdown(osb);
1953
Joel Becker553abd02008-02-01 12:03:57 -08001954 /* This will disable recovery and flush any recovery work. */
1955 ocfs2_recovery_exit(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001956
1957 ocfs2_journal_shutdown(osb);
1958
1959 ocfs2_sync_blockdev(sb);
1960
Tao Ma374a2632009-08-24 11:13:37 +08001961 ocfs2_purge_refcount_trees(osb);
1962
Joel Becker4670c462008-02-01 14:39:35 -08001963 /* No cluster connection means we've failed during mount, so skip
1964 * all the steps which depended on that to complete. */
1965 if (osb->cconn) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001966 tmp = ocfs2_super_lock(osb, 1);
1967 if (tmp < 0) {
1968 mlog_errno(tmp);
1969 return;
1970 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001971 }
1972
Mark Fasheh19b613d2007-10-04 14:47:09 -07001973 if (osb->slot_num != OCFS2_INVALID_SLOT)
1974 ocfs2_put_slot(osb);
1975
Joel Becker4670c462008-02-01 14:39:35 -08001976 if (osb->cconn)
Mark Fasheh19b613d2007-10-04 14:47:09 -07001977 ocfs2_super_unlock(osb, 1);
1978
Mark Fashehccd979b2005-12-15 14:31:24 -08001979 ocfs2_release_system_inodes(osb);
1980
Joel Becker6953b4c2008-01-29 16:59:56 -08001981 /*
Joel Becker6953b4c2008-01-29 16:59:56 -08001982 * If we're dismounting due to mount error, mount.ocfs2 will clean
1983 * up heartbeat. If we're a local mount, there is no heartbeat.
1984 * If we failed before we got a uuid_str yet, we can't stop
1985 * heartbeat. Otherwise, do it.
1986 */
1987 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
Joel Becker286eaa92008-02-01 15:03:57 -08001988 hangup_needed = 1;
1989
1990 if (osb->cconn)
1991 ocfs2_dlm_shutdown(osb, hangup_needed);
1992
Joel Becker73be1922009-01-06 14:57:08 -08001993 ocfs2_blockcheck_stats_debugfs_remove(&osb->osb_ecc_stats);
Joel Becker286eaa92008-02-01 15:03:57 -08001994 debugfs_remove(osb->osb_debug_root);
1995
1996 if (hangup_needed)
Joel Becker6953b4c2008-01-29 16:59:56 -08001997 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
Mark Fashehccd979b2005-12-15 14:31:24 -08001998
1999 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
2000
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002001 if (ocfs2_mount_local(osb))
2002 snprintf(nodestr, sizeof(nodestr), "local");
2003 else
Joel Becker19fdb622008-01-30 15:38:24 -08002004 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002005
2006 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
2007 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08002008
2009 ocfs2_delete_osb(osb);
2010 kfree(osb);
2011 sb->s_dev = 0;
2012 sb->s_fs_info = NULL;
2013}
2014
2015static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
2016 unsigned uuid_bytes)
2017{
2018 int i, ret;
2019 char *ptr;
2020
2021 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
2022
Robert P. J. Daycd861282006-12-13 00:34:52 -08002023 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002024 if (osb->uuid_str == NULL)
2025 return -ENOMEM;
2026
Mark Fashehccd979b2005-12-15 14:31:24 -08002027 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
2028 /* print with null */
2029 ret = snprintf(ptr, 3, "%02X", uuid[i]);
2030 if (ret != 2) /* drop super cleans up */
2031 return -EINVAL;
2032 /* then only advance past the last char */
2033 ptr += 2;
2034 }
2035
2036 return 0;
2037}
2038
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002039/* Make sure entire volume is addressable by our journal. Requires
2040 osb_clusters_at_boot to be valid and for the journal to have been
2041 initialized by ocfs2_journal_init(). */
2042static int ocfs2_journal_addressable(struct ocfs2_super *osb)
2043{
2044 int status = 0;
2045 u64 max_block =
2046 ocfs2_clusters_to_blocks(osb->sb,
2047 osb->osb_clusters_at_boot) - 1;
2048
2049 /* 32-bit block number is always OK. */
2050 if (max_block <= (u32)~0ULL)
2051 goto out;
2052
2053 /* Volume is "huge", so see if our journal is new enough to
2054 support it. */
2055 if (!(OCFS2_HAS_COMPAT_FEATURE(osb->sb,
2056 OCFS2_FEATURE_COMPAT_JBD2_SB) &&
2057 jbd2_journal_check_used_features(osb->journal->j_journal, 0, 0,
2058 JBD2_FEATURE_INCOMPAT_64BIT))) {
2059 mlog(ML_ERROR, "The journal cannot address the entire volume. "
2060 "Enable the 'block64' journal option with tunefs.ocfs2");
2061 status = -EFBIG;
2062 goto out;
2063 }
2064
2065 out:
2066 return status;
2067}
2068
Mark Fashehccd979b2005-12-15 14:31:24 -08002069static int ocfs2_initialize_super(struct super_block *sb,
2070 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002071 int sector_size,
2072 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002073{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002074 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07002075 int i, cbits, bbits;
2076 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08002077 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002078 struct ocfs2_journal *journal;
2079 __le32 uuid_net_key;
2080 struct ocfs2_super *osb;
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002081 u64 total_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08002082
Robert P. J. Daycd861282006-12-13 00:34:52 -08002083 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002084 if (!osb) {
2085 status = -ENOMEM;
2086 mlog_errno(status);
2087 goto bail;
2088 }
2089
2090 sb->s_fs_info = osb;
2091 sb->s_op = &ocfs2_sops;
Al Viroba871672010-12-18 12:10:00 -05002092 sb->s_d_op = &ocfs2_dentry_ops;
Mark Fashehccd979b2005-12-15 14:31:24 -08002093 sb->s_export_op = &ocfs2_export_ops;
Jan Kara19ece542008-08-21 20:13:17 +02002094 sb->s_qcop = &ocfs2_quotactl_ops;
2095 sb->dq_op = &ocfs2_quota_operations;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002096 sb->s_xattr = ocfs2_xattr_handlers;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07002097 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08002098 sb->s_flags |= MS_NOATIME;
2099 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07002100 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2101 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
2102 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002103
Mark Fasheh9b7895e2008-11-12 16:27:44 -08002104 osb->osb_dx_mask = (1 << (cbits - bbits)) - 1;
2105
2106 for (i = 0; i < 3; i++)
2107 osb->osb_dx_seed[i] = le32_to_cpu(di->id2.i_super.s_dx_seed[i]);
2108 osb->osb_dx_seed[3] = le32_to_cpu(di->id2.i_super.s_uuid_hash);
2109
Mark Fashehccd979b2005-12-15 14:31:24 -08002110 osb->sb = sb;
2111 /* Save off for ocfs2_rw_direct */
2112 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01002113 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002114
Mark Fasheh34d024f2007-09-24 15:56:19 -07002115 spin_lock_init(&osb->dc_task_lock);
2116 init_waitqueue_head(&osb->dc_event);
2117 osb->dc_work_sequence = 0;
2118 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002119 INIT_LIST_HEAD(&osb->blocked_lock_list);
2120 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002121 spin_lock_init(&osb->osb_lock);
Tao Mac8b9cf92009-02-24 17:40:26 -08002122 spin_lock_init(&osb->osb_xattr_lock);
Tiger Yangb89c5422010-01-25 14:11:06 +08002123 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002124
2125 atomic_set(&osb->alloc_stats.moves, 0);
2126 atomic_set(&osb->alloc_stats.local_data, 0);
2127 atomic_set(&osb->alloc_stats.bitmap_data, 0);
2128 atomic_set(&osb->alloc_stats.bg_allocs, 0);
2129 atomic_set(&osb->alloc_stats.bg_extends, 0);
2130
Joel Becker73be1922009-01-06 14:57:08 -08002131 /* Copy the blockcheck stats from the superblock probe */
2132 osb->osb_ecc_stats = *stats;
2133
Mark Fashehccd979b2005-12-15 14:31:24 -08002134 ocfs2_init_node_maps(osb);
2135
2136 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
2137 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
2138
Goldwyn Rodrigues75d9bbc2010-10-11 12:57:09 -05002139 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
2140 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
2141 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
2142 osb->max_slots);
2143 status = -EINVAL;
2144 goto bail;
2145 }
2146 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
2147
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04002148 ocfs2_orphan_scan_init(osb);
2149
Joel Becker553abd02008-02-01 12:03:57 -08002150 status = ocfs2_recovery_init(osb);
2151 if (status) {
2152 mlog(ML_ERROR, "Unable to initialize recovery state\n");
2153 mlog_errno(status);
2154 goto bail;
2155 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002156
2157 init_waitqueue_head(&osb->checkpoint_event);
2158 atomic_set(&osb->needs_checkpoint, 0);
2159
Tiger Yang7f1a37e2006-11-15 15:48:42 +08002160 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
2161
Mark Fashehccd979b2005-12-15 14:31:24 -08002162 osb->slot_num = OCFS2_INVALID_SLOT;
2163
Tiger Yang8154da32008-08-18 17:11:46 +08002164 osb->s_xattr_inline_size = le16_to_cpu(
2165 di->id2.i_super.s_xattr_inline_size);
Tiger Yangfdd77702008-08-18 17:08:55 +08002166
Mark Fashehccd979b2005-12-15 14:31:24 -08002167 osb->local_alloc_state = OCFS2_LA_UNUSED;
2168 osb->local_alloc_bh = NULL;
Mark Fasheh9c7af402008-07-28 18:02:53 -07002169 INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08002170
Mark Fashehccd979b2005-12-15 14:31:24 -08002171 init_waitqueue_head(&osb->osb_mount_event);
2172
Mark Fashehd02f00c2009-12-07 13:10:48 -08002173 status = ocfs2_resmap_init(osb, &osb->osb_la_resmap);
2174 if (status) {
2175 mlog_errno(status);
2176 goto bail;
2177 }
2178
Mark Fashehccd979b2005-12-15 14:31:24 -08002179 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
2180 if (!osb->vol_label) {
2181 mlog(ML_ERROR, "unable to alloc vol label\n");
2182 status = -ENOMEM;
2183 goto bail;
2184 }
2185
Sunil Mushran539d8262008-07-14 17:31:10 -07002186 osb->slot_recovery_generations =
2187 kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
2188 GFP_KERNEL);
2189 if (!osb->slot_recovery_generations) {
2190 status = -ENOMEM;
2191 mlog_errno(status);
2192 goto bail;
2193 }
2194
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002195 init_waitqueue_head(&osb->osb_wipe_event);
2196 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
2197 sizeof(*osb->osb_orphan_wipes),
2198 GFP_KERNEL);
2199 if (!osb->osb_orphan_wipes) {
2200 status = -ENOMEM;
2201 mlog_errno(status);
2202 goto bail;
2203 }
2204
Tao Ma374a2632009-08-24 11:13:37 +08002205 osb->osb_rf_lock_tree = RB_ROOT;
2206
Mark Fashehccd979b2005-12-15 14:31:24 -08002207 osb->s_feature_compat =
2208 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
2209 osb->s_feature_ro_compat =
2210 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
2211 osb->s_feature_incompat =
2212 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
2213
2214 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
2215 mlog(ML_ERROR, "couldn't mount because of unsupported "
2216 "optional features (%x).\n", i);
2217 status = -EINVAL;
2218 goto bail;
2219 }
2220 if (!(osb->sb->s_flags & MS_RDONLY) &&
2221 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
2222 mlog(ML_ERROR, "couldn't mount RDWR because of "
2223 "unsupported optional features (%x).\n", i);
2224 status = -EINVAL;
2225 goto bail;
2226 }
2227
Sunil Mushran98f486f22010-10-09 10:24:46 -07002228 if (ocfs2_clusterinfo_valid(osb)) {
2229 osb->osb_stackflags =
2230 OCFS2_RAW_SB(di)->s_cluster_info.ci_stackflags;
Joel Beckerb61817e2008-02-01 15:08:23 -08002231 memcpy(osb->osb_cluster_stack,
2232 OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
2233 OCFS2_STACK_LABEL_LEN);
2234 osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
2235 if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
2236 mlog(ML_ERROR,
2237 "couldn't mount because of an invalid "
2238 "cluster stack label (%s) \n",
2239 osb->osb_cluster_stack);
2240 status = -EINVAL;
2241 goto bail;
2242 }
2243 } else {
2244 /* The empty string is identical with classic tools that
2245 * don't know about s_cluster_info. */
2246 osb->osb_cluster_stack[0] = '\0';
2247 }
2248
Mark Fashehccd979b2005-12-15 14:31:24 -08002249 get_random_bytes(&osb->s_next_generation, sizeof(u32));
2250
2251 /* FIXME
2252 * This should be done in ocfs2_journal_init(), but unknown
2253 * ordering issues will cause the filesystem to crash.
2254 * If anyone wants to figure out what part of the code
2255 * refers to osb->journal before ocfs2_journal_init() is run,
2256 * be my guest.
2257 */
2258 /* initialize our journal structure */
2259
Robert P. J. Daycd861282006-12-13 00:34:52 -08002260 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002261 if (!journal) {
2262 mlog(ML_ERROR, "unable to alloc journal\n");
2263 status = -ENOMEM;
2264 goto bail;
2265 }
2266 osb->journal = journal;
2267 journal->j_osb = osb;
2268
2269 atomic_set(&journal->j_num_trans, 0);
2270 init_rwsem(&journal->j_trans_barrier);
2271 init_waitqueue_head(&journal->j_checkpointed);
2272 spin_lock_init(&journal->j_lock);
2273 journal->j_trans_id = (unsigned long) 1;
2274 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00002275 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08002276 journal->j_state = OCFS2_JOURNAL_FREE;
2277
Jan Karaea455f82009-01-12 23:20:31 +01002278 INIT_WORK(&osb->dentry_lock_work, ocfs2_drop_dl_inodes);
2279 osb->dentry_lock_list = NULL;
2280
Mark Fashehccd979b2005-12-15 14:31:24 -08002281 /* get some pseudo constants for clustersize bits */
2282 osb->s_clustersize_bits =
2283 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2284 osb->s_clustersize = 1 << osb->s_clustersize_bits;
2285 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
2286
2287 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
2288 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
2289 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
2290 osb->s_clustersize);
2291 status = -EINVAL;
2292 goto bail;
2293 }
2294
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002295 total_blocks = ocfs2_clusters_to_blocks(osb->sb,
2296 le32_to_cpu(di->i_clusters));
2297
2298 status = generic_check_addressable(osb->sb->s_blocksize_bits,
2299 total_blocks);
2300 if (status) {
2301 mlog(ML_ERROR, "Volume too large "
2302 "to mount safely on this system");
2303 status = -EFBIG;
Mark Fashehccd979b2005-12-15 14:31:24 -08002304 goto bail;
2305 }
2306
2307 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
2308 sizeof(di->id2.i_super.s_uuid))) {
2309 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
2310 status = -ENOMEM;
2311 goto bail;
2312 }
2313
Mark Fasheh78427042006-05-04 12:03:26 -07002314 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08002315
2316 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
2317 osb->vol_label[63] = '\0';
2318 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
2319 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
2320 osb->first_cluster_group_blkno =
2321 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
2322 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002323 osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
Mark Fashehccd979b2005-12-15 14:31:24 -08002324 mlog(0, "vol_label: %s\n", osb->vol_label);
2325 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb06970532006-03-03 10:24:33 -08002326 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
2327 (unsigned long long)osb->root_blkno,
2328 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002329
2330 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
2331 if (!osb->osb_dlm_debug) {
2332 status = -ENOMEM;
2333 mlog_errno(status);
2334 goto bail;
2335 }
2336
2337 atomic_set(&osb->vol_state, VOLUME_INIT);
2338
2339 /* load root, system_dir, and all global system inodes */
2340 status = ocfs2_init_global_system_inodes(osb);
2341 if (status < 0) {
2342 mlog_errno(status);
2343 goto bail;
2344 }
2345
2346 /*
2347 * global bitmap
2348 */
2349 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
2350 OCFS2_INVALID_SLOT);
2351 if (!inode) {
2352 status = -EINVAL;
2353 mlog_errno(status);
2354 goto bail;
2355 }
2356
2357 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
Mark Fasheh6b820212010-04-05 18:17:14 -07002358 osb->osb_clusters_at_boot = OCFS2_I(inode)->ip_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08002359 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002360
Tao Ma85718822010-04-13 14:38:06 +08002361 osb->bitmap_cpg = ocfs2_group_bitmap_size(sb, 0,
2362 osb->s_feature_incompat) * 8;
Mark Fashehccd979b2005-12-15 14:31:24 -08002363
2364 status = ocfs2_init_slot_info(osb);
2365 if (status < 0) {
2366 mlog_errno(status);
2367 goto bail;
2368 }
2369
Mark Fashehccd979b2005-12-15 14:31:24 -08002370bail:
Mark Fashehccd979b2005-12-15 14:31:24 -08002371 return status;
2372}
2373
2374/*
2375 * will return: -EAGAIN if it is ok to keep searching for superblocks
2376 * -EINVAL if there is a bad superblock
2377 * 0 on success
2378 */
2379static int ocfs2_verify_volume(struct ocfs2_dinode *di,
2380 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002381 u32 blksz,
2382 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002383{
2384 int status = -EAGAIN;
2385
Mark Fashehccd979b2005-12-15 14:31:24 -08002386 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
2387 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
Joel Beckerd030cc92008-12-11 15:04:14 -08002388 /* We have to do a raw check of the feature here */
2389 if (le32_to_cpu(di->id2.i_super.s_feature_incompat) &
2390 OCFS2_FEATURE_INCOMPAT_META_ECC) {
2391 status = ocfs2_block_check_validate(bh->b_data,
2392 bh->b_size,
Joel Becker73be1922009-01-06 14:57:08 -08002393 &di->i_check,
2394 stats);
Joel Beckerd030cc92008-12-11 15:04:14 -08002395 if (status)
2396 goto out;
2397 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002398 status = -EINVAL;
2399 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
2400 mlog(ML_ERROR, "found superblock with incorrect block "
2401 "size: found %u, should be %u\n",
2402 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
2403 blksz);
2404 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
2405 OCFS2_MAJOR_REV_LEVEL ||
2406 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
2407 OCFS2_MINOR_REV_LEVEL) {
2408 mlog(ML_ERROR, "found superblock with bad version: "
2409 "found %u.%u, should be %u.%u\n",
2410 le16_to_cpu(di->id2.i_super.s_major_rev_level),
2411 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
2412 OCFS2_MAJOR_REV_LEVEL,
2413 OCFS2_MINOR_REV_LEVEL);
2414 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
2415 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb06970532006-03-03 10:24:33 -08002416 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07002417 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb06970532006-03-03 10:24:33 -08002418 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08002419 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
2420 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
2421 mlog(ML_ERROR, "bad cluster size found: %u\n",
2422 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
2423 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
2424 mlog(ML_ERROR, "bad root_blkno: 0\n");
2425 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
2426 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
2427 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
2428 mlog(ML_ERROR,
2429 "Superblock slots found greater than file system "
2430 "maximum: found %u, max %u\n",
2431 le16_to_cpu(di->id2.i_super.s_max_slots),
2432 OCFS2_MAX_SLOTS);
2433 } else {
2434 /* found it! */
2435 status = 0;
2436 }
2437 }
2438
Joel Beckerd030cc92008-12-11 15:04:14 -08002439out:
Tao Mac1e8d352011-03-07 16:43:21 +08002440 if (status && status != -EAGAIN)
2441 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08002442 return status;
2443}
2444
2445static int ocfs2_check_volume(struct ocfs2_super *osb)
2446{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002447 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08002448 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002449 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08002450 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
2451 * recover
2452 * ourselves. */
2453
Mark Fashehccd979b2005-12-15 14:31:24 -08002454 /* Init our journal object. */
2455 status = ocfs2_journal_init(osb->journal, &dirty);
2456 if (status < 0) {
2457 mlog(ML_ERROR, "Could not initialize journal!\n");
2458 goto finally;
2459 }
2460
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002461 /* Now that journal has been initialized, check to make sure
2462 entire volume is addressable. */
2463 status = ocfs2_journal_addressable(osb);
2464 if (status)
2465 goto finally;
2466
Mark Fashehccd979b2005-12-15 14:31:24 -08002467 /* If the journal was unmounted cleanly then we don't want to
2468 * recover anything. Otherwise, journal_load will do that
2469 * dirty work for us :) */
2470 if (!dirty) {
2471 status = ocfs2_journal_wipe(osb->journal, 0);
2472 if (status < 0) {
2473 mlog_errno(status);
2474 goto finally;
2475 }
2476 } else {
2477 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
2478 "recovering volume.\n");
2479 }
2480
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002481 local = ocfs2_mount_local(osb);
2482
Mark Fashehccd979b2005-12-15 14:31:24 -08002483 /* will play back anything left in the journal. */
Sunil Mushran539d8262008-07-14 17:31:10 -07002484 status = ocfs2_journal_load(osb->journal, local, dirty);
Wengang Wang01af4822008-06-10 14:24:48 +08002485 if (status < 0) {
2486 mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
2487 goto finally;
2488 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002489
2490 if (dirty) {
2491 /* recover my local alloc if we didn't unmount cleanly. */
2492 status = ocfs2_begin_local_alloc_recovery(osb,
2493 osb->slot_num,
2494 &local_alloc);
2495 if (status < 0) {
2496 mlog_errno(status);
2497 goto finally;
2498 }
2499 /* we complete the recovery process after we've marked
2500 * ourselves as mounted. */
2501 }
2502
2503 mlog(0, "Journal loaded.\n");
2504
2505 status = ocfs2_load_local_alloc(osb);
2506 if (status < 0) {
2507 mlog_errno(status);
2508 goto finally;
2509 }
2510
2511 if (dirty) {
2512 /* Recovery will be completed after we've mounted the
2513 * rest of the volume. */
2514 osb->dirty = 1;
2515 osb->local_alloc_copy = local_alloc;
2516 local_alloc = NULL;
2517 }
2518
2519 /* go through each journal, trylock it and if you get the
2520 * lock, and it's marked as dirty, set the bit in the recover
2521 * map and launch a recovery thread for it. */
2522 status = ocfs2_mark_dead_nodes(osb);
Srinivas Eeda9140db02009-03-06 14:21:46 -08002523 if (status < 0) {
2524 mlog_errno(status);
2525 goto finally;
2526 }
2527
2528 status = ocfs2_compute_replay_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002529 if (status < 0)
2530 mlog_errno(status);
2531
2532finally:
2533 if (local_alloc)
2534 kfree(local_alloc);
2535
Tao Mac1e8d352011-03-07 16:43:21 +08002536 if (status)
2537 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08002538 return status;
2539}
2540
2541/*
2542 * The routine gets called from dismount or close whenever a dismount on
2543 * volume is requested and the osb open count becomes 1.
2544 * It will remove the osb from the global list and also free up all the
2545 * initialized resources and fileobject.
2546 */
2547static void ocfs2_delete_osb(struct ocfs2_super *osb)
2548{
Mark Fashehccd979b2005-12-15 14:31:24 -08002549 /* This function assumes that the caller has the main osb resource */
2550
Mark Fasheh8e8a4602008-02-01 11:59:09 -08002551 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002552
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002553 kfree(osb->osb_orphan_wipes);
Sunil Mushran539d8262008-07-14 17:31:10 -07002554 kfree(osb->slot_recovery_generations);
Mark Fashehccd979b2005-12-15 14:31:24 -08002555 /* FIXME
2556 * This belongs in journal shutdown, but because we have to
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02002557 * allocate osb->journal at the start of ocfs2_initialize_osb(),
Mark Fashehccd979b2005-12-15 14:31:24 -08002558 * we free it here.
2559 */
2560 kfree(osb->journal);
2561 if (osb->local_alloc_copy)
2562 kfree(osb->local_alloc_copy);
2563 kfree(osb->uuid_str);
2564 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
2565 memset(osb, 0, sizeof(struct ocfs2_super));
Mark Fashehccd979b2005-12-15 14:31:24 -08002566}
2567
2568/* Put OCFS2 into a readonly state, or (if the user specifies it),
2569 * panic(). We do not support continue-on-error operation. */
2570static void ocfs2_handle_error(struct super_block *sb)
2571{
2572 struct ocfs2_super *osb = OCFS2_SB(sb);
2573
2574 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
2575 panic("OCFS2: (device %s): panic forced after error\n",
2576 sb->s_id);
2577
2578 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
2579
2580 if (sb->s_flags & MS_RDONLY &&
2581 (ocfs2_is_soft_readonly(osb) ||
2582 ocfs2_is_hard_readonly(osb)))
2583 return;
2584
2585 printk(KERN_CRIT "File system is now read-only due to the potential "
2586 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2587 "system is unmounted.\n");
2588 sb->s_flags |= MS_RDONLY;
2589 ocfs2_set_ro_flag(osb, 0);
2590}
2591
2592static char error_buf[1024];
2593
2594void __ocfs2_error(struct super_block *sb,
2595 const char *function,
2596 const char *fmt, ...)
2597{
2598 va_list args;
2599
2600 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002601 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002602 va_end(args);
2603
2604 /* Not using mlog here because we want to show the actual
2605 * function the error came from. */
2606 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
2607 sb->s_id, function, error_buf);
2608
2609 ocfs2_handle_error(sb);
2610}
2611
2612/* Handle critical errors. This is intentionally more drastic than
2613 * ocfs2_handle_error, so we only use for things like journal errors,
2614 * etc. */
2615void __ocfs2_abort(struct super_block* sb,
2616 const char *function,
2617 const char *fmt, ...)
2618{
2619 va_list args;
2620
2621 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002622 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002623 va_end(args);
2624
2625 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
2626 sb->s_id, function, error_buf);
2627
2628 /* We don't have the cluster support yet to go straight to
2629 * hard readonly in here. Until then, we want to keep
2630 * ocfs2_abort() so that we can at least mark critical
2631 * errors.
2632 *
2633 * TODO: This should abort the journal and alert other nodes
2634 * that our slot needs recovery. */
2635
2636 /* Force a panic(). This stinks, but it's better than letting
2637 * things continue without having a proper hard readonly
2638 * here. */
Sunil Mushrana2f2ddb2009-08-19 15:16:01 -07002639 if (!ocfs2_mount_local(OCFS2_SB(sb)))
2640 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08002641 ocfs2_handle_error(sb);
2642}
2643
Joel Beckere4b963f2009-09-02 17:17:36 -07002644/*
2645 * Void signal blockers, because in-kernel sigprocmask() only fails
2646 * when SIG_* is wrong.
2647 */
2648void ocfs2_block_signals(sigset_t *oldset)
2649{
2650 int rc;
2651 sigset_t blocked;
2652
2653 sigfillset(&blocked);
2654 rc = sigprocmask(SIG_BLOCK, &blocked, oldset);
2655 BUG_ON(rc);
2656}
2657
2658void ocfs2_unblock_signals(sigset_t *oldset)
2659{
2660 int rc = sigprocmask(SIG_SETMASK, oldset, NULL);
2661 BUG_ON(rc);
2662}
2663
Mark Fashehccd979b2005-12-15 14:31:24 -08002664module_init(ocfs2_init);
2665module_exit(ocfs2_exit);