blob: b578644b6637823819aae19cd8d142ad20d52fa1 [file] [log] [blame]
Mark Fashehccd979b2005-12-15 14:31:24 -08001/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * super.c
5 *
6 * load/unload driver, mount/dismount volumes
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/module.h>
27#include <linux/fs.h>
28#include <linux/types.h>
29#include <linux/slab.h>
30#include <linux/highmem.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080031#include <linux/init.h>
32#include <linux/random.h>
33#include <linux/statfs.h>
34#include <linux/moduleparam.h>
35#include <linux/blkdev.h>
36#include <linux/socket.h>
37#include <linux/inet.h>
38#include <linux/parser.h>
39#include <linux/crc32.h>
40#include <linux/debugfs.h>
Sunil Mushrand5500712007-09-06 13:34:16 -070041#include <linux/mount.h>
Joel Becker6953b4c2008-01-29 16:59:56 -080042#include <linux/seq_file.h>
Jan Kara19ece542008-08-21 20:13:17 +020043#include <linux/quotaops.h>
Alessio Igor Bogani337eb002009-05-12 15:10:54 +020044#include <linux/smp_lock.h>
Mark Fashehccd979b2005-12-15 14:31:24 -080045
46#define MLOG_MASK_PREFIX ML_SUPER
47#include <cluster/masklog.h>
48
49#include "ocfs2.h"
50
51/* this should be the only file to include a version 1 header */
52#include "ocfs1_fs_compat.h"
53
54#include "alloc.h"
Joel Beckerd030cc92008-12-11 15:04:14 -080055#include "blockcheck.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080056#include "dlmglue.h"
57#include "export.h"
58#include "extent_map.h"
59#include "heartbeat.h"
60#include "inode.h"
61#include "journal.h"
62#include "localalloc.h"
63#include "namei.h"
64#include "slot_map.h"
65#include "super.h"
66#include "sysfile.h"
67#include "uptodate.h"
68#include "ver.h"
Tiger Yangcf1d6c72008-08-18 17:11:00 +080069#include "xattr.h"
Jan Kara9e33d692008-08-25 19:56:50 +020070#include "quota.h"
Tao Ma374a2632009-08-24 11:13:37 +080071#include "refcounttree.h"
Tiger Yangb89c5422010-01-25 14:11:06 +080072#include "suballoc.h"
Mark Fashehccd979b2005-12-15 14:31:24 -080073
74#include "buffer_head_io.h"
75
Christoph Lametere18b8902006-12-06 20:33:20 -080076static struct kmem_cache *ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +020077struct kmem_cache *ocfs2_dquot_cachep;
78struct kmem_cache *ocfs2_qf_chunk_cachep;
Mark Fashehccd979b2005-12-15 14:31:24 -080079
Mark Fashehccd979b2005-12-15 14:31:24 -080080/* OCFS2 needs to schedule several differnt types of work which
81 * require cluster locking, disk I/O, recovery waits, etc. Since these
82 * types of work tend to be heavy we avoid using the kernel events
83 * workqueue and schedule on our own. */
84struct workqueue_struct *ocfs2_wq = NULL;
85
86static struct dentry *ocfs2_debugfs_root = NULL;
87
88MODULE_AUTHOR("Oracle");
89MODULE_LICENSE("GPL");
90
Tiger Yangc0123ad2007-09-08 00:16:10 +080091struct mount_options
92{
Mark Fashehd147b3d2007-11-07 14:40:36 -080093 unsigned long commit_interval;
Tiger Yangc0123ad2007-09-08 00:16:10 +080094 unsigned long mount_opt;
95 unsigned int atime_quantum;
96 signed short slot;
Mark Fasheh73c8a802010-04-05 18:17:13 -070097 int localalloc_opt;
Mark Fashehd02f00c2009-12-07 13:10:48 -080098 unsigned int resv_level;
Mark Fasheh83f92312010-04-05 18:17:16 -070099 int dir_resv_level;
Joel Beckerb61817e2008-02-01 15:08:23 -0800100 char cluster_stack[OCFS2_STACK_LABEL_LEN + 1];
Tiger Yangc0123ad2007-09-08 00:16:10 +0800101};
102
Mark Fashehccd979b2005-12-15 14:31:24 -0800103static int ocfs2_parse_options(struct super_block *sb, char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +0800104 struct mount_options *mopt,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700105 int is_remount);
Jan Kara5297aad2009-10-15 14:54:04 +0200106static int ocfs2_check_set_options(struct super_block *sb,
107 struct mount_options *options);
Sunil Mushrand5500712007-09-06 13:34:16 -0700108static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -0800109static void ocfs2_put_super(struct super_block *sb);
110static int ocfs2_mount_volume(struct super_block *sb);
111static int ocfs2_remount(struct super_block *sb, int *flags, char *data);
112static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err);
113static int ocfs2_initialize_mem_caches(void);
114static void ocfs2_free_mem_caches(void);
115static void ocfs2_delete_osb(struct ocfs2_super *osb);
116
David Howells726c3342006-06-23 02:02:58 -0700117static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf);
Mark Fashehccd979b2005-12-15 14:31:24 -0800118
119static int ocfs2_sync_fs(struct super_block *sb, int wait);
120
121static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb);
122static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb);
Denis Chengbddb8eb32007-09-27 02:10:04 +0800123static void ocfs2_release_system_inodes(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800124static int ocfs2_check_volume(struct ocfs2_super *osb);
125static int ocfs2_verify_volume(struct ocfs2_dinode *di,
126 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800127 u32 sectsize,
128 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800129static int ocfs2_initialize_super(struct super_block *sb,
130 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -0800131 int sector_size,
132 struct ocfs2_blockcheck_stats *stats);
Mark Fashehccd979b2005-12-15 14:31:24 -0800133static int ocfs2_get_sector(struct super_block *sb,
134 struct buffer_head **bh,
135 int block,
136 int sect_size);
Mark Fashehccd979b2005-12-15 14:31:24 -0800137static struct inode *ocfs2_alloc_inode(struct super_block *sb);
138static void ocfs2_destroy_inode(struct inode *inode);
Jan Kara19ece542008-08-21 20:13:17 +0200139static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend);
140static int ocfs2_enable_quotas(struct ocfs2_super *osb);
141static void ocfs2_disable_quotas(struct ocfs2_super *osb);
Mark Fashehccd979b2005-12-15 14:31:24 -0800142
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800143static const struct super_operations ocfs2_sops = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800144 .statfs = ocfs2_statfs,
145 .alloc_inode = ocfs2_alloc_inode,
146 .destroy_inode = ocfs2_destroy_inode,
147 .drop_inode = ocfs2_drop_inode,
Al Viro066d92d2010-06-08 21:28:10 -0400148 .evict_inode = ocfs2_evict_inode,
Mark Fashehccd979b2005-12-15 14:31:24 -0800149 .sync_fs = ocfs2_sync_fs,
Mark Fashehccd979b2005-12-15 14:31:24 -0800150 .put_super = ocfs2_put_super,
151 .remount_fs = ocfs2_remount,
Sunil Mushrand5500712007-09-06 13:34:16 -0700152 .show_options = ocfs2_show_options,
Jan Kara9e33d692008-08-25 19:56:50 +0200153 .quota_read = ocfs2_quota_read,
154 .quota_write = ocfs2_quota_write,
Mark Fashehccd979b2005-12-15 14:31:24 -0800155};
156
157enum {
158 Opt_barrier,
159 Opt_err_panic,
160 Opt_err_ro,
161 Opt_intr,
162 Opt_nointr,
163 Opt_hb_none,
164 Opt_hb_local,
165 Opt_data_ordered,
166 Opt_data_writeback,
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800167 Opt_atime_quantum,
Sunil Mushranbaf46612007-06-18 17:00:24 -0700168 Opt_slot,
Mark Fashehd147b3d2007-11-07 14:40:36 -0800169 Opt_commit,
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800170 Opt_localalloc,
Mark Fasheh53fc6222007-12-20 16:49:04 -0800171 Opt_localflocks,
Joel Beckerb61817e2008-02-01 15:08:23 -0800172 Opt_stack,
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800173 Opt_user_xattr,
174 Opt_nouser_xattr,
Joel Becker12462f12008-09-03 20:03:40 -0700175 Opt_inode64,
Tiger Yanga68979b2008-11-14 11:17:52 +0800176 Opt_acl,
177 Opt_noacl,
Jan Kara19ece542008-08-21 20:13:17 +0200178 Opt_usrquota,
179 Opt_grpquota,
Mark Fashehd02f00c2009-12-07 13:10:48 -0800180 Opt_resv_level,
Mark Fasheh83f92312010-04-05 18:17:16 -0700181 Opt_dir_resv_level,
Mark Fashehccd979b2005-12-15 14:31:24 -0800182 Opt_err,
183};
184
Steven Whitehousea447c092008-10-13 10:46:57 +0100185static const match_table_t tokens = {
Mark Fashehccd979b2005-12-15 14:31:24 -0800186 {Opt_barrier, "barrier=%u"},
187 {Opt_err_panic, "errors=panic"},
188 {Opt_err_ro, "errors=remount-ro"},
189 {Opt_intr, "intr"},
190 {Opt_nointr, "nointr"},
191 {Opt_hb_none, OCFS2_HB_NONE},
192 {Opt_hb_local, OCFS2_HB_LOCAL},
193 {Opt_data_ordered, "data=ordered"},
194 {Opt_data_writeback, "data=writeback"},
Tiger Yang7f1a37e2006-11-15 15:48:42 +0800195 {Opt_atime_quantum, "atime_quantum=%u"},
Sunil Mushranbaf46612007-06-18 17:00:24 -0700196 {Opt_slot, "preferred_slot=%u"},
Mark Fashehd147b3d2007-11-07 14:40:36 -0800197 {Opt_commit, "commit=%u"},
Sunil Mushran2fbe8d12007-12-20 14:58:11 -0800198 {Opt_localalloc, "localalloc=%d"},
Mark Fasheh53fc6222007-12-20 16:49:04 -0800199 {Opt_localflocks, "localflocks"},
Joel Beckerb61817e2008-02-01 15:08:23 -0800200 {Opt_stack, "cluster_stack=%s"},
Tiger Yangcf1d6c72008-08-18 17:11:00 +0800201 {Opt_user_xattr, "user_xattr"},
202 {Opt_nouser_xattr, "nouser_xattr"},
Joel Becker12462f12008-09-03 20:03:40 -0700203 {Opt_inode64, "inode64"},
Tiger Yanga68979b2008-11-14 11:17:52 +0800204 {Opt_acl, "acl"},
205 {Opt_noacl, "noacl"},
Jan Kara19ece542008-08-21 20:13:17 +0200206 {Opt_usrquota, "usrquota"},
207 {Opt_grpquota, "grpquota"},
Mark Fashehd02f00c2009-12-07 13:10:48 -0800208 {Opt_resv_level, "resv_level=%u"},
Mark Fasheh83f92312010-04-05 18:17:16 -0700209 {Opt_dir_resv_level, "dir_resv_level=%u"},
Mark Fashehccd979b2005-12-15 14:31:24 -0800210 {Opt_err, NULL}
211};
212
Sunil Mushran50397502008-12-17 14:17:43 -0800213#ifdef CONFIG_DEBUG_FS
214static int ocfs2_osb_dump(struct ocfs2_super *osb, char *buf, int len)
215{
Sunil Mushran50397502008-12-17 14:17:43 -0800216 struct ocfs2_cluster_connection *cconn = osb->cconn;
217 struct ocfs2_recovery_map *rm = osb->recovery_map;
Sunil Mushrandf152c22009-06-22 11:40:07 -0700218 struct ocfs2_orphan_scan *os = &osb->osb_orphan_scan;
219 int i, out = 0;
Sunil Mushran50397502008-12-17 14:17:43 -0800220
221 out += snprintf(buf + out, len - out,
222 "%10s => Id: %-s Uuid: %-s Gen: 0x%X Label: %-s\n",
223 "Device", osb->dev_str, osb->uuid_str,
224 osb->fs_generation, osb->vol_label);
225
226 out += snprintf(buf + out, len - out,
227 "%10s => State: %d Flags: 0x%lX\n", "Volume",
228 atomic_read(&osb->vol_state), osb->osb_flags);
229
230 out += snprintf(buf + out, len - out,
231 "%10s => Block: %lu Cluster: %d\n", "Sizes",
232 osb->sb->s_blocksize, osb->s_clustersize);
233
234 out += snprintf(buf + out, len - out,
235 "%10s => Compat: 0x%X Incompat: 0x%X "
236 "ROcompat: 0x%X\n",
237 "Features", osb->s_feature_compat,
238 osb->s_feature_incompat, osb->s_feature_ro_compat);
239
240 out += snprintf(buf + out, len - out,
241 "%10s => Opts: 0x%lX AtimeQuanta: %u\n", "Mount",
242 osb->s_mount_opt, osb->s_atime_quantum);
243
Sunil Mushranc3d38842009-06-19 14:45:55 -0700244 if (cconn) {
245 out += snprintf(buf + out, len - out,
246 "%10s => Stack: %s Name: %*s "
247 "Version: %d.%d\n", "Cluster",
248 (*osb->osb_cluster_stack == '\0' ?
249 "o2cb" : osb->osb_cluster_stack),
250 cconn->cc_namelen, cconn->cc_name,
251 cconn->cc_version.pv_major,
252 cconn->cc_version.pv_minor);
253 }
Sunil Mushran50397502008-12-17 14:17:43 -0800254
255 spin_lock(&osb->dc_task_lock);
256 out += snprintf(buf + out, len - out,
257 "%10s => Pid: %d Count: %lu WakeSeq: %lu "
258 "WorkSeq: %lu\n", "DownCnvt",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700259 (osb->dc_task ? task_pid_nr(osb->dc_task) : -1),
260 osb->blocked_lock_count, osb->dc_wake_sequence,
261 osb->dc_work_sequence);
Sunil Mushran50397502008-12-17 14:17:43 -0800262 spin_unlock(&osb->dc_task_lock);
263
264 spin_lock(&osb->osb_lock);
265 out += snprintf(buf + out, len - out, "%10s => Pid: %d Nodes:",
266 "Recovery",
267 (osb->recovery_thread_task ?
268 task_pid_nr(osb->recovery_thread_task) : -1));
269 if (rm->rm_used == 0)
270 out += snprintf(buf + out, len - out, " None\n");
271 else {
272 for (i = 0; i < rm->rm_used; i++)
273 out += snprintf(buf + out, len - out, " %d",
274 rm->rm_entries[i]);
275 out += snprintf(buf + out, len - out, "\n");
276 }
277 spin_unlock(&osb->osb_lock);
278
279 out += snprintf(buf + out, len - out,
280 "%10s => Pid: %d Interval: %lu Needs: %d\n", "Commit",
Sunil Mushranc3d38842009-06-19 14:45:55 -0700281 (osb->commit_task ? task_pid_nr(osb->commit_task) : -1),
282 osb->osb_commit_interval,
Sunil Mushran50397502008-12-17 14:17:43 -0800283 atomic_read(&osb->needs_checkpoint));
284
285 out += snprintf(buf + out, len - out,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700286 "%10s => State: %d TxnId: %lu NumTxns: %d\n",
Sunil Mushran50397502008-12-17 14:17:43 -0800287 "Journal", osb->journal->j_state,
Sunil Mushranc3d38842009-06-19 14:45:55 -0700288 osb->journal->j_trans_id,
289 atomic_read(&osb->journal->j_num_trans));
Sunil Mushran50397502008-12-17 14:17:43 -0800290
291 out += snprintf(buf + out, len - out,
292 "%10s => GlobalAllocs: %d LocalAllocs: %d "
293 "SubAllocs: %d LAWinMoves: %d SAExtends: %d\n",
294 "Stats",
295 atomic_read(&osb->alloc_stats.bitmap_data),
296 atomic_read(&osb->alloc_stats.local_data),
297 atomic_read(&osb->alloc_stats.bg_allocs),
298 atomic_read(&osb->alloc_stats.moves),
299 atomic_read(&osb->alloc_stats.bg_extends));
300
301 out += snprintf(buf + out, len - out,
302 "%10s => State: %u Descriptor: %llu Size: %u bits "
303 "Default: %u bits\n",
304 "LocalAlloc", osb->local_alloc_state,
305 (unsigned long long)osb->la_last_gd,
306 osb->local_alloc_bits, osb->local_alloc_default_bits);
307
308 spin_lock(&osb->osb_lock);
309 out += snprintf(buf + out, len - out,
Tiger Yangb89c5422010-01-25 14:11:06 +0800310 "%10s => InodeSlot: %d StolenInodes: %d, "
311 "MetaSlot: %d StolenMeta: %d\n", "Steal",
Sunil Mushran50397502008-12-17 14:17:43 -0800312 osb->s_inode_steal_slot,
Tiger Yangb89c5422010-01-25 14:11:06 +0800313 atomic_read(&osb->s_num_inodes_stolen),
314 osb->s_meta_steal_slot,
315 atomic_read(&osb->s_num_meta_stolen));
Sunil Mushran50397502008-12-17 14:17:43 -0800316 spin_unlock(&osb->osb_lock);
317
Sunil Mushrandf152c22009-06-22 11:40:07 -0700318 out += snprintf(buf + out, len - out, "OrphanScan => ");
319 out += snprintf(buf + out, len - out, "Local: %u Global: %u ",
320 os->os_count, os->os_seqno);
321 out += snprintf(buf + out, len - out, " Last Scan: ");
322 if (atomic_read(&os->os_state) == ORPHAN_SCAN_INACTIVE)
323 out += snprintf(buf + out, len - out, "Disabled\n");
324 else
325 out += snprintf(buf + out, len - out, "%lu seconds ago\n",
326 (get_seconds() - os->os_scantime.tv_sec));
327
Sunil Mushran50397502008-12-17 14:17:43 -0800328 out += snprintf(buf + out, len - out, "%10s => %3s %10s\n",
329 "Slots", "Num", "RecoGen");
Sunil Mushran50397502008-12-17 14:17:43 -0800330 for (i = 0; i < osb->max_slots; ++i) {
331 out += snprintf(buf + out, len - out,
332 "%10s %c %3d %10d\n",
333 " ",
334 (i == osb->slot_num ? '*' : ' '),
335 i, osb->slot_recovery_generations[i]);
336 }
337
338 return out;
339}
340
341static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
342{
343 struct ocfs2_super *osb = inode->i_private;
344 char *buf = NULL;
345
346 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
347 if (!buf)
348 goto bail;
349
350 i_size_write(inode, ocfs2_osb_dump(osb, buf, PAGE_SIZE));
351
352 file->private_data = buf;
353
354 return 0;
355bail:
356 return -ENOMEM;
357}
358
359static int ocfs2_debug_release(struct inode *inode, struct file *file)
360{
361 kfree(file->private_data);
362 return 0;
363}
364
365static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
366 size_t nbytes, loff_t *ppos)
367{
368 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
369 i_size_read(file->f_mapping->host));
370}
371#else
372static int ocfs2_osb_debug_open(struct inode *inode, struct file *file)
373{
374 return 0;
375}
376static int ocfs2_debug_release(struct inode *inode, struct file *file)
377{
378 return 0;
379}
380static ssize_t ocfs2_debug_read(struct file *file, char __user *buf,
381 size_t nbytes, loff_t *ppos)
382{
383 return 0;
384}
385#endif /* CONFIG_DEBUG_FS */
386
Alexey Dobriyan828c0952009-10-01 15:43:56 -0700387static const struct file_operations ocfs2_osb_debug_fops = {
Sunil Mushran50397502008-12-17 14:17:43 -0800388 .open = ocfs2_osb_debug_open,
389 .release = ocfs2_debug_release,
390 .read = ocfs2_debug_read,
391 .llseek = generic_file_llseek,
392};
393
Mark Fashehccd979b2005-12-15 14:31:24 -0800394static int ocfs2_sync_fs(struct super_block *sb, int wait)
395{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800396 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -0800397 tid_t target;
398 struct ocfs2_super *osb = OCFS2_SB(sb);
399
Mark Fashehccd979b2005-12-15 14:31:24 -0800400 if (ocfs2_is_hard_readonly(osb))
401 return -EROFS;
402
403 if (wait) {
404 status = ocfs2_flush_truncate_log(osb);
405 if (status < 0)
406 mlog_errno(status);
407 } else {
408 ocfs2_schedule_truncate_log_flush(osb, 0);
409 }
410
Joel Becker2b4e30f2008-09-03 20:03:41 -0700411 if (jbd2_journal_start_commit(OCFS2_SB(sb)->journal->j_journal,
412 &target)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800413 if (wait)
Joel Becker2b4e30f2008-09-03 20:03:41 -0700414 jbd2_log_wait_commit(OCFS2_SB(sb)->journal->j_journal,
415 target);
Mark Fashehccd979b2005-12-15 14:31:24 -0800416 }
417 return 0;
418}
419
Jan Kara1a224ad2008-08-20 15:43:36 +0200420static int ocfs2_need_system_inode(struct ocfs2_super *osb, int ino)
421{
422 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_USRQUOTA)
423 && (ino == USER_QUOTA_SYSTEM_INODE
424 || ino == LOCAL_USER_QUOTA_SYSTEM_INODE))
425 return 0;
426 if (!OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)
427 && (ino == GROUP_QUOTA_SYSTEM_INODE
428 || ino == LOCAL_GROUP_QUOTA_SYSTEM_INODE))
429 return 0;
430 return 1;
431}
432
Mark Fashehccd979b2005-12-15 14:31:24 -0800433static int ocfs2_init_global_system_inodes(struct ocfs2_super *osb)
434{
435 struct inode *new = NULL;
436 int status = 0;
437 int i;
438
439 mlog_entry_void();
440
Jan Kara5fa06132008-01-11 00:11:45 +0100441 new = ocfs2_iget(osb, osb->root_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800442 if (IS_ERR(new)) {
443 status = PTR_ERR(new);
444 mlog_errno(status);
445 goto bail;
446 }
447 osb->root_inode = new;
448
Jan Kara5fa06132008-01-11 00:11:45 +0100449 new = ocfs2_iget(osb, osb->system_dir_blkno, OCFS2_FI_FLAG_SYSFILE, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800450 if (IS_ERR(new)) {
451 status = PTR_ERR(new);
452 mlog_errno(status);
453 goto bail;
454 }
455 osb->sys_root_inode = new;
456
457 for (i = OCFS2_FIRST_ONLINE_SYSTEM_INODE;
458 i <= OCFS2_LAST_GLOBAL_SYSTEM_INODE; i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200459 if (!ocfs2_need_system_inode(osb, i))
460 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800461 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
462 if (!new) {
463 ocfs2_release_system_inodes(osb);
464 status = -EINVAL;
465 mlog_errno(status);
466 /* FIXME: Should ERROR_RO_FS */
467 mlog(ML_ERROR, "Unable to load system inode %d, "
468 "possibly corrupt fs?", i);
469 goto bail;
470 }
471 // the array now has one ref, so drop this one
472 iput(new);
473 }
474
475bail:
476 mlog_exit(status);
477 return status;
478}
479
480static int ocfs2_init_local_system_inodes(struct ocfs2_super *osb)
481{
482 struct inode *new = NULL;
483 int status = 0;
484 int i;
485
486 mlog_entry_void();
487
488 for (i = OCFS2_LAST_GLOBAL_SYSTEM_INODE + 1;
489 i < NUM_SYSTEM_INODES;
490 i++) {
Jan Kara1a224ad2008-08-20 15:43:36 +0200491 if (!ocfs2_need_system_inode(osb, i))
492 continue;
Mark Fashehccd979b2005-12-15 14:31:24 -0800493 new = ocfs2_get_system_file_inode(osb, i, osb->slot_num);
494 if (!new) {
495 ocfs2_release_system_inodes(osb);
496 status = -EINVAL;
497 mlog(ML_ERROR, "status=%d, sysfile=%d, slot=%d\n",
498 status, i, osb->slot_num);
499 goto bail;
500 }
501 /* the array now has one ref, so drop this one */
502 iput(new);
503 }
504
505bail:
506 mlog_exit(status);
507 return status;
508}
509
Denis Chengbddb8eb32007-09-27 02:10:04 +0800510static void ocfs2_release_system_inodes(struct ocfs2_super *osb)
Mark Fashehccd979b2005-12-15 14:31:24 -0800511{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800512 int i;
Mark Fashehccd979b2005-12-15 14:31:24 -0800513 struct inode *inode;
514
515 mlog_entry_void();
516
Tao Mab4d693f2010-08-16 16:58:21 +0800517 for (i = 0; i < NUM_GLOBAL_SYSTEM_INODES; i++) {
518 inode = osb->global_system_inodes[i];
Mark Fashehccd979b2005-12-15 14:31:24 -0800519 if (inode) {
520 iput(inode);
Tao Mab4d693f2010-08-16 16:58:21 +0800521 osb->global_system_inodes[i] = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -0800522 }
523 }
524
525 inode = osb->sys_root_inode;
526 if (inode) {
527 iput(inode);
528 osb->sys_root_inode = NULL;
529 }
530
531 inode = osb->root_inode;
532 if (inode) {
533 iput(inode);
534 osb->root_inode = NULL;
535 }
536
Tao Mab4d693f2010-08-16 16:58:21 +0800537 if (!osb->local_system_inodes)
538 goto out;
539
540 for (i = 0; i < NUM_LOCAL_SYSTEM_INODES * osb->max_slots; i++) {
541 if (osb->local_system_inodes[i]) {
542 iput(osb->local_system_inodes[i]);
543 osb->local_system_inodes[i] = NULL;
544 }
545 }
546
547 kfree(osb->local_system_inodes);
548 osb->local_system_inodes = NULL;
549
550out:
Denis Chengbddb8eb32007-09-27 02:10:04 +0800551 mlog_exit(0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800552}
553
554/* We're allocating fs objects, use GFP_NOFS */
555static struct inode *ocfs2_alloc_inode(struct super_block *sb)
556{
557 struct ocfs2_inode_info *oi;
558
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800559 oi = kmem_cache_alloc(ocfs2_inode_cachep, GFP_NOFS);
Mark Fashehccd979b2005-12-15 14:31:24 -0800560 if (!oi)
561 return NULL;
562
Joel Becker2b4e30f2008-09-03 20:03:41 -0700563 jbd2_journal_init_jbd_inode(&oi->ip_jinode, &oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -0800564 return &oi->vfs_inode;
565}
566
567static void ocfs2_destroy_inode(struct inode *inode)
568{
569 kmem_cache_free(ocfs2_inode_cachep, OCFS2_I(inode));
570}
571
Mark Fasheh5a254032007-07-20 12:56:16 -0700572static unsigned long long ocfs2_max_file_offset(unsigned int bbits,
573 unsigned int cbits)
Mark Fashehccd979b2005-12-15 14:31:24 -0800574{
Mark Fasheh5a254032007-07-20 12:56:16 -0700575 unsigned int bytes = 1 << cbits;
576 unsigned int trim = bytes;
577 unsigned int bitshift = 32;
Mark Fashehccd979b2005-12-15 14:31:24 -0800578
Mark Fasheh5a254032007-07-20 12:56:16 -0700579 /*
580 * i_size and all block offsets in ocfs2 are always 64 bits
581 * wide. i_clusters is 32 bits, in cluster-sized units. So on
582 * 64 bit platforms, cluster size will be the limiting factor.
Mark Fashehccd979b2005-12-15 14:31:24 -0800583 */
584
585#if BITS_PER_LONG == 32
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +0200586# if defined(CONFIG_LBDAF)
Alexey Dobriyan2ecd05a2006-10-11 01:22:05 -0700587 BUILD_BUG_ON(sizeof(sector_t) != 8);
Mark Fasheh5a254032007-07-20 12:56:16 -0700588 /*
589 * We might be limited by page cache size.
590 */
591 if (bytes > PAGE_CACHE_SIZE) {
592 bytes = PAGE_CACHE_SIZE;
593 trim = 1;
594 /*
595 * Shift by 31 here so that we don't get larger than
596 * MAX_LFS_FILESIZE
597 */
598 bitshift = 31;
599 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800600# else
Mark Fasheh5a254032007-07-20 12:56:16 -0700601 /*
602 * We are limited by the size of sector_t. Use block size, as
603 * that's what we expose to the VFS.
604 */
605 bytes = 1 << bbits;
606 trim = 1;
607 bitshift = 31;
Mark Fashehccd979b2005-12-15 14:31:24 -0800608# endif
609#endif
610
Mark Fasheh5a254032007-07-20 12:56:16 -0700611 /*
612 * Trim by a whole cluster when we can actually approach the
613 * on-disk limits. Otherwise we can overflow i_clusters when
614 * an extent start is at the max offset.
615 */
616 return (((unsigned long long)bytes) << bitshift) - trim;
Mark Fashehccd979b2005-12-15 14:31:24 -0800617}
618
619static int ocfs2_remount(struct super_block *sb, int *flags, char *data)
620{
621 int incompat_features;
622 int ret = 0;
Tiger Yangc0123ad2007-09-08 00:16:10 +0800623 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -0800624 struct ocfs2_super *osb = OCFS2_SB(sb);
625
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200626 lock_kernel();
627
Jan Kara5297aad2009-10-15 14:54:04 +0200628 if (!ocfs2_parse_options(sb, data, &parsed_options, 1) ||
629 !ocfs2_check_set_options(sb, &parsed_options)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800630 ret = -EINVAL;
631 goto out;
632 }
633
634 if ((osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800635 (parsed_options.mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800636 ret = -EINVAL;
637 mlog(ML_ERROR, "Cannot change heartbeat mode on remount\n");
638 goto out;
639 }
640
641 if ((osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK) !=
Tiger Yangc0123ad2007-09-08 00:16:10 +0800642 (parsed_options.mount_opt & OCFS2_MOUNT_DATA_WRITEBACK)) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800643 ret = -EINVAL;
644 mlog(ML_ERROR, "Cannot change data mode on remount\n");
645 goto out;
646 }
647
Joel Becker12462f12008-09-03 20:03:40 -0700648 /* Probably don't want this on remount; it might
649 * mess with other nodes */
650 if (!(osb->s_mount_opt & OCFS2_MOUNT_INODE64) &&
651 (parsed_options.mount_opt & OCFS2_MOUNT_INODE64)) {
652 ret = -EINVAL;
653 mlog(ML_ERROR, "Cannot enable inode64 on remount\n");
654 goto out;
655 }
656
Mark Fashehccd979b2005-12-15 14:31:24 -0800657 /* We're going to/from readonly mode. */
658 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY)) {
Jan Kara19ece542008-08-21 20:13:17 +0200659 /* Disable quota accounting before remounting RO */
660 if (*flags & MS_RDONLY) {
661 ret = ocfs2_susp_quotas(osb, 0);
662 if (ret < 0)
663 goto out;
664 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800665 /* Lock here so the check of HARD_RO and the potential
666 * setting of SOFT_RO is atomic. */
667 spin_lock(&osb->osb_lock);
668 if (osb->osb_flags & OCFS2_OSB_HARD_RO) {
669 mlog(ML_ERROR, "Remount on readonly device is forbidden.\n");
670 ret = -EROFS;
671 goto unlock_osb;
672 }
673
674 if (*flags & MS_RDONLY) {
675 mlog(0, "Going to ro mode.\n");
676 sb->s_flags |= MS_RDONLY;
677 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
678 } else {
679 mlog(0, "Making ro filesystem writeable.\n");
680
681 if (osb->osb_flags & OCFS2_OSB_ERROR_FS) {
682 mlog(ML_ERROR, "Cannot remount RDWR "
683 "filesystem due to previous errors.\n");
684 ret = -EROFS;
685 goto unlock_osb;
686 }
687 incompat_features = OCFS2_HAS_RO_COMPAT_FEATURE(sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP);
688 if (incompat_features) {
689 mlog(ML_ERROR, "Cannot remount RDWR because "
690 "of unsupported optional features "
691 "(%x).\n", incompat_features);
692 ret = -EINVAL;
693 goto unlock_osb;
694 }
695 sb->s_flags &= ~MS_RDONLY;
696 osb->osb_flags &= ~OCFS2_OSB_SOFT_RO;
697 }
698unlock_osb:
699 spin_unlock(&osb->osb_lock);
Jan Kara19ece542008-08-21 20:13:17 +0200700 /* Enable quota accounting after remounting RW */
701 if (!ret && !(*flags & MS_RDONLY)) {
702 if (sb_any_quota_suspended(sb))
703 ret = ocfs2_susp_quotas(osb, 1);
704 else
705 ret = ocfs2_enable_quotas(osb);
706 if (ret < 0) {
707 /* Return back changes... */
708 spin_lock(&osb->osb_lock);
709 sb->s_flags |= MS_RDONLY;
710 osb->osb_flags |= OCFS2_OSB_SOFT_RO;
711 spin_unlock(&osb->osb_lock);
712 goto out;
713 }
714 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800715 }
716
717 if (!ret) {
Mark Fashehccd979b2005-12-15 14:31:24 -0800718 /* Only save off the new mount options in case of a successful
719 * remount. */
Tiger Yangc0123ad2007-09-08 00:16:10 +0800720 osb->s_mount_opt = parsed_options.mount_opt;
721 osb->s_atime_quantum = parsed_options.atime_quantum;
722 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -0800723 if (parsed_options.commit_interval)
724 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fashehe001e792007-11-07 14:21:45 -0800725
726 if (!ocfs2_is_hard_readonly(osb))
727 ocfs2_set_journal_params(osb);
Jan Kara57b09bb2009-10-15 14:54:05 +0200728
729 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
730 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ?
731 MS_POSIXACL : 0);
Mark Fashehccd979b2005-12-15 14:31:24 -0800732 }
733out:
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200734 unlock_kernel();
Mark Fashehccd979b2005-12-15 14:31:24 -0800735 return ret;
736}
737
738static int ocfs2_sb_probe(struct super_block *sb,
739 struct buffer_head **bh,
Joel Becker73be1922009-01-06 14:57:08 -0800740 int *sector_size,
741 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -0800742{
Denis Chengbddb8eb32007-09-27 02:10:04 +0800743 int status, tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800744 struct ocfs1_vol_disk_hdr *hdr;
745 struct ocfs2_dinode *di;
746 int blksize;
747
748 *bh = NULL;
749
750 /* may be > 512 */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400751 *sector_size = bdev_logical_block_size(sb->s_bdev);
Mark Fashehccd979b2005-12-15 14:31:24 -0800752 if (*sector_size > OCFS2_MAX_BLOCKSIZE) {
753 mlog(ML_ERROR, "Hardware sector size too large: %d (max=%d)\n",
754 *sector_size, OCFS2_MAX_BLOCKSIZE);
755 status = -EINVAL;
756 goto bail;
757 }
758
759 /* Can this really happen? */
760 if (*sector_size < OCFS2_MIN_BLOCKSIZE)
761 *sector_size = OCFS2_MIN_BLOCKSIZE;
762
763 /* check block zero for old format */
764 status = ocfs2_get_sector(sb, bh, 0, *sector_size);
765 if (status < 0) {
766 mlog_errno(status);
767 goto bail;
768 }
769 hdr = (struct ocfs1_vol_disk_hdr *) (*bh)->b_data;
770 if (hdr->major_version == OCFS1_MAJOR_VERSION) {
771 mlog(ML_ERROR, "incompatible version: %u.%u\n",
772 hdr->major_version, hdr->minor_version);
773 status = -EINVAL;
774 }
775 if (memcmp(hdr->signature, OCFS1_VOLUME_SIGNATURE,
776 strlen(OCFS1_VOLUME_SIGNATURE)) == 0) {
777 mlog(ML_ERROR, "incompatible volume signature: %8s\n",
778 hdr->signature);
779 status = -EINVAL;
780 }
781 brelse(*bh);
782 *bh = NULL;
783 if (status < 0) {
784 mlog(ML_ERROR, "This is an ocfs v1 filesystem which must be "
785 "upgraded before mounting with ocfs v2\n");
786 goto bail;
787 }
788
789 /*
790 * Now check at magic offset for 512, 1024, 2048, 4096
791 * blocksizes. 4096 is the maximum blocksize because it is
792 * the minimum clustersize.
793 */
794 status = -EINVAL;
795 for (blksize = *sector_size;
796 blksize <= OCFS2_MAX_BLOCKSIZE;
797 blksize <<= 1) {
798 tmpstat = ocfs2_get_sector(sb, bh,
799 OCFS2_SUPER_BLOCK_BLKNO,
800 blksize);
801 if (tmpstat < 0) {
802 status = tmpstat;
803 mlog_errno(status);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700804 break;
Mark Fashehccd979b2005-12-15 14:31:24 -0800805 }
806 di = (struct ocfs2_dinode *) (*bh)->b_data;
Joel Becker73be1922009-01-06 14:57:08 -0800807 memset(stats, 0, sizeof(struct ocfs2_blockcheck_stats));
Jan Kara1c1d9792009-07-22 13:17:19 +0200808 spin_lock_init(&stats->b_lock);
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700809 tmpstat = ocfs2_verify_volume(di, *bh, blksize, stats);
810 if (tmpstat < 0) {
811 brelse(*bh);
812 *bh = NULL;
813 }
814 if (tmpstat != -EAGAIN) {
815 status = tmpstat;
Mark Fashehccd979b2005-12-15 14:31:24 -0800816 break;
Joel Beckerfb5cbe92009-10-28 22:28:24 -0700817 }
Mark Fashehccd979b2005-12-15 14:31:24 -0800818 }
819
820bail:
821 return status;
822}
823
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800824static int ocfs2_verify_heartbeat(struct ocfs2_super *osb)
825{
826 if (ocfs2_mount_local(osb)) {
827 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
828 mlog(ML_ERROR, "Cannot heartbeat on a locally "
829 "mounted device.\n");
830 return -EINVAL;
831 }
832 }
833
Joel Beckerb61817e2008-02-01 15:08:23 -0800834 if (ocfs2_userspace_stack(osb)) {
835 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
836 mlog(ML_ERROR, "Userspace stack expected, but "
837 "o2cb heartbeat arguments passed to mount\n");
838 return -EINVAL;
839 }
840 }
841
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800842 if (!(osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL)) {
Joel Beckerb61817e2008-02-01 15:08:23 -0800843 if (!ocfs2_mount_local(osb) && !ocfs2_is_hard_readonly(osb) &&
844 !ocfs2_userspace_stack(osb)) {
Sunil Mushranc271c5c2006-12-05 17:56:35 -0800845 mlog(ML_ERROR, "Heartbeat has to be started to mount "
846 "a read-write clustered device.\n");
847 return -EINVAL;
848 }
849 }
850
851 return 0;
852}
853
Joel Beckerb61817e2008-02-01 15:08:23 -0800854/*
855 * If we're using a userspace stack, mount should have passed
856 * a name that matches the disk. If not, mount should not
857 * have passed a stack.
858 */
859static int ocfs2_verify_userspace_stack(struct ocfs2_super *osb,
860 struct mount_options *mopt)
861{
862 if (!ocfs2_userspace_stack(osb) && mopt->cluster_stack[0]) {
863 mlog(ML_ERROR,
864 "cluster stack passed to mount, but this filesystem "
865 "does not support it\n");
866 return -EINVAL;
867 }
868
869 if (ocfs2_userspace_stack(osb) &&
870 strncmp(osb->osb_cluster_stack, mopt->cluster_stack,
871 OCFS2_STACK_LABEL_LEN)) {
872 mlog(ML_ERROR,
873 "cluster stack passed to mount (\"%s\") does not "
874 "match the filesystem (\"%s\")\n",
875 mopt->cluster_stack,
876 osb->osb_cluster_stack);
877 return -EINVAL;
878 }
879
880 return 0;
881}
882
Jan Kara19ece542008-08-21 20:13:17 +0200883static int ocfs2_susp_quotas(struct ocfs2_super *osb, int unsuspend)
884{
885 int type;
886 struct super_block *sb = osb->sb;
887 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
888 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
889 int status = 0;
890
891 for (type = 0; type < MAXQUOTAS; type++) {
892 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
893 continue;
894 if (unsuspend)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400895 status = dquot_resume(sb, type);
Jan Karaeea7feb2010-05-13 22:14:53 +0200896 else {
897 struct ocfs2_mem_dqinfo *oinfo;
898
899 /* Cancel periodic syncing before suspending */
900 oinfo = sb_dqinfo(sb, type)->dqi_priv;
901 cancel_delayed_work_sync(&oinfo->dqi_sync_work);
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400902 status = dquot_suspend(sb, type);
Jan Karaeea7feb2010-05-13 22:14:53 +0200903 }
Jan Kara19ece542008-08-21 20:13:17 +0200904 if (status < 0)
905 break;
906 }
907 if (status < 0)
908 mlog(ML_ERROR, "Failed to suspend/unsuspend quotas on "
909 "remount (error = %d).\n", status);
910 return status;
911}
912
913static int ocfs2_enable_quotas(struct ocfs2_super *osb)
914{
915 struct inode *inode[MAXQUOTAS] = { NULL, NULL };
916 struct super_block *sb = osb->sb;
917 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
918 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
919 unsigned int ino[MAXQUOTAS] = { LOCAL_USER_QUOTA_SYSTEM_INODE,
920 LOCAL_GROUP_QUOTA_SYSTEM_INODE };
921 int status;
922 int type;
923
924 sb_dqopt(sb)->flags |= DQUOT_QUOTA_SYS_FILE | DQUOT_NEGATIVE_USAGE;
925 for (type = 0; type < MAXQUOTAS; type++) {
926 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
927 continue;
928 inode[type] = ocfs2_get_system_file_inode(osb, ino[type],
929 osb->slot_num);
930 if (!inode[type]) {
931 status = -ENOENT;
932 goto out_quota_off;
933 }
Christoph Hellwig287a8092010-05-19 07:16:45 -0400934 status = dquot_enable(inode[type], type, QFMT_OCFS2,
935 DQUOT_USAGE_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200936 if (status < 0)
937 goto out_quota_off;
938 }
939
940 for (type = 0; type < MAXQUOTAS; type++)
941 iput(inode[type]);
942 return 0;
943out_quota_off:
944 ocfs2_disable_quotas(osb);
945 for (type = 0; type < MAXQUOTAS; type++)
946 iput(inode[type]);
947 mlog_errno(status);
948 return status;
949}
950
951static void ocfs2_disable_quotas(struct ocfs2_super *osb)
952{
953 int type;
954 struct inode *inode;
955 struct super_block *sb = osb->sb;
Jan Karac06bcbf2010-05-13 22:14:53 +0200956 struct ocfs2_mem_dqinfo *oinfo;
Jan Kara19ece542008-08-21 20:13:17 +0200957
958 /* We mostly ignore errors in this function because there's not much
959 * we can do when we see them */
960 for (type = 0; type < MAXQUOTAS; type++) {
961 if (!sb_has_quota_loaded(sb, type))
962 continue;
Jan Karac06bcbf2010-05-13 22:14:53 +0200963 /* Cancel periodic syncing before we grab dqonoff_mutex */
964 oinfo = sb_dqinfo(sb, type)->dqi_priv;
965 cancel_delayed_work_sync(&oinfo->dqi_sync_work);
Jan Kara19ece542008-08-21 20:13:17 +0200966 inode = igrab(sb->s_dquot.files[type]);
967 /* Turn off quotas. This will remove all dquot structures from
968 * memory and so they will be automatically synced to global
969 * quota files */
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400970 dquot_disable(sb, type, DQUOT_USAGE_ENABLED |
971 DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200972 if (!inode)
973 continue;
974 iput(inode);
975 }
976}
977
978/* Handle quota on quotactl */
979static int ocfs2_quota_on(struct super_block *sb, int type, int format_id,
Christoph Hellwig307ae182010-05-19 07:16:43 -0400980 char *path)
Jan Kara19ece542008-08-21 20:13:17 +0200981{
982 unsigned int feature[MAXQUOTAS] = { OCFS2_FEATURE_RO_COMPAT_USRQUOTA,
983 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA};
984
985 if (!OCFS2_HAS_RO_COMPAT_FEATURE(sb, feature[type]))
986 return -EINVAL;
987
Christoph Hellwig287a8092010-05-19 07:16:45 -0400988 return dquot_enable(sb_dqopt(sb)->files[type], type,
989 format_id, DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200990}
991
992/* Handle quota off quotactl */
Christoph Hellwig307ae182010-05-19 07:16:43 -0400993static int ocfs2_quota_off(struct super_block *sb, int type)
Jan Kara19ece542008-08-21 20:13:17 +0200994{
Christoph Hellwig0f0dd622010-05-19 07:16:41 -0400995 return dquot_disable(sb, type, DQUOT_LIMITS_ENABLED);
Jan Kara19ece542008-08-21 20:13:17 +0200996}
997
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700998static const struct quotactl_ops ocfs2_quotactl_ops = {
Jan Kara19ece542008-08-21 20:13:17 +0200999 .quota_on = ocfs2_quota_on,
1000 .quota_off = ocfs2_quota_off,
Christoph Hellwig287a8092010-05-19 07:16:45 -04001001 .quota_sync = dquot_quota_sync,
1002 .get_info = dquot_get_dqinfo,
1003 .set_info = dquot_set_dqinfo,
1004 .get_dqblk = dquot_get_dqblk,
1005 .set_dqblk = dquot_set_dqblk,
Jan Kara19ece542008-08-21 20:13:17 +02001006};
1007
Mark Fashehccd979b2005-12-15 14:31:24 -08001008static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
1009{
1010 struct dentry *root;
1011 int status, sector_size;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001012 struct mount_options parsed_options;
Mark Fashehccd979b2005-12-15 14:31:24 -08001013 struct inode *inode = NULL;
1014 struct ocfs2_super *osb = NULL;
1015 struct buffer_head *bh = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001016 char nodestr[8];
Joel Becker73be1922009-01-06 14:57:08 -08001017 struct ocfs2_blockcheck_stats stats;
Mark Fashehccd979b2005-12-15 14:31:24 -08001018
1019 mlog_entry("%p, %p, %i", sb, data, silent);
1020
Tiger Yangc0123ad2007-09-08 00:16:10 +08001021 if (!ocfs2_parse_options(sb, data, &parsed_options, 0)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001022 status = -EINVAL;
1023 goto read_super_error;
1024 }
1025
1026 /* probe for superblock */
Joel Becker73be1922009-01-06 14:57:08 -08001027 status = ocfs2_sb_probe(sb, &bh, &sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001028 if (status < 0) {
1029 mlog(ML_ERROR, "superblock probe failed!\n");
1030 goto read_super_error;
1031 }
1032
Joel Becker73be1922009-01-06 14:57:08 -08001033 status = ocfs2_initialize_super(sb, bh, sector_size, &stats);
Mark Fashehccd979b2005-12-15 14:31:24 -08001034 osb = OCFS2_SB(sb);
1035 if (status < 0) {
1036 mlog_errno(status);
1037 goto read_super_error;
1038 }
1039 brelse(bh);
1040 bh = NULL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001041
Jan Kara5297aad2009-10-15 14:54:04 +02001042 if (!ocfs2_check_set_options(sb, &parsed_options)) {
1043 status = -EINVAL;
1044 goto read_super_error;
1045 }
Tiger Yangc0123ad2007-09-08 00:16:10 +08001046 osb->s_mount_opt = parsed_options.mount_opt;
1047 osb->s_atime_quantum = parsed_options.atime_quantum;
1048 osb->preferred_slot = parsed_options.slot;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001049 osb->osb_commit_interval = parsed_options.commit_interval;
Mark Fasheh73c8a802010-04-05 18:17:13 -07001050
1051 ocfs2_la_set_sizes(osb, parsed_options.localalloc_opt);
Mark Fashehd02f00c2009-12-07 13:10:48 -08001052 osb->osb_resv_level = parsed_options.resv_level;
Mark Fasheh83f92312010-04-05 18:17:16 -07001053 osb->osb_dir_resv_level = parsed_options.resv_level;
1054 if (parsed_options.dir_resv_level == -1)
1055 osb->osb_dir_resv_level = parsed_options.resv_level;
1056 else
1057 osb->osb_dir_resv_level = parsed_options.dir_resv_level;
Mark Fashehccd979b2005-12-15 14:31:24 -08001058
Joel Beckerb61817e2008-02-01 15:08:23 -08001059 status = ocfs2_verify_userspace_stack(osb, &parsed_options);
1060 if (status)
1061 goto read_super_error;
1062
Mark Fashehccd979b2005-12-15 14:31:24 -08001063 sb->s_magic = OCFS2_SUPER_MAGIC;
1064
Tiger Yanga68979b2008-11-14 11:17:52 +08001065 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1066 ((osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1067
Mark Fashehccd979b2005-12-15 14:31:24 -08001068 /* Hard readonly mode only if: bdev_read_only, MS_RDONLY,
1069 * heartbeat=none */
1070 if (bdev_read_only(sb->s_bdev)) {
1071 if (!(sb->s_flags & MS_RDONLY)) {
1072 status = -EACCES;
1073 mlog(ML_ERROR, "Readonly device detected but readonly "
1074 "mount was not specified.\n");
1075 goto read_super_error;
1076 }
1077
1078 /* You should not be able to start a local heartbeat
1079 * on a readonly device. */
1080 if (osb->s_mount_opt & OCFS2_MOUNT_HB_LOCAL) {
1081 status = -EROFS;
1082 mlog(ML_ERROR, "Local heartbeat specified on readonly "
1083 "device.\n");
1084 goto read_super_error;
1085 }
1086
1087 status = ocfs2_check_journals_nolocks(osb);
1088 if (status < 0) {
1089 if (status == -EROFS)
1090 mlog(ML_ERROR, "Recovery required on readonly "
1091 "file system, but write access is "
1092 "unavailable.\n");
1093 else
Sunil Mushran2bd63212010-01-25 16:57:38 -08001094 mlog_errno(status);
Mark Fashehccd979b2005-12-15 14:31:24 -08001095 goto read_super_error;
1096 }
1097
1098 ocfs2_set_ro_flag(osb, 1);
1099
1100 printk(KERN_NOTICE "Readonly device detected. No cluster "
1101 "services will be utilized for this mount. Recovery "
1102 "will be skipped.\n");
1103 }
1104
1105 if (!ocfs2_is_hard_readonly(osb)) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001106 if (sb->s_flags & MS_RDONLY)
1107 ocfs2_set_ro_flag(osb, 0);
1108 }
1109
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001110 status = ocfs2_verify_heartbeat(osb);
1111 if (status < 0) {
1112 mlog_errno(status);
1113 goto read_super_error;
1114 }
1115
Mark Fashehccd979b2005-12-15 14:31:24 -08001116 osb->osb_debug_root = debugfs_create_dir(osb->uuid_str,
1117 ocfs2_debugfs_root);
1118 if (!osb->osb_debug_root) {
1119 status = -EINVAL;
1120 mlog(ML_ERROR, "Unable to create per-mount debugfs root.\n");
1121 goto read_super_error;
1122 }
1123
Sunil Mushran50397502008-12-17 14:17:43 -08001124 osb->osb_ctxt = debugfs_create_file("fs_state", S_IFREG|S_IRUSR,
1125 osb->osb_debug_root,
1126 osb,
1127 &ocfs2_osb_debug_fops);
1128 if (!osb->osb_ctxt) {
1129 status = -EINVAL;
1130 mlog_errno(status);
1131 goto read_super_error;
1132 }
1133
Joel Becker73be1922009-01-06 14:57:08 -08001134 if (ocfs2_meta_ecc(osb)) {
1135 status = ocfs2_blockcheck_stats_debugfs_install(
1136 &osb->osb_ecc_stats,
1137 osb->osb_debug_root);
1138 if (status) {
1139 mlog(ML_ERROR,
1140 "Unable to create blockcheck statistics "
1141 "files\n");
1142 goto read_super_error;
1143 }
1144 }
1145
Mark Fashehccd979b2005-12-15 14:31:24 -08001146 status = ocfs2_mount_volume(sb);
1147 if (osb->root_inode)
1148 inode = igrab(osb->root_inode);
1149
1150 if (status < 0)
1151 goto read_super_error;
1152
1153 if (!inode) {
1154 status = -EIO;
1155 mlog_errno(status);
1156 goto read_super_error;
1157 }
1158
1159 root = d_alloc_root(inode);
1160 if (!root) {
1161 status = -ENOMEM;
1162 mlog_errno(status);
1163 goto read_super_error;
1164 }
1165
1166 sb->s_root = root;
1167
1168 ocfs2_complete_mount_recovery(osb);
1169
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001170 if (ocfs2_mount_local(osb))
1171 snprintf(nodestr, sizeof(nodestr), "local");
1172 else
Joel Becker19fdb622008-01-30 15:38:24 -08001173 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001174
1175 printk(KERN_INFO "ocfs2: Mounting device (%s) on (node %s, slot %d) "
Sunil Mushran781ee3e2006-04-27 16:41:31 -07001176 "with %s data mode.\n",
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001177 osb->dev_str, nodestr, osb->slot_num,
Mark Fashehccd979b2005-12-15 14:31:24 -08001178 osb->s_mount_opt & OCFS2_MOUNT_DATA_WRITEBACK ? "writeback" :
1179 "ordered");
1180
1181 atomic_set(&osb->vol_state, VOLUME_MOUNTED);
1182 wake_up(&osb->osb_mount_event);
1183
Jan Kara19ece542008-08-21 20:13:17 +02001184 /* Now we can initialize quotas because we can afford to wait
1185 * for cluster locks recovery now. That also means that truncation
1186 * log recovery can happen but that waits for proper quota setup */
1187 if (!(sb->s_flags & MS_RDONLY)) {
1188 status = ocfs2_enable_quotas(osb);
1189 if (status < 0) {
1190 /* We have to err-out specially here because
1191 * s_root is already set */
1192 mlog_errno(status);
1193 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1194 wake_up(&osb->osb_mount_event);
1195 mlog_exit(status);
1196 return status;
1197 }
1198 }
1199
1200 ocfs2_complete_quota_recovery(osb);
1201
1202 /* Now we wake up again for processes waiting for quotas */
1203 atomic_set(&osb->vol_state, VOLUME_MOUNTED_QUOTAS);
1204 wake_up(&osb->osb_mount_event);
1205
Sunil Mushrandf152c22009-06-22 11:40:07 -07001206 /* Start this when the mount is almost sure of being successful */
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04001207 ocfs2_orphan_scan_start(osb);
Sunil Mushrandf152c22009-06-22 11:40:07 -07001208
Mark Fashehccd979b2005-12-15 14:31:24 -08001209 mlog_exit(status);
1210 return status;
1211
1212read_super_error:
Mark Fasheha81cb882008-10-07 14:25:16 -07001213 brelse(bh);
Mark Fashehccd979b2005-12-15 14:31:24 -08001214
1215 if (inode)
1216 iput(inode);
1217
1218 if (osb) {
1219 atomic_set(&osb->vol_state, VOLUME_DISABLED);
1220 wake_up(&osb->osb_mount_event);
1221 ocfs2_dismount_volume(sb, 1);
1222 }
1223
1224 mlog_exit(status);
1225 return status;
1226}
1227
David Howells454e2392006-06-23 02:02:57 -07001228static int ocfs2_get_sb(struct file_system_type *fs_type,
1229 int flags,
1230 const char *dev_name,
1231 void *data,
1232 struct vfsmount *mnt)
Mark Fashehccd979b2005-12-15 14:31:24 -08001233{
David Howells454e2392006-06-23 02:02:57 -07001234 return get_sb_bdev(fs_type, flags, dev_name, data, ocfs2_fill_super,
1235 mnt);
Mark Fashehccd979b2005-12-15 14:31:24 -08001236}
1237
Jan Karaf7b1aa62009-07-20 12:12:36 +02001238static void ocfs2_kill_sb(struct super_block *sb)
1239{
1240 struct ocfs2_super *osb = OCFS2_SB(sb);
1241
Jan Kara5fd13182009-07-30 17:01:53 +02001242 /* Failed mount? */
1243 if (!osb || atomic_read(&osb->vol_state) == VOLUME_DISABLED)
1244 goto out;
1245
Jan Karaf7b1aa62009-07-20 12:12:36 +02001246 /* Prevent further queueing of inode drop events */
1247 spin_lock(&dentry_list_lock);
1248 ocfs2_set_osb_flag(osb, OCFS2_OSB_DROP_DENTRY_LOCK_IMMED);
1249 spin_unlock(&dentry_list_lock);
1250 /* Wait for work to finish and/or remove it */
1251 cancel_work_sync(&osb->dentry_lock_work);
Jan Kara5fd13182009-07-30 17:01:53 +02001252out:
Jan Karaf7b1aa62009-07-20 12:12:36 +02001253 kill_block_super(sb);
1254}
1255
Mark Fashehccd979b2005-12-15 14:31:24 -08001256static struct file_system_type ocfs2_fs_type = {
1257 .owner = THIS_MODULE,
1258 .name = "ocfs2",
1259 .get_sb = ocfs2_get_sb, /* is this called when we mount
1260 * the fs? */
Jan Karaf7b1aa62009-07-20 12:12:36 +02001261 .kill_sb = ocfs2_kill_sb,
1262
Mark Fasheh1ba9da22006-09-08 14:22:54 -07001263 .fs_flags = FS_REQUIRES_DEV|FS_RENAME_DOES_D_MOVE,
Mark Fashehccd979b2005-12-15 14:31:24 -08001264 .next = NULL
1265};
1266
Jan Kara5297aad2009-10-15 14:54:04 +02001267static int ocfs2_check_set_options(struct super_block *sb,
1268 struct mount_options *options)
1269{
1270 if (options->mount_opt & OCFS2_MOUNT_USRQUOTA &&
1271 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1272 OCFS2_FEATURE_RO_COMPAT_USRQUOTA)) {
1273 mlog(ML_ERROR, "User quotas were requested, but this "
1274 "filesystem does not have the feature enabled.\n");
1275 return 0;
1276 }
1277 if (options->mount_opt & OCFS2_MOUNT_GRPQUOTA &&
1278 !OCFS2_HAS_RO_COMPAT_FEATURE(sb,
1279 OCFS2_FEATURE_RO_COMPAT_GRPQUOTA)) {
1280 mlog(ML_ERROR, "Group quotas were requested, but this "
1281 "filesystem does not have the feature enabled.\n");
1282 return 0;
1283 }
1284 if (options->mount_opt & OCFS2_MOUNT_POSIX_ACL &&
1285 !OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR)) {
1286 mlog(ML_ERROR, "ACL support requested but extended attributes "
1287 "feature is not enabled\n");
1288 return 0;
1289 }
1290 /* No ACL setting specified? Use XATTR feature... */
1291 if (!(options->mount_opt & (OCFS2_MOUNT_POSIX_ACL |
1292 OCFS2_MOUNT_NO_POSIX_ACL))) {
1293 if (OCFS2_HAS_INCOMPAT_FEATURE(sb, OCFS2_FEATURE_INCOMPAT_XATTR))
1294 options->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
1295 else
1296 options->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
1297 }
1298 return 1;
1299}
1300
Mark Fashehccd979b2005-12-15 14:31:24 -08001301static int ocfs2_parse_options(struct super_block *sb,
1302 char *options,
Tiger Yangc0123ad2007-09-08 00:16:10 +08001303 struct mount_options *mopt,
Mark Fashehccd979b2005-12-15 14:31:24 -08001304 int is_remount)
1305{
1306 int status;
1307 char *p;
1308
1309 mlog_entry("remount: %d, options: \"%s\"\n", is_remount,
1310 options ? options : "(none)");
1311
Mark Fashehd147b3d2007-11-07 14:40:36 -08001312 mopt->commit_interval = 0;
Sunil Mushran4b37fcb2010-04-13 18:00:31 -07001313 mopt->mount_opt = OCFS2_MOUNT_NOINTR;
Tiger Yangc0123ad2007-09-08 00:16:10 +08001314 mopt->atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
1315 mopt->slot = OCFS2_INVALID_SLOT;
Mark Fasheh73c8a802010-04-05 18:17:13 -07001316 mopt->localalloc_opt = -1;
Joel Beckerb61817e2008-02-01 15:08:23 -08001317 mopt->cluster_stack[0] = '\0';
Mark Fashehd02f00c2009-12-07 13:10:48 -08001318 mopt->resv_level = OCFS2_DEFAULT_RESV_LEVEL;
Mark Fasheh83f92312010-04-05 18:17:16 -07001319 mopt->dir_resv_level = -1;
Mark Fashehccd979b2005-12-15 14:31:24 -08001320
1321 if (!options) {
1322 status = 1;
1323 goto bail;
1324 }
1325
1326 while ((p = strsep(&options, ",")) != NULL) {
1327 int token, option;
1328 substring_t args[MAX_OPT_ARGS];
1329
1330 if (!*p)
1331 continue;
1332
1333 token = match_token(p, tokens, args);
1334 switch (token) {
1335 case Opt_hb_local:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001336 mopt->mount_opt |= OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001337 break;
1338 case Opt_hb_none:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001339 mopt->mount_opt &= ~OCFS2_MOUNT_HB_LOCAL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001340 break;
1341 case Opt_barrier:
1342 if (match_int(&args[0], &option)) {
1343 status = 0;
1344 goto bail;
1345 }
1346 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001347 mopt->mount_opt |= OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001348 else
Tiger Yangc0123ad2007-09-08 00:16:10 +08001349 mopt->mount_opt &= ~OCFS2_MOUNT_BARRIER;
Mark Fashehccd979b2005-12-15 14:31:24 -08001350 break;
1351 case Opt_intr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001352 mopt->mount_opt &= ~OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001353 break;
1354 case Opt_nointr:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001355 mopt->mount_opt |= OCFS2_MOUNT_NOINTR;
Mark Fashehccd979b2005-12-15 14:31:24 -08001356 break;
1357 case Opt_err_panic:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001358 mopt->mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001359 break;
1360 case Opt_err_ro:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001361 mopt->mount_opt &= ~OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08001362 break;
1363 case Opt_data_ordered:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001364 mopt->mount_opt &= ~OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001365 break;
1366 case Opt_data_writeback:
Tiger Yangc0123ad2007-09-08 00:16:10 +08001367 mopt->mount_opt |= OCFS2_MOUNT_DATA_WRITEBACK;
Mark Fashehccd979b2005-12-15 14:31:24 -08001368 break;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001369 case Opt_user_xattr:
1370 mopt->mount_opt &= ~OCFS2_MOUNT_NOUSERXATTR;
1371 break;
1372 case Opt_nouser_xattr:
1373 mopt->mount_opt |= OCFS2_MOUNT_NOUSERXATTR;
1374 break;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001375 case Opt_atime_quantum:
1376 if (match_int(&args[0], &option)) {
1377 status = 0;
1378 goto bail;
1379 }
1380 if (option >= 0)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001381 mopt->atime_quantum = option;
Tiger Yang7f1a37e2006-11-15 15:48:42 +08001382 break;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001383 case Opt_slot:
1384 option = 0;
1385 if (match_int(&args[0], &option)) {
1386 status = 0;
1387 goto bail;
1388 }
1389 if (option)
Tiger Yangc0123ad2007-09-08 00:16:10 +08001390 mopt->slot = (s16)option;
Sunil Mushranbaf46612007-06-18 17:00:24 -07001391 break;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001392 case Opt_commit:
1393 option = 0;
1394 if (match_int(&args[0], &option)) {
1395 status = 0;
1396 goto bail;
1397 }
1398 if (option < 0)
1399 return 0;
1400 if (option == 0)
Joel Becker2b4e30f2008-09-03 20:03:41 -07001401 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Mark Fashehd147b3d2007-11-07 14:40:36 -08001402 mopt->commit_interval = HZ * option;
1403 break;
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001404 case Opt_localalloc:
1405 option = 0;
1406 if (match_int(&args[0], &option)) {
1407 status = 0;
1408 goto bail;
1409 }
Mark Fasheh73c8a802010-04-05 18:17:13 -07001410 if (option >= 0)
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001411 mopt->localalloc_opt = option;
1412 break;
Mark Fasheh53fc6222007-12-20 16:49:04 -08001413 case Opt_localflocks:
1414 /*
1415 * Changing this during remount could race
1416 * flock() requests, or "unbalance" existing
1417 * ones (e.g., a lock is taken in one mode but
1418 * dropped in the other). If users care enough
1419 * to flip locking modes during remount, we
1420 * could add a "local" flag to individual
1421 * flock structures for proper tracking of
1422 * state.
1423 */
1424 if (!is_remount)
1425 mopt->mount_opt |= OCFS2_MOUNT_LOCALFLOCKS;
1426 break;
Joel Beckerb61817e2008-02-01 15:08:23 -08001427 case Opt_stack:
1428 /* Check both that the option we were passed
1429 * is of the right length and that it is a proper
1430 * string of the right length.
1431 */
1432 if (((args[0].to - args[0].from) !=
1433 OCFS2_STACK_LABEL_LEN) ||
1434 (strnlen(args[0].from,
1435 OCFS2_STACK_LABEL_LEN) !=
1436 OCFS2_STACK_LABEL_LEN)) {
1437 mlog(ML_ERROR,
1438 "Invalid cluster_stack option\n");
1439 status = 0;
1440 goto bail;
1441 }
1442 memcpy(mopt->cluster_stack, args[0].from,
1443 OCFS2_STACK_LABEL_LEN);
1444 mopt->cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
1445 break;
Joel Becker12462f12008-09-03 20:03:40 -07001446 case Opt_inode64:
1447 mopt->mount_opt |= OCFS2_MOUNT_INODE64;
1448 break;
Jan Kara19ece542008-08-21 20:13:17 +02001449 case Opt_usrquota:
Jan Kara19ece542008-08-21 20:13:17 +02001450 mopt->mount_opt |= OCFS2_MOUNT_USRQUOTA;
1451 break;
1452 case Opt_grpquota:
Jan Kara19ece542008-08-21 20:13:17 +02001453 mopt->mount_opt |= OCFS2_MOUNT_GRPQUOTA;
1454 break;
Tiger Yanga68979b2008-11-14 11:17:52 +08001455 case Opt_acl:
1456 mopt->mount_opt |= OCFS2_MOUNT_POSIX_ACL;
Jan Kara5297aad2009-10-15 14:54:04 +02001457 mopt->mount_opt &= ~OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001458 break;
1459 case Opt_noacl:
Jan Kara5297aad2009-10-15 14:54:04 +02001460 mopt->mount_opt |= OCFS2_MOUNT_NO_POSIX_ACL;
Tiger Yanga68979b2008-11-14 11:17:52 +08001461 mopt->mount_opt &= ~OCFS2_MOUNT_POSIX_ACL;
1462 break;
Mark Fashehd02f00c2009-12-07 13:10:48 -08001463 case Opt_resv_level:
1464 if (is_remount)
1465 break;
1466 if (match_int(&args[0], &option)) {
1467 status = 0;
1468 goto bail;
1469 }
1470 if (option >= OCFS2_MIN_RESV_LEVEL &&
1471 option < OCFS2_MAX_RESV_LEVEL)
1472 mopt->resv_level = option;
1473 break;
Mark Fasheh83f92312010-04-05 18:17:16 -07001474 case Opt_dir_resv_level:
1475 if (is_remount)
1476 break;
1477 if (match_int(&args[0], &option)) {
1478 status = 0;
1479 goto bail;
1480 }
1481 if (option >= OCFS2_MIN_RESV_LEVEL &&
1482 option < OCFS2_MAX_RESV_LEVEL)
1483 mopt->dir_resv_level = option;
1484 break;
Mark Fashehccd979b2005-12-15 14:31:24 -08001485 default:
1486 mlog(ML_ERROR,
1487 "Unrecognized mount option \"%s\" "
1488 "or missing value\n", p);
1489 status = 0;
1490 goto bail;
1491 }
1492 }
1493
1494 status = 1;
1495
1496bail:
1497 mlog_exit(status);
1498 return status;
1499}
1500
Sunil Mushrand5500712007-09-06 13:34:16 -07001501static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
1502{
1503 struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
1504 unsigned long opts = osb->s_mount_opt;
Mark Fashehebcee4b2008-07-28 14:55:20 -07001505 unsigned int local_alloc_megs;
Sunil Mushrand5500712007-09-06 13:34:16 -07001506
1507 if (opts & OCFS2_MOUNT_HB_LOCAL)
1508 seq_printf(s, ",_netdev,heartbeat=local");
1509 else
1510 seq_printf(s, ",heartbeat=none");
1511
1512 if (opts & OCFS2_MOUNT_NOINTR)
1513 seq_printf(s, ",nointr");
1514
1515 if (opts & OCFS2_MOUNT_DATA_WRITEBACK)
1516 seq_printf(s, ",data=writeback");
1517 else
1518 seq_printf(s, ",data=ordered");
1519
1520 if (opts & OCFS2_MOUNT_BARRIER)
1521 seq_printf(s, ",barrier=1");
1522
1523 if (opts & OCFS2_MOUNT_ERRORS_PANIC)
1524 seq_printf(s, ",errors=panic");
1525 else
1526 seq_printf(s, ",errors=remount-ro");
1527
1528 if (osb->preferred_slot != OCFS2_INVALID_SLOT)
1529 seq_printf(s, ",preferred_slot=%d", osb->preferred_slot);
1530
1531 if (osb->s_atime_quantum != OCFS2_DEFAULT_ATIME_QUANTUM)
1532 seq_printf(s, ",atime_quantum=%u", osb->s_atime_quantum);
1533
Mark Fashehd147b3d2007-11-07 14:40:36 -08001534 if (osb->osb_commit_interval)
1535 seq_printf(s, ",commit=%u",
1536 (unsigned) (osb->osb_commit_interval / HZ));
1537
Mark Fashehebcee4b2008-07-28 14:55:20 -07001538 local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
Mark Fasheh6b820212010-04-05 18:17:14 -07001539 if (local_alloc_megs != ocfs2_la_default_mb(osb))
Mark Fashehebcee4b2008-07-28 14:55:20 -07001540 seq_printf(s, ",localalloc=%d", local_alloc_megs);
Sunil Mushran2fbe8d12007-12-20 14:58:11 -08001541
Mark Fasheh53fc6222007-12-20 16:49:04 -08001542 if (opts & OCFS2_MOUNT_LOCALFLOCKS)
1543 seq_printf(s, ",localflocks,");
1544
Joel Beckerb61817e2008-02-01 15:08:23 -08001545 if (osb->osb_cluster_stack[0])
1546 seq_printf(s, ",cluster_stack=%.*s", OCFS2_STACK_LABEL_LEN,
1547 osb->osb_cluster_stack);
Jan Kara19ece542008-08-21 20:13:17 +02001548 if (opts & OCFS2_MOUNT_USRQUOTA)
1549 seq_printf(s, ",usrquota");
1550 if (opts & OCFS2_MOUNT_GRPQUOTA)
1551 seq_printf(s, ",grpquota");
Joel Beckerb61817e2008-02-01 15:08:23 -08001552
Sunil Mushranb0f73cf2008-09-05 11:29:14 -07001553 if (opts & OCFS2_MOUNT_NOUSERXATTR)
1554 seq_printf(s, ",nouser_xattr");
1555 else
1556 seq_printf(s, ",user_xattr");
1557
Joel Becker12462f12008-09-03 20:03:40 -07001558 if (opts & OCFS2_MOUNT_INODE64)
1559 seq_printf(s, ",inode64");
1560
Tiger Yanga68979b2008-11-14 11:17:52 +08001561 if (opts & OCFS2_MOUNT_POSIX_ACL)
1562 seq_printf(s, ",acl");
1563 else
1564 seq_printf(s, ",noacl");
Tiger Yanga68979b2008-11-14 11:17:52 +08001565
Mark Fashehd02f00c2009-12-07 13:10:48 -08001566 if (osb->osb_resv_level != OCFS2_DEFAULT_RESV_LEVEL)
1567 seq_printf(s, ",resv_level=%d", osb->osb_resv_level);
1568
Mark Fasheh83f92312010-04-05 18:17:16 -07001569 if (osb->osb_dir_resv_level != osb->osb_resv_level)
1570 seq_printf(s, ",dir_resv_level=%d", osb->osb_resv_level);
1571
Sunil Mushrand5500712007-09-06 13:34:16 -07001572 return 0;
1573}
1574
Mark Fashehccd979b2005-12-15 14:31:24 -08001575static int __init ocfs2_init(void)
1576{
1577 int status;
1578
1579 mlog_entry_void();
1580
1581 ocfs2_print_version();
1582
Mark Fashehccd979b2005-12-15 14:31:24 -08001583 status = init_ocfs2_uptodate_cache();
1584 if (status < 0) {
1585 mlog_errno(status);
1586 goto leave;
1587 }
1588
1589 status = ocfs2_initialize_mem_caches();
1590 if (status < 0) {
1591 mlog_errno(status);
1592 goto leave;
1593 }
1594
1595 ocfs2_wq = create_singlethread_workqueue("ocfs2_wq");
1596 if (!ocfs2_wq) {
1597 status = -ENOMEM;
1598 goto leave;
1599 }
1600
Mark Fashehccd979b2005-12-15 14:31:24 -08001601 ocfs2_debugfs_root = debugfs_create_dir("ocfs2", NULL);
1602 if (!ocfs2_debugfs_root) {
1603 status = -EFAULT;
1604 mlog(ML_ERROR, "Unable to create ocfs2 debugfs root.\n");
1605 }
1606
Mark Fasheh171bf932008-10-20 15:36:47 +02001607 status = ocfs2_quota_setup();
1608 if (status)
1609 goto leave;
1610
Joel Becker63e0c482008-01-30 16:58:36 -08001611 ocfs2_set_locking_protocol();
1612
Jan Kara9e33d692008-08-25 19:56:50 +02001613 status = register_quota_format(&ocfs2_quota_format);
Mark Fashehccd979b2005-12-15 14:31:24 -08001614leave:
1615 if (status < 0) {
Mark Fasheh171bf932008-10-20 15:36:47 +02001616 ocfs2_quota_shutdown();
Mark Fashehccd979b2005-12-15 14:31:24 -08001617 ocfs2_free_mem_caches();
1618 exit_ocfs2_uptodate_cache();
Mark Fashehccd979b2005-12-15 14:31:24 -08001619 }
1620
1621 mlog_exit(status);
1622
1623 if (status >= 0) {
1624 return register_filesystem(&ocfs2_fs_type);
1625 } else
1626 return -1;
1627}
1628
1629static void __exit ocfs2_exit(void)
1630{
1631 mlog_entry_void();
1632
Mark Fasheh171bf932008-10-20 15:36:47 +02001633 ocfs2_quota_shutdown();
1634
Mark Fashehccd979b2005-12-15 14:31:24 -08001635 if (ocfs2_wq) {
1636 flush_workqueue(ocfs2_wq);
1637 destroy_workqueue(ocfs2_wq);
1638 }
1639
Jan Kara9e33d692008-08-25 19:56:50 +02001640 unregister_quota_format(&ocfs2_quota_format);
1641
Mark Fashehccd979b2005-12-15 14:31:24 -08001642 debugfs_remove(ocfs2_debugfs_root);
1643
1644 ocfs2_free_mem_caches();
1645
1646 unregister_filesystem(&ocfs2_fs_type);
1647
Mark Fashehccd979b2005-12-15 14:31:24 -08001648 exit_ocfs2_uptodate_cache();
1649
1650 mlog_exit_void();
1651}
1652
1653static void ocfs2_put_super(struct super_block *sb)
1654{
1655 mlog_entry("(0x%p)\n", sb);
1656
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02001657 lock_kernel();
1658
Mark Fashehccd979b2005-12-15 14:31:24 -08001659 ocfs2_sync_blockdev(sb);
1660 ocfs2_dismount_volume(sb, 0);
1661
Christoph Hellwig6cfd0142009-05-05 15:40:36 +02001662 unlock_kernel();
1663
Mark Fashehccd979b2005-12-15 14:31:24 -08001664 mlog_exit_void();
1665}
1666
David Howells726c3342006-06-23 02:02:58 -07001667static int ocfs2_statfs(struct dentry *dentry, struct kstatfs *buf)
Mark Fashehccd979b2005-12-15 14:31:24 -08001668{
1669 struct ocfs2_super *osb;
1670 u32 numbits, freebits;
1671 int status;
1672 struct ocfs2_dinode *bm_lock;
1673 struct buffer_head *bh = NULL;
1674 struct inode *inode = NULL;
1675
David Howells726c3342006-06-23 02:02:58 -07001676 mlog_entry("(%p, %p)\n", dentry->d_sb, buf);
Mark Fashehccd979b2005-12-15 14:31:24 -08001677
David Howells726c3342006-06-23 02:02:58 -07001678 osb = OCFS2_SB(dentry->d_sb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001679
1680 inode = ocfs2_get_system_file_inode(osb,
1681 GLOBAL_BITMAP_SYSTEM_INODE,
1682 OCFS2_INVALID_SLOT);
1683 if (!inode) {
1684 mlog(ML_ERROR, "failed to get bitmap inode\n");
1685 status = -EIO;
1686 goto bail;
1687 }
1688
Mark Fashehe63aecb62007-10-18 15:30:42 -07001689 status = ocfs2_inode_lock(inode, &bh, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001690 if (status < 0) {
1691 mlog_errno(status);
1692 goto bail;
1693 }
1694
1695 bm_lock = (struct ocfs2_dinode *) bh->b_data;
1696
1697 numbits = le32_to_cpu(bm_lock->id1.bitmap1.i_total);
1698 freebits = numbits - le32_to_cpu(bm_lock->id1.bitmap1.i_used);
1699
1700 buf->f_type = OCFS2_SUPER_MAGIC;
David Howells726c3342006-06-23 02:02:58 -07001701 buf->f_bsize = dentry->d_sb->s_blocksize;
Mark Fashehccd979b2005-12-15 14:31:24 -08001702 buf->f_namelen = OCFS2_MAX_FILENAME_LEN;
1703 buf->f_blocks = ((sector_t) numbits) *
1704 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1705 buf->f_bfree = ((sector_t) freebits) *
1706 (osb->s_clustersize >> osb->sb->s_blocksize_bits);
1707 buf->f_bavail = buf->f_bfree;
1708 buf->f_files = numbits;
1709 buf->f_ffree = freebits;
Coly Li837711f2009-01-16 16:33:05 +08001710 buf->f_fsid.val[0] = crc32_le(0, osb->uuid_str, OCFS2_VOL_UUID_LEN)
1711 & 0xFFFFFFFFUL;
1712 buf->f_fsid.val[1] = crc32_le(0, osb->uuid_str + OCFS2_VOL_UUID_LEN,
1713 OCFS2_VOL_UUID_LEN) & 0xFFFFFFFFUL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001714
1715 brelse(bh);
1716
Mark Fashehe63aecb62007-10-18 15:30:42 -07001717 ocfs2_inode_unlock(inode, 0);
Mark Fashehccd979b2005-12-15 14:31:24 -08001718 status = 0;
1719bail:
1720 if (inode)
1721 iput(inode);
1722
1723 mlog_exit(status);
1724
1725 return status;
1726}
1727
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001728static void ocfs2_inode_init_once(void *data)
Mark Fashehccd979b2005-12-15 14:31:24 -08001729{
1730 struct ocfs2_inode_info *oi = data;
1731
Christoph Lametera35afb82007-05-16 22:10:57 -07001732 oi->ip_flags = 0;
1733 oi->ip_open_count = 0;
1734 spin_lock_init(&oi->ip_lock);
1735 ocfs2_extent_map_init(&oi->vfs_inode);
1736 INIT_LIST_HEAD(&oi->ip_io_markers);
Christoph Lametera35afb82007-05-16 22:10:57 -07001737 oi->ip_dir_start_lookup = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001738
Christoph Lametera35afb82007-05-16 22:10:57 -07001739 init_rwsem(&oi->ip_alloc_sem);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08001740 init_rwsem(&oi->ip_xattr_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -07001741 mutex_init(&oi->ip_io_mutex);
Mark Fashehccd979b2005-12-15 14:31:24 -08001742
Christoph Lametera35afb82007-05-16 22:10:57 -07001743 oi->ip_blkno = 0ULL;
1744 oi->ip_clusters = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001745
Mark Fasheh4fe370a2009-12-07 13:15:40 -08001746 ocfs2_resv_init_once(&oi->ip_la_data_resv);
1747
Christoph Lametera35afb82007-05-16 22:10:57 -07001748 ocfs2_lock_res_init_once(&oi->ip_rw_lockres);
Mark Fashehe63aecb62007-10-18 15:30:42 -07001749 ocfs2_lock_res_init_once(&oi->ip_inode_lockres);
Christoph Lametera35afb82007-05-16 22:10:57 -07001750 ocfs2_lock_res_init_once(&oi->ip_open_lockres);
Mark Fashehccd979b2005-12-15 14:31:24 -08001751
Joel Becker8cb471e2009-02-10 20:00:41 -08001752 ocfs2_metadata_cache_init(INODE_CACHE(&oi->vfs_inode),
Joel Becker6e5a3d72009-02-10 19:00:37 -08001753 &ocfs2_inode_caching_ops);
Mark Fashehccd979b2005-12-15 14:31:24 -08001754
Christoph Lametera35afb82007-05-16 22:10:57 -07001755 inode_init_once(&oi->vfs_inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08001756}
1757
1758static int ocfs2_initialize_mem_caches(void)
1759{
1760 ocfs2_inode_cachep = kmem_cache_create("ocfs2_inode_cache",
Paul Jacksonfffb60f2006-03-24 03:16:06 -08001761 sizeof(struct ocfs2_inode_info),
1762 0,
1763 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1764 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +09001765 ocfs2_inode_init_once);
Jan Kara9e33d692008-08-25 19:56:50 +02001766 ocfs2_dquot_cachep = kmem_cache_create("ocfs2_dquot_cache",
1767 sizeof(struct ocfs2_dquot),
1768 0,
1769 (SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT|
1770 SLAB_MEM_SPREAD),
1771 NULL);
1772 ocfs2_qf_chunk_cachep = kmem_cache_create("ocfs2_qf_chunk_cache",
1773 sizeof(struct ocfs2_quota_chunk),
1774 0,
1775 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
1776 NULL);
1777 if (!ocfs2_inode_cachep || !ocfs2_dquot_cachep ||
1778 !ocfs2_qf_chunk_cachep) {
1779 if (ocfs2_inode_cachep)
1780 kmem_cache_destroy(ocfs2_inode_cachep);
1781 if (ocfs2_dquot_cachep)
1782 kmem_cache_destroy(ocfs2_dquot_cachep);
1783 if (ocfs2_qf_chunk_cachep)
1784 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001785 return -ENOMEM;
Jan Kara9e33d692008-08-25 19:56:50 +02001786 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001787
Mark Fashehccd979b2005-12-15 14:31:24 -08001788 return 0;
1789}
1790
1791static void ocfs2_free_mem_caches(void)
1792{
1793 if (ocfs2_inode_cachep)
1794 kmem_cache_destroy(ocfs2_inode_cachep);
Mark Fashehccd979b2005-12-15 14:31:24 -08001795 ocfs2_inode_cachep = NULL;
Jan Kara9e33d692008-08-25 19:56:50 +02001796
1797 if (ocfs2_dquot_cachep)
1798 kmem_cache_destroy(ocfs2_dquot_cachep);
1799 ocfs2_dquot_cachep = NULL;
1800
1801 if (ocfs2_qf_chunk_cachep)
1802 kmem_cache_destroy(ocfs2_qf_chunk_cachep);
1803 ocfs2_qf_chunk_cachep = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08001804}
1805
1806static int ocfs2_get_sector(struct super_block *sb,
1807 struct buffer_head **bh,
1808 int block,
1809 int sect_size)
1810{
1811 if (!sb_set_blocksize(sb, sect_size)) {
1812 mlog(ML_ERROR, "unable to set blocksize\n");
1813 return -EIO;
1814 }
1815
1816 *bh = sb_getblk(sb, block);
1817 if (!*bh) {
1818 mlog_errno(-EIO);
1819 return -EIO;
1820 }
1821 lock_buffer(*bh);
1822 if (!buffer_dirty(*bh))
1823 clear_buffer_uptodate(*bh);
1824 unlock_buffer(*bh);
1825 ll_rw_block(READ, 1, bh);
1826 wait_on_buffer(*bh);
wengang wang28d57d42009-02-13 10:11:47 +08001827 if (!buffer_uptodate(*bh)) {
1828 mlog_errno(-EIO);
1829 brelse(*bh);
1830 *bh = NULL;
1831 return -EIO;
1832 }
1833
Mark Fashehccd979b2005-12-15 14:31:24 -08001834 return 0;
1835}
1836
Mark Fashehccd979b2005-12-15 14:31:24 -08001837static int ocfs2_mount_volume(struct super_block *sb)
1838{
1839 int status = 0;
1840 int unlock_super = 0;
1841 struct ocfs2_super *osb = OCFS2_SB(sb);
1842
1843 mlog_entry_void();
1844
1845 if (ocfs2_is_hard_readonly(osb))
1846 goto leave;
1847
Mark Fashehccd979b2005-12-15 14:31:24 -08001848 status = ocfs2_dlm_init(osb);
1849 if (status < 0) {
1850 mlog_errno(status);
1851 goto leave;
1852 }
1853
Mark Fashehccd979b2005-12-15 14:31:24 -08001854 status = ocfs2_super_lock(osb, 1);
1855 if (status < 0) {
1856 mlog_errno(status);
1857 goto leave;
1858 }
1859 unlock_super = 1;
1860
1861 /* This will load up the node map and add ourselves to it. */
1862 status = ocfs2_find_slot(osb);
1863 if (status < 0) {
1864 mlog_errno(status);
1865 goto leave;
1866 }
1867
Mark Fashehccd979b2005-12-15 14:31:24 -08001868 /* load all node-local system inodes */
1869 status = ocfs2_init_local_system_inodes(osb);
1870 if (status < 0) {
1871 mlog_errno(status);
1872 goto leave;
1873 }
1874
1875 status = ocfs2_check_volume(osb);
1876 if (status < 0) {
1877 mlog_errno(status);
1878 goto leave;
1879 }
1880
1881 status = ocfs2_truncate_log_init(osb);
Tao Ma06c59bb2009-05-19 06:47:20 +08001882 if (status < 0)
Mark Fashehccd979b2005-12-15 14:31:24 -08001883 mlog_errno(status);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001884
Mark Fashehccd979b2005-12-15 14:31:24 -08001885leave:
1886 if (unlock_super)
1887 ocfs2_super_unlock(osb, 1);
1888
1889 mlog_exit(status);
1890 return status;
1891}
1892
Mark Fashehccd979b2005-12-15 14:31:24 -08001893static void ocfs2_dismount_volume(struct super_block *sb, int mnt_err)
1894{
Joel Becker286eaa92008-02-01 15:03:57 -08001895 int tmp, hangup_needed = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08001896 struct ocfs2_super *osb = NULL;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001897 char nodestr[8];
Mark Fashehccd979b2005-12-15 14:31:24 -08001898
1899 mlog_entry("(0x%p)\n", sb);
1900
1901 BUG_ON(!sb);
1902 osb = OCFS2_SB(sb);
1903 BUG_ON(!osb);
1904
Sunil Mushran50397502008-12-17 14:17:43 -08001905 debugfs_remove(osb->osb_ctxt);
1906
Jan Karaf7b1aa62009-07-20 12:12:36 +02001907 /*
1908 * Flush inode dropping work queue so that deletes are
1909 * performed while the filesystem is still working
1910 */
1911 ocfs2_drop_all_dl_inodes(osb);
1912
Sunil Mushran692684e2009-06-19 16:53:17 -07001913 /* Orphan scan should be stopped as early as possible */
1914 ocfs2_orphan_scan_stop(osb);
1915
Jan Kara19ece542008-08-21 20:13:17 +02001916 ocfs2_disable_quotas(osb);
1917
Mark Fashehccd979b2005-12-15 14:31:24 -08001918 ocfs2_shutdown_local_alloc(osb);
1919
1920 ocfs2_truncate_log_shutdown(osb);
1921
Joel Becker553abd02008-02-01 12:03:57 -08001922 /* This will disable recovery and flush any recovery work. */
1923 ocfs2_recovery_exit(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08001924
1925 ocfs2_journal_shutdown(osb);
1926
1927 ocfs2_sync_blockdev(sb);
1928
Tao Ma374a2632009-08-24 11:13:37 +08001929 ocfs2_purge_refcount_trees(osb);
1930
Joel Becker4670c462008-02-01 14:39:35 -08001931 /* No cluster connection means we've failed during mount, so skip
1932 * all the steps which depended on that to complete. */
1933 if (osb->cconn) {
Mark Fashehccd979b2005-12-15 14:31:24 -08001934 tmp = ocfs2_super_lock(osb, 1);
1935 if (tmp < 0) {
1936 mlog_errno(tmp);
1937 return;
1938 }
Mark Fashehccd979b2005-12-15 14:31:24 -08001939 }
1940
Mark Fasheh19b613d2007-10-04 14:47:09 -07001941 if (osb->slot_num != OCFS2_INVALID_SLOT)
1942 ocfs2_put_slot(osb);
1943
Joel Becker4670c462008-02-01 14:39:35 -08001944 if (osb->cconn)
Mark Fasheh19b613d2007-10-04 14:47:09 -07001945 ocfs2_super_unlock(osb, 1);
1946
Mark Fashehccd979b2005-12-15 14:31:24 -08001947 ocfs2_release_system_inodes(osb);
1948
Joel Becker6953b4c2008-01-29 16:59:56 -08001949 /*
Joel Becker6953b4c2008-01-29 16:59:56 -08001950 * If we're dismounting due to mount error, mount.ocfs2 will clean
1951 * up heartbeat. If we're a local mount, there is no heartbeat.
1952 * If we failed before we got a uuid_str yet, we can't stop
1953 * heartbeat. Otherwise, do it.
1954 */
1955 if (!mnt_err && !ocfs2_mount_local(osb) && osb->uuid_str)
Joel Becker286eaa92008-02-01 15:03:57 -08001956 hangup_needed = 1;
1957
1958 if (osb->cconn)
1959 ocfs2_dlm_shutdown(osb, hangup_needed);
1960
Joel Becker73be1922009-01-06 14:57:08 -08001961 ocfs2_blockcheck_stats_debugfs_remove(&osb->osb_ecc_stats);
Joel Becker286eaa92008-02-01 15:03:57 -08001962 debugfs_remove(osb->osb_debug_root);
1963
1964 if (hangup_needed)
Joel Becker6953b4c2008-01-29 16:59:56 -08001965 ocfs2_cluster_hangup(osb->uuid_str, strlen(osb->uuid_str));
Mark Fashehccd979b2005-12-15 14:31:24 -08001966
1967 atomic_set(&osb->vol_state, VOLUME_DISMOUNTED);
1968
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001969 if (ocfs2_mount_local(osb))
1970 snprintf(nodestr, sizeof(nodestr), "local");
1971 else
Joel Becker19fdb622008-01-30 15:38:24 -08001972 snprintf(nodestr, sizeof(nodestr), "%u", osb->node_num);
Sunil Mushranc271c5c2006-12-05 17:56:35 -08001973
1974 printk(KERN_INFO "ocfs2: Unmounting device (%s) on (node %s)\n",
1975 osb->dev_str, nodestr);
Mark Fashehccd979b2005-12-15 14:31:24 -08001976
1977 ocfs2_delete_osb(osb);
1978 kfree(osb);
1979 sb->s_dev = 0;
1980 sb->s_fs_info = NULL;
1981}
1982
1983static int ocfs2_setup_osb_uuid(struct ocfs2_super *osb, const unsigned char *uuid,
1984 unsigned uuid_bytes)
1985{
1986 int i, ret;
1987 char *ptr;
1988
1989 BUG_ON(uuid_bytes != OCFS2_VOL_UUID_LEN);
1990
Robert P. J. Daycd861282006-12-13 00:34:52 -08001991 osb->uuid_str = kzalloc(OCFS2_VOL_UUID_LEN * 2 + 1, GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08001992 if (osb->uuid_str == NULL)
1993 return -ENOMEM;
1994
Mark Fashehccd979b2005-12-15 14:31:24 -08001995 for (i = 0, ptr = osb->uuid_str; i < OCFS2_VOL_UUID_LEN; i++) {
1996 /* print with null */
1997 ret = snprintf(ptr, 3, "%02X", uuid[i]);
1998 if (ret != 2) /* drop super cleans up */
1999 return -EINVAL;
2000 /* then only advance past the last char */
2001 ptr += 2;
2002 }
2003
2004 return 0;
2005}
2006
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002007/* Make sure entire volume is addressable by our journal. Requires
2008 osb_clusters_at_boot to be valid and for the journal to have been
2009 initialized by ocfs2_journal_init(). */
2010static int ocfs2_journal_addressable(struct ocfs2_super *osb)
2011{
2012 int status = 0;
2013 u64 max_block =
2014 ocfs2_clusters_to_blocks(osb->sb,
2015 osb->osb_clusters_at_boot) - 1;
2016
2017 /* 32-bit block number is always OK. */
2018 if (max_block <= (u32)~0ULL)
2019 goto out;
2020
2021 /* Volume is "huge", so see if our journal is new enough to
2022 support it. */
2023 if (!(OCFS2_HAS_COMPAT_FEATURE(osb->sb,
2024 OCFS2_FEATURE_COMPAT_JBD2_SB) &&
2025 jbd2_journal_check_used_features(osb->journal->j_journal, 0, 0,
2026 JBD2_FEATURE_INCOMPAT_64BIT))) {
2027 mlog(ML_ERROR, "The journal cannot address the entire volume. "
2028 "Enable the 'block64' journal option with tunefs.ocfs2");
2029 status = -EFBIG;
2030 goto out;
2031 }
2032
2033 out:
2034 return status;
2035}
2036
Mark Fashehccd979b2005-12-15 14:31:24 -08002037static int ocfs2_initialize_super(struct super_block *sb,
2038 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002039 int sector_size,
2040 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002041{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002042 int status;
Mark Fasheh5a254032007-07-20 12:56:16 -07002043 int i, cbits, bbits;
2044 struct ocfs2_dinode *di = (struct ocfs2_dinode *)bh->b_data;
Mark Fashehccd979b2005-12-15 14:31:24 -08002045 struct inode *inode = NULL;
Mark Fashehccd979b2005-12-15 14:31:24 -08002046 struct ocfs2_journal *journal;
2047 __le32 uuid_net_key;
2048 struct ocfs2_super *osb;
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002049 u64 total_blocks;
Mark Fashehccd979b2005-12-15 14:31:24 -08002050
2051 mlog_entry_void();
2052
Robert P. J. Daycd861282006-12-13 00:34:52 -08002053 osb = kzalloc(sizeof(struct ocfs2_super), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002054 if (!osb) {
2055 status = -ENOMEM;
2056 mlog_errno(status);
2057 goto bail;
2058 }
2059
2060 sb->s_fs_info = osb;
2061 sb->s_op = &ocfs2_sops;
2062 sb->s_export_op = &ocfs2_export_ops;
Jan Kara19ece542008-08-21 20:13:17 +02002063 sb->s_qcop = &ocfs2_quotactl_ops;
2064 sb->dq_op = &ocfs2_quota_operations;
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002065 sb->s_xattr = ocfs2_xattr_handlers;
Mark Fashehe0dceaf2007-08-09 16:52:30 -07002066 sb->s_time_gran = 1;
Mark Fashehccd979b2005-12-15 14:31:24 -08002067 sb->s_flags |= MS_NOATIME;
2068 /* this is needed to support O_LARGEFILE */
Mark Fasheh5a254032007-07-20 12:56:16 -07002069 cbits = le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2070 bbits = le32_to_cpu(di->id2.i_super.s_blocksize_bits);
2071 sb->s_maxbytes = ocfs2_max_file_offset(bbits, cbits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002072
Mark Fasheh9b7895e2008-11-12 16:27:44 -08002073 osb->osb_dx_mask = (1 << (cbits - bbits)) - 1;
2074
2075 for (i = 0; i < 3; i++)
2076 osb->osb_dx_seed[i] = le32_to_cpu(di->id2.i_super.s_dx_seed[i]);
2077 osb->osb_dx_seed[3] = le32_to_cpu(di->id2.i_super.s_uuid_hash);
2078
Mark Fashehccd979b2005-12-15 14:31:24 -08002079 osb->sb = sb;
2080 /* Save off for ocfs2_rw_direct */
2081 osb->s_sectsize_bits = blksize_bits(sector_size);
Eric Sesterhenn / snakebyteebdec832006-01-27 10:32:52 +01002082 BUG_ON(!osb->s_sectsize_bits);
Mark Fashehccd979b2005-12-15 14:31:24 -08002083
Mark Fasheh34d024f2007-09-24 15:56:19 -07002084 spin_lock_init(&osb->dc_task_lock);
2085 init_waitqueue_head(&osb->dc_event);
2086 osb->dc_work_sequence = 0;
2087 osb->dc_wake_sequence = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002088 INIT_LIST_HEAD(&osb->blocked_lock_list);
2089 osb->blocked_lock_count = 0;
Mark Fashehccd979b2005-12-15 14:31:24 -08002090 spin_lock_init(&osb->osb_lock);
Tao Mac8b9cf92009-02-24 17:40:26 -08002091 spin_lock_init(&osb->osb_xattr_lock);
Tiger Yangb89c5422010-01-25 14:11:06 +08002092 ocfs2_init_steal_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002093
2094 atomic_set(&osb->alloc_stats.moves, 0);
2095 atomic_set(&osb->alloc_stats.local_data, 0);
2096 atomic_set(&osb->alloc_stats.bitmap_data, 0);
2097 atomic_set(&osb->alloc_stats.bg_allocs, 0);
2098 atomic_set(&osb->alloc_stats.bg_extends, 0);
2099
Joel Becker73be1922009-01-06 14:57:08 -08002100 /* Copy the blockcheck stats from the superblock probe */
2101 osb->osb_ecc_stats = *stats;
2102
Mark Fashehccd979b2005-12-15 14:31:24 -08002103 ocfs2_init_node_maps(osb);
2104
2105 snprintf(osb->dev_str, sizeof(osb->dev_str), "%u,%u",
2106 MAJOR(osb->sb->s_dev), MINOR(osb->sb->s_dev));
2107
Goldwyn Rodrigues75d9bbc2010-10-11 12:57:09 -05002108 osb->max_slots = le16_to_cpu(di->id2.i_super.s_max_slots);
2109 if (osb->max_slots > OCFS2_MAX_SLOTS || osb->max_slots == 0) {
2110 mlog(ML_ERROR, "Invalid number of node slots (%u)\n",
2111 osb->max_slots);
2112 status = -EINVAL;
2113 goto bail;
2114 }
2115 mlog(0, "max_slots for this device: %u\n", osb->max_slots);
2116
Jeff Mahoney8b712cd2009-07-07 17:22:12 -04002117 ocfs2_orphan_scan_init(osb);
2118
Joel Becker553abd02008-02-01 12:03:57 -08002119 status = ocfs2_recovery_init(osb);
2120 if (status) {
2121 mlog(ML_ERROR, "Unable to initialize recovery state\n");
2122 mlog_errno(status);
2123 goto bail;
2124 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002125
2126 init_waitqueue_head(&osb->checkpoint_event);
2127 atomic_set(&osb->needs_checkpoint, 0);
2128
Tiger Yang7f1a37e2006-11-15 15:48:42 +08002129 osb->s_atime_quantum = OCFS2_DEFAULT_ATIME_QUANTUM;
2130
Mark Fashehccd979b2005-12-15 14:31:24 -08002131 osb->slot_num = OCFS2_INVALID_SLOT;
2132
Tiger Yang8154da32008-08-18 17:11:46 +08002133 osb->s_xattr_inline_size = le16_to_cpu(
2134 di->id2.i_super.s_xattr_inline_size);
Tiger Yangfdd77702008-08-18 17:08:55 +08002135
Mark Fashehccd979b2005-12-15 14:31:24 -08002136 osb->local_alloc_state = OCFS2_LA_UNUSED;
2137 osb->local_alloc_bh = NULL;
Mark Fasheh9c7af402008-07-28 18:02:53 -07002138 INIT_DELAYED_WORK(&osb->la_enable_wq, ocfs2_la_enable_worker);
Mark Fashehccd979b2005-12-15 14:31:24 -08002139
Mark Fashehccd979b2005-12-15 14:31:24 -08002140 init_waitqueue_head(&osb->osb_mount_event);
2141
Mark Fashehd02f00c2009-12-07 13:10:48 -08002142 status = ocfs2_resmap_init(osb, &osb->osb_la_resmap);
2143 if (status) {
2144 mlog_errno(status);
2145 goto bail;
2146 }
2147
Mark Fashehccd979b2005-12-15 14:31:24 -08002148 osb->vol_label = kmalloc(OCFS2_MAX_VOL_LABEL_LEN, GFP_KERNEL);
2149 if (!osb->vol_label) {
2150 mlog(ML_ERROR, "unable to alloc vol label\n");
2151 status = -ENOMEM;
2152 goto bail;
2153 }
2154
Sunil Mushran539d8262008-07-14 17:31:10 -07002155 osb->slot_recovery_generations =
2156 kcalloc(osb->max_slots, sizeof(*osb->slot_recovery_generations),
2157 GFP_KERNEL);
2158 if (!osb->slot_recovery_generations) {
2159 status = -ENOMEM;
2160 mlog_errno(status);
2161 goto bail;
2162 }
2163
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002164 init_waitqueue_head(&osb->osb_wipe_event);
2165 osb->osb_orphan_wipes = kcalloc(osb->max_slots,
2166 sizeof(*osb->osb_orphan_wipes),
2167 GFP_KERNEL);
2168 if (!osb->osb_orphan_wipes) {
2169 status = -ENOMEM;
2170 mlog_errno(status);
2171 goto bail;
2172 }
2173
Tao Ma374a2632009-08-24 11:13:37 +08002174 osb->osb_rf_lock_tree = RB_ROOT;
2175
Mark Fashehccd979b2005-12-15 14:31:24 -08002176 osb->s_feature_compat =
2177 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_compat);
2178 osb->s_feature_ro_compat =
2179 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_ro_compat);
2180 osb->s_feature_incompat =
2181 le32_to_cpu(OCFS2_RAW_SB(di)->s_feature_incompat);
2182
2183 if ((i = OCFS2_HAS_INCOMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_INCOMPAT_SUPP))) {
2184 mlog(ML_ERROR, "couldn't mount because of unsupported "
2185 "optional features (%x).\n", i);
2186 status = -EINVAL;
2187 goto bail;
2188 }
2189 if (!(osb->sb->s_flags & MS_RDONLY) &&
2190 (i = OCFS2_HAS_RO_COMPAT_FEATURE(osb->sb, ~OCFS2_FEATURE_RO_COMPAT_SUPP))) {
2191 mlog(ML_ERROR, "couldn't mount RDWR because of "
2192 "unsupported optional features (%x).\n", i);
2193 status = -EINVAL;
2194 goto bail;
2195 }
2196
Joel Beckerb61817e2008-02-01 15:08:23 -08002197 if (ocfs2_userspace_stack(osb)) {
2198 memcpy(osb->osb_cluster_stack,
2199 OCFS2_RAW_SB(di)->s_cluster_info.ci_stack,
2200 OCFS2_STACK_LABEL_LEN);
2201 osb->osb_cluster_stack[OCFS2_STACK_LABEL_LEN] = '\0';
2202 if (strlen(osb->osb_cluster_stack) != OCFS2_STACK_LABEL_LEN) {
2203 mlog(ML_ERROR,
2204 "couldn't mount because of an invalid "
2205 "cluster stack label (%s) \n",
2206 osb->osb_cluster_stack);
2207 status = -EINVAL;
2208 goto bail;
2209 }
2210 } else {
2211 /* The empty string is identical with classic tools that
2212 * don't know about s_cluster_info. */
2213 osb->osb_cluster_stack[0] = '\0';
2214 }
2215
Mark Fashehccd979b2005-12-15 14:31:24 -08002216 get_random_bytes(&osb->s_next_generation, sizeof(u32));
2217
2218 /* FIXME
2219 * This should be done in ocfs2_journal_init(), but unknown
2220 * ordering issues will cause the filesystem to crash.
2221 * If anyone wants to figure out what part of the code
2222 * refers to osb->journal before ocfs2_journal_init() is run,
2223 * be my guest.
2224 */
2225 /* initialize our journal structure */
2226
Robert P. J. Daycd861282006-12-13 00:34:52 -08002227 journal = kzalloc(sizeof(struct ocfs2_journal), GFP_KERNEL);
Mark Fashehccd979b2005-12-15 14:31:24 -08002228 if (!journal) {
2229 mlog(ML_ERROR, "unable to alloc journal\n");
2230 status = -ENOMEM;
2231 goto bail;
2232 }
2233 osb->journal = journal;
2234 journal->j_osb = osb;
2235
2236 atomic_set(&journal->j_num_trans, 0);
2237 init_rwsem(&journal->j_trans_barrier);
2238 init_waitqueue_head(&journal->j_checkpointed);
2239 spin_lock_init(&journal->j_lock);
2240 journal->j_trans_id = (unsigned long) 1;
2241 INIT_LIST_HEAD(&journal->j_la_cleanups);
David Howellsc4028952006-11-22 14:57:56 +00002242 INIT_WORK(&journal->j_recovery_work, ocfs2_complete_recovery);
Mark Fashehccd979b2005-12-15 14:31:24 -08002243 journal->j_state = OCFS2_JOURNAL_FREE;
2244
Jan Karaea455f82009-01-12 23:20:31 +01002245 INIT_WORK(&osb->dentry_lock_work, ocfs2_drop_dl_inodes);
2246 osb->dentry_lock_list = NULL;
2247
Mark Fashehccd979b2005-12-15 14:31:24 -08002248 /* get some pseudo constants for clustersize bits */
2249 osb->s_clustersize_bits =
2250 le32_to_cpu(di->id2.i_super.s_clustersize_bits);
2251 osb->s_clustersize = 1 << osb->s_clustersize_bits;
2252 mlog(0, "clusterbits=%d\n", osb->s_clustersize_bits);
2253
2254 if (osb->s_clustersize < OCFS2_MIN_CLUSTERSIZE ||
2255 osb->s_clustersize > OCFS2_MAX_CLUSTERSIZE) {
2256 mlog(ML_ERROR, "Volume has invalid cluster size (%d)\n",
2257 osb->s_clustersize);
2258 status = -EINVAL;
2259 goto bail;
2260 }
2261
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002262 total_blocks = ocfs2_clusters_to_blocks(osb->sb,
2263 le32_to_cpu(di->i_clusters));
2264
2265 status = generic_check_addressable(osb->sb->s_blocksize_bits,
2266 total_blocks);
2267 if (status) {
2268 mlog(ML_ERROR, "Volume too large "
2269 "to mount safely on this system");
2270 status = -EFBIG;
Mark Fashehccd979b2005-12-15 14:31:24 -08002271 goto bail;
2272 }
2273
2274 if (ocfs2_setup_osb_uuid(osb, di->id2.i_super.s_uuid,
2275 sizeof(di->id2.i_super.s_uuid))) {
2276 mlog(ML_ERROR, "Out of memory trying to setup our uuid.\n");
2277 status = -ENOMEM;
2278 goto bail;
2279 }
2280
Mark Fasheh78427042006-05-04 12:03:26 -07002281 memcpy(&uuid_net_key, di->id2.i_super.s_uuid, sizeof(uuid_net_key));
Mark Fashehccd979b2005-12-15 14:31:24 -08002282
2283 strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
2284 osb->vol_label[63] = '\0';
2285 osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
2286 osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
2287 osb->first_cluster_group_blkno =
2288 le64_to_cpu(di->id2.i_super.s_first_cluster_group);
2289 osb->fs_generation = le32_to_cpu(di->i_fs_generation);
Tiger Yangcf1d6c72008-08-18 17:11:00 +08002290 osb->uuid_hash = le32_to_cpu(di->id2.i_super.s_uuid_hash);
Mark Fashehccd979b2005-12-15 14:31:24 -08002291 mlog(0, "vol_label: %s\n", osb->vol_label);
2292 mlog(0, "uuid: %s\n", osb->uuid_str);
Mark Fashehb0697052006-03-03 10:24:33 -08002293 mlog(0, "root_blkno=%llu, system_dir_blkno=%llu\n",
2294 (unsigned long long)osb->root_blkno,
2295 (unsigned long long)osb->system_dir_blkno);
Mark Fashehccd979b2005-12-15 14:31:24 -08002296
2297 osb->osb_dlm_debug = ocfs2_new_dlm_debug();
2298 if (!osb->osb_dlm_debug) {
2299 status = -ENOMEM;
2300 mlog_errno(status);
2301 goto bail;
2302 }
2303
2304 atomic_set(&osb->vol_state, VOLUME_INIT);
2305
2306 /* load root, system_dir, and all global system inodes */
2307 status = ocfs2_init_global_system_inodes(osb);
2308 if (status < 0) {
2309 mlog_errno(status);
2310 goto bail;
2311 }
2312
2313 /*
2314 * global bitmap
2315 */
2316 inode = ocfs2_get_system_file_inode(osb, GLOBAL_BITMAP_SYSTEM_INODE,
2317 OCFS2_INVALID_SLOT);
2318 if (!inode) {
2319 status = -EINVAL;
2320 mlog_errno(status);
2321 goto bail;
2322 }
2323
2324 osb->bitmap_blkno = OCFS2_I(inode)->ip_blkno;
Mark Fasheh6b820212010-04-05 18:17:14 -07002325 osb->osb_clusters_at_boot = OCFS2_I(inode)->ip_clusters;
Mark Fashehccd979b2005-12-15 14:31:24 -08002326 iput(inode);
Mark Fashehccd979b2005-12-15 14:31:24 -08002327
Tao Ma85718822010-04-13 14:38:06 +08002328 osb->bitmap_cpg = ocfs2_group_bitmap_size(sb, 0,
2329 osb->s_feature_incompat) * 8;
Mark Fashehccd979b2005-12-15 14:31:24 -08002330
2331 status = ocfs2_init_slot_info(osb);
2332 if (status < 0) {
2333 mlog_errno(status);
2334 goto bail;
2335 }
2336
Mark Fashehccd979b2005-12-15 14:31:24 -08002337bail:
2338 mlog_exit(status);
2339 return status;
2340}
2341
2342/*
2343 * will return: -EAGAIN if it is ok to keep searching for superblocks
2344 * -EINVAL if there is a bad superblock
2345 * 0 on success
2346 */
2347static int ocfs2_verify_volume(struct ocfs2_dinode *di,
2348 struct buffer_head *bh,
Joel Becker73be1922009-01-06 14:57:08 -08002349 u32 blksz,
2350 struct ocfs2_blockcheck_stats *stats)
Mark Fashehccd979b2005-12-15 14:31:24 -08002351{
2352 int status = -EAGAIN;
2353
2354 mlog_entry_void();
2355
2356 if (memcmp(di->i_signature, OCFS2_SUPER_BLOCK_SIGNATURE,
2357 strlen(OCFS2_SUPER_BLOCK_SIGNATURE)) == 0) {
Joel Beckerd030cc92008-12-11 15:04:14 -08002358 /* We have to do a raw check of the feature here */
2359 if (le32_to_cpu(di->id2.i_super.s_feature_incompat) &
2360 OCFS2_FEATURE_INCOMPAT_META_ECC) {
2361 status = ocfs2_block_check_validate(bh->b_data,
2362 bh->b_size,
Joel Becker73be1922009-01-06 14:57:08 -08002363 &di->i_check,
2364 stats);
Joel Beckerd030cc92008-12-11 15:04:14 -08002365 if (status)
2366 goto out;
2367 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002368 status = -EINVAL;
2369 if ((1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits)) != blksz) {
2370 mlog(ML_ERROR, "found superblock with incorrect block "
2371 "size: found %u, should be %u\n",
2372 1 << le32_to_cpu(di->id2.i_super.s_blocksize_bits),
2373 blksz);
2374 } else if (le16_to_cpu(di->id2.i_super.s_major_rev_level) !=
2375 OCFS2_MAJOR_REV_LEVEL ||
2376 le16_to_cpu(di->id2.i_super.s_minor_rev_level) !=
2377 OCFS2_MINOR_REV_LEVEL) {
2378 mlog(ML_ERROR, "found superblock with bad version: "
2379 "found %u.%u, should be %u.%u\n",
2380 le16_to_cpu(di->id2.i_super.s_major_rev_level),
2381 le16_to_cpu(di->id2.i_super.s_minor_rev_level),
2382 OCFS2_MAJOR_REV_LEVEL,
2383 OCFS2_MINOR_REV_LEVEL);
2384 } else if (bh->b_blocknr != le64_to_cpu(di->i_blkno)) {
2385 mlog(ML_ERROR, "bad block number on superblock: "
Mark Fashehb0697052006-03-03 10:24:33 -08002386 "found %llu, should be %llu\n",
Mark Fasheh1ca1a112007-04-27 16:01:25 -07002387 (unsigned long long)le64_to_cpu(di->i_blkno),
Mark Fashehb0697052006-03-03 10:24:33 -08002388 (unsigned long long)bh->b_blocknr);
Mark Fashehccd979b2005-12-15 14:31:24 -08002389 } else if (le32_to_cpu(di->id2.i_super.s_clustersize_bits) < 12 ||
2390 le32_to_cpu(di->id2.i_super.s_clustersize_bits) > 20) {
2391 mlog(ML_ERROR, "bad cluster size found: %u\n",
2392 1 << le32_to_cpu(di->id2.i_super.s_clustersize_bits));
2393 } else if (!le64_to_cpu(di->id2.i_super.s_root_blkno)) {
2394 mlog(ML_ERROR, "bad root_blkno: 0\n");
2395 } else if (!le64_to_cpu(di->id2.i_super.s_system_dir_blkno)) {
2396 mlog(ML_ERROR, "bad system_dir_blkno: 0\n");
2397 } else if (le16_to_cpu(di->id2.i_super.s_max_slots) > OCFS2_MAX_SLOTS) {
2398 mlog(ML_ERROR,
2399 "Superblock slots found greater than file system "
2400 "maximum: found %u, max %u\n",
2401 le16_to_cpu(di->id2.i_super.s_max_slots),
2402 OCFS2_MAX_SLOTS);
2403 } else {
2404 /* found it! */
2405 status = 0;
2406 }
2407 }
2408
Joel Beckerd030cc92008-12-11 15:04:14 -08002409out:
Mark Fashehccd979b2005-12-15 14:31:24 -08002410 mlog_exit(status);
2411 return status;
2412}
2413
2414static int ocfs2_check_volume(struct ocfs2_super *osb)
2415{
Denis Chengbddb8eb32007-09-27 02:10:04 +08002416 int status;
Mark Fashehccd979b2005-12-15 14:31:24 -08002417 int dirty;
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002418 int local;
Mark Fashehccd979b2005-12-15 14:31:24 -08002419 struct ocfs2_dinode *local_alloc = NULL; /* only used if we
2420 * recover
2421 * ourselves. */
2422
2423 mlog_entry_void();
2424
2425 /* Init our journal object. */
2426 status = ocfs2_journal_init(osb->journal, &dirty);
2427 if (status < 0) {
2428 mlog(ML_ERROR, "Could not initialize journal!\n");
2429 goto finally;
2430 }
2431
Patrick J. LoPresti3bdb8ef2010-07-22 15:05:57 -07002432 /* Now that journal has been initialized, check to make sure
2433 entire volume is addressable. */
2434 status = ocfs2_journal_addressable(osb);
2435 if (status)
2436 goto finally;
2437
Mark Fashehccd979b2005-12-15 14:31:24 -08002438 /* If the journal was unmounted cleanly then we don't want to
2439 * recover anything. Otherwise, journal_load will do that
2440 * dirty work for us :) */
2441 if (!dirty) {
2442 status = ocfs2_journal_wipe(osb->journal, 0);
2443 if (status < 0) {
2444 mlog_errno(status);
2445 goto finally;
2446 }
2447 } else {
2448 mlog(ML_NOTICE, "File system was not unmounted cleanly, "
2449 "recovering volume.\n");
2450 }
2451
Sunil Mushranc271c5c2006-12-05 17:56:35 -08002452 local = ocfs2_mount_local(osb);
2453
Mark Fashehccd979b2005-12-15 14:31:24 -08002454 /* will play back anything left in the journal. */
Sunil Mushran539d8262008-07-14 17:31:10 -07002455 status = ocfs2_journal_load(osb->journal, local, dirty);
Wengang Wang01af4822008-06-10 14:24:48 +08002456 if (status < 0) {
2457 mlog(ML_ERROR, "ocfs2 journal load failed! %d\n", status);
2458 goto finally;
2459 }
Mark Fashehccd979b2005-12-15 14:31:24 -08002460
2461 if (dirty) {
2462 /* recover my local alloc if we didn't unmount cleanly. */
2463 status = ocfs2_begin_local_alloc_recovery(osb,
2464 osb->slot_num,
2465 &local_alloc);
2466 if (status < 0) {
2467 mlog_errno(status);
2468 goto finally;
2469 }
2470 /* we complete the recovery process after we've marked
2471 * ourselves as mounted. */
2472 }
2473
2474 mlog(0, "Journal loaded.\n");
2475
2476 status = ocfs2_load_local_alloc(osb);
2477 if (status < 0) {
2478 mlog_errno(status);
2479 goto finally;
2480 }
2481
2482 if (dirty) {
2483 /* Recovery will be completed after we've mounted the
2484 * rest of the volume. */
2485 osb->dirty = 1;
2486 osb->local_alloc_copy = local_alloc;
2487 local_alloc = NULL;
2488 }
2489
2490 /* go through each journal, trylock it and if you get the
2491 * lock, and it's marked as dirty, set the bit in the recover
2492 * map and launch a recovery thread for it. */
2493 status = ocfs2_mark_dead_nodes(osb);
Srinivas Eeda9140db02009-03-06 14:21:46 -08002494 if (status < 0) {
2495 mlog_errno(status);
2496 goto finally;
2497 }
2498
2499 status = ocfs2_compute_replay_slots(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002500 if (status < 0)
2501 mlog_errno(status);
2502
2503finally:
2504 if (local_alloc)
2505 kfree(local_alloc);
2506
2507 mlog_exit(status);
2508 return status;
2509}
2510
2511/*
2512 * The routine gets called from dismount or close whenever a dismount on
2513 * volume is requested and the osb open count becomes 1.
2514 * It will remove the osb from the global list and also free up all the
2515 * initialized resources and fileobject.
2516 */
2517static void ocfs2_delete_osb(struct ocfs2_super *osb)
2518{
2519 mlog_entry_void();
2520
2521 /* This function assumes that the caller has the main osb resource */
2522
Mark Fasheh8e8a4602008-02-01 11:59:09 -08002523 ocfs2_free_slot_info(osb);
Mark Fashehccd979b2005-12-15 14:31:24 -08002524
Mark Fashehb4df6ed2006-02-22 17:35:08 -08002525 kfree(osb->osb_orphan_wipes);
Sunil Mushran539d8262008-07-14 17:31:10 -07002526 kfree(osb->slot_recovery_generations);
Mark Fashehccd979b2005-12-15 14:31:24 -08002527 /* FIXME
2528 * This belongs in journal shutdown, but because we have to
Uwe Kleine-König421f91d2010-06-11 12:17:00 +02002529 * allocate osb->journal at the start of ocfs2_initialize_osb(),
Mark Fashehccd979b2005-12-15 14:31:24 -08002530 * we free it here.
2531 */
2532 kfree(osb->journal);
2533 if (osb->local_alloc_copy)
2534 kfree(osb->local_alloc_copy);
2535 kfree(osb->uuid_str);
2536 ocfs2_put_dlm_debug(osb->osb_dlm_debug);
2537 memset(osb, 0, sizeof(struct ocfs2_super));
2538
2539 mlog_exit_void();
2540}
2541
2542/* Put OCFS2 into a readonly state, or (if the user specifies it),
2543 * panic(). We do not support continue-on-error operation. */
2544static void ocfs2_handle_error(struct super_block *sb)
2545{
2546 struct ocfs2_super *osb = OCFS2_SB(sb);
2547
2548 if (osb->s_mount_opt & OCFS2_MOUNT_ERRORS_PANIC)
2549 panic("OCFS2: (device %s): panic forced after error\n",
2550 sb->s_id);
2551
2552 ocfs2_set_osb_flag(osb, OCFS2_OSB_ERROR_FS);
2553
2554 if (sb->s_flags & MS_RDONLY &&
2555 (ocfs2_is_soft_readonly(osb) ||
2556 ocfs2_is_hard_readonly(osb)))
2557 return;
2558
2559 printk(KERN_CRIT "File system is now read-only due to the potential "
2560 "of on-disk corruption. Please run fsck.ocfs2 once the file "
2561 "system is unmounted.\n");
2562 sb->s_flags |= MS_RDONLY;
2563 ocfs2_set_ro_flag(osb, 0);
2564}
2565
2566static char error_buf[1024];
2567
2568void __ocfs2_error(struct super_block *sb,
2569 const char *function,
2570 const char *fmt, ...)
2571{
2572 va_list args;
2573
2574 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002575 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002576 va_end(args);
2577
2578 /* Not using mlog here because we want to show the actual
2579 * function the error came from. */
2580 printk(KERN_CRIT "OCFS2: ERROR (device %s): %s: %s\n",
2581 sb->s_id, function, error_buf);
2582
2583 ocfs2_handle_error(sb);
2584}
2585
2586/* Handle critical errors. This is intentionally more drastic than
2587 * ocfs2_handle_error, so we only use for things like journal errors,
2588 * etc. */
2589void __ocfs2_abort(struct super_block* sb,
2590 const char *function,
2591 const char *fmt, ...)
2592{
2593 va_list args;
2594
2595 va_start(args, fmt);
Alexey Dobriyan4a6e6172006-12-06 20:37:04 -08002596 vsnprintf(error_buf, sizeof(error_buf), fmt, args);
Mark Fashehccd979b2005-12-15 14:31:24 -08002597 va_end(args);
2598
2599 printk(KERN_CRIT "OCFS2: abort (device %s): %s: %s\n",
2600 sb->s_id, function, error_buf);
2601
2602 /* We don't have the cluster support yet to go straight to
2603 * hard readonly in here. Until then, we want to keep
2604 * ocfs2_abort() so that we can at least mark critical
2605 * errors.
2606 *
2607 * TODO: This should abort the journal and alert other nodes
2608 * that our slot needs recovery. */
2609
2610 /* Force a panic(). This stinks, but it's better than letting
2611 * things continue without having a proper hard readonly
2612 * here. */
Sunil Mushrana2f2ddb2009-08-19 15:16:01 -07002613 if (!ocfs2_mount_local(OCFS2_SB(sb)))
2614 OCFS2_SB(sb)->s_mount_opt |= OCFS2_MOUNT_ERRORS_PANIC;
Mark Fashehccd979b2005-12-15 14:31:24 -08002615 ocfs2_handle_error(sb);
2616}
2617
Joel Beckere4b963f2009-09-02 17:17:36 -07002618/*
2619 * Void signal blockers, because in-kernel sigprocmask() only fails
2620 * when SIG_* is wrong.
2621 */
2622void ocfs2_block_signals(sigset_t *oldset)
2623{
2624 int rc;
2625 sigset_t blocked;
2626
2627 sigfillset(&blocked);
2628 rc = sigprocmask(SIG_BLOCK, &blocked, oldset);
2629 BUG_ON(rc);
2630}
2631
2632void ocfs2_unblock_signals(sigset_t *oldset)
2633{
2634 int rc = sigprocmask(SIG_SETMASK, oldset, NULL);
2635 BUG_ON(rc);
2636}
2637
Mark Fashehccd979b2005-12-15 14:31:24 -08002638module_init(ocfs2_init);
2639module_exit(ocfs2_exit);