blob: 0a97b1ad3e19b09b5699b9c77aba18dcee12a47b [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -040023#include <linux/vmalloc.h>
Mingming Caodab291a2006-10-11 01:21:01 -070024#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/blkdev.h>
28#include <linux/parser.h>
29#include <linux/smp_lock.h>
30#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070031#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/vfs.h>
33#include <linux/random.h>
34#include <linux/mount.h>
35#include <linux/namei.h>
36#include <linux/quotaops.h>
37#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040038#include <linux/proc_fs.h>
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040039#include <linux/ctype.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040040#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040041#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040042#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043#include <asm/uaccess.h>
44
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040045#include "ext4.h"
46#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047#include "xattr.h"
48#include "acl.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Curt Wohlgemuthf4033902009-05-01 20:27:20 -040050static int default_mb_history_length = 1000;
51
52module_param_named(default_mb_history_length, default_mb_history_length,
53 int, 0644);
54MODULE_PARM_DESC(default_mb_history_length,
55 "Default number of entries saved for mb_history");
56
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040057struct proc_dir_entry *ext4_proc_root;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040058static struct kset *ext4_kset;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040059
Mingming Cao617ba132006-10-11 01:20:53 -070060static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070061 unsigned long journal_devnum);
Theodore Ts'oe2d67052009-05-01 00:33:44 -040062static int ext4_commit_super(struct super_block *sb, int sync);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040063static void ext4_mark_recovery_complete(struct super_block *sb,
64 struct ext4_super_block *es);
65static void ext4_clear_journal_err(struct super_block *sb,
66 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070067static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040068static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070069 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040070static int ext4_remount(struct super_block *sb, int *flags, char *data);
71static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080072static int ext4_unfreeze(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040073static void ext4_write_super(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080074static int ext4_freeze(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070075
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070076
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070077ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
78 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070079{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040080 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070081 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040082 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070083}
84
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070085ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
86 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070087{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040088 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070089 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040090 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070091}
92
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070093ext4_fsblk_t ext4_inode_table(struct super_block *sb,
94 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070095{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040096 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070097 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040098 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070099}
100
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500101__u32 ext4_free_blks_count(struct super_block *sb,
102 struct ext4_group_desc *bg)
103{
104 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
105 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400106 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500107}
108
109__u32 ext4_free_inodes_count(struct super_block *sb,
110 struct ext4_group_desc *bg)
111{
112 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
113 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400114 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500115}
116
117__u32 ext4_used_dirs_count(struct super_block *sb,
118 struct ext4_group_desc *bg)
119{
120 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
121 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400122 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500123}
124
125__u32 ext4_itable_unused_count(struct super_block *sb,
126 struct ext4_group_desc *bg)
127{
128 return le16_to_cpu(bg->bg_itable_unused_lo) |
129 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400130 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500131}
132
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700133void ext4_block_bitmap_set(struct super_block *sb,
134 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700135{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400136 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700137 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
138 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700139}
140
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700141void ext4_inode_bitmap_set(struct super_block *sb,
142 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700143{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400144 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700145 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
146 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700147}
148
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700149void ext4_inode_table_set(struct super_block *sb,
150 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700151{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400152 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700153 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
154 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700155}
156
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500157void ext4_free_blks_set(struct super_block *sb,
158 struct ext4_group_desc *bg, __u32 count)
159{
160 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
161 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
162 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
163}
164
165void ext4_free_inodes_set(struct super_block *sb,
166 struct ext4_group_desc *bg, __u32 count)
167{
168 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
169 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
170 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
171}
172
173void ext4_used_dirs_set(struct super_block *sb,
174 struct ext4_group_desc *bg, __u32 count)
175{
176 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
177 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
178 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
179}
180
181void ext4_itable_unused_set(struct super_block *sb,
182 struct ext4_group_desc *bg, __u32 count)
183{
184 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
185 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
186 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
187}
188
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700189/*
Mingming Caodab291a2006-10-11 01:21:01 -0700190 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700191 *
192 * The only special thing we need to do here is to make sure that all
193 * journal_end calls result in the superblock being marked dirty, so
194 * that sync() will call the filesystem's write_super callback if
195 * appropriate.
196 */
Mingming Cao617ba132006-10-11 01:20:53 -0700197handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700198{
199 journal_t *journal;
200
201 if (sb->s_flags & MS_RDONLY)
202 return ERR_PTR(-EROFS);
203
204 /* Special case here: if the journal has aborted behind our
205 * backs (eg. EIO in the commit thread), then we still need to
206 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700207 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500208 if (journal) {
209 if (is_journal_aborted(journal)) {
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400210 ext4_abort(sb, __func__, "Detected aborted journal");
Frank Mayhar03901312009-01-07 00:06:22 -0500211 return ERR_PTR(-EROFS);
212 }
213 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700214 }
Frank Mayhar03901312009-01-07 00:06:22 -0500215 /*
216 * We're not journaling, return the appropriate indication.
217 */
218 current->journal_info = EXT4_NOJOURNAL_HANDLE;
219 return current->journal_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700220}
221
222/*
223 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700224 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700225 * that sync() will call the filesystem's write_super callback if
226 * appropriate.
227 */
Mingming Cao617ba132006-10-11 01:20:53 -0700228int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229{
230 struct super_block *sb;
231 int err;
232 int rc;
233
Frank Mayhar03901312009-01-07 00:06:22 -0500234 if (!ext4_handle_valid(handle)) {
235 /*
236 * Do this here since we don't call jbd2_journal_stop() in
237 * no-journal mode.
238 */
239 current->journal_info = NULL;
240 return 0;
241 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 sb = handle->h_transaction->t_journal->j_private;
243 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700244 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700245
246 if (!err)
247 err = rc;
248 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700249 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700250 return err;
251}
252
Mingming Cao617ba132006-10-11 01:20:53 -0700253void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 struct buffer_head *bh, handle_t *handle, int err)
255{
256 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700257 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700258
Frank Mayhar03901312009-01-07 00:06:22 -0500259 BUG_ON(!ext4_handle_valid(handle));
260
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700261 if (bh)
262 BUFFER_TRACE(bh, "abort");
263
264 if (!handle->h_err)
265 handle->h_err = err;
266
267 if (is_handle_aborted(handle))
268 return;
269
270 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
271 caller, errstr, err_fn);
272
Mingming Caodab291a2006-10-11 01:21:01 -0700273 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700274}
275
276/* Deal with the reporting of failure conditions on a filesystem such as
277 * inconsistencies detected or read IO failures.
278 *
279 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700280 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700281 * write ordering constraints on the superblock which prevent us from
282 * writing it out straight away; and given that the journal is about to
283 * be aborted, we can't rely on the current, or future, transactions to
284 * write out the superblock safely.
285 *
Mingming Caodab291a2006-10-11 01:21:01 -0700286 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700287 * the journal instead. On recovery, the journal will compain about
288 * that error until we've noted it down and cleared it.
289 */
290
Mingming Cao617ba132006-10-11 01:20:53 -0700291static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292{
Mingming Cao617ba132006-10-11 01:20:53 -0700293 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294
Mingming Cao617ba132006-10-11 01:20:53 -0700295 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
296 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700297
298 if (sb->s_flags & MS_RDONLY)
299 return;
300
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400301 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700302 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700303
Mingming Cao617ba132006-10-11 01:20:53 -0700304 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700305 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700306 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700307 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400308 if (test_opt(sb, ERRORS_RO)) {
309 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 sb->s_flags |= MS_RDONLY;
311 }
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400312 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700313 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700314 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315 sb->s_id);
316}
317
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400318void ext4_error(struct super_block *sb, const char *function,
319 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700320{
321 va_list args;
322
323 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400324 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700325 vprintk(fmt, args);
326 printk("\n");
327 va_end(args);
328
Mingming Cao617ba132006-10-11 01:20:53 -0700329 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700330}
331
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400332static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700333 char nbuf[16])
334{
335 char *errstr = NULL;
336
337 switch (errno) {
338 case -EIO:
339 errstr = "IO failure";
340 break;
341 case -ENOMEM:
342 errstr = "Out of memory";
343 break;
344 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700345 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700346 errstr = "Journal has aborted";
347 else
348 errstr = "Readonly filesystem";
349 break;
350 default:
351 /* If the caller passed in an extra buffer for unknown
352 * errors, textualise them now. Else we just return
353 * NULL. */
354 if (nbuf) {
355 /* Check for truncated error codes... */
356 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
357 errstr = nbuf;
358 }
359 break;
360 }
361
362 return errstr;
363}
364
Mingming Cao617ba132006-10-11 01:20:53 -0700365/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700366 * automatically and invokes the appropriate error response. */
367
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400368void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700369{
370 char nbuf[16];
371 const char *errstr;
372
373 /* Special case: if the error is EROFS, and we're not already
374 * inside a transaction, then there's really no point in logging
375 * an error. */
376 if (errno == -EROFS && journal_current_handle() == NULL &&
377 (sb->s_flags & MS_RDONLY))
378 return;
379
Mingming Cao617ba132006-10-11 01:20:53 -0700380 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400381 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
382 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700383
Mingming Cao617ba132006-10-11 01:20:53 -0700384 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700385}
386
387/*
Mingming Cao617ba132006-10-11 01:20:53 -0700388 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700389 * abort function may be used to deal with unrecoverable failures such
390 * as journal IO errors or ENOMEM at a critical moment in log management.
391 *
392 * We unconditionally force the filesystem into an ABORT|READONLY state,
393 * unless the error response on the fs has been set to panic in which
394 * case we take the easy way out and panic immediately.
395 */
396
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400397void ext4_abort(struct super_block *sb, const char *function,
398 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700399{
400 va_list args;
401
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400402 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700403
404 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400405 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700406 vprintk(fmt, args);
407 printk("\n");
408 va_end(args);
409
410 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700411 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700412
413 if (sb->s_flags & MS_RDONLY)
414 return;
415
416 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700417 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700419 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400420 if (EXT4_SB(sb)->s_journal)
421 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422}
423
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400424void ext4_warning(struct super_block *sb, const char *function,
425 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700426{
427 va_list args;
428
429 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700430 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700431 sb->s_id, function);
432 vprintk(fmt, args);
433 printk("\n");
434 va_end(args);
435}
436
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500437void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400438 const char *function, const char *fmt, ...)
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500439__releases(bitlock)
440__acquires(bitlock)
441{
442 va_list args;
443 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
444
445 va_start(args, fmt);
446 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
447 vprintk(fmt, args);
448 printk("\n");
449 va_end(args);
450
451 if (test_opt(sb, ERRORS_CONT)) {
452 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
453 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400454 ext4_commit_super(sb, 0);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500455 return;
456 }
457 ext4_unlock_group(sb, grp);
458 ext4_handle_error(sb);
459 /*
460 * We only get here in the ERRORS_RO case; relocking the group
461 * may be dangerous, but nothing bad will happen since the
462 * filesystem will have already been marked read/only and the
463 * journal has been aborted. We return 1 as a hint to callers
464 * who might what to use the return value from
465 * ext4_grp_locked_error() to distinguish beween the
466 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
467 * aggressively from the ext4 function in question, with a
468 * more appropriate error code.
469 */
470 ext4_lock_group(sb, grp);
471 return;
472}
473
Mingming Cao617ba132006-10-11 01:20:53 -0700474void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475{
Mingming Cao617ba132006-10-11 01:20:53 -0700476 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477
Mingming Cao617ba132006-10-11 01:20:53 -0700478 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 return;
480
Harvey Harrison46e665e2008-04-17 10:38:59 -0400481 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482 "updating to rev %d because of new feature flag, "
483 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700484 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700485
Mingming Cao617ba132006-10-11 01:20:53 -0700486 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
487 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
488 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700489 /* leave es->s_feature_*compat flags alone */
490 /* es->s_uuid will be set by e2fsck if empty */
491
492 /*
493 * The rest of the superblock fields should be zero, and if not it
494 * means they are likely already in use, so leave them alone. We
495 * can leave it up to e2fsck to clean up any inconsistencies there.
496 */
497}
498
499/*
500 * Open the external journal device
501 */
Mingming Cao617ba132006-10-11 01:20:53 -0700502static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700503{
504 struct block_device *bdev;
505 char b[BDEVNAME_SIZE];
506
507 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
508 if (IS_ERR(bdev))
509 goto fail;
510 return bdev;
511
512fail:
Theodore Ts'oabda1412009-01-06 00:20:32 -0500513 printk(KERN_ERR "EXT4-fs: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514 __bdevname(dev, b), PTR_ERR(bdev));
515 return NULL;
516}
517
518/*
519 * Release the journal device
520 */
Mingming Cao617ba132006-10-11 01:20:53 -0700521static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700522{
523 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500524 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525}
526
Mingming Cao617ba132006-10-11 01:20:53 -0700527static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700528{
529 struct block_device *bdev;
530 int ret = -ENODEV;
531
532 bdev = sbi->journal_bdev;
533 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700534 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700535 sbi->journal_bdev = NULL;
536 }
537 return ret;
538}
539
540static inline struct inode *orphan_list_entry(struct list_head *l)
541{
Mingming Cao617ba132006-10-11 01:20:53 -0700542 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700543}
544
Mingming Cao617ba132006-10-11 01:20:53 -0700545static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700546{
547 struct list_head *l;
548
549 printk(KERN_ERR "sb orphan head is %d\n",
550 le32_to_cpu(sbi->s_es->s_last_orphan));
551
552 printk(KERN_ERR "sb_info orphan list:\n");
553 list_for_each(l, &sbi->s_orphan) {
554 struct inode *inode = orphan_list_entry(l);
555 printk(KERN_ERR " "
556 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
557 inode->i_sb->s_id, inode->i_ino, inode,
558 inode->i_mode, inode->i_nlink,
559 NEXT_ORPHAN(inode));
560 }
561}
562
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400563static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564{
Mingming Cao617ba132006-10-11 01:20:53 -0700565 struct ext4_sb_info *sbi = EXT4_SB(sb);
566 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400567 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700568
Theodore Ts'o6fd058f2009-05-17 15:38:01 -0400569 ext4_release_system_zone(sb);
Alex Tomasc9de5602008-01-29 00:19:52 -0500570 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700571 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700572 ext4_xattr_put_super(sb);
Frank Mayhar03901312009-01-07 00:06:22 -0500573 if (sbi->s_journal) {
574 err = jbd2_journal_destroy(sbi->s_journal);
575 sbi->s_journal = NULL;
576 if (err < 0)
577 ext4_abort(sb, __func__,
578 "Couldn't clean up the journal");
579 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700581 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700582 es->s_state = cpu_to_le16(sbi->s_mount_state);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400583 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700584 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400585 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400586 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400587 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400588 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700589
590 for (i = 0; i < sbi->s_gdb_count; i++)
591 brelse(sbi->s_group_desc[i]);
592 kfree(sbi->s_group_desc);
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -0400593 if (is_vmalloc_addr(sbi->s_flex_groups))
594 vfree(sbi->s_flex_groups);
595 else
596 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597 percpu_counter_destroy(&sbi->s_freeblocks_counter);
598 percpu_counter_destroy(&sbi->s_freeinodes_counter);
599 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400600 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700601 brelse(sbi->s_sbh);
602#ifdef CONFIG_QUOTA
603 for (i = 0; i < MAXQUOTAS; i++)
604 kfree(sbi->s_qf_names[i]);
605#endif
606
607 /* Debugging code just in case the in-memory inode orphan list
608 * isn't empty. The on-disk one can be non-empty if we've
609 * detected an error and taken the fs readonly, but the
610 * in-memory list had better be clean by this point. */
611 if (!list_empty(&sbi->s_orphan))
612 dump_orphan_list(sb, sbi);
613 J_ASSERT(list_empty(&sbi->s_orphan));
614
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700615 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
617 /*
618 * Invalidate the journal device's buffers. We don't want them
619 * floating about in memory - the physical journal device may
620 * hotswapped, and it breaks the `ro-after' testing code.
621 */
622 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700623 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700624 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700625 }
626 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400627 /*
628 * Now that we are completely done shutting down the
629 * superblock, we need to actually destroy the kobject.
630 */
631 unlock_kernel();
632 unlock_super(sb);
633 kobject_put(&sbi->s_kobj);
634 wait_for_completion(&sbi->s_kobj_unregister);
635 lock_super(sb);
636 lock_kernel();
Pekka Enberg705895b2009-02-15 18:07:52 -0500637 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700638 kfree(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639}
640
Christoph Lametere18b8902006-12-06 20:33:20 -0800641static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700642
643/*
644 * Called inside transaction, so use GFP_NOFS
645 */
Mingming Cao617ba132006-10-11 01:20:53 -0700646static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700647{
Mingming Cao617ba132006-10-11 01:20:53 -0700648 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800650 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651 if (!ei)
652 return NULL;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400653
Theodore Ts'o03010a32008-10-10 20:02:48 -0400654#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700655 ei->i_acl = EXT4_ACL_NOT_CACHED;
656 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700658 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400659 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700660 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500661 INIT_LIST_HEAD(&ei->i_prealloc_list);
662 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500663 /*
664 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
665 * therefore it can be null here. Don't check it, just initialize
666 * jinode.
667 */
Jan Kara678aaf42008-07-11 19:27:31 -0400668 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400669 ei->i_reserved_data_blocks = 0;
670 ei->i_reserved_meta_blocks = 0;
671 ei->i_allocated_meta_blocks = 0;
672 ei->i_delalloc_reserved_flag = 0;
673 spin_lock_init(&(ei->i_block_reservation_lock));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400674
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700675 return &ei->vfs_inode;
676}
677
Mingming Cao617ba132006-10-11 01:20:53 -0700678static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700679{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700680 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
681 printk("EXT4 Inode %p: orphan list check failed!\n",
682 EXT4_I(inode));
683 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
684 EXT4_I(inode), sizeof(struct ext4_inode_info),
685 true);
686 dump_stack();
687 }
Mingming Cao617ba132006-10-11 01:20:53 -0700688 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700689}
690
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700691static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700692{
Mingming Cao617ba132006-10-11 01:20:53 -0700693 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700694
Christoph Lametera35afb82007-05-16 22:10:57 -0700695 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400696#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700697 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700698#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500699 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700700 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700701}
702
703static int init_inodecache(void)
704{
Mingming Cao617ba132006-10-11 01:20:53 -0700705 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
706 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707 0, (SLAB_RECLAIM_ACCOUNT|
708 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900709 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700710 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700711 return -ENOMEM;
712 return 0;
713}
714
715static void destroy_inodecache(void)
716{
Mingming Cao617ba132006-10-11 01:20:53 -0700717 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700718}
719
Mingming Cao617ba132006-10-11 01:20:53 -0700720static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700721{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400722#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700723 if (EXT4_I(inode)->i_acl &&
724 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
725 posix_acl_release(EXT4_I(inode)->i_acl);
726 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700727 }
Mingming Cao617ba132006-10-11 01:20:53 -0700728 if (EXT4_I(inode)->i_default_acl &&
729 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
730 posix_acl_release(EXT4_I(inode)->i_default_acl);
731 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700732 }
733#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400734 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500735 if (EXT4_JOURNAL(inode))
736 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400737 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738}
739
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400740static inline void ext4_show_quota_options(struct seq_file *seq,
741 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742{
743#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700744 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700745
746 if (sbi->s_jquota_fmt)
747 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400748 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700749
750 if (sbi->s_qf_names[USRQUOTA])
751 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
752
753 if (sbi->s_qf_names[GRPQUOTA])
754 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
755
Mingming Cao617ba132006-10-11 01:20:53 -0700756 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700757 seq_puts(seq, ",usrquota");
758
Mingming Cao617ba132006-10-11 01:20:53 -0700759 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700760 seq_puts(seq, ",grpquota");
761#endif
762}
763
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700764/*
765 * Show an option if
766 * - it's set to a non-default value OR
767 * - if the per-sb default is different from the global default
768 */
Mingming Cao617ba132006-10-11 01:20:53 -0700769static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700770{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500771 int def_errors;
772 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700773 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700774 struct ext4_sb_info *sbi = EXT4_SB(sb);
775 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700776
777 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500778 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700779
780 if (sbi->s_sb_block != 1)
781 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
782 if (test_opt(sb, MINIX_DF))
783 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500784 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700785 seq_puts(seq, ",grpid");
786 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
787 seq_puts(seq, ",nogrpid");
788 if (sbi->s_resuid != EXT4_DEF_RESUID ||
789 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
790 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
791 }
792 if (sbi->s_resgid != EXT4_DEF_RESGID ||
793 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
794 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
795 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500796 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700797 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500798 def_errors == EXT4_ERRORS_CONTINUE) {
799 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700800 }
801 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500802 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500803 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500804 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700805 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500806 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700807 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500808 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700809 seq_puts(seq, ",debug");
810 if (test_opt(sb, OLDALLOC))
811 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400812#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500813 if (test_opt(sb, XATTR_USER) &&
814 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700815 seq_puts(seq, ",user_xattr");
816 if (!test_opt(sb, XATTR_USER) &&
817 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
818 seq_puts(seq, ",nouser_xattr");
819 }
820#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400821#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500822 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700823 seq_puts(seq, ",acl");
824 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
825 seq_puts(seq, ",noacl");
826#endif
Theodore Ts'o30773842009-01-03 20:27:38 -0500827 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700828 seq_printf(seq, ",commit=%u",
829 (unsigned) (sbi->s_commit_interval / HZ));
830 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500831 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
832 seq_printf(seq, ",min_batch_time=%u",
833 (unsigned) sbi->s_min_batch_time);
834 }
835 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
836 seq_printf(seq, ",max_batch_time=%u",
837 (unsigned) sbi->s_min_batch_time);
838 }
839
Eric Sandeen571640c2008-05-26 12:29:46 -0400840 /*
841 * We're changing the default of barrier mount option, so
842 * let's always display its mount state so it's clear what its
843 * status is.
844 */
845 seq_puts(seq, ",barrier=");
846 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400847 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
848 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700849 if (test_opt(sb, NOBH))
850 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500851 if (test_opt(sb, I_VERSION))
852 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400853 if (!test_opt(sb, DELALLOC))
854 seq_puts(seq, ",nodelalloc");
855
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700856
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500857 if (sbi->s_stripe)
858 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500859 /*
860 * journal mode get enabled in different ways
861 * So just print the value even if we didn't specify it
862 */
Mingming Cao617ba132006-10-11 01:20:53 -0700863 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700864 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700865 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700867 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 seq_puts(seq, ",data=writeback");
869
Theodore Ts'o240799c2008-10-09 23:53:47 -0400870 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
871 seq_printf(seq, ",inode_readahead_blks=%u",
872 sbi->s_inode_readahead_blks);
873
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400874 if (test_opt(sb, DATA_ERR_ABORT))
875 seq_puts(seq, ",data_err=abort");
876
Theodore Ts'oafd46722009-03-16 23:12:23 -0400877 if (test_opt(sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o06705bf2009-03-28 10:59:57 -0400878 seq_puts(seq, ",noauto_da_alloc");
Theodore Ts'oafd46722009-03-16 23:12:23 -0400879
Mingming Cao617ba132006-10-11 01:20:53 -0700880 ext4_show_quota_options(seq, sb);
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400881
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882 return 0;
883}
884
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700885static struct inode *ext4_nfs_get_inode(struct super_block *sb,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400886 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700889
Mingming Cao617ba132006-10-11 01:20:53 -0700890 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700891 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700892 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893 return ERR_PTR(-ESTALE);
894
895 /* iget isn't really right if the inode is currently unallocated!!
896 *
Mingming Cao617ba132006-10-11 01:20:53 -0700897 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898 * deleted, so we should be safe.
899 *
900 * Currently we don't know the generation for parent directory, so
901 * a generation of 0 means "accept any"
902 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800903 inode = ext4_iget(sb, ino);
904 if (IS_ERR(inode))
905 return ERR_CAST(inode);
906 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700907 iput(inode);
908 return ERR_PTR(-ESTALE);
909 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700910
911 return inode;
912}
913
914static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400915 int fh_len, int fh_type)
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700916{
917 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
918 ext4_nfs_get_inode);
919}
920
921static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400922 int fh_len, int fh_type)
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700923{
924 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
925 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700926}
927
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500928/*
929 * Try to release metadata pages (indirect blocks, directories) which are
930 * mapped via the block device. Since these pages could have journal heads
931 * which would prevent try_to_free_buffers() from freeing them, we must use
932 * jbd2 layer's try_to_free_buffers() function to release them.
933 */
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400934static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
935 gfp_t wait)
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500936{
937 journal_t *journal = EXT4_SB(sb)->s_journal;
938
939 WARN_ON(PageChecked(page));
940 if (!page_has_buffers(page))
941 return 0;
942 if (journal)
943 return jbd2_journal_try_to_free_buffers(journal, page,
944 wait & ~__GFP_WAIT);
945 return try_to_free_buffers(page);
946}
947
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700948#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400949#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400950#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951
Mingming Cao617ba132006-10-11 01:20:53 -0700952static int ext4_write_dquot(struct dquot *dquot);
953static int ext4_acquire_dquot(struct dquot *dquot);
954static int ext4_release_dquot(struct dquot *dquot);
955static int ext4_mark_dquot_dirty(struct dquot *dquot);
956static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700957static int ext4_quota_on(struct super_block *sb, int type, int format_id,
958 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700959static int ext4_quota_on_mount(struct super_block *sb, int type);
960static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700961 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700962static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 const char *data, size_t len, loff_t off);
964
Mingming Cao617ba132006-10-11 01:20:53 -0700965static struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +0100966 .initialize = dquot_initialize,
967 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700968 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +0100969 .reserve_space = dquot_reserve_space,
970 .claim_space = dquot_claim_space,
971 .release_rsv = dquot_release_reserved_space,
972 .get_reserved_space = ext4_get_reserved_space,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700973 .alloc_inode = dquot_alloc_inode,
974 .free_space = dquot_free_space,
975 .free_inode = dquot_free_inode,
976 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700977 .write_dquot = ext4_write_dquot,
978 .acquire_dquot = ext4_acquire_dquot,
979 .release_dquot = ext4_release_dquot,
980 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +0100981 .write_info = ext4_write_info,
982 .alloc_dquot = dquot_alloc,
983 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700984};
985
Mingming Cao617ba132006-10-11 01:20:53 -0700986static struct quotactl_ops ext4_qctl_operations = {
987 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700988 .quota_off = vfs_quota_off,
989 .quota_sync = vfs_quota_sync,
990 .get_info = vfs_get_dqinfo,
991 .set_info = vfs_set_dqinfo,
992 .get_dqblk = vfs_get_dqblk,
993 .set_dqblk = vfs_set_dqblk
994};
995#endif
996
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800997static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700998 .alloc_inode = ext4_alloc_inode,
999 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -07001000 .write_inode = ext4_write_inode,
1001 .dirty_inode = ext4_dirty_inode,
1002 .delete_inode = ext4_delete_inode,
1003 .put_super = ext4_put_super,
Mingming Cao617ba132006-10-11 01:20:53 -07001004 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001005 .freeze_fs = ext4_freeze,
1006 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -07001007 .statfs = ext4_statfs,
1008 .remount_fs = ext4_remount,
1009 .clear_inode = ext4_clear_inode,
1010 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001012 .quota_read = ext4_quota_read,
1013 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001015 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001016};
1017
Theodore Ts'o9ca92382009-05-01 12:52:25 -04001018static const struct super_operations ext4_nojournal_sops = {
1019 .alloc_inode = ext4_alloc_inode,
1020 .destroy_inode = ext4_destroy_inode,
1021 .write_inode = ext4_write_inode,
1022 .dirty_inode = ext4_dirty_inode,
1023 .delete_inode = ext4_delete_inode,
1024 .write_super = ext4_write_super,
1025 .put_super = ext4_put_super,
1026 .statfs = ext4_statfs,
1027 .remount_fs = ext4_remount,
1028 .clear_inode = ext4_clear_inode,
1029 .show_options = ext4_show_options,
1030#ifdef CONFIG_QUOTA
1031 .quota_read = ext4_quota_read,
1032 .quota_write = ext4_quota_write,
1033#endif
1034 .bdev_try_to_free_page = bdev_try_to_free_page,
1035};
1036
Christoph Hellwig39655162007-10-21 16:42:17 -07001037static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001038 .fh_to_dentry = ext4_fh_to_dentry,
1039 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001040 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041};
1042
1043enum {
1044 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1045 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001046 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001047 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001048 Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001049 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001050 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001051 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Curt Wohlgemuthf4033902009-05-01 20:27:20 -04001053 Opt_data_err_abort, Opt_data_err_ignore, Opt_mb_history_length,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1055 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001056 Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err, Opt_resize,
1057 Opt_usrquota, Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001058 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001059 Opt_block_validity, Opt_noblock_validity,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001060 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001061};
1062
Steven Whitehousea447c092008-10-13 10:46:57 +01001063static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001064 {Opt_bsd_df, "bsddf"},
1065 {Opt_minix_df, "minixdf"},
1066 {Opt_grpid, "grpid"},
1067 {Opt_grpid, "bsdgroups"},
1068 {Opt_nogrpid, "nogrpid"},
1069 {Opt_nogrpid, "sysvgroups"},
1070 {Opt_resgid, "resgid=%u"},
1071 {Opt_resuid, "resuid=%u"},
1072 {Opt_sb, "sb=%u"},
1073 {Opt_err_cont, "errors=continue"},
1074 {Opt_err_panic, "errors=panic"},
1075 {Opt_err_ro, "errors=remount-ro"},
1076 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001077 {Opt_debug, "debug"},
1078 {Opt_oldalloc, "oldalloc"},
1079 {Opt_orlov, "orlov"},
1080 {Opt_user_xattr, "user_xattr"},
1081 {Opt_nouser_xattr, "nouser_xattr"},
1082 {Opt_acl, "acl"},
1083 {Opt_noacl, "noacl"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 {Opt_noload, "noload"},
1085 {Opt_nobh, "nobh"},
1086 {Opt_bh, "bh"},
1087 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001088 {Opt_min_batch_time, "min_batch_time=%u"},
1089 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001090 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001091 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001092 {Opt_journal_checksum, "journal_checksum"},
1093 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001094 {Opt_abort, "abort"},
1095 {Opt_data_journal, "data=journal"},
1096 {Opt_data_ordered, "data=ordered"},
1097 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001098 {Opt_data_err_abort, "data_err=abort"},
1099 {Opt_data_err_ignore, "data_err=ignore"},
Curt Wohlgemuthf4033902009-05-01 20:27:20 -04001100 {Opt_mb_history_length, "mb_history_length=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001101 {Opt_offusrjquota, "usrjquota="},
1102 {Opt_usrjquota, "usrjquota=%s"},
1103 {Opt_offgrpjquota, "grpjquota="},
1104 {Opt_grpjquota, "grpjquota=%s"},
1105 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1106 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1107 {Opt_grpquota, "grpquota"},
1108 {Opt_noquota, "noquota"},
1109 {Opt_quota, "quota"},
1110 {Opt_usrquota, "usrquota"},
1111 {Opt_barrier, "barrier=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001112 {Opt_barrier, "barrier"},
1113 {Opt_nobarrier, "nobarrier"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001114 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001115 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001116 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001117 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001118 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001119 {Opt_block_validity, "block_validity"},
1120 {Opt_noblock_validity, "noblock_validity"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001121 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001122 {Opt_journal_ioprio, "journal_ioprio=%u"},
Theodore Ts'oafd46722009-03-16 23:12:23 -04001123 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001124 {Opt_auto_da_alloc, "auto_da_alloc"},
1125 {Opt_noauto_da_alloc, "noauto_da_alloc"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001126 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001127};
1128
Mingming Cao617ba132006-10-11 01:20:53 -07001129static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001130{
Mingming Cao617ba132006-10-11 01:20:53 -07001131 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132 char *options = (char *) *data;
1133
1134 if (!options || strncmp(options, "sb=", 3) != 0)
1135 return 1; /* Default location */
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001136
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137 options += 3;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001138 /* TODO: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001139 sb_block = simple_strtoul(options, &options, 0);
1140 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001141 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001142 (char *) *data);
1143 return 1;
1144 }
1145 if (*options == ',')
1146 options++;
1147 *data = (void *) options;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001148
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001149 return sb_block;
1150}
1151
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001152#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1153
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001154static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001155 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001156 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001157 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001158{
Mingming Cao617ba132006-10-11 01:20:53 -07001159 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001160 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001161 substring_t args[MAX_OPT_ARGS];
1162 int data_opt = 0;
1163 int option;
1164#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001165 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001166 char *qname;
1167#endif
1168
1169 if (!options)
1170 return 1;
1171
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001172 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001173 int token;
1174 if (!*p)
1175 continue;
1176
1177 token = match_token(p, tokens, args);
1178 switch (token) {
1179 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001180 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001181 break;
1182 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001183 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184 break;
1185 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001186 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001187 break;
1188 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001189 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001190 break;
1191 case Opt_resuid:
1192 if (match_int(&args[0], &option))
1193 return 0;
1194 sbi->s_resuid = option;
1195 break;
1196 case Opt_resgid:
1197 if (match_int(&args[0], &option))
1198 return 0;
1199 sbi->s_resgid = option;
1200 break;
1201 case Opt_sb:
1202 /* handled by get_sb_block() instead of here */
1203 /* *sb_block = match_int(&args[0]); */
1204 break;
1205 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001206 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1207 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1208 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001209 break;
1210 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001211 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1212 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1213 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001214 break;
1215 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001216 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1217 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1218 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001219 break;
1220 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001221 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001222 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001223 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001224 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001225 break;
1226 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001227 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001228 break;
1229 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001230 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001231 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001232#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001233 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001234 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 break;
1236 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001237 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 break;
1239#else
1240 case Opt_user_xattr:
1241 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001242 printk(KERN_ERR "EXT4 (no)user_xattr options "
1243 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001244 break;
1245#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001246#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247 case Opt_acl:
1248 set_opt(sbi->s_mount_opt, POSIX_ACL);
1249 break;
1250 case Opt_noacl:
1251 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1252 break;
1253#else
1254 case Opt_acl:
1255 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001256 printk(KERN_ERR "EXT4 (no)acl options "
1257 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001258 break;
1259#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260 case Opt_journal_update:
1261 /* @@@ FIXME */
1262 /* Eventually we will want to be able to create
1263 a journal file here. For now, only allow the
1264 user to specify an existing inode to be the
1265 journal file. */
1266 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001267 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001268 "journal on remount\n");
1269 return 0;
1270 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001271 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001272 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001273 case Opt_journal_dev:
1274 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001275 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001276 "journal on remount\n");
1277 return 0;
1278 }
1279 if (match_int(&args[0], &option))
1280 return 0;
1281 *journal_devnum = option;
1282 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001283 case Opt_journal_checksum:
1284 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1285 break;
1286 case Opt_journal_async_commit:
1287 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1288 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1289 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001290 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001291 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001292 break;
1293 case Opt_commit:
1294 if (match_int(&args[0], &option))
1295 return 0;
1296 if (option < 0)
1297 return 0;
1298 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001299 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001300 sbi->s_commit_interval = HZ * option;
1301 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001302 case Opt_max_batch_time:
1303 if (match_int(&args[0], &option))
1304 return 0;
1305 if (option < 0)
1306 return 0;
1307 if (option == 0)
1308 option = EXT4_DEF_MAX_BATCH_TIME;
1309 sbi->s_max_batch_time = option;
1310 break;
1311 case Opt_min_batch_time:
1312 if (match_int(&args[0], &option))
1313 return 0;
1314 if (option < 0)
1315 return 0;
1316 sbi->s_min_batch_time = option;
1317 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001318 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001319 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001320 goto datacheck;
1321 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001322 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001323 goto datacheck;
1324 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001325 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001326 datacheck:
1327 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001328 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001329 != data_opt) {
1330 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001331 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001332 "mode on remount\n");
1333 return 0;
1334 }
1335 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001336 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001337 sbi->s_mount_opt |= data_opt;
1338 }
1339 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001340 case Opt_data_err_abort:
1341 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1342 break;
1343 case Opt_data_err_ignore:
1344 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1345 break;
Curt Wohlgemuthf4033902009-05-01 20:27:20 -04001346 case Opt_mb_history_length:
1347 if (match_int(&args[0], &option))
1348 return 0;
1349 if (option < 0)
1350 return 0;
1351 sbi->s_mb_history_max = option;
1352 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001353#ifdef CONFIG_QUOTA
1354 case Opt_usrjquota:
1355 qtype = USRQUOTA;
1356 goto set_qf_name;
1357 case Opt_grpjquota:
1358 qtype = GRPQUOTA;
1359set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001360 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001361 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001362 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001363 "EXT4-fs: Cannot change journaled "
1364 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 return 0;
1366 }
1367 qname = match_strdup(&args[0]);
1368 if (!qname) {
1369 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001370 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001371 "storing quotafile name.\n");
1372 return 0;
1373 }
1374 if (sbi->s_qf_names[qtype] &&
1375 strcmp(sbi->s_qf_names[qtype], qname)) {
1376 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001377 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001378 "specified.\n", QTYPE2NAME(qtype));
1379 kfree(qname);
1380 return 0;
1381 }
1382 sbi->s_qf_names[qtype] = qname;
1383 if (strchr(sbi->s_qf_names[qtype], '/')) {
1384 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001385 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001386 "filesystem root.\n");
1387 kfree(sbi->s_qf_names[qtype]);
1388 sbi->s_qf_names[qtype] = NULL;
1389 return 0;
1390 }
1391 set_opt(sbi->s_mount_opt, QUOTA);
1392 break;
1393 case Opt_offusrjquota:
1394 qtype = USRQUOTA;
1395 goto clear_qf_name;
1396 case Opt_offgrpjquota:
1397 qtype = GRPQUOTA;
1398clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001399 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001400 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001401 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001402 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001403 "quota turned on.\n");
1404 return 0;
1405 }
1406 /*
1407 * The space will be released later when all options
1408 * are confirmed to be correct
1409 */
1410 sbi->s_qf_names[qtype] = NULL;
1411 break;
1412 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001413 qfmt = QFMT_VFS_OLD;
1414 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001416 qfmt = QFMT_VFS_V0;
1417set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001418 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001419 sbi->s_jquota_fmt != qfmt) {
1420 printk(KERN_ERR "EXT4-fs: Cannot change "
1421 "journaled quota options when "
1422 "quota turned on.\n");
1423 return 0;
1424 }
1425 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001426 break;
1427 case Opt_quota:
1428 case Opt_usrquota:
1429 set_opt(sbi->s_mount_opt, QUOTA);
1430 set_opt(sbi->s_mount_opt, USRQUOTA);
1431 break;
1432 case Opt_grpquota:
1433 set_opt(sbi->s_mount_opt, QUOTA);
1434 set_opt(sbi->s_mount_opt, GRPQUOTA);
1435 break;
1436 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001437 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001438 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439 "options when quota turned on.\n");
1440 return 0;
1441 }
1442 clear_opt(sbi->s_mount_opt, QUOTA);
1443 clear_opt(sbi->s_mount_opt, USRQUOTA);
1444 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1445 break;
1446#else
1447 case Opt_quota:
1448 case Opt_usrquota:
1449 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001450 printk(KERN_ERR
1451 "EXT4-fs: quota options not supported.\n");
1452 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001453 case Opt_usrjquota:
1454 case Opt_grpjquota:
1455 case Opt_offusrjquota:
1456 case Opt_offgrpjquota:
1457 case Opt_jqfmt_vfsold:
1458 case Opt_jqfmt_vfsv0:
1459 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001460 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001461 "supported.\n");
1462 break;
1463 case Opt_noquota:
1464 break;
1465#endif
1466 case Opt_abort:
1467 set_opt(sbi->s_mount_opt, ABORT);
1468 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001469 case Opt_nobarrier:
1470 clear_opt(sbi->s_mount_opt, BARRIER);
1471 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001472 case Opt_barrier:
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001473 if (match_int(&args[0], &option)) {
1474 set_opt(sbi->s_mount_opt, BARRIER);
1475 break;
1476 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001477 if (option)
1478 set_opt(sbi->s_mount_opt, BARRIER);
1479 else
1480 clear_opt(sbi->s_mount_opt, BARRIER);
1481 break;
1482 case Opt_ignore:
1483 break;
1484 case Opt_resize:
1485 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001486 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 "for remount\n");
1488 return 0;
1489 }
1490 if (match_int(&args[0], &option) != 0)
1491 return 0;
1492 *n_blocks_count = option;
1493 break;
1494 case Opt_nobh:
1495 set_opt(sbi->s_mount_opt, NOBH);
1496 break;
1497 case Opt_bh:
1498 clear_opt(sbi->s_mount_opt, NOBH);
1499 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001500 case Opt_i_version:
1501 set_opt(sbi->s_mount_opt, I_VERSION);
1502 sb->s_flags |= MS_I_VERSION;
1503 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001504 case Opt_nodelalloc:
1505 clear_opt(sbi->s_mount_opt, DELALLOC);
1506 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001507 case Opt_stripe:
1508 if (match_int(&args[0], &option))
1509 return 0;
1510 if (option < 0)
1511 return 0;
1512 sbi->s_stripe = option;
1513 break;
Alex Tomas64769242008-07-11 19:27:31 -04001514 case Opt_delalloc:
1515 set_opt(sbi->s_mount_opt, DELALLOC);
1516 break;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001517 case Opt_block_validity:
1518 set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
1519 break;
1520 case Opt_noblock_validity:
1521 clear_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
1522 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001523 case Opt_inode_readahead_blks:
1524 if (match_int(&args[0], &option))
1525 return 0;
1526 if (option < 0 || option > (1 << 30))
1527 return 0;
Theodore Ts'of7c43952009-04-24 23:31:59 -04001528 if (!is_power_of_2(option)) {
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001529 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1530 " must be a power of 2\n");
1531 return 0;
1532 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001533 sbi->s_inode_readahead_blks = option;
1534 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001535 case Opt_journal_ioprio:
1536 if (match_int(&args[0], &option))
1537 return 0;
1538 if (option < 0 || option > 7)
1539 break;
1540 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1541 option);
1542 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001543 case Opt_noauto_da_alloc:
1544 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1545 break;
Theodore Ts'oafd46722009-03-16 23:12:23 -04001546 case Opt_auto_da_alloc:
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001547 if (match_int(&args[0], &option)) {
1548 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1549 break;
1550 }
Theodore Ts'oafd46722009-03-16 23:12:23 -04001551 if (option)
1552 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1553 else
1554 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1555 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001556 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001557 printk(KERN_ERR
1558 "EXT4-fs: Unrecognized mount option \"%s\" "
1559 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001560 return 0;
1561 }
1562 }
1563#ifdef CONFIG_QUOTA
1564 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001565 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001566 sbi->s_qf_names[USRQUOTA])
1567 clear_opt(sbi->s_mount_opt, USRQUOTA);
1568
Mingming Cao617ba132006-10-11 01:20:53 -07001569 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001570 sbi->s_qf_names[GRPQUOTA])
1571 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1572
1573 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001574 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001575 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001576 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1577 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001578 "format mixing.\n");
1579 return 0;
1580 }
1581
1582 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001583 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001584 "not specified.\n");
1585 return 0;
1586 }
1587 } else {
1588 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001589 printk(KERN_ERR "EXT4-fs: journaled quota format "
1590 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001591 "enabled.\n");
1592 return 0;
1593 }
1594 }
1595#endif
1596 return 1;
1597}
1598
Mingming Cao617ba132006-10-11 01:20:53 -07001599static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001600 int read_only)
1601{
Mingming Cao617ba132006-10-11 01:20:53 -07001602 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001603 int res = 0;
1604
Mingming Cao617ba132006-10-11 01:20:53 -07001605 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001606 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1607 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001608 res = MS_RDONLY;
1609 }
1610 if (read_only)
1611 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001612 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001613 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1614 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001615 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001616 printk(KERN_WARNING
1617 "EXT4-fs warning: mounting fs with errors, "
1618 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001619 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1620 le16_to_cpu(es->s_mnt_count) >=
1621 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001622 printk(KERN_WARNING
1623 "EXT4-fs warning: maximal mount count reached, "
1624 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001625 else if (le32_to_cpu(es->s_checkinterval) &&
1626 (le32_to_cpu(es->s_lastcheck) +
1627 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001628 printk(KERN_WARNING
1629 "EXT4-fs warning: checktime reached, "
1630 "running e2fsck is recommended\n");
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001631 if (!sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05001632 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001633 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001634 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001635 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001636 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001637 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001638 if (sbi->s_journal)
1639 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001640
Theodore Ts'oe2d67052009-05-01 00:33:44 -04001641 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001642 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001643 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001644 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1645 sb->s_blocksize,
1646 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001647 EXT4_BLOCKS_PER_GROUP(sb),
1648 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001649 sbi->s_mount_opt);
1650
Frank Mayhar03901312009-01-07 00:06:22 -05001651 if (EXT4_SB(sb)->s_journal) {
1652 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1653 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1654 "external", EXT4_SB(sb)->s_journal->j_devname);
1655 } else {
1656 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1657 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001658 return res;
1659}
1660
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001661static int ext4_fill_flex_info(struct super_block *sb)
1662{
1663 struct ext4_sb_info *sbi = EXT4_SB(sb);
1664 struct ext4_group_desc *gdp = NULL;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001665 ext4_group_t flex_group_count;
1666 ext4_group_t flex_group;
1667 int groups_per_flex = 0;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001668 size_t size;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001669 int i;
1670
1671 if (!sbi->s_es->s_log_groups_per_flex) {
1672 sbi->s_log_groups_per_flex = 0;
1673 return 1;
1674 }
1675
1676 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1677 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1678
Frederic Bohec62a11f2008-09-08 10:20:24 -04001679 /* We allocate both existing and potentially added groups */
1680 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001681 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1682 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001683 size = flex_group_count * sizeof(struct flex_groups);
1684 sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
1685 if (sbi->s_flex_groups == NULL) {
1686 sbi->s_flex_groups = vmalloc(size);
1687 if (sbi->s_flex_groups)
1688 memset(sbi->s_flex_groups, 0, size);
1689 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001690 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001691 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001692 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001693 goto failed;
1694 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001695
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001696 for (i = 0; i < sbi->s_groups_count; i++) {
Theodore Ts'o88b6edd2009-05-25 11:50:39 -04001697 gdp = ext4_get_group_desc(sb, i, NULL);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001698
1699 flex_group = ext4_flex_group(sbi, i);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05001700 atomic_set(&sbi->s_flex_groups[flex_group].free_inodes,
1701 ext4_free_inodes_count(sb, gdp));
1702 atomic_set(&sbi->s_flex_groups[flex_group].free_blocks,
1703 ext4_free_blks_count(sb, gdp));
Theodore Ts'o7d39db12009-03-04 19:31:53 -05001704 atomic_set(&sbi->s_flex_groups[flex_group].used_dirs,
1705 ext4_used_dirs_count(sb, gdp));
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001706 }
1707
1708 return 1;
1709failed:
1710 return 0;
1711}
1712
Andreas Dilger717d50e2007-10-16 18:38:25 -04001713__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1714 struct ext4_group_desc *gdp)
1715{
1716 __u16 crc = 0;
1717
1718 if (sbi->s_es->s_feature_ro_compat &
1719 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1720 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1721 __le32 le_group = cpu_to_le32(block_group);
1722
1723 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1724 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1725 crc = crc16(crc, (__u8 *)gdp, offset);
1726 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1727 /* for checksum of struct ext4_group_desc do the rest...*/
1728 if ((sbi->s_es->s_feature_incompat &
1729 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1730 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1731 crc = crc16(crc, (__u8 *)gdp + offset,
1732 le16_to_cpu(sbi->s_es->s_desc_size) -
1733 offset);
1734 }
1735
1736 return cpu_to_le16(crc);
1737}
1738
1739int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1740 struct ext4_group_desc *gdp)
1741{
1742 if ((sbi->s_es->s_feature_ro_compat &
1743 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1744 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1745 return 0;
1746
1747 return 1;
1748}
1749
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001750/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001751static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001752{
Mingming Cao617ba132006-10-11 01:20:53 -07001753 struct ext4_sb_info *sbi = EXT4_SB(sb);
1754 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1755 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001756 ext4_fsblk_t block_bitmap;
1757 ext4_fsblk_t inode_bitmap;
1758 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001759 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001760 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001761
Jose R. Santosce421582007-10-16 18:38:25 -04001762 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1763 flexbg_flag = 1;
1764
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001765 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001766
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001767 for (i = 0; i < sbi->s_groups_count; i++) {
1768 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1769
Jose R. Santosce421582007-10-16 18:38:25 -04001770 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001771 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001772 else
1773 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001774 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001775
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001776 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001777 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001778 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001779 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001780 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001781 return 0;
1782 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001783 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001784 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001785 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001786 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001787 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001788 return 0;
1789 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001790 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001791 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001792 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001793 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001794 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001795 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001796 return 0;
1797 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001798 ext4_lock_group(sb, i);
Andreas Dilger717d50e2007-10-16 18:38:25 -04001799 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001800 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001801 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001802 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1803 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001804 if (!(sb->s_flags & MS_RDONLY)) {
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001805 ext4_unlock_group(sb, i);
Theodore Ts'o8a266462008-07-26 14:34:21 -04001806 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001807 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001808 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001809 ext4_unlock_group(sb, i);
Jose R. Santosce421582007-10-16 18:38:25 -04001810 if (!flexbg_flag)
1811 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001812 }
1813
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001814 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001815 sbi->s_es->s_free_inodes_count =cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001816 return 1;
1817}
1818
Mingming Cao617ba132006-10-11 01:20:53 -07001819/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001820 * the superblock) which were deleted from all directories, but held open by
1821 * a process at the time of a crash. We walk the list and try to delete these
1822 * inodes at recovery time (only with a read-write filesystem).
1823 *
1824 * In order to keep the orphan inode chain consistent during traversal (in
1825 * case of crash during recovery), we link each inode into the superblock
1826 * orphan list_head and handle it the same way as an inode deletion during
1827 * normal operation (which journals the operations for us).
1828 *
1829 * We only do an iget() and an iput() on each inode, which is very safe if we
1830 * accidentally point at an in-use or already deleted inode. The worst that
1831 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001832 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001833 * e2fsck was run on this filesystem, and it must have already done the orphan
1834 * inode cleanup for us, so we can safely abort without any further action.
1835 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001836static void ext4_orphan_cleanup(struct super_block *sb,
1837 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001838{
1839 unsigned int s_flags = sb->s_flags;
1840 int nr_orphans = 0, nr_truncates = 0;
1841#ifdef CONFIG_QUOTA
1842 int i;
1843#endif
1844 if (!es->s_last_orphan) {
1845 jbd_debug(4, "no orphan inodes to clean up\n");
1846 return;
1847 }
1848
Eric Sandeena8f48a92006-12-06 20:40:13 -08001849 if (bdev_read_only(sb->s_bdev)) {
1850 printk(KERN_ERR "EXT4-fs: write access "
1851 "unavailable, skipping orphan cleanup.\n");
1852 return;
1853 }
1854
Mingming Cao617ba132006-10-11 01:20:53 -07001855 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001856 if (es->s_last_orphan)
1857 jbd_debug(1, "Errors on filesystem, "
1858 "clearing orphan list.\n");
1859 es->s_last_orphan = 0;
1860 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1861 return;
1862 }
1863
1864 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001865 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001866 sb->s_id);
1867 sb->s_flags &= ~MS_RDONLY;
1868 }
1869#ifdef CONFIG_QUOTA
1870 /* Needed for iput() to work correctly and not trash data */
1871 sb->s_flags |= MS_ACTIVE;
1872 /* Turn on quotas so that they are updated correctly */
1873 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001874 if (EXT4_SB(sb)->s_qf_names[i]) {
1875 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001876 if (ret < 0)
1877 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001878 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001879 "quota: error %d\n", ret);
1880 }
1881 }
1882#endif
1883
1884 while (es->s_last_orphan) {
1885 struct inode *inode;
1886
Josef Bacik97bd42b2008-04-29 22:04:56 -04001887 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1888 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001889 es->s_last_orphan = 0;
1890 break;
1891 }
1892
Mingming Cao617ba132006-10-11 01:20:53 -07001893 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001894 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001895 if (inode->i_nlink) {
1896 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001897 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001898 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001899 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001900 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001901 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902 nr_truncates++;
1903 } else {
1904 printk(KERN_DEBUG
1905 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001906 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001907 jbd_debug(2, "deleting unreferenced inode %lu\n",
1908 inode->i_ino);
1909 nr_orphans++;
1910 }
1911 iput(inode); /* The delete magic happens here! */
1912 }
1913
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001914#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001915
1916 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001917 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001918 sb->s_id, PLURAL(nr_orphans));
1919 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001920 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001921 sb->s_id, PLURAL(nr_truncates));
1922#ifdef CONFIG_QUOTA
1923 /* Turn quotas off */
1924 for (i = 0; i < MAXQUOTAS; i++) {
1925 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001926 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001927 }
1928#endif
1929 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1930}
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001931
Eric Sandeencd2291a2008-01-28 23:58:27 -05001932/*
1933 * Maximal extent format file size.
1934 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1935 * extent format containers, within a sector_t, and within i_blocks
1936 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1937 * so that won't be a limiting factor.
1938 *
1939 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1940 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001941static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001942{
1943 loff_t res;
1944 loff_t upper_limit = MAX_LFS_FILESIZE;
1945
1946 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001947 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001948 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001949 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001950 * i_block represent total blocks in 512 bytes
1951 * 32 == size of vfs inode i_blocks * 8
1952 */
1953 upper_limit = (1LL << 32) - 1;
1954
1955 /* total blocks in file system block size */
1956 upper_limit >>= (blkbits - 9);
1957 upper_limit <<= blkbits;
1958 }
1959
1960 /* 32-bit extent-start container, ee_block */
1961 res = 1LL << 32;
1962 res <<= blkbits;
1963 res -= 1;
1964
1965 /* Sanity check against vm- & vfs- imposed limits */
1966 if (res > upper_limit)
1967 res = upper_limit;
1968
1969 return res;
1970}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001971
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001972/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001973 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001974 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1975 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001976 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001977static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001978{
Mingming Cao617ba132006-10-11 01:20:53 -07001979 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001980 int meta_blocks;
1981 loff_t upper_limit;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001982 /* This is calculated to be the largest file size for a dense, block
1983 * mapped file such that the file's total number of 512-byte sectors,
1984 * including data and all indirect blocks, does not exceed (2^48 - 1).
1985 *
1986 * __u32 i_blocks_lo and _u16 i_blocks_high represent the total
1987 * number of 512-byte sectors of the file.
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001988 */
1989
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001990 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001991 /*
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001992 * !has_huge_files or CONFIG_LBD not enabled implies that
1993 * the inode i_block field represents total file blocks in
1994 * 2^32 512-byte sectors == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001995 */
1996 upper_limit = (1LL << 32) - 1;
1997
1998 /* total blocks in file system block size */
1999 upper_limit >>= (bits - 9);
2000
2001 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05002002 /*
2003 * We use 48 bit ext4_inode i_blocks
2004 * With EXT4_HUGE_FILE_FL set the i_blocks
2005 * represent total number of blocks in
2006 * file system block size
2007 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002008 upper_limit = (1LL << 48) - 1;
2009
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002010 }
2011
2012 /* indirect blocks */
2013 meta_blocks = 1;
2014 /* double indirect blocks */
2015 meta_blocks += 1 + (1LL << (bits-2));
2016 /* tripple indirect blocks */
2017 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
2018
2019 upper_limit -= meta_blocks;
2020 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002021
2022 res += 1LL << (bits-2);
2023 res += 1LL << (2*(bits-2));
2024 res += 1LL << (3*(bits-2));
2025 res <<= bits;
2026 if (res > upper_limit)
2027 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002028
2029 if (res > MAX_LFS_FILESIZE)
2030 res = MAX_LFS_FILESIZE;
2031
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002032 return res;
2033}
2034
Mingming Cao617ba132006-10-11 01:20:53 -07002035static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002036 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002037{
Mingming Cao617ba132006-10-11 01:20:53 -07002038 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05002039 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002040 int has_super = 0;
2041
2042 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
2043
Mingming Cao617ba132006-10-11 01:20:53 -07002044 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002045 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002046 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002047 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07002048 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002049 has_super = 1;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002050
Mingming Cao617ba132006-10-11 01:20:53 -07002051 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002052}
2053
Alex Tomasc9de5602008-01-29 00:19:52 -05002054/**
2055 * ext4_get_stripe_size: Get the stripe size.
2056 * @sbi: In memory super block info
2057 *
2058 * If we have specified it via mount option, then
2059 * use the mount option value. If the value specified at mount time is
2060 * greater than the blocks per group use the super block value.
2061 * If the super block value is greater than blocks per group return 0.
2062 * Allocator needs it be less than blocks per group.
2063 *
2064 */
2065static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2066{
2067 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2068 unsigned long stripe_width =
2069 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2070
2071 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2072 return sbi->s_stripe;
2073
2074 if (stripe_width <= sbi->s_blocks_per_group)
2075 return stripe_width;
2076
2077 if (stride <= sbi->s_blocks_per_group)
2078 return stride;
2079
2080 return 0;
2081}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002082
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002083/* sysfs supprt */
2084
2085struct ext4_attr {
2086 struct attribute attr;
2087 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2088 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2089 const char *, size_t);
2090 int offset;
2091};
2092
2093static int parse_strtoul(const char *buf,
2094 unsigned long max, unsigned long *value)
2095{
2096 char *endp;
2097
2098 while (*buf && isspace(*buf))
2099 buf++;
2100 *value = simple_strtoul(buf, &endp, 0);
2101 while (*endp && isspace(*endp))
2102 endp++;
2103 if (*endp || *value > max)
2104 return -EINVAL;
2105
2106 return 0;
2107}
2108
2109static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2110 struct ext4_sb_info *sbi,
2111 char *buf)
2112{
2113 return snprintf(buf, PAGE_SIZE, "%llu\n",
2114 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2115}
2116
2117static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2118 struct ext4_sb_info *sbi, char *buf)
2119{
2120 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2121
2122 return snprintf(buf, PAGE_SIZE, "%lu\n",
2123 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2124 sbi->s_sectors_written_start) >> 1);
2125}
2126
2127static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2128 struct ext4_sb_info *sbi, char *buf)
2129{
2130 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2131
2132 return snprintf(buf, PAGE_SIZE, "%llu\n",
2133 sbi->s_kbytes_written +
2134 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2135 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2136}
2137
2138static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2139 struct ext4_sb_info *sbi,
2140 const char *buf, size_t count)
2141{
2142 unsigned long t;
2143
2144 if (parse_strtoul(buf, 0x40000000, &t))
2145 return -EINVAL;
2146
Theodore Ts'of7c43952009-04-24 23:31:59 -04002147 if (!is_power_of_2(t))
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002148 return -EINVAL;
2149
2150 sbi->s_inode_readahead_blks = t;
2151 return count;
2152}
2153
2154static ssize_t sbi_ui_show(struct ext4_attr *a,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002155 struct ext4_sb_info *sbi, char *buf)
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002156{
2157 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2158
2159 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2160}
2161
2162static ssize_t sbi_ui_store(struct ext4_attr *a,
2163 struct ext4_sb_info *sbi,
2164 const char *buf, size_t count)
2165{
2166 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2167 unsigned long t;
2168
2169 if (parse_strtoul(buf, 0xffffffff, &t))
2170 return -EINVAL;
2171 *ui = t;
2172 return count;
2173}
2174
2175#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2176static struct ext4_attr ext4_attr_##_name = { \
2177 .attr = {.name = __stringify(_name), .mode = _mode }, \
2178 .show = _show, \
2179 .store = _store, \
2180 .offset = offsetof(struct ext4_sb_info, _elname), \
2181}
2182#define EXT4_ATTR(name, mode, show, store) \
2183static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2184
2185#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2186#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2187#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2188 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2189#define ATTR_LIST(name) &ext4_attr_##name.attr
2190
2191EXT4_RO_ATTR(delayed_allocation_blocks);
2192EXT4_RO_ATTR(session_write_kbytes);
2193EXT4_RO_ATTR(lifetime_write_kbytes);
2194EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2195 inode_readahead_blks_store, s_inode_readahead_blks);
2196EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2197EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2198EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2199EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2200EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2201EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2202
2203static struct attribute *ext4_attrs[] = {
2204 ATTR_LIST(delayed_allocation_blocks),
2205 ATTR_LIST(session_write_kbytes),
2206 ATTR_LIST(lifetime_write_kbytes),
2207 ATTR_LIST(inode_readahead_blks),
2208 ATTR_LIST(mb_stats),
2209 ATTR_LIST(mb_max_to_scan),
2210 ATTR_LIST(mb_min_to_scan),
2211 ATTR_LIST(mb_order2_req),
2212 ATTR_LIST(mb_stream_req),
2213 ATTR_LIST(mb_group_prealloc),
2214 NULL,
2215};
2216
2217static ssize_t ext4_attr_show(struct kobject *kobj,
2218 struct attribute *attr, char *buf)
2219{
2220 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2221 s_kobj);
2222 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2223
2224 return a->show ? a->show(a, sbi, buf) : 0;
2225}
2226
2227static ssize_t ext4_attr_store(struct kobject *kobj,
2228 struct attribute *attr,
2229 const char *buf, size_t len)
2230{
2231 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2232 s_kobj);
2233 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2234
2235 return a->store ? a->store(a, sbi, buf, len) : 0;
2236}
2237
2238static void ext4_sb_release(struct kobject *kobj)
2239{
2240 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2241 s_kobj);
2242 complete(&sbi->s_kobj_unregister);
2243}
2244
2245
2246static struct sysfs_ops ext4_attr_ops = {
2247 .show = ext4_attr_show,
2248 .store = ext4_attr_store,
2249};
2250
2251static struct kobj_type ext4_ktype = {
2252 .default_attrs = ext4_attrs,
2253 .sysfs_ops = &ext4_attr_ops,
2254 .release = ext4_sb_release,
2255};
2256
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002257static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002258 __releases(kernel_lock)
2259 __acquires(kernel_lock)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002260{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002261 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002262 struct ext4_super_block *es = NULL;
2263 struct ext4_sb_info *sbi;
2264 ext4_fsblk_t block;
2265 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002266 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002267 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002268 unsigned long journal_devnum = 0;
2269 unsigned long def_mount_opts;
2270 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002271 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002272 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002273 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002274 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002275 unsigned int db_count;
2276 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002277 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002278 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002279 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002280 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002281 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002282
2283 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2284 if (!sbi)
2285 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002286
2287 sbi->s_blockgroup_lock =
2288 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2289 if (!sbi->s_blockgroup_lock) {
2290 kfree(sbi);
2291 return -ENOMEM;
2292 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002293 sb->s_fs_info = sbi;
2294 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002295 sbi->s_resuid = EXT4_DEF_RESUID;
2296 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002297 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002298 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002299 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2300 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002301
2302 unlock_kernel();
2303
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002304 /* Cleanup superblock name */
2305 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2306 *cp = '!';
2307
Mingming Cao617ba132006-10-11 01:20:53 -07002308 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002309 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002310 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002311 goto out_fail;
2312 }
2313
2314 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002315 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002316 * block sizes. We need to calculate the offset from buffer start.
2317 */
Mingming Cao617ba132006-10-11 01:20:53 -07002318 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002319 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2320 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002321 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002322 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002323 }
2324
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002325 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002326 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002327 goto out_fail;
2328 }
2329 /*
2330 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002331 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002332 */
Mingming Cao617ba132006-10-11 01:20:53 -07002333 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002334 sbi->s_es = es;
2335 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002336 if (sb->s_magic != EXT4_SUPER_MAGIC)
2337 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002338 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002339
2340 /* Set defaults before we parse the mount options */
2341 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002342 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002343 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002344 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002345 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002346 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002347 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002348#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002349 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002350 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002351#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002352#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002353 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002354 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002355#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002356 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2357 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2358 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2359 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2360 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2361 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002362
Mingming Cao617ba132006-10-11 01:20:53 -07002363 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002364 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002365 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002366 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002367 else
2368 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002369
2370 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2371 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002372 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2373 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2374 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Curt Wohlgemuthf4033902009-05-01 20:27:20 -04002375 sbi->s_mb_history_max = default_mb_history_length;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002376
Eric Sandeen571640c2008-05-26 12:29:46 -04002377 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002378
Mingming Cao1e2462f2007-07-18 09:00:55 -04002379 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002380 * enable delayed allocation by default
2381 * Use -o nodelalloc to turn it off
2382 */
2383 set_opt(sbi->s_mount_opt, DELALLOC);
2384
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002385 if (!parse_options((char *) data, sb, &journal_devnum,
2386 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002387 goto failed_mount;
2388
2389 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002390 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002391
Mingming Cao617ba132006-10-11 01:20:53 -07002392 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2393 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2394 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2395 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002396 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002397 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002398 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002399
2400 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002401 * Check feature flags regardless of the revision level, since we
2402 * previously didn't change the revision level when setting the flags,
2403 * so there is a chance incompat flags are set on a rev 0 filesystem.
2404 */
Mingming Cao617ba132006-10-11 01:20:53 -07002405 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002406 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002407 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002408 "unsupported optional features (%x).\n", sb->s_id,
2409 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2410 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002411 goto failed_mount;
2412 }
Mingming Cao617ba132006-10-11 01:20:53 -07002413 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002414 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002415 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002416 "unsupported optional features (%x).\n", sb->s_id,
2417 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2418 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002419 goto failed_mount;
2420 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002421 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2422 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2423 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002424 /*
2425 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002426 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002427 */
2428 if (sizeof(root->i_blocks) < sizeof(u64) &&
2429 !(sb->s_flags & MS_RDONLY)) {
2430 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2431 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002432 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002433 goto failed_mount;
2434 }
2435 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002436 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2437
Mingming Cao617ba132006-10-11 01:20:53 -07002438 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2439 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002440 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002441 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002442 blocksize, sb->s_id);
2443 goto failed_mount;
2444 }
2445
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002446 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002447 /* Validate the filesystem blocksize */
2448 if (!sb_set_blocksize(sb, blocksize)) {
2449 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2450 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451 goto failed_mount;
2452 }
2453
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002454 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002455 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2456 offset = do_div(logical_sb_block, blocksize);
2457 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002458 if (!bh) {
2459 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002460 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002461 goto failed_mount;
2462 }
Mingming Cao617ba132006-10-11 01:20:53 -07002463 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002464 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002465 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002466 printk(KERN_ERR
2467 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002468 goto failed_mount;
2469 }
2470 }
2471
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002472 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2473 has_huge_files);
2474 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475
Mingming Cao617ba132006-10-11 01:20:53 -07002476 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2477 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2478 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002479 } else {
2480 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2481 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002482 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002483 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002484 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002485 printk(KERN_ERR
2486 "EXT4-fs: unsupported inode size: %d\n",
2487 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002488 goto failed_mount;
2489 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002490 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2491 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002492 }
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002493
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002494 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2495 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002496 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002497 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002498 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002499 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002500 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002501 sbi->s_desc_size);
2502 goto failed_mount;
2503 }
2504 } else
2505 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002506
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002507 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002508 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002509 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002510 goto cantfind_ext4;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002511
Mingming Cao617ba132006-10-11 01:20:53 -07002512 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002513 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002514 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002515 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2516 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002517 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002518 sbi->s_sbh = bh;
2519 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002520 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2521 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002522
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002523 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002524 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2525 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002526 i = le32_to_cpu(es->s_flags);
2527 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2528 sbi->s_hash_unsigned = 3;
2529 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2530#ifdef __CHAR_UNSIGNED__
2531 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2532 sbi->s_hash_unsigned = 3;
2533#else
2534 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2535#endif
2536 sb->s_dirt = 1;
2537 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002538
2539 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002540 printk(KERN_ERR
2541 "EXT4-fs: #blocks per group too big: %lu\n",
2542 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002543 goto failed_mount;
2544 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002545 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002546 printk(KERN_ERR
2547 "EXT4-fs: #inodes per group too big: %lu\n",
2548 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002549 goto failed_mount;
2550 }
2551
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002552 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002554 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002555 " too large to mount safely\n", sb->s_id);
2556 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002557 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002558 "enabled\n");
2559 goto failed_mount;
2560 }
2561
Mingming Cao617ba132006-10-11 01:20:53 -07002562 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2563 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002564
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002565 /* check blocks count against device size */
2566 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2567 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
2568 printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu "
2569 "exceeds size of device (%llu blocks)\n",
2570 ext4_blocks_count(es), blocks_count);
2571 goto failed_mount;
2572 }
2573
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002574 /*
2575 * It makes no sense for the first data block to be beyond the end
2576 * of the filesystem.
2577 */
2578 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2579 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002580 "block %u is beyond end of filesystem (%llu)\n",
2581 le32_to_cpu(es->s_first_data_block),
2582 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002583 goto failed_mount;
2584 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002585 blocks_count = (ext4_blocks_count(es) -
2586 le32_to_cpu(es->s_first_data_block) +
2587 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2588 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002589 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2590 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2591 "(block count %llu, first data block %u, "
2592 "blocks per group %lu)\n", sbi->s_groups_count,
2593 ext4_blocks_count(es),
2594 le32_to_cpu(es->s_first_data_block),
2595 EXT4_BLOCKS_PER_GROUP(sb));
2596 goto failed_mount;
2597 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002598 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002599 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2600 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002601 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002602 GFP_KERNEL);
2603 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002604 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002605 goto failed_mount;
2606 }
2607
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002608#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002609 if (ext4_proc_root)
2610 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002611#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002612
Pekka Enberg705895b2009-02-15 18:07:52 -05002613 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002614
2615 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002616 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002617 sbi->s_group_desc[i] = sb_bread(sb, block);
2618 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002619 printk(KERN_ERR "EXT4-fs: "
2620 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002621 db_count = i;
2622 goto failed_mount2;
2623 }
2624 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002625 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002626 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002627 goto failed_mount2;
2628 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002629 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2630 if (!ext4_fill_flex_info(sb)) {
2631 printk(KERN_ERR
2632 "EXT4-fs: unable to initialize "
2633 "flex_bg meta info!\n");
2634 goto failed_mount2;
2635 }
2636
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002637 sbi->s_gdb_count = db_count;
2638 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2639 spin_lock_init(&sbi->s_next_gen_lock);
2640
Peter Zijlstra833f4072007-10-16 23:25:45 -07002641 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2642 ext4_count_free_blocks(sb));
2643 if (!err) {
2644 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2645 ext4_count_free_inodes(sb));
2646 }
2647 if (!err) {
2648 err = percpu_counter_init(&sbi->s_dirs_counter,
2649 ext4_count_dirs(sb));
2650 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002651 if (!err) {
2652 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2653 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002654 if (err) {
2655 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2656 goto failed_mount3;
2657 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002658
Alex Tomasc9de5602008-01-29 00:19:52 -05002659 sbi->s_stripe = ext4_get_stripe_size(sbi);
2660
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002661 /*
2662 * set up enough so that it can read an inode
2663 */
Theodore Ts'o9ca92382009-05-01 12:52:25 -04002664 if (!test_opt(sb, NOLOAD) &&
2665 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
2666 sb->s_op = &ext4_sops;
2667 else
2668 sb->s_op = &ext4_nojournal_sops;
Mingming Cao617ba132006-10-11 01:20:53 -07002669 sb->s_export_op = &ext4_export_ops;
2670 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002671#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002672 sb->s_qcop = &ext4_qctl_operations;
2673 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002674#endif
2675 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002676 mutex_init(&sbi->s_orphan_lock);
Theodore Ts'o32ed5052009-04-25 22:53:39 -04002677 mutex_init(&sbi->s_resize_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002678
2679 sb->s_root = NULL;
2680
2681 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002682 EXT4_HAS_INCOMPAT_FEATURE(sb,
2683 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002684
2685 /*
2686 * The first inode we look at is the journal inode. Don't try
2687 * root first: it may be modified in the journal!
2688 */
2689 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002690 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2691 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002693 if (!(sb->s_flags & MS_RDONLY) &&
2694 EXT4_SB(sb)->s_journal->j_failed_commit) {
2695 printk(KERN_CRIT "EXT4-fs error (device %s): "
2696 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002697 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002698 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002699 if (test_opt(sb, ERRORS_RO)) {
2700 printk(KERN_CRIT
2701 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002702 sb->s_flags |= MS_RDONLY;
2703 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2704 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2705 }
2706 if (test_opt(sb, ERRORS_PANIC)) {
2707 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2708 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04002709 ext4_commit_super(sb, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002710 goto failed_mount4;
2711 }
2712 }
Frank Mayhar03901312009-01-07 00:06:22 -05002713 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2714 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2715 printk(KERN_ERR "EXT4-fs: required journal recovery "
2716 "suppressed and not mounted read-only\n");
2717 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002718 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002719 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2720 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2721 sbi->s_journal = NULL;
2722 needs_recovery = 0;
2723 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002724 }
2725
Jose R. Santoseb40a092007-07-18 08:37:25 -04002726 if (ext4_blocks_count(es) > 0xffffffffULL &&
2727 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2728 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002729 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002730 goto failed_mount4;
2731 }
2732
Girish Shilamkar818d2762008-01-28 23:58:27 -05002733 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2734 jbd2_journal_set_features(sbi->s_journal,
2735 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2736 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2737 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2738 jbd2_journal_set_features(sbi->s_journal,
2739 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2740 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2741 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2742 } else {
2743 jbd2_journal_clear_features(sbi->s_journal,
2744 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2745 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2746 }
2747
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002748 /* We have now updated the journal if required, so we can
2749 * validate the data journaling mode. */
2750 switch (test_opt(sb, DATA_FLAGS)) {
2751 case 0:
2752 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002753 * capabilities: ORDERED_DATA if the journal can
2754 * cope, else JOURNAL_DATA
2755 */
Mingming Caodab291a2006-10-11 01:21:01 -07002756 if (jbd2_journal_check_available_features
2757 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002758 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2759 else
2760 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2761 break;
2762
Mingming Cao617ba132006-10-11 01:20:53 -07002763 case EXT4_MOUNT_ORDERED_DATA:
2764 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002765 if (!jbd2_journal_check_available_features
2766 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002767 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002768 "requested data journaling mode\n");
2769 goto failed_mount4;
2770 }
2771 default:
2772 break;
2773 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002774 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002775
Frank Mayhar03901312009-01-07 00:06:22 -05002776no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002777
2778 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002779 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2780 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002781 "its supported only with writeback mode\n");
2782 clear_opt(sbi->s_mount_opt, NOBH);
2783 }
2784 }
2785 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002786 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002787 * so we can safely mount the rest of the filesystem now.
2788 */
2789
David Howells1d1fe1e2008-02-07 00:15:37 -08002790 root = ext4_iget(sb, EXT4_ROOT_INO);
2791 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002792 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002793 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002794 goto failed_mount4;
2795 }
2796 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002797 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002798 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002799 goto failed_mount4;
2800 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002801 sb->s_root = d_alloc_root(root);
2802 if (!sb->s_root) {
2803 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2804 iput(root);
2805 ret = -ENOMEM;
2806 goto failed_mount4;
2807 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002808
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002809 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002810
2811 /* determine the minimum size of new large inodes, if present */
2812 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2813 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2814 EXT4_GOOD_OLD_INODE_SIZE;
2815 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2816 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2817 if (sbi->s_want_extra_isize <
2818 le16_to_cpu(es->s_want_extra_isize))
2819 sbi->s_want_extra_isize =
2820 le16_to_cpu(es->s_want_extra_isize);
2821 if (sbi->s_want_extra_isize <
2822 le16_to_cpu(es->s_min_extra_isize))
2823 sbi->s_want_extra_isize =
2824 le16_to_cpu(es->s_min_extra_isize);
2825 }
2826 }
2827 /* Check if enough inode space is available */
2828 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2829 sbi->s_inode_size) {
2830 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2831 EXT4_GOOD_OLD_INODE_SIZE;
2832 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2833 "available.\n");
2834 }
2835
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002836 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2837 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2838 "requested data journaling mode\n");
2839 clear_opt(sbi->s_mount_opt, DELALLOC);
2840 } else if (test_opt(sb, DELALLOC))
2841 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2842
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002843 err = ext4_setup_system_zone(sb);
2844 if (err) {
2845 printk(KERN_ERR "EXT4-fs: failed to initialize system "
2846 "zone (%d)\n", err);
2847 goto failed_mount4;
2848 }
2849
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002850 ext4_ext_init(sb);
2851 err = ext4_mb_init(sb, needs_recovery);
2852 if (err) {
2853 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2854 err);
2855 goto failed_mount4;
2856 }
2857
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002858 sbi->s_kobj.kset = ext4_kset;
2859 init_completion(&sbi->s_kobj_unregister);
2860 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2861 "%s", sb->s_id);
2862 if (err) {
2863 ext4_mb_release(sb);
2864 ext4_ext_release(sb);
2865 goto failed_mount4;
2866 };
2867
Mingming Cao617ba132006-10-11 01:20:53 -07002868 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2869 ext4_orphan_cleanup(sb, es);
2870 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002871 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002872 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002873 ext4_mark_recovery_complete(sb, es);
2874 }
2875 if (EXT4_SB(sb)->s_journal) {
2876 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2877 descr = " journalled data mode";
2878 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2879 descr = " ordered data mode";
2880 else
2881 descr = " writeback data mode";
2882 } else
2883 descr = "out journal";
2884
2885 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2886 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002887
2888 lock_kernel();
2889 return 0;
2890
Mingming Cao617ba132006-10-11 01:20:53 -07002891cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002892 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002893 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894 sb->s_id);
2895 goto failed_mount;
2896
2897failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002898 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002899 ext4_release_system_zone(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05002900 if (sbi->s_journal) {
2901 jbd2_journal_destroy(sbi->s_journal);
2902 sbi->s_journal = NULL;
2903 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002904failed_mount3:
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04002905 if (sbi->s_flex_groups) {
2906 if (is_vmalloc_addr(sbi->s_flex_groups))
2907 vfree(sbi->s_flex_groups);
2908 else
2909 kfree(sbi->s_flex_groups);
2910 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002911 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2912 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2913 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002914 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002915failed_mount2:
2916 for (i = 0; i < db_count; i++)
2917 brelse(sbi->s_group_desc[i]);
2918 kfree(sbi->s_group_desc);
2919failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002920 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002921 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002922 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923#ifdef CONFIG_QUOTA
2924 for (i = 0; i < MAXQUOTAS; i++)
2925 kfree(sbi->s_qf_names[i]);
2926#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002927 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002928 brelse(bh);
2929out_fail:
2930 sb->s_fs_info = NULL;
Manish Katiyarf6830162009-05-17 23:52:44 -04002931 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002932 kfree(sbi);
2933 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002934 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002935}
2936
2937/*
2938 * Setup any per-fs journal parameters now. We'll do this both on
2939 * initial mount, once the journal has been initialised but before we've
2940 * done any recovery; and again on any subsequent remount.
2941 */
Mingming Cao617ba132006-10-11 01:20:53 -07002942static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002943{
Mingming Cao617ba132006-10-11 01:20:53 -07002944 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002945
Theodore Ts'o30773842009-01-03 20:27:38 -05002946 journal->j_commit_interval = sbi->s_commit_interval;
2947 journal->j_min_batch_time = sbi->s_min_batch_time;
2948 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002949
2950 spin_lock(&journal->j_state_lock);
2951 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002952 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002953 else
Mingming Caodab291a2006-10-11 01:21:01 -07002954 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002955 if (test_opt(sb, DATA_ERR_ABORT))
2956 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2957 else
2958 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002959 spin_unlock(&journal->j_state_lock);
2960}
2961
Mingming Cao617ba132006-10-11 01:20:53 -07002962static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963 unsigned int journal_inum)
2964{
2965 struct inode *journal_inode;
2966 journal_t *journal;
2967
Frank Mayhar03901312009-01-07 00:06:22 -05002968 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2969
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002970 /* First, test for the existence of a valid inode on disk. Bad
2971 * things happen if we iget() an unused inode, as the subsequent
2972 * iput() will try to delete it. */
2973
David Howells1d1fe1e2008-02-07 00:15:37 -08002974 journal_inode = ext4_iget(sb, journal_inum);
2975 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002976 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002977 return NULL;
2978 }
2979 if (!journal_inode->i_nlink) {
2980 make_bad_inode(journal_inode);
2981 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002982 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002983 return NULL;
2984 }
2985
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002986 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002987 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002988 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002989 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002990 iput(journal_inode);
2991 return NULL;
2992 }
2993
Mingming Caodab291a2006-10-11 01:21:01 -07002994 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002995 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002996 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002997 iput(journal_inode);
2998 return NULL;
2999 }
3000 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003001 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003002 return journal;
3003}
3004
Mingming Cao617ba132006-10-11 01:20:53 -07003005static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003006 dev_t j_dev)
3007{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003008 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003009 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07003010 ext4_fsblk_t start;
3011 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003012 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07003013 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003014 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003015 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003016 struct block_device *bdev;
3017
Frank Mayhar03901312009-01-07 00:06:22 -05003018 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3019
Mingming Cao617ba132006-10-11 01:20:53 -07003020 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003021 if (bdev == NULL)
3022 return NULL;
3023
3024 if (bd_claim(bdev, sb)) {
3025 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05003026 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05003027 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003028 return NULL;
3029 }
3030
3031 blocksize = sb->s_blocksize;
3032 hblock = bdev_hardsect_size(bdev);
3033 if (blocksize < hblock) {
3034 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07003035 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003036 goto out_bdev;
3037 }
3038
Mingming Cao617ba132006-10-11 01:20:53 -07003039 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
3040 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003041 set_blocksize(bdev, blocksize);
3042 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07003043 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003044 "external journal\n");
3045 goto out_bdev;
3046 }
3047
Mingming Cao617ba132006-10-11 01:20:53 -07003048 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
3049 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003050 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07003051 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
3052 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003053 "bad superblock\n");
3054 brelse(bh);
3055 goto out_bdev;
3056 }
3057
Mingming Cao617ba132006-10-11 01:20:53 -07003058 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
3059 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003060 brelse(bh);
3061 goto out_bdev;
3062 }
3063
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003064 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003065 start = sb_block + 1;
3066 brelse(bh); /* we're done with the superblock */
3067
Mingming Caodab291a2006-10-11 01:21:01 -07003068 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003069 start, len, blocksize);
3070 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07003071 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003072 goto out_bdev;
3073 }
3074 journal->j_private = sb;
3075 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3076 wait_on_buffer(journal->j_sb_buffer);
3077 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003078 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003079 goto out_journal;
3080 }
3081 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07003082 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003083 "user (unsupported) - %d\n",
3084 be32_to_cpu(journal->j_superblock->s_nr_users));
3085 goto out_journal;
3086 }
Mingming Cao617ba132006-10-11 01:20:53 -07003087 EXT4_SB(sb)->journal_bdev = bdev;
3088 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003089 return journal;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003090
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003091out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003092 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003093out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003094 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003095 return NULL;
3096}
3097
Mingming Cao617ba132006-10-11 01:20:53 -07003098static int ext4_load_journal(struct super_block *sb,
3099 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003100 unsigned long journal_devnum)
3101{
3102 journal_t *journal;
3103 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3104 dev_t journal_dev;
3105 int err = 0;
3106 int really_read_only;
3107
Frank Mayhar03901312009-01-07 00:06:22 -05003108 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3109
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003110 if (journal_devnum &&
3111 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003112 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003113 "numbers have changed\n");
3114 journal_dev = new_decode_dev(journal_devnum);
3115 } else
3116 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3117
3118 really_read_only = bdev_read_only(sb->s_bdev);
3119
3120 /*
3121 * Are we loading a blank journal or performing recovery after a
3122 * crash? For recovery, we need to check in advance whether we
3123 * can get read-write access to the device.
3124 */
Mingming Cao617ba132006-10-11 01:20:53 -07003125 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003126 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003127 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003128 "required on readonly filesystem.\n");
3129 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07003130 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003131 "unavailable, cannot proceed.\n");
3132 return -EROFS;
3133 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003134 printk(KERN_INFO "EXT4-fs: write access will "
3135 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003136 }
3137 }
3138
3139 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07003140 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003141 "and inode journals!\n");
3142 return -EINVAL;
3143 }
3144
3145 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003146 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003147 return -EINVAL;
3148 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003149 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003150 return -EINVAL;
3151 }
3152
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003153 if (journal->j_flags & JBD2_BARRIER)
3154 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3155 else
3156 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3157
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003159 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003160 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003161 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003162 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003163 return err;
3164 }
3165 }
3166
Mingming Cao617ba132006-10-11 01:20:53 -07003167 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003168 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003169 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003170 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003171
3172 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003173 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003174 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003175 return err;
3176 }
3177
Mingming Cao617ba132006-10-11 01:20:53 -07003178 EXT4_SB(sb)->s_journal = journal;
3179 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003180
3181 if (journal_devnum &&
3182 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3183 es->s_journal_dev = cpu_to_le32(journal_devnum);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003184
3185 /* Make sure we flush the recovery flag to disk. */
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003186 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003187 }
3188
3189 return 0;
3190}
3191
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003192static int ext4_commit_super(struct super_block *sb, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193{
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003194 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Mingming Cao617ba132006-10-11 01:20:53 -07003195 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003196 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003197
3198 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003199 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003200 if (buffer_write_io_error(sbh)) {
3201 /*
3202 * Oh, dear. A previous attempt to write the
3203 * superblock failed. This could happen because the
3204 * USB device was yanked out. Or it could happen to
3205 * be a transient write error and maybe the block will
3206 * be remapped. Nothing we can do but to retry the
3207 * write and hope for the best.
3208 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05003209 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003210 "superblock detected for %s.\n", sb->s_id);
3211 clear_buffer_write_io_error(sbh);
3212 set_buffer_uptodate(sbh);
3213 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003214 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003215 es->s_kbytes_written =
3216 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3217 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3218 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003219 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3220 &EXT4_SB(sb)->s_freeblocks_counter));
3221 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3222 &EXT4_SB(sb)->s_freeinodes_counter));
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003223 sb->s_dirt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003224 BUFFER_TRACE(sbh, "marking dirty");
3225 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003226 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003227 error = sync_dirty_buffer(sbh);
3228 if (error)
3229 return error;
3230
3231 error = buffer_write_io_error(sbh);
3232 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05003233 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003234 "superblock for %s.\n", sb->s_id);
3235 clear_buffer_write_io_error(sbh);
3236 set_buffer_uptodate(sbh);
3237 }
3238 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003239 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240}
3241
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003242/*
3243 * Have we just finished recovery? If so, and if we are mounting (or
3244 * remounting) the filesystem readonly, then we will end up with a
3245 * consistent fs on disk. Record that fact.
3246 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003247static void ext4_mark_recovery_complete(struct super_block *sb,
3248 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003249{
Mingming Cao617ba132006-10-11 01:20:53 -07003250 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251
Frank Mayhar03901312009-01-07 00:06:22 -05003252 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3253 BUG_ON(journal != NULL);
3254 return;
3255 }
Mingming Caodab291a2006-10-11 01:21:01 -07003256 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003257 if (jbd2_journal_flush(journal) < 0)
3258 goto out;
3259
Mingming Cao617ba132006-10-11 01:20:53 -07003260 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003261 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003262 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003263 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264 }
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003265
3266out:
Mingming Caodab291a2006-10-11 01:21:01 -07003267 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003268}
3269
3270/*
3271 * If we are mounting (or read-write remounting) a filesystem whose journal
3272 * has recorded an error from a previous lifetime, move that error to the
3273 * main filesystem now.
3274 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003275static void ext4_clear_journal_err(struct super_block *sb,
3276 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003277{
3278 journal_t *journal;
3279 int j_errno;
3280 const char *errstr;
3281
Frank Mayhar03901312009-01-07 00:06:22 -05003282 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3283
Mingming Cao617ba132006-10-11 01:20:53 -07003284 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003285
3286 /*
3287 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003288 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 */
3290
Mingming Caodab291a2006-10-11 01:21:01 -07003291 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003292 if (j_errno) {
3293 char nbuf[16];
3294
Mingming Cao617ba132006-10-11 01:20:53 -07003295 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003296 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003298 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003299 "filesystem check.");
3300
Mingming Cao617ba132006-10-11 01:20:53 -07003301 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3302 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003303 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003304
Mingming Caodab291a2006-10-11 01:21:01 -07003305 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003306 }
3307}
3308
3309/*
3310 * Force the running and committing transactions to commit,
3311 * and wait on the commit.
3312 */
Mingming Cao617ba132006-10-11 01:20:53 -07003313int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003314{
3315 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003316 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003317
3318 if (sb->s_flags & MS_RDONLY)
3319 return 0;
3320
Mingming Cao617ba132006-10-11 01:20:53 -07003321 journal = EXT4_SB(sb)->s_journal;
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003322 if (journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003323 ret = ext4_journal_force_commit(journal);
Frank Mayhar03901312009-01-07 00:06:22 -05003324
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003325 return ret;
3326}
3327
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003328static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003329{
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003330 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331}
3332
Mingming Cao617ba132006-10-11 01:20:53 -07003333static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003335 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003336 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003337
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003338 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003339 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal, &target)) {
3340 if (wait)
3341 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal, target);
Frank Mayhar03901312009-01-07 00:06:22 -05003342 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003343 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003344}
3345
3346/*
3347 * LVM calls this function before a (read-only) snapshot is created. This
3348 * gives us a chance to flush the journal completely and mark the fs clean.
3349 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003350static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003351{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003352 int error = 0;
3353 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003354
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003355 if (sb->s_flags & MS_RDONLY)
3356 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003357
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003358 journal = EXT4_SB(sb)->s_journal;
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003359
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003360 /* Now we set up the journal barrier. */
3361 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003362
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003363 /*
3364 * Don't clear the needs_recovery flag if we failed to flush
3365 * the journal.
3366 */
3367 error = jbd2_journal_flush(journal);
3368 if (error < 0) {
3369 out:
3370 jbd2_journal_unlock_updates(journal);
3371 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003372 }
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003373
3374 /* Journal blocked and flushed, clear needs_recovery flag. */
3375 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3376 error = ext4_commit_super(sb, 1);
3377 if (error)
3378 goto out;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003379 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003380}
3381
3382/*
3383 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3384 * flag here, even though the filesystem is not technically dirty yet.
3385 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003386static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003387{
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003388 if (sb->s_flags & MS_RDONLY)
3389 return 0;
3390
3391 lock_super(sb);
3392 /* Reset the needs_recovery flag before the fs is unlocked. */
3393 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3394 ext4_commit_super(sb, 1);
3395 unlock_super(sb);
3396 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003397 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003398}
3399
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003400static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003402 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003403 struct ext4_sb_info *sbi = EXT4_SB(sb);
3404 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003405 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003406 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003407 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003408 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003409 int err;
3410#ifdef CONFIG_QUOTA
3411 int i;
3412#endif
3413
3414 /* Store the original options */
3415 old_sb_flags = sb->s_flags;
3416 old_opts.s_mount_opt = sbi->s_mount_opt;
3417 old_opts.s_resuid = sbi->s_resuid;
3418 old_opts.s_resgid = sbi->s_resgid;
3419 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003420 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3421 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003422#ifdef CONFIG_QUOTA
3423 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3424 for (i = 0; i < MAXQUOTAS; i++)
3425 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3426#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003427 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3428 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003429
3430 /*
3431 * Allow the "check" option to be passed as a remount option.
3432 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003433 if (!parse_options(data, sb, NULL, &journal_ioprio,
3434 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003435 err = -EINVAL;
3436 goto restore_opts;
3437 }
3438
Mingming Cao617ba132006-10-11 01:20:53 -07003439 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003440 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003441
3442 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003443 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003444
3445 es = sbi->s_es;
3446
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003447 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003448 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003449 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3450 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003451
3452 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003453 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003454 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003455 err = -EROFS;
3456 goto restore_opts;
3457 }
3458
3459 if (*flags & MS_RDONLY) {
3460 /*
3461 * First of all, the unconditional stuff we have to do
3462 * to disable replay of the journal when we next remount
3463 */
3464 sb->s_flags |= MS_RDONLY;
3465
3466 /*
3467 * OK, test if we are remounting a valid rw partition
3468 * readonly, and if so set the rdonly flag and then
3469 * mark the partition as valid again.
3470 */
Mingming Cao617ba132006-10-11 01:20:53 -07003471 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3472 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003473 es->s_state = cpu_to_le16(sbi->s_mount_state);
3474
Theodore Ts'oa63c9eb2009-05-01 01:59:42 -04003475 if (sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003476 ext4_mark_recovery_complete(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003477 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003478 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003479 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3480 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3481 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003482 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003483 "optional features (%x).\n", sb->s_id,
3484 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3485 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003486 err = -EROFS;
3487 goto restore_opts;
3488 }
Eric Sandeenead65962007-02-10 01:46:08 -08003489
3490 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003491 * Make sure the group descriptor checksums
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003492 * are sane. If they aren't, refuse to remount r/w.
Theodore Ts'o8a266462008-07-26 14:34:21 -04003493 */
3494 for (g = 0; g < sbi->s_groups_count; g++) {
3495 struct ext4_group_desc *gdp =
3496 ext4_get_group_desc(sb, g, NULL);
3497
3498 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3499 printk(KERN_ERR
3500 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003501 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003502 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3503 le16_to_cpu(gdp->bg_checksum));
3504 err = -EINVAL;
3505 goto restore_opts;
3506 }
3507 }
3508
3509 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003510 * If we have an unprocessed orphan list hanging
3511 * around from a previously readonly bdev mount,
3512 * require a full umount/remount for now.
3513 */
3514 if (es->s_last_orphan) {
3515 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3516 "remount RDWR because of unprocessed "
3517 "orphan inode list. Please "
3518 "umount/remount instead.\n",
3519 sb->s_id);
3520 err = -EINVAL;
3521 goto restore_opts;
3522 }
3523
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003524 /*
3525 * Mounting a RDONLY partition read-write, so reread
3526 * and store the current valid flag. (It may have
3527 * been changed by e2fsck since we originally mounted
3528 * the partition.)
3529 */
Frank Mayhar03901312009-01-07 00:06:22 -05003530 if (sbi->s_journal)
3531 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003532 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003533 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003534 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003535 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003536 sb->s_flags &= ~MS_RDONLY;
3537 }
3538 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003539 ext4_setup_system_zone(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05003540 if (sbi->s_journal == NULL)
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003541 ext4_commit_super(sb, 1);
Frank Mayhar03901312009-01-07 00:06:22 -05003542
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003543#ifdef CONFIG_QUOTA
3544 /* Release old quota file names */
3545 for (i = 0; i < MAXQUOTAS; i++)
3546 if (old_opts.s_qf_names[i] &&
3547 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3548 kfree(old_opts.s_qf_names[i]);
3549#endif
3550 return 0;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003551
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003552restore_opts:
3553 sb->s_flags = old_sb_flags;
3554 sbi->s_mount_opt = old_opts.s_mount_opt;
3555 sbi->s_resuid = old_opts.s_resuid;
3556 sbi->s_resgid = old_opts.s_resgid;
3557 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003558 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3559 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560#ifdef CONFIG_QUOTA
3561 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3562 for (i = 0; i < MAXQUOTAS; i++) {
3563 if (sbi->s_qf_names[i] &&
3564 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3565 kfree(sbi->s_qf_names[i]);
3566 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3567 }
3568#endif
3569 return err;
3570}
3571
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003572static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003573{
3574 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003575 struct ext4_sb_info *sbi = EXT4_SB(sb);
3576 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003577 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003578
Badari Pulavarty5e700302007-07-15 23:42:00 -07003579 if (test_opt(sb, MINIX_DF)) {
3580 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003581 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04003582 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003583 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003584
3585 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003586 * Compute the overhead (FS structures). This is constant
3587 * for a given filesystem unless the number of block groups
3588 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003589 */
3590
3591 /*
3592 * All of the blocks before first_data_block are
3593 * overhead
3594 */
3595 overhead = le32_to_cpu(es->s_first_data_block);
3596
3597 /*
3598 * Add the overhead attributed to the superblock and
3599 * block group descriptors. If the sparse superblocks
3600 * feature is turned on, then not all groups have this.
3601 */
3602 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003603 overhead += ext4_bg_has_super(sb, i) +
3604 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003605 cond_resched();
3606 }
3607
3608 /*
3609 * Every block group has an inode bitmap, a block
3610 * bitmap, and an inode table.
3611 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003612 overhead += ngroups * (2 + sbi->s_itb_per_group);
3613 sbi->s_overhead_last = overhead;
3614 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003615 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003616 }
3617
Mingming Cao617ba132006-10-11 01:20:53 -07003618 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003619 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003620 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003621 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3622 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003623 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003624 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3625 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003626 buf->f_bavail = 0;
3627 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003628 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003629 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003630 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003631 fsid = le64_to_cpup((void *)es->s_uuid) ^
3632 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3633 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3634 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003635
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003636 return 0;
3637}
3638
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003639/* Helper function for writing quotas on sync - we need to start transaction
3640 * before quota file is locked for write. Otherwise the are possible deadlocks:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003641 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003642 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003643 * jbd2_journal_start() write_dquot()
3644 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003645 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003646 *
3647 */
3648
3649#ifdef CONFIG_QUOTA
3650
3651static inline struct inode *dquot_to_inode(struct dquot *dquot)
3652{
3653 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3654}
3655
Mingming Cao617ba132006-10-11 01:20:53 -07003656static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003657{
3658 int ret, err;
3659 handle_t *handle;
3660 struct inode *inode;
3661
3662 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003663 handle = ext4_journal_start(inode,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003664 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003665 if (IS_ERR(handle))
3666 return PTR_ERR(handle);
3667 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003668 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003669 if (!ret)
3670 ret = err;
3671 return ret;
3672}
3673
Mingming Cao617ba132006-10-11 01:20:53 -07003674static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003675{
3676 int ret, err;
3677 handle_t *handle;
3678
Mingming Cao617ba132006-10-11 01:20:53 -07003679 handle = ext4_journal_start(dquot_to_inode(dquot),
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003680 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003681 if (IS_ERR(handle))
3682 return PTR_ERR(handle);
3683 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003684 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003685 if (!ret)
3686 ret = err;
3687 return ret;
3688}
3689
Mingming Cao617ba132006-10-11 01:20:53 -07003690static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003691{
3692 int ret, err;
3693 handle_t *handle;
3694
Mingming Cao617ba132006-10-11 01:20:53 -07003695 handle = ext4_journal_start(dquot_to_inode(dquot),
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003696 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003697 if (IS_ERR(handle)) {
3698 /* Release dquot anyway to avoid endless cycle in dqput() */
3699 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003700 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003701 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003703 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003704 if (!ret)
3705 ret = err;
3706 return ret;
3707}
3708
Mingming Cao617ba132006-10-11 01:20:53 -07003709static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003711 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003712 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3713 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003714 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003715 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003716 } else {
3717 return dquot_mark_dquot_dirty(dquot);
3718 }
3719}
3720
Mingming Cao617ba132006-10-11 01:20:53 -07003721static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003722{
3723 int ret, err;
3724 handle_t *handle;
3725
3726 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003727 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003728 if (IS_ERR(handle))
3729 return PTR_ERR(handle);
3730 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003731 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003732 if (!ret)
3733 ret = err;
3734 return ret;
3735}
3736
3737/*
3738 * Turn on quotas during mount time - we need to find
3739 * the quota file and such...
3740 */
Mingming Cao617ba132006-10-11 01:20:53 -07003741static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003742{
Mingming Cao617ba132006-10-11 01:20:53 -07003743 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003744 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003745}
3746
3747/*
3748 * Standard function to be called on quota_on
3749 */
Mingming Cao617ba132006-10-11 01:20:53 -07003750static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003751 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003752{
3753 int err;
Al Viro82646132008-08-02 00:57:06 -04003754 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003755
3756 if (!test_opt(sb, QUOTA))
3757 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003758 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003759 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003760 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003761
Al Viro82646132008-08-02 00:57:06 -04003762 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003763 if (err)
3764 return err;
Jan Kara06235432008-05-13 19:11:51 -04003765
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003766 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003767 if (path.mnt->mnt_sb != sb) {
3768 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003769 return -EXDEV;
3770 }
Jan Kara06235432008-05-13 19:11:51 -04003771 /* Journaling quota? */
3772 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003773 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003774 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003775 printk(KERN_WARNING
3776 "EXT4-fs: Quota file not on filesystem root. "
3777 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003778 }
Jan Kara06235432008-05-13 19:11:51 -04003779
3780 /*
3781 * When we journal data on quota file, we have to flush journal to see
3782 * all updates to the file when we bypass pagecache...
3783 */
Frank Mayhar03901312009-01-07 00:06:22 -05003784 if (EXT4_SB(sb)->s_journal &&
3785 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003786 /*
3787 * We don't need to lock updates but journal_flush() could
3788 * otherwise be livelocked...
3789 */
3790 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003791 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003792 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003793 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003794 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003795 return err;
3796 }
Jan Kara06235432008-05-13 19:11:51 -04003797 }
3798
Al Viro82646132008-08-02 00:57:06 -04003799 err = vfs_quota_on_path(sb, type, format_id, &path);
3800 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003801 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003802}
3803
3804/* Read data from quotafile - avoid pagecache and such because we cannot afford
3805 * acquiring the locks... As quota files are never truncated and quota code
3806 * itself serializes the operations (and noone else should touch the files)
3807 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003808static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003809 size_t len, loff_t off)
3810{
3811 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003812 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003813 int err = 0;
3814 int offset = off & (sb->s_blocksize - 1);
3815 int tocopy;
3816 size_t toread;
3817 struct buffer_head *bh;
3818 loff_t i_size = i_size_read(inode);
3819
3820 if (off > i_size)
3821 return 0;
3822 if (off+len > i_size)
3823 len = i_size-off;
3824 toread = len;
3825 while (toread > 0) {
3826 tocopy = sb->s_blocksize - offset < toread ?
3827 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003828 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829 if (err)
3830 return err;
3831 if (!bh) /* A hole? */
3832 memset(data, 0, tocopy);
3833 else
3834 memcpy(data, bh->b_data+offset, tocopy);
3835 brelse(bh);
3836 offset = 0;
3837 toread -= tocopy;
3838 data += tocopy;
3839 blk++;
3840 }
3841 return len;
3842}
3843
3844/* Write to quotafile (we know the transaction is already started and has
3845 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003846static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003847 const char *data, size_t len, loff_t off)
3848{
3849 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003850 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003851 int err = 0;
3852 int offset = off & (sb->s_blocksize - 1);
3853 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003854 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003855 size_t towrite = len;
3856 struct buffer_head *bh;
3857 handle_t *handle = journal_current_handle();
3858
Frank Mayhar03901312009-01-07 00:06:22 -05003859 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003860 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003861 " cancelled because transaction is not started.\n",
3862 (unsigned long long)off, (unsigned long long)len);
3863 return -EIO;
3864 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003865 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3866 while (towrite > 0) {
3867 tocopy = sb->s_blocksize - offset < towrite ?
3868 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003869 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003870 if (!bh)
3871 goto out;
3872 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003873 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003874 if (err) {
3875 brelse(bh);
3876 goto out;
3877 }
3878 }
3879 lock_buffer(bh);
3880 memcpy(bh->b_data+offset, data, tocopy);
3881 flush_dcache_page(bh->b_page);
3882 unlock_buffer(bh);
3883 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003884 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003885 else {
3886 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003887 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003888 mark_buffer_dirty(bh);
3889 }
3890 brelse(bh);
3891 if (err)
3892 goto out;
3893 offset = 0;
3894 towrite -= tocopy;
3895 data += tocopy;
3896 blk++;
3897 }
3898out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003899 if (len == towrite) {
3900 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003901 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003902 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003903 if (inode->i_size < off+len-towrite) {
3904 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003905 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003906 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003907 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003908 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003909 mutex_unlock(&inode->i_mutex);
3910 return len - towrite;
3911}
3912
3913#endif
3914
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003915static int ext4_get_sb(struct file_system_type *fs_type, int flags,
3916 const char *dev_name, void *data, struct vfsmount *mnt)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003917{
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003918 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003919}
3920
Theodore Ts'o03010a32008-10-10 20:02:48 -04003921static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003922 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003923 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003924 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003925 .kill_sb = kill_block_super,
3926 .fs_flags = FS_REQUIRES_DEV,
3927};
3928
Theodore Ts'o03010a32008-10-10 20:02:48 -04003929#ifdef CONFIG_EXT4DEV_COMPAT
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003930static int ext4dev_get_sb(struct file_system_type *fs_type, int flags,
3931 const char *dev_name, void *data,struct vfsmount *mnt)
Theodore Ts'o03010a32008-10-10 20:02:48 -04003932{
3933 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3934 "to mount using ext4\n");
3935 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3936 "will go away by 2.6.31\n");
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003937 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003938}
3939
3940static struct file_system_type ext4dev_fs_type = {
3941 .owner = THIS_MODULE,
3942 .name = "ext4dev",
3943 .get_sb = ext4dev_get_sb,
3944 .kill_sb = kill_block_super,
3945 .fs_flags = FS_REQUIRES_DEV,
3946};
3947MODULE_ALIAS("ext4dev");
3948#endif
3949
Mingming Cao617ba132006-10-11 01:20:53 -07003950static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003951{
Alex Tomasc9de5602008-01-29 00:19:52 -05003952 int err;
3953
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003954 err = init_ext4_system_zone();
3955 if (err)
3956 return err;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003957 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3958 if (!ext4_kset)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003959 goto out4;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003960 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003961 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003962 if (err)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003963 goto out3;
Alex Tomasc9de5602008-01-29 00:19:52 -05003964
3965 err = init_ext4_xattr();
3966 if (err)
3967 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003968 err = init_inodecache();
3969 if (err)
3970 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003971 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003972 if (err)
3973 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003974#ifdef CONFIG_EXT4DEV_COMPAT
3975 err = register_filesystem(&ext4dev_fs_type);
3976 if (err) {
3977 unregister_filesystem(&ext4_fs_type);
3978 goto out;
3979 }
3980#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003981 return 0;
3982out:
3983 destroy_inodecache();
3984out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003985 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003986out2:
3987 exit_ext4_mballoc();
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003988out3:
3989 remove_proc_entry("fs/ext4", NULL);
3990 kset_unregister(ext4_kset);
3991out4:
3992 exit_ext4_system_zone();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003993 return err;
3994}
3995
Mingming Cao617ba132006-10-11 01:20:53 -07003996static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003997{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003998 unregister_filesystem(&ext4_fs_type);
3999#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07004000 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04004001#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004002 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07004003 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05004004 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04004005 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04004006 kset_unregister(ext4_kset);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004007 exit_ext4_system_zone();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004008}
4009
4010MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05004011MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004012MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07004013module_init(init_ext4_fs)
4014module_exit(exit_ext4_fs)