ext4: Fix and simplify s_dirt handling
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / ext4 / super.c
CommitLineData
ac27a0ec 1/*
617ba13b 2 * linux/fs/ext4/super.c
ac27a0ec
DK
3 *
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>
c5ca7c76 23#include <linux/vmalloc.h>
dab291af 24#include <linux/jbd2.h>
ac27a0ec
DK
25#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>
a5694255 31#include <linux/exportfs.h>
ac27a0ec
DK
32#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>
9f6200bb 38#include <linux/proc_fs.h>
3197ebdb 39#include <linux/ctype.h>
ede86cc4 40#include <linux/marker.h>
1330593e 41#include <linux/log2.h>
717d50e4 42#include <linux/crc16.h>
ac27a0ec
DK
43#include <asm/uaccess.h>
44
3dcf5451
CH
45#include "ext4.h"
46#include "ext4_jbd2.h"
ac27a0ec
DK
47#include "xattr.h"
48#include "acl.h"
49#include "namei.h"
717d50e4 50#include "group.h"
ac27a0ec 51
9f6200bb 52struct proc_dir_entry *ext4_proc_root;
3197ebdb 53static struct kset *ext4_kset;
9f6200bb 54
617ba13b 55static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
ac27a0ec 56 unsigned long journal_devnum);
e2d67052 57static int ext4_commit_super(struct super_block *sb, int sync);
2b2d6d01
TT
58static void ext4_mark_recovery_complete(struct super_block *sb,
59 struct ext4_super_block *es);
60static void ext4_clear_journal_err(struct super_block *sb,
61 struct ext4_super_block *es);
617ba13b 62static int ext4_sync_fs(struct super_block *sb, int wait);
2b2d6d01 63static const char *ext4_decode_error(struct super_block *sb, int errno,
ac27a0ec 64 char nbuf[16]);
2b2d6d01
TT
65static int ext4_remount(struct super_block *sb, int *flags, char *data);
66static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
c4be0c1d 67static int ext4_unfreeze(struct super_block *sb);
2b2d6d01 68static void ext4_write_super(struct super_block *sb);
c4be0c1d 69static int ext4_freeze(struct super_block *sb);
ac27a0ec 70
bd81d8ee 71
8fadc143
AR
72ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
73 struct ext4_group_desc *bg)
bd81d8ee 74{
3a14589c 75 return le32_to_cpu(bg->bg_block_bitmap_lo) |
8fadc143 76 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
3a14589c 77 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
bd81d8ee
LV
78}
79
8fadc143
AR
80ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
81 struct ext4_group_desc *bg)
bd81d8ee 82{
5272f837 83 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
8fadc143 84 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
5272f837 85 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
bd81d8ee
LV
86}
87
8fadc143
AR
88ext4_fsblk_t ext4_inode_table(struct super_block *sb,
89 struct ext4_group_desc *bg)
bd81d8ee 90{
5272f837 91 return le32_to_cpu(bg->bg_inode_table_lo) |
8fadc143 92 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
5272f837 93 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
bd81d8ee
LV
94}
95
560671a0
AK
96__u32 ext4_free_blks_count(struct super_block *sb,
97 struct ext4_group_desc *bg)
98{
99 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
100 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
101 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
102}
103
104__u32 ext4_free_inodes_count(struct super_block *sb,
105 struct ext4_group_desc *bg)
106{
107 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
108 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
109 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
110}
111
112__u32 ext4_used_dirs_count(struct super_block *sb,
113 struct ext4_group_desc *bg)
114{
115 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
116 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
117 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
118}
119
120__u32 ext4_itable_unused_count(struct super_block *sb,
121 struct ext4_group_desc *bg)
122{
123 return le16_to_cpu(bg->bg_itable_unused_lo) |
124 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
125 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
126}
127
8fadc143
AR
128void ext4_block_bitmap_set(struct super_block *sb,
129 struct ext4_group_desc *bg, ext4_fsblk_t blk)
bd81d8ee 130{
3a14589c 131 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
8fadc143
AR
132 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
133 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
bd81d8ee
LV
134}
135
8fadc143
AR
136void ext4_inode_bitmap_set(struct super_block *sb,
137 struct ext4_group_desc *bg, ext4_fsblk_t blk)
bd81d8ee 138{
5272f837 139 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
8fadc143
AR
140 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
141 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
bd81d8ee
LV
142}
143
8fadc143
AR
144void ext4_inode_table_set(struct super_block *sb,
145 struct ext4_group_desc *bg, ext4_fsblk_t blk)
bd81d8ee 146{
5272f837 147 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
8fadc143
AR
148 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
149 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
bd81d8ee
LV
150}
151
560671a0
AK
152void ext4_free_blks_set(struct super_block *sb,
153 struct ext4_group_desc *bg, __u32 count)
154{
155 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
156 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
157 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
158}
159
160void ext4_free_inodes_set(struct super_block *sb,
161 struct ext4_group_desc *bg, __u32 count)
162{
163 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
164 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
165 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
166}
167
168void ext4_used_dirs_set(struct super_block *sb,
169 struct ext4_group_desc *bg, __u32 count)
170{
171 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
172 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
173 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
174}
175
176void ext4_itable_unused_set(struct super_block *sb,
177 struct ext4_group_desc *bg, __u32 count)
178{
179 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
180 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
181 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
182}
183
ac27a0ec 184/*
dab291af 185 * Wrappers for jbd2_journal_start/end.
ac27a0ec
DK
186 *
187 * The only special thing we need to do here is to make sure that all
188 * journal_end calls result in the superblock being marked dirty, so
189 * that sync() will call the filesystem's write_super callback if
190 * appropriate.
191 */
617ba13b 192handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
ac27a0ec
DK
193{
194 journal_t *journal;
195
196 if (sb->s_flags & MS_RDONLY)
197 return ERR_PTR(-EROFS);
198
199 /* Special case here: if the journal has aborted behind our
200 * backs (eg. EIO in the commit thread), then we still need to
201 * take the FS itself readonly cleanly. */
617ba13b 202 journal = EXT4_SB(sb)->s_journal;
0390131b
FM
203 if (journal) {
204 if (is_journal_aborted(journal)) {
205 ext4_abort(sb, __func__,
206 "Detected aborted journal");
207 return ERR_PTR(-EROFS);
208 }
209 return jbd2_journal_start(journal, nblocks);
ac27a0ec 210 }
0390131b
FM
211 /*
212 * We're not journaling, return the appropriate indication.
213 */
214 current->journal_info = EXT4_NOJOURNAL_HANDLE;
215 return current->journal_info;
ac27a0ec
DK
216}
217
218/*
219 * The only special thing we need to do here is to make sure that all
dab291af 220 * jbd2_journal_stop calls result in the superblock being marked dirty, so
ac27a0ec
DK
221 * that sync() will call the filesystem's write_super callback if
222 * appropriate.
223 */
617ba13b 224int __ext4_journal_stop(const char *where, handle_t *handle)
ac27a0ec
DK
225{
226 struct super_block *sb;
227 int err;
228 int rc;
229
0390131b
FM
230 if (!ext4_handle_valid(handle)) {
231 /*
232 * Do this here since we don't call jbd2_journal_stop() in
233 * no-journal mode.
234 */
235 current->journal_info = NULL;
236 return 0;
237 }
ac27a0ec
DK
238 sb = handle->h_transaction->t_journal->j_private;
239 err = handle->h_err;
dab291af 240 rc = jbd2_journal_stop(handle);
ac27a0ec
DK
241
242 if (!err)
243 err = rc;
244 if (err)
617ba13b 245 __ext4_std_error(sb, where, err);
ac27a0ec
DK
246 return err;
247}
248
617ba13b 249void ext4_journal_abort_handle(const char *caller, const char *err_fn,
ac27a0ec
DK
250 struct buffer_head *bh, handle_t *handle, int err)
251{
252 char nbuf[16];
617ba13b 253 const char *errstr = ext4_decode_error(NULL, err, nbuf);
ac27a0ec 254
0390131b
FM
255 BUG_ON(!ext4_handle_valid(handle));
256
ac27a0ec
DK
257 if (bh)
258 BUFFER_TRACE(bh, "abort");
259
260 if (!handle->h_err)
261 handle->h_err = err;
262
263 if (is_handle_aborted(handle))
264 return;
265
266 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
267 caller, errstr, err_fn);
268
dab291af 269 jbd2_journal_abort_handle(handle);
ac27a0ec
DK
270}
271
272/* Deal with the reporting of failure conditions on a filesystem such as
273 * inconsistencies detected or read IO failures.
274 *
275 * On ext2, we can store the error state of the filesystem in the
617ba13b 276 * superblock. That is not possible on ext4, because we may have other
ac27a0ec
DK
277 * write ordering constraints on the superblock which prevent us from
278 * writing it out straight away; and given that the journal is about to
279 * be aborted, we can't rely on the current, or future, transactions to
280 * write out the superblock safely.
281 *
dab291af 282 * We'll just use the jbd2_journal_abort() error code to record an error in
ac27a0ec
DK
283 * the journal instead. On recovery, the journal will compain about
284 * that error until we've noted it down and cleared it.
285 */
286
617ba13b 287static void ext4_handle_error(struct super_block *sb)
ac27a0ec 288{
617ba13b 289 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
ac27a0ec 290
617ba13b
MC
291 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
292 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
ac27a0ec
DK
293
294 if (sb->s_flags & MS_RDONLY)
295 return;
296
2b2d6d01 297 if (!test_opt(sb, ERRORS_CONT)) {
617ba13b 298 journal_t *journal = EXT4_SB(sb)->s_journal;
ac27a0ec 299
617ba13b 300 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
ac27a0ec 301 if (journal)
dab291af 302 jbd2_journal_abort(journal, -EIO);
ac27a0ec 303 }
2b2d6d01
TT
304 if (test_opt(sb, ERRORS_RO)) {
305 printk(KERN_CRIT "Remounting filesystem read-only\n");
ac27a0ec
DK
306 sb->s_flags |= MS_RDONLY;
307 }
e2d67052 308 ext4_commit_super(sb, 1);
ac27a0ec 309 if (test_opt(sb, ERRORS_PANIC))
617ba13b 310 panic("EXT4-fs (device %s): panic forced after error\n",
ac27a0ec
DK
311 sb->s_id);
312}
313
2b2d6d01
TT
314void ext4_error(struct super_block *sb, const char *function,
315 const char *fmt, ...)
ac27a0ec
DK
316{
317 va_list args;
318
319 va_start(args, fmt);
2b2d6d01 320 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
ac27a0ec
DK
321 vprintk(fmt, args);
322 printk("\n");
323 va_end(args);
324
617ba13b 325 ext4_handle_error(sb);
ac27a0ec
DK
326}
327
2b2d6d01 328static const char *ext4_decode_error(struct super_block *sb, int errno,
ac27a0ec
DK
329 char nbuf[16])
330{
331 char *errstr = NULL;
332
333 switch (errno) {
334 case -EIO:
335 errstr = "IO failure";
336 break;
337 case -ENOMEM:
338 errstr = "Out of memory";
339 break;
340 case -EROFS:
dab291af 341 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
ac27a0ec
DK
342 errstr = "Journal has aborted";
343 else
344 errstr = "Readonly filesystem";
345 break;
346 default:
347 /* If the caller passed in an extra buffer for unknown
348 * errors, textualise them now. Else we just return
349 * NULL. */
350 if (nbuf) {
351 /* Check for truncated error codes... */
352 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
353 errstr = nbuf;
354 }
355 break;
356 }
357
358 return errstr;
359}
360
617ba13b 361/* __ext4_std_error decodes expected errors from journaling functions
ac27a0ec
DK
362 * automatically and invokes the appropriate error response. */
363
2b2d6d01 364void __ext4_std_error(struct super_block *sb, const char *function, int errno)
ac27a0ec
DK
365{
366 char nbuf[16];
367 const char *errstr;
368
369 /* Special case: if the error is EROFS, and we're not already
370 * inside a transaction, then there's really no point in logging
371 * an error. */
372 if (errno == -EROFS && journal_current_handle() == NULL &&
373 (sb->s_flags & MS_RDONLY))
374 return;
375
617ba13b 376 errstr = ext4_decode_error(sb, errno, nbuf);
2b2d6d01
TT
377 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
378 sb->s_id, function, errstr);
ac27a0ec 379
617ba13b 380 ext4_handle_error(sb);
ac27a0ec
DK
381}
382
383/*
617ba13b 384 * ext4_abort is a much stronger failure handler than ext4_error. The
ac27a0ec
DK
385 * abort function may be used to deal with unrecoverable failures such
386 * as journal IO errors or ENOMEM at a critical moment in log management.
387 *
388 * We unconditionally force the filesystem into an ABORT|READONLY state,
389 * unless the error response on the fs has been set to panic in which
390 * case we take the easy way out and panic immediately.
391 */
392
2b2d6d01
TT
393void ext4_abort(struct super_block *sb, const char *function,
394 const char *fmt, ...)
ac27a0ec
DK
395{
396 va_list args;
397
2b2d6d01 398 printk(KERN_CRIT "ext4_abort called.\n");
ac27a0ec
DK
399
400 va_start(args, fmt);
2b2d6d01 401 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
ac27a0ec
DK
402 vprintk(fmt, args);
403 printk("\n");
404 va_end(args);
405
406 if (test_opt(sb, ERRORS_PANIC))
617ba13b 407 panic("EXT4-fs panic from previous error\n");
ac27a0ec
DK
408
409 if (sb->s_flags & MS_RDONLY)
410 return;
411
412 printk(KERN_CRIT "Remounting filesystem read-only\n");
617ba13b 413 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
ac27a0ec 414 sb->s_flags |= MS_RDONLY;
617ba13b 415 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
ef2cabf7
HK
416 if (EXT4_SB(sb)->s_journal)
417 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
ac27a0ec
DK
418}
419
2b2d6d01
TT
420void ext4_warning(struct super_block *sb, const char *function,
421 const char *fmt, ...)
ac27a0ec
DK
422{
423 va_list args;
424
425 va_start(args, fmt);
617ba13b 426 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
ac27a0ec
DK
427 sb->s_id, function);
428 vprintk(fmt, args);
429 printk("\n");
430 va_end(args);
431}
432
5d1b1b3f
AK
433void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
434 const char *function, const char *fmt, ...)
435__releases(bitlock)
436__acquires(bitlock)
437{
438 va_list args;
439 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
440
441 va_start(args, fmt);
442 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
443 vprintk(fmt, args);
444 printk("\n");
445 va_end(args);
446
447 if (test_opt(sb, ERRORS_CONT)) {
448 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
449 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
e2d67052 450 ext4_commit_super(sb, 0);
5d1b1b3f
AK
451 return;
452 }
453 ext4_unlock_group(sb, grp);
454 ext4_handle_error(sb);
455 /*
456 * We only get here in the ERRORS_RO case; relocking the group
457 * may be dangerous, but nothing bad will happen since the
458 * filesystem will have already been marked read/only and the
459 * journal has been aborted. We return 1 as a hint to callers
460 * who might what to use the return value from
461 * ext4_grp_locked_error() to distinguish beween the
462 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
463 * aggressively from the ext4 function in question, with a
464 * more appropriate error code.
465 */
466 ext4_lock_group(sb, grp);
467 return;
468}
469
470
617ba13b 471void ext4_update_dynamic_rev(struct super_block *sb)
ac27a0ec 472{
617ba13b 473 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
ac27a0ec 474
617ba13b 475 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
ac27a0ec
DK
476 return;
477
46e665e9 478 ext4_warning(sb, __func__,
ac27a0ec
DK
479 "updating to rev %d because of new feature flag, "
480 "running e2fsck is recommended",
617ba13b 481 EXT4_DYNAMIC_REV);
ac27a0ec 482
617ba13b
MC
483 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
484 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
485 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
ac27a0ec
DK
486 /* leave es->s_feature_*compat flags alone */
487 /* es->s_uuid will be set by e2fsck if empty */
488
489 /*
490 * The rest of the superblock fields should be zero, and if not it
491 * means they are likely already in use, so leave them alone. We
492 * can leave it up to e2fsck to clean up any inconsistencies there.
493 */
494}
495
496/*
497 * Open the external journal device
498 */
617ba13b 499static struct block_device *ext4_blkdev_get(dev_t dev)
ac27a0ec
DK
500{
501 struct block_device *bdev;
502 char b[BDEVNAME_SIZE];
503
504 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
505 if (IS_ERR(bdev))
506 goto fail;
507 return bdev;
508
509fail:
abda1418 510 printk(KERN_ERR "EXT4-fs: failed to open journal device %s: %ld\n",
ac27a0ec
DK
511 __bdevname(dev, b), PTR_ERR(bdev));
512 return NULL;
513}
514
515/*
516 * Release the journal device
517 */
617ba13b 518static int ext4_blkdev_put(struct block_device *bdev)
ac27a0ec
DK
519{
520 bd_release(bdev);
9a1c3542 521 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
ac27a0ec
DK
522}
523
617ba13b 524static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
ac27a0ec
DK
525{
526 struct block_device *bdev;
527 int ret = -ENODEV;
528
529 bdev = sbi->journal_bdev;
530 if (bdev) {
617ba13b 531 ret = ext4_blkdev_put(bdev);
ac27a0ec
DK
532 sbi->journal_bdev = NULL;
533 }
534 return ret;
535}
536
537static inline struct inode *orphan_list_entry(struct list_head *l)
538{
617ba13b 539 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
ac27a0ec
DK
540}
541
617ba13b 542static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
ac27a0ec
DK
543{
544 struct list_head *l;
545
546 printk(KERN_ERR "sb orphan head is %d\n",
547 le32_to_cpu(sbi->s_es->s_last_orphan));
548
549 printk(KERN_ERR "sb_info orphan list:\n");
550 list_for_each(l, &sbi->s_orphan) {
551 struct inode *inode = orphan_list_entry(l);
552 printk(KERN_ERR " "
553 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
554 inode->i_sb->s_id, inode->i_ino, inode,
555 inode->i_mode, inode->i_nlink,
556 NEXT_ORPHAN(inode));
557 }
558}
559
2b2d6d01 560static void ext4_put_super(struct super_block *sb)
ac27a0ec 561{
617ba13b
MC
562 struct ext4_sb_info *sbi = EXT4_SB(sb);
563 struct ext4_super_block *es = sbi->s_es;
ef2cabf7 564 int i, err;
ac27a0ec 565
c9de560d 566 ext4_mb_release(sb);
a86c6181 567 ext4_ext_release(sb);
617ba13b 568 ext4_xattr_put_super(sb);
0390131b
FM
569 if (sbi->s_journal) {
570 err = jbd2_journal_destroy(sbi->s_journal);
571 sbi->s_journal = NULL;
572 if (err < 0)
573 ext4_abort(sb, __func__,
574 "Couldn't clean up the journal");
575 }
ac27a0ec 576 if (!(sb->s_flags & MS_RDONLY)) {
617ba13b 577 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
ac27a0ec 578 es->s_state = cpu_to_le16(sbi->s_mount_state);
e2d67052 579 ext4_commit_super(sb, 1);
ac27a0ec 580 }
240799cd 581 if (sbi->s_proc) {
9f6200bb 582 remove_proc_entry(sb->s_id, ext4_proc_root);
240799cd 583 }
3197ebdb 584 kobject_del(&sbi->s_kobj);
ac27a0ec
DK
585
586 for (i = 0; i < sbi->s_gdb_count; i++)
587 brelse(sbi->s_group_desc[i]);
588 kfree(sbi->s_group_desc);
c5ca7c76
TT
589 if (is_vmalloc_addr(sbi->s_flex_groups))
590 vfree(sbi->s_flex_groups);
591 else
592 kfree(sbi->s_flex_groups);
ac27a0ec
DK
593 percpu_counter_destroy(&sbi->s_freeblocks_counter);
594 percpu_counter_destroy(&sbi->s_freeinodes_counter);
595 percpu_counter_destroy(&sbi->s_dirs_counter);
6bc6e63f 596 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
ac27a0ec
DK
597 brelse(sbi->s_sbh);
598#ifdef CONFIG_QUOTA
599 for (i = 0; i < MAXQUOTAS; i++)
600 kfree(sbi->s_qf_names[i]);
601#endif
602
603 /* Debugging code just in case the in-memory inode orphan list
604 * isn't empty. The on-disk one can be non-empty if we've
605 * detected an error and taken the fs readonly, but the
606 * in-memory list had better be clean by this point. */
607 if (!list_empty(&sbi->s_orphan))
608 dump_orphan_list(sb, sbi);
609 J_ASSERT(list_empty(&sbi->s_orphan));
610
f98393a6 611 invalidate_bdev(sb->s_bdev);
ac27a0ec
DK
612 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
613 /*
614 * Invalidate the journal device's buffers. We don't want them
615 * floating about in memory - the physical journal device may
616 * hotswapped, and it breaks the `ro-after' testing code.
617 */
618 sync_blockdev(sbi->journal_bdev);
f98393a6 619 invalidate_bdev(sbi->journal_bdev);
617ba13b 620 ext4_blkdev_remove(sbi);
ac27a0ec
DK
621 }
622 sb->s_fs_info = NULL;
3197ebdb
TT
623 /*
624 * Now that we are completely done shutting down the
625 * superblock, we need to actually destroy the kobject.
626 */
627 unlock_kernel();
628 unlock_super(sb);
629 kobject_put(&sbi->s_kobj);
630 wait_for_completion(&sbi->s_kobj_unregister);
631 lock_super(sb);
632 lock_kernel();
705895b6 633 kfree(sbi->s_blockgroup_lock);
ac27a0ec
DK
634 kfree(sbi);
635 return;
636}
637
e18b890b 638static struct kmem_cache *ext4_inode_cachep;
ac27a0ec
DK
639
640/*
641 * Called inside transaction, so use GFP_NOFS
642 */
617ba13b 643static struct inode *ext4_alloc_inode(struct super_block *sb)
ac27a0ec 644{
617ba13b 645 struct ext4_inode_info *ei;
ac27a0ec 646
e6b4f8da 647 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
ac27a0ec
DK
648 if (!ei)
649 return NULL;
03010a33 650#ifdef CONFIG_EXT4_FS_POSIX_ACL
617ba13b
MC
651 ei->i_acl = EXT4_ACL_NOT_CACHED;
652 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
ac27a0ec 653#endif
ac27a0ec 654 ei->vfs_inode.i_version = 1;
91246c00 655 ei->vfs_inode.i_data.writeback_index = 0;
a86c6181 656 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
c9de560d
AT
657 INIT_LIST_HEAD(&ei->i_prealloc_list);
658 spin_lock_init(&ei->i_prealloc_lock);
0390131b
FM
659 /*
660 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
661 * therefore it can be null here. Don't check it, just initialize
662 * jinode.
663 */
678aaf48 664 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
d2a17637
MC
665 ei->i_reserved_data_blocks = 0;
666 ei->i_reserved_meta_blocks = 0;
667 ei->i_allocated_meta_blocks = 0;
668 ei->i_delalloc_reserved_flag = 0;
669 spin_lock_init(&(ei->i_block_reservation_lock));
ac27a0ec
DK
670 return &ei->vfs_inode;
671}
672
617ba13b 673static void ext4_destroy_inode(struct inode *inode)
ac27a0ec 674{
9f7dd93d
VA
675 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
676 printk("EXT4 Inode %p: orphan list check failed!\n",
677 EXT4_I(inode));
678 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
679 EXT4_I(inode), sizeof(struct ext4_inode_info),
680 true);
681 dump_stack();
682 }
617ba13b 683 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
ac27a0ec
DK
684}
685
51cc5068 686static void init_once(void *foo)
ac27a0ec 687{
617ba13b 688 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
ac27a0ec 689
a35afb83 690 INIT_LIST_HEAD(&ei->i_orphan);
03010a33 691#ifdef CONFIG_EXT4_FS_XATTR
a35afb83 692 init_rwsem(&ei->xattr_sem);
ac27a0ec 693#endif
0e855ac8 694 init_rwsem(&ei->i_data_sem);
a35afb83 695 inode_init_once(&ei->vfs_inode);
ac27a0ec
DK
696}
697
698static int init_inodecache(void)
699{
617ba13b
MC
700 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
701 sizeof(struct ext4_inode_info),
ac27a0ec
DK
702 0, (SLAB_RECLAIM_ACCOUNT|
703 SLAB_MEM_SPREAD),
20c2df83 704 init_once);
617ba13b 705 if (ext4_inode_cachep == NULL)
ac27a0ec
DK
706 return -ENOMEM;
707 return 0;
708}
709
710static void destroy_inodecache(void)
711{
617ba13b 712 kmem_cache_destroy(ext4_inode_cachep);
ac27a0ec
DK
713}
714
617ba13b 715static void ext4_clear_inode(struct inode *inode)
ac27a0ec 716{
03010a33 717#ifdef CONFIG_EXT4_FS_POSIX_ACL
617ba13b
MC
718 if (EXT4_I(inode)->i_acl &&
719 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
720 posix_acl_release(EXT4_I(inode)->i_acl);
721 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
722 }
723 if (EXT4_I(inode)->i_default_acl &&
724 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
725 posix_acl_release(EXT4_I(inode)->i_default_acl);
726 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
ac27a0ec
DK
727 }
728#endif
c2ea3fde 729 ext4_discard_preallocations(inode);
0390131b
FM
730 if (EXT4_JOURNAL(inode))
731 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
678aaf48 732 &EXT4_I(inode)->jinode);
ac27a0ec
DK
733}
734
2b2d6d01
TT
735static inline void ext4_show_quota_options(struct seq_file *seq,
736 struct super_block *sb)
ac27a0ec
DK
737{
738#if defined(CONFIG_QUOTA)
617ba13b 739 struct ext4_sb_info *sbi = EXT4_SB(sb);
ac27a0ec
DK
740
741 if (sbi->s_jquota_fmt)
742 seq_printf(seq, ",jqfmt=%s",
af5bc92d 743 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
ac27a0ec
DK
744
745 if (sbi->s_qf_names[USRQUOTA])
746 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
747
748 if (sbi->s_qf_names[GRPQUOTA])
749 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
750
617ba13b 751 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
ac27a0ec
DK
752 seq_puts(seq, ",usrquota");
753
617ba13b 754 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
ac27a0ec
DK
755 seq_puts(seq, ",grpquota");
756#endif
757}
758
d9c9bef1
MS
759/*
760 * Show an option if
761 * - it's set to a non-default value OR
762 * - if the per-sb default is different from the global default
763 */
617ba13b 764static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
ac27a0ec 765{
aa22df2c
AK
766 int def_errors;
767 unsigned long def_mount_opts;
ac27a0ec 768 struct super_block *sb = vfs->mnt_sb;
d9c9bef1
MS
769 struct ext4_sb_info *sbi = EXT4_SB(sb);
770 struct ext4_super_block *es = sbi->s_es;
d9c9bef1
MS
771
772 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
aa22df2c 773 def_errors = le16_to_cpu(es->s_errors);
d9c9bef1
MS
774
775 if (sbi->s_sb_block != 1)
776 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
777 if (test_opt(sb, MINIX_DF))
778 seq_puts(seq, ",minixdf");
aa22df2c 779 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
d9c9bef1
MS
780 seq_puts(seq, ",grpid");
781 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
782 seq_puts(seq, ",nogrpid");
783 if (sbi->s_resuid != EXT4_DEF_RESUID ||
784 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
785 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
786 }
787 if (sbi->s_resgid != EXT4_DEF_RESGID ||
788 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
789 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
790 }
bb4f397a 791 if (test_opt(sb, ERRORS_RO)) {
d9c9bef1 792 if (def_errors == EXT4_ERRORS_PANIC ||
bb4f397a
AK
793 def_errors == EXT4_ERRORS_CONTINUE) {
794 seq_puts(seq, ",errors=remount-ro");
d9c9bef1
MS
795 }
796 }
aa22df2c 797 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
bb4f397a 798 seq_puts(seq, ",errors=continue");
aa22df2c 799 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
d9c9bef1 800 seq_puts(seq, ",errors=panic");
aa22df2c 801 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
d9c9bef1 802 seq_puts(seq, ",nouid32");
aa22df2c 803 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
d9c9bef1
MS
804 seq_puts(seq, ",debug");
805 if (test_opt(sb, OLDALLOC))
806 seq_puts(seq, ",oldalloc");
03010a33 807#ifdef CONFIG_EXT4_FS_XATTR
aa22df2c
AK
808 if (test_opt(sb, XATTR_USER) &&
809 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
d9c9bef1
MS
810 seq_puts(seq, ",user_xattr");
811 if (!test_opt(sb, XATTR_USER) &&
812 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
813 seq_puts(seq, ",nouser_xattr");
814 }
815#endif
03010a33 816#ifdef CONFIG_EXT4_FS_POSIX_ACL
aa22df2c 817 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
d9c9bef1
MS
818 seq_puts(seq, ",acl");
819 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
820 seq_puts(seq, ",noacl");
821#endif
30773840 822 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
d9c9bef1
MS
823 seq_printf(seq, ",commit=%u",
824 (unsigned) (sbi->s_commit_interval / HZ));
825 }
30773840
TT
826 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
827 seq_printf(seq, ",min_batch_time=%u",
828 (unsigned) sbi->s_min_batch_time);
829 }
830 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
831 seq_printf(seq, ",max_batch_time=%u",
832 (unsigned) sbi->s_min_batch_time);
833 }
834
571640ca
ES
835 /*
836 * We're changing the default of barrier mount option, so
837 * let's always display its mount state so it's clear what its
838 * status is.
839 */
840 seq_puts(seq, ",barrier=");
841 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
cd0b6a39
TT
842 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
843 seq_puts(seq, ",journal_async_commit");
d9c9bef1
MS
844 if (test_opt(sb, NOBH))
845 seq_puts(seq, ",nobh");
25ec56b5
JNC
846 if (test_opt(sb, I_VERSION))
847 seq_puts(seq, ",i_version");
dd919b98
AK
848 if (!test_opt(sb, DELALLOC))
849 seq_puts(seq, ",nodelalloc");
850
ac27a0ec 851
cb45bbe4
MS
852 if (sbi->s_stripe)
853 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
aa22df2c
AK
854 /*
855 * journal mode get enabled in different ways
856 * So just print the value even if we didn't specify it
857 */
617ba13b 858 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
ac27a0ec 859 seq_puts(seq, ",data=journal");
617ba13b 860 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
ac27a0ec 861 seq_puts(seq, ",data=ordered");
617ba13b 862 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
ac27a0ec
DK
863 seq_puts(seq, ",data=writeback");
864
240799cd
TT
865 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
866 seq_printf(seq, ",inode_readahead_blks=%u",
867 sbi->s_inode_readahead_blks);
868
5bf5683a
HK
869 if (test_opt(sb, DATA_ERR_ABORT))
870 seq_puts(seq, ",data_err=abort");
871
afd4672d 872 if (test_opt(sb, NO_AUTO_DA_ALLOC))
06705bff 873 seq_puts(seq, ",noauto_da_alloc");
afd4672d 874
617ba13b 875 ext4_show_quota_options(seq, sb);
ac27a0ec
DK
876 return 0;
877}
878
879
1b961ac0
CH
880static struct inode *ext4_nfs_get_inode(struct super_block *sb,
881 u64 ino, u32 generation)
ac27a0ec 882{
ac27a0ec 883 struct inode *inode;
ac27a0ec 884
617ba13b 885 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
ac27a0ec 886 return ERR_PTR(-ESTALE);
617ba13b 887 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
ac27a0ec
DK
888 return ERR_PTR(-ESTALE);
889
890 /* iget isn't really right if the inode is currently unallocated!!
891 *
617ba13b 892 * ext4_read_inode will return a bad_inode if the inode had been
ac27a0ec
DK
893 * deleted, so we should be safe.
894 *
895 * Currently we don't know the generation for parent directory, so
896 * a generation of 0 means "accept any"
897 */
1d1fe1ee
DH
898 inode = ext4_iget(sb, ino);
899 if (IS_ERR(inode))
900 return ERR_CAST(inode);
901 if (generation && inode->i_generation != generation) {
ac27a0ec
DK
902 iput(inode);
903 return ERR_PTR(-ESTALE);
904 }
1b961ac0
CH
905
906 return inode;
907}
908
909static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
910 int fh_len, int fh_type)
911{
912 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
913 ext4_nfs_get_inode);
914}
915
916static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
917 int fh_len, int fh_type)
918{
919 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
920 ext4_nfs_get_inode);
ac27a0ec
DK
921}
922
c39a7f84
TO
923/*
924 * Try to release metadata pages (indirect blocks, directories) which are
925 * mapped via the block device. Since these pages could have journal heads
926 * which would prevent try_to_free_buffers() from freeing them, we must use
927 * jbd2 layer's try_to_free_buffers() function to release them.
928 */
929static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
930{
931 journal_t *journal = EXT4_SB(sb)->s_journal;
932
933 WARN_ON(PageChecked(page));
934 if (!page_has_buffers(page))
935 return 0;
936 if (journal)
937 return jbd2_journal_try_to_free_buffers(journal, page,
938 wait & ~__GFP_WAIT);
939 return try_to_free_buffers(page);
940}
941
ac27a0ec 942#ifdef CONFIG_QUOTA
af5bc92d 943#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
2b2d6d01 944#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
ac27a0ec 945
617ba13b
MC
946static int ext4_write_dquot(struct dquot *dquot);
947static int ext4_acquire_dquot(struct dquot *dquot);
948static int ext4_release_dquot(struct dquot *dquot);
949static int ext4_mark_dquot_dirty(struct dquot *dquot);
950static int ext4_write_info(struct super_block *sb, int type);
6f28e087
JK
951static int ext4_quota_on(struct super_block *sb, int type, int format_id,
952 char *path, int remount);
617ba13b
MC
953static int ext4_quota_on_mount(struct super_block *sb, int type);
954static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
ac27a0ec 955 size_t len, loff_t off);
617ba13b 956static ssize_t ext4_quota_write(struct super_block *sb, int type,
ac27a0ec
DK
957 const char *data, size_t len, loff_t off);
958
617ba13b 959static struct dquot_operations ext4_quota_operations = {
edf72453
JK
960 .initialize = dquot_initialize,
961 .drop = dquot_drop,
ac27a0ec 962 .alloc_space = dquot_alloc_space,
60e58e0f
MC
963 .reserve_space = dquot_reserve_space,
964 .claim_space = dquot_claim_space,
965 .release_rsv = dquot_release_reserved_space,
966 .get_reserved_space = ext4_get_reserved_space,
ac27a0ec
DK
967 .alloc_inode = dquot_alloc_inode,
968 .free_space = dquot_free_space,
969 .free_inode = dquot_free_inode,
970 .transfer = dquot_transfer,
617ba13b
MC
971 .write_dquot = ext4_write_dquot,
972 .acquire_dquot = ext4_acquire_dquot,
973 .release_dquot = ext4_release_dquot,
974 .mark_dirty = ext4_mark_dquot_dirty,
a5b5ee32
JK
975 .write_info = ext4_write_info,
976 .alloc_dquot = dquot_alloc,
977 .destroy_dquot = dquot_destroy,
ac27a0ec
DK
978};
979
617ba13b
MC
980static struct quotactl_ops ext4_qctl_operations = {
981 .quota_on = ext4_quota_on,
ac27a0ec
DK
982 .quota_off = vfs_quota_off,
983 .quota_sync = vfs_quota_sync,
984 .get_info = vfs_get_dqinfo,
985 .set_info = vfs_set_dqinfo,
986 .get_dqblk = vfs_get_dqblk,
987 .set_dqblk = vfs_set_dqblk
988};
989#endif
990
ee9b6d61 991static const struct super_operations ext4_sops = {
617ba13b
MC
992 .alloc_inode = ext4_alloc_inode,
993 .destroy_inode = ext4_destroy_inode,
617ba13b
MC
994 .write_inode = ext4_write_inode,
995 .dirty_inode = ext4_dirty_inode,
996 .delete_inode = ext4_delete_inode,
997 .put_super = ext4_put_super,
998 .write_super = ext4_write_super,
999 .sync_fs = ext4_sync_fs,
c4be0c1d
TS
1000 .freeze_fs = ext4_freeze,
1001 .unfreeze_fs = ext4_unfreeze,
617ba13b
MC
1002 .statfs = ext4_statfs,
1003 .remount_fs = ext4_remount,
1004 .clear_inode = ext4_clear_inode,
1005 .show_options = ext4_show_options,
ac27a0ec 1006#ifdef CONFIG_QUOTA
617ba13b
MC
1007 .quota_read = ext4_quota_read,
1008 .quota_write = ext4_quota_write,
ac27a0ec 1009#endif
c39a7f84 1010 .bdev_try_to_free_page = bdev_try_to_free_page,
ac27a0ec
DK
1011};
1012
39655164 1013static const struct export_operations ext4_export_ops = {
1b961ac0
CH
1014 .fh_to_dentry = ext4_fh_to_dentry,
1015 .fh_to_parent = ext4_fh_to_parent,
617ba13b 1016 .get_parent = ext4_get_parent,
ac27a0ec
DK
1017};
1018
1019enum {
1020 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1021 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
01436ef2 1022 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
ac27a0ec 1023 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
06705bff 1024 Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
30773840 1025 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
c3191067 1026 Opt_journal_update, Opt_journal_dev,
818d276c 1027 Opt_journal_checksum, Opt_journal_async_commit,
ac27a0ec 1028 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
5bf5683a 1029 Opt_data_err_abort, Opt_data_err_ignore,
ac27a0ec
DK
1030 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1031 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
06705bff
TT
1032 Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err, Opt_resize,
1033 Opt_usrquota, Opt_grpquota, Opt_i_version,
01436ef2 1034 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
b3881f74 1035 Opt_inode_readahead_blks, Opt_journal_ioprio
ac27a0ec
DK
1036};
1037
a447c093 1038static const match_table_t tokens = {
ac27a0ec
DK
1039 {Opt_bsd_df, "bsddf"},
1040 {Opt_minix_df, "minixdf"},
1041 {Opt_grpid, "grpid"},
1042 {Opt_grpid, "bsdgroups"},
1043 {Opt_nogrpid, "nogrpid"},
1044 {Opt_nogrpid, "sysvgroups"},
1045 {Opt_resgid, "resgid=%u"},
1046 {Opt_resuid, "resuid=%u"},
1047 {Opt_sb, "sb=%u"},
1048 {Opt_err_cont, "errors=continue"},
1049 {Opt_err_panic, "errors=panic"},
1050 {Opt_err_ro, "errors=remount-ro"},
1051 {Opt_nouid32, "nouid32"},
ac27a0ec
DK
1052 {Opt_debug, "debug"},
1053 {Opt_oldalloc, "oldalloc"},
1054 {Opt_orlov, "orlov"},
1055 {Opt_user_xattr, "user_xattr"},
1056 {Opt_nouser_xattr, "nouser_xattr"},
1057 {Opt_acl, "acl"},
1058 {Opt_noacl, "noacl"},
ac27a0ec
DK
1059 {Opt_noload, "noload"},
1060 {Opt_nobh, "nobh"},
1061 {Opt_bh, "bh"},
1062 {Opt_commit, "commit=%u"},
30773840
TT
1063 {Opt_min_batch_time, "min_batch_time=%u"},
1064 {Opt_max_batch_time, "max_batch_time=%u"},
ac27a0ec 1065 {Opt_journal_update, "journal=update"},
ac27a0ec 1066 {Opt_journal_dev, "journal_dev=%u"},
818d276c
GS
1067 {Opt_journal_checksum, "journal_checksum"},
1068 {Opt_journal_async_commit, "journal_async_commit"},
ac27a0ec
DK
1069 {Opt_abort, "abort"},
1070 {Opt_data_journal, "data=journal"},
1071 {Opt_data_ordered, "data=ordered"},
1072 {Opt_data_writeback, "data=writeback"},
5bf5683a
HK
1073 {Opt_data_err_abort, "data_err=abort"},
1074 {Opt_data_err_ignore, "data_err=ignore"},
ac27a0ec
DK
1075 {Opt_offusrjquota, "usrjquota="},
1076 {Opt_usrjquota, "usrjquota=%s"},
1077 {Opt_offgrpjquota, "grpjquota="},
1078 {Opt_grpjquota, "grpjquota=%s"},
1079 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1080 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1081 {Opt_grpquota, "grpquota"},
1082 {Opt_noquota, "noquota"},
1083 {Opt_quota, "quota"},
1084 {Opt_usrquota, "usrquota"},
1085 {Opt_barrier, "barrier=%u"},
06705bff
TT
1086 {Opt_barrier, "barrier"},
1087 {Opt_nobarrier, "nobarrier"},
25ec56b5 1088 {Opt_i_version, "i_version"},
c9de560d 1089 {Opt_stripe, "stripe=%u"},
ac27a0ec 1090 {Opt_resize, "resize"},
64769240 1091 {Opt_delalloc, "delalloc"},
dd919b98 1092 {Opt_nodelalloc, "nodelalloc"},
240799cd 1093 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
b3881f74 1094 {Opt_journal_ioprio, "journal_ioprio=%u"},
afd4672d 1095 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
06705bff
TT
1096 {Opt_auto_da_alloc, "auto_da_alloc"},
1097 {Opt_noauto_da_alloc, "noauto_da_alloc"},
f3f12faa 1098 {Opt_err, NULL},
ac27a0ec
DK
1099};
1100
617ba13b 1101static ext4_fsblk_t get_sb_block(void **data)
ac27a0ec 1102{
617ba13b 1103 ext4_fsblk_t sb_block;
ac27a0ec
DK
1104 char *options = (char *) *data;
1105
1106 if (!options || strncmp(options, "sb=", 3) != 0)
1107 return 1; /* Default location */
1108 options += 3;
617ba13b 1109 /*todo: use simple_strtoll with >32bit ext4 */
ac27a0ec
DK
1110 sb_block = simple_strtoul(options, &options, 0);
1111 if (*options && *options != ',') {
4776004f 1112 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
ac27a0ec
DK
1113 (char *) *data);
1114 return 1;
1115 }
1116 if (*options == ',')
1117 options++;
1118 *data = (void *) options;
1119 return sb_block;
1120}
1121
b3881f74
TT
1122#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1123
2b2d6d01 1124static int parse_options(char *options, struct super_block *sb,
c3191067 1125 unsigned long *journal_devnum,
b3881f74 1126 unsigned int *journal_ioprio,
2b2d6d01 1127 ext4_fsblk_t *n_blocks_count, int is_remount)
ac27a0ec 1128{
617ba13b 1129 struct ext4_sb_info *sbi = EXT4_SB(sb);
2b2d6d01 1130 char *p;
ac27a0ec
DK
1131 substring_t args[MAX_OPT_ARGS];
1132 int data_opt = 0;
1133 int option;
1134#ifdef CONFIG_QUOTA
dfc5d03f 1135 int qtype, qfmt;
ac27a0ec
DK
1136 char *qname;
1137#endif
1138
1139 if (!options)
1140 return 1;
1141
2b2d6d01 1142 while ((p = strsep(&options, ",")) != NULL) {
ac27a0ec
DK
1143 int token;
1144 if (!*p)
1145 continue;
1146
1147 token = match_token(p, tokens, args);
1148 switch (token) {
1149 case Opt_bsd_df:
2b2d6d01 1150 clear_opt(sbi->s_mount_opt, MINIX_DF);
ac27a0ec
DK
1151 break;
1152 case Opt_minix_df:
2b2d6d01 1153 set_opt(sbi->s_mount_opt, MINIX_DF);
ac27a0ec
DK
1154 break;
1155 case Opt_grpid:
2b2d6d01 1156 set_opt(sbi->s_mount_opt, GRPID);
ac27a0ec
DK
1157 break;
1158 case Opt_nogrpid:
2b2d6d01 1159 clear_opt(sbi->s_mount_opt, GRPID);
ac27a0ec
DK
1160 break;
1161 case Opt_resuid:
1162 if (match_int(&args[0], &option))
1163 return 0;
1164 sbi->s_resuid = option;
1165 break;
1166 case Opt_resgid:
1167 if (match_int(&args[0], &option))
1168 return 0;
1169 sbi->s_resgid = option;
1170 break;
1171 case Opt_sb:
1172 /* handled by get_sb_block() instead of here */
1173 /* *sb_block = match_int(&args[0]); */
1174 break;
1175 case Opt_err_panic:
2b2d6d01
TT
1176 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1177 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1178 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
ac27a0ec
DK
1179 break;
1180 case Opt_err_ro:
2b2d6d01
TT
1181 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1182 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1183 set_opt(sbi->s_mount_opt, ERRORS_RO);
ac27a0ec
DK
1184 break;
1185 case Opt_err_cont:
2b2d6d01
TT
1186 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1187 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1188 set_opt(sbi->s_mount_opt, ERRORS_CONT);
ac27a0ec
DK
1189 break;
1190 case Opt_nouid32:
2b2d6d01 1191 set_opt(sbi->s_mount_opt, NO_UID32);
ac27a0ec 1192 break;
ac27a0ec 1193 case Opt_debug:
2b2d6d01 1194 set_opt(sbi->s_mount_opt, DEBUG);
ac27a0ec
DK
1195 break;
1196 case Opt_oldalloc:
2b2d6d01 1197 set_opt(sbi->s_mount_opt, OLDALLOC);
ac27a0ec
DK
1198 break;
1199 case Opt_orlov:
2b2d6d01 1200 clear_opt(sbi->s_mount_opt, OLDALLOC);
ac27a0ec 1201 break;
03010a33 1202#ifdef CONFIG_EXT4_FS_XATTR
ac27a0ec 1203 case Opt_user_xattr:
2b2d6d01 1204 set_opt(sbi->s_mount_opt, XATTR_USER);
ac27a0ec
DK
1205 break;
1206 case Opt_nouser_xattr:
2b2d6d01 1207 clear_opt(sbi->s_mount_opt, XATTR_USER);
ac27a0ec
DK
1208 break;
1209#else
1210 case Opt_user_xattr:
1211 case Opt_nouser_xattr:
4776004f
TT
1212 printk(KERN_ERR "EXT4 (no)user_xattr options "
1213 "not supported\n");
ac27a0ec
DK
1214 break;
1215#endif
03010a33 1216#ifdef CONFIG_EXT4_FS_POSIX_ACL
ac27a0ec
DK
1217 case Opt_acl:
1218 set_opt(sbi->s_mount_opt, POSIX_ACL);
1219 break;
1220 case Opt_noacl:
1221 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1222 break;
1223#else
1224 case Opt_acl:
1225 case Opt_noacl:
4776004f
TT
1226 printk(KERN_ERR "EXT4 (no)acl options "
1227 "not supported\n");
ac27a0ec
DK
1228 break;
1229#endif
ac27a0ec
DK
1230 case Opt_journal_update:
1231 /* @@@ FIXME */
1232 /* Eventually we will want to be able to create
1233 a journal file here. For now, only allow the
1234 user to specify an existing inode to be the
1235 journal file. */
1236 if (is_remount) {
617ba13b 1237 printk(KERN_ERR "EXT4-fs: cannot specify "
ac27a0ec
DK
1238 "journal on remount\n");
1239 return 0;
1240 }
2b2d6d01 1241 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
ac27a0ec 1242 break;
ac27a0ec
DK
1243 case Opt_journal_dev:
1244 if (is_remount) {
617ba13b 1245 printk(KERN_ERR "EXT4-fs: cannot specify "
ac27a0ec
DK
1246 "journal on remount\n");
1247 return 0;
1248 }
1249 if (match_int(&args[0], &option))
1250 return 0;
1251 *journal_devnum = option;
1252 break;
818d276c
GS
1253 case Opt_journal_checksum:
1254 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1255 break;
1256 case Opt_journal_async_commit:
1257 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1258 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1259 break;
ac27a0ec 1260 case Opt_noload:
2b2d6d01 1261 set_opt(sbi->s_mount_opt, NOLOAD);
ac27a0ec
DK
1262 break;
1263 case Opt_commit:
1264 if (match_int(&args[0], &option))
1265 return 0;
1266 if (option < 0)
1267 return 0;
1268 if (option == 0)
cd02ff0b 1269 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
ac27a0ec
DK
1270 sbi->s_commit_interval = HZ * option;
1271 break;
30773840
TT
1272 case Opt_max_batch_time:
1273 if (match_int(&args[0], &option))
1274 return 0;
1275 if (option < 0)
1276 return 0;
1277 if (option == 0)
1278 option = EXT4_DEF_MAX_BATCH_TIME;
1279 sbi->s_max_batch_time = option;
1280 break;
1281 case Opt_min_batch_time:
1282 if (match_int(&args[0], &option))
1283 return 0;
1284 if (option < 0)
1285 return 0;
1286 sbi->s_min_batch_time = option;
1287 break;
ac27a0ec 1288 case Opt_data_journal:
617ba13b 1289 data_opt = EXT4_MOUNT_JOURNAL_DATA;
ac27a0ec
DK
1290 goto datacheck;
1291 case Opt_data_ordered:
617ba13b 1292 data_opt = EXT4_MOUNT_ORDERED_DATA;
ac27a0ec
DK
1293 goto datacheck;
1294 case Opt_data_writeback:
617ba13b 1295 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
ac27a0ec
DK
1296 datacheck:
1297 if (is_remount) {
617ba13b 1298 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
ac27a0ec
DK
1299 != data_opt) {
1300 printk(KERN_ERR
617ba13b 1301 "EXT4-fs: cannot change data "
ac27a0ec
DK
1302 "mode on remount\n");
1303 return 0;
1304 }
1305 } else {
617ba13b 1306 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
ac27a0ec
DK
1307 sbi->s_mount_opt |= data_opt;
1308 }
1309 break;
5bf5683a
HK
1310 case Opt_data_err_abort:
1311 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1312 break;
1313 case Opt_data_err_ignore:
1314 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1315 break;
ac27a0ec
DK
1316#ifdef CONFIG_QUOTA
1317 case Opt_usrjquota:
1318 qtype = USRQUOTA;
1319 goto set_qf_name;
1320 case Opt_grpjquota:
1321 qtype = GRPQUOTA;
1322set_qf_name:
17bd13b3 1323 if (sb_any_quota_loaded(sb) &&
dfc5d03f 1324 !sbi->s_qf_names[qtype]) {
ac27a0ec 1325 printk(KERN_ERR
4776004f
TT
1326 "EXT4-fs: Cannot change journaled "
1327 "quota options when quota turned on.\n");
ac27a0ec
DK
1328 return 0;
1329 }
1330 qname = match_strdup(&args[0]);
1331 if (!qname) {
1332 printk(KERN_ERR
617ba13b 1333 "EXT4-fs: not enough memory for "
ac27a0ec
DK
1334 "storing quotafile name.\n");
1335 return 0;
1336 }
1337 if (sbi->s_qf_names[qtype] &&
1338 strcmp(sbi->s_qf_names[qtype], qname)) {
1339 printk(KERN_ERR
617ba13b 1340 "EXT4-fs: %s quota file already "
ac27a0ec
DK
1341 "specified.\n", QTYPE2NAME(qtype));
1342 kfree(qname);
1343 return 0;
1344 }
1345 sbi->s_qf_names[qtype] = qname;
1346 if (strchr(sbi->s_qf_names[qtype], '/')) {
1347 printk(KERN_ERR
617ba13b 1348 "EXT4-fs: quotafile must be on "
ac27a0ec
DK
1349 "filesystem root.\n");
1350 kfree(sbi->s_qf_names[qtype]);
1351 sbi->s_qf_names[qtype] = NULL;
1352 return 0;
1353 }
1354 set_opt(sbi->s_mount_opt, QUOTA);
1355 break;
1356 case Opt_offusrjquota:
1357 qtype = USRQUOTA;
1358 goto clear_qf_name;
1359 case Opt_offgrpjquota:
1360 qtype = GRPQUOTA;
1361clear_qf_name:
17bd13b3 1362 if (sb_any_quota_loaded(sb) &&
dfc5d03f 1363 sbi->s_qf_names[qtype]) {
617ba13b 1364 printk(KERN_ERR "EXT4-fs: Cannot change "
2c8be6b2 1365 "journaled quota options when "
ac27a0ec
DK
1366 "quota turned on.\n");
1367 return 0;
1368 }
1369 /*
1370 * The space will be released later when all options
1371 * are confirmed to be correct
1372 */
1373 sbi->s_qf_names[qtype] = NULL;
1374 break;
1375 case Opt_jqfmt_vfsold:
dfc5d03f
JK
1376 qfmt = QFMT_VFS_OLD;
1377 goto set_qf_format;
ac27a0ec 1378 case Opt_jqfmt_vfsv0:
dfc5d03f
JK
1379 qfmt = QFMT_VFS_V0;
1380set_qf_format:
17bd13b3 1381 if (sb_any_quota_loaded(sb) &&
dfc5d03f
JK
1382 sbi->s_jquota_fmt != qfmt) {
1383 printk(KERN_ERR "EXT4-fs: Cannot change "
1384 "journaled quota options when "
1385 "quota turned on.\n");
1386 return 0;
1387 }
1388 sbi->s_jquota_fmt = qfmt;
ac27a0ec
DK
1389 break;
1390 case Opt_quota:
1391 case Opt_usrquota:
1392 set_opt(sbi->s_mount_opt, QUOTA);
1393 set_opt(sbi->s_mount_opt, USRQUOTA);
1394 break;
1395 case Opt_grpquota:
1396 set_opt(sbi->s_mount_opt, QUOTA);
1397 set_opt(sbi->s_mount_opt, GRPQUOTA);
1398 break;
1399 case Opt_noquota:
17bd13b3 1400 if (sb_any_quota_loaded(sb)) {
617ba13b 1401 printk(KERN_ERR "EXT4-fs: Cannot change quota "
ac27a0ec
DK
1402 "options when quota turned on.\n");
1403 return 0;
1404 }
1405 clear_opt(sbi->s_mount_opt, QUOTA);
1406 clear_opt(sbi->s_mount_opt, USRQUOTA);
1407 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1408 break;
1409#else
1410 case Opt_quota:
1411 case Opt_usrquota:
1412 case Opt_grpquota:
cd59e7b9
JK
1413 printk(KERN_ERR
1414 "EXT4-fs: quota options not supported.\n");
1415 break;
ac27a0ec
DK
1416 case Opt_usrjquota:
1417 case Opt_grpjquota:
1418 case Opt_offusrjquota:
1419 case Opt_offgrpjquota:
1420 case Opt_jqfmt_vfsold:
1421 case Opt_jqfmt_vfsv0:
1422 printk(KERN_ERR
cd59e7b9 1423 "EXT4-fs: journaled quota options not "
ac27a0ec
DK
1424 "supported.\n");
1425 break;
1426 case Opt_noquota:
1427 break;
1428#endif
1429 case Opt_abort:
1430 set_opt(sbi->s_mount_opt, ABORT);
1431 break;
06705bff
TT
1432 case Opt_nobarrier:
1433 clear_opt(sbi->s_mount_opt, BARRIER);
1434 break;
ac27a0ec 1435 case Opt_barrier:
06705bff
TT
1436 if (match_int(&args[0], &option)) {
1437 set_opt(sbi->s_mount_opt, BARRIER);
1438 break;
1439 }
ac27a0ec
DK
1440 if (option)
1441 set_opt(sbi->s_mount_opt, BARRIER);
1442 else
1443 clear_opt(sbi->s_mount_opt, BARRIER);
1444 break;
1445 case Opt_ignore:
1446 break;
1447 case Opt_resize:
1448 if (!is_remount) {
617ba13b 1449 printk("EXT4-fs: resize option only available "
ac27a0ec
DK
1450 "for remount\n");
1451 return 0;
1452 }
1453 if (match_int(&args[0], &option) != 0)
1454 return 0;
1455 *n_blocks_count = option;
1456 break;
1457 case Opt_nobh:
1458 set_opt(sbi->s_mount_opt, NOBH);
1459 break;
1460 case Opt_bh:
1461 clear_opt(sbi->s_mount_opt, NOBH);
1462 break;
25ec56b5
JNC
1463 case Opt_i_version:
1464 set_opt(sbi->s_mount_opt, I_VERSION);
1465 sb->s_flags |= MS_I_VERSION;
1466 break;
dd919b98
AK
1467 case Opt_nodelalloc:
1468 clear_opt(sbi->s_mount_opt, DELALLOC);
1469 break;
c9de560d
AT
1470 case Opt_stripe:
1471 if (match_int(&args[0], &option))
1472 return 0;
1473 if (option < 0)
1474 return 0;
1475 sbi->s_stripe = option;
1476 break;
64769240
AT
1477 case Opt_delalloc:
1478 set_opt(sbi->s_mount_opt, DELALLOC);
1479 break;
240799cd
TT
1480 case Opt_inode_readahead_blks:
1481 if (match_int(&args[0], &option))
1482 return 0;
1483 if (option < 0 || option > (1 << 30))
1484 return 0;
f7c43950 1485 if (!is_power_of_2(option)) {
3197ebdb
TT
1486 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1487 " must be a power of 2\n");
1488 return 0;
1489 }
240799cd
TT
1490 sbi->s_inode_readahead_blks = option;
1491 break;
b3881f74
TT
1492 case Opt_journal_ioprio:
1493 if (match_int(&args[0], &option))
1494 return 0;
1495 if (option < 0 || option > 7)
1496 break;
1497 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1498 option);
1499 break;
06705bff
TT
1500 case Opt_noauto_da_alloc:
1501 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1502 break;
afd4672d 1503 case Opt_auto_da_alloc:
06705bff
TT
1504 if (match_int(&args[0], &option)) {
1505 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1506 break;
1507 }
afd4672d
TT
1508 if (option)
1509 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1510 else
1511 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1512 break;
ac27a0ec 1513 default:
2b2d6d01
TT
1514 printk(KERN_ERR
1515 "EXT4-fs: Unrecognized mount option \"%s\" "
1516 "or missing value\n", p);
ac27a0ec
DK
1517 return 0;
1518 }
1519 }
1520#ifdef CONFIG_QUOTA
1521 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
617ba13b 1522 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
ac27a0ec
DK
1523 sbi->s_qf_names[USRQUOTA])
1524 clear_opt(sbi->s_mount_opt, USRQUOTA);
1525
617ba13b 1526 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
ac27a0ec
DK
1527 sbi->s_qf_names[GRPQUOTA])
1528 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1529
1530 if ((sbi->s_qf_names[USRQUOTA] &&
617ba13b 1531 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
ac27a0ec 1532 (sbi->s_qf_names[GRPQUOTA] &&
617ba13b
MC
1533 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1534 printk(KERN_ERR "EXT4-fs: old and new quota "
ac27a0ec
DK
1535 "format mixing.\n");
1536 return 0;
1537 }
1538
1539 if (!sbi->s_jquota_fmt) {
2c8be6b2 1540 printk(KERN_ERR "EXT4-fs: journaled quota format "
ac27a0ec
DK
1541 "not specified.\n");
1542 return 0;
1543 }
1544 } else {
1545 if (sbi->s_jquota_fmt) {
2c8be6b2
JK
1546 printk(KERN_ERR "EXT4-fs: journaled quota format "
1547 "specified with no journaling "
ac27a0ec
DK
1548 "enabled.\n");
1549 return 0;
1550 }
1551 }
1552#endif
1553 return 1;
1554}
1555
617ba13b 1556static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
ac27a0ec
DK
1557 int read_only)
1558{
617ba13b 1559 struct ext4_sb_info *sbi = EXT4_SB(sb);
ac27a0ec
DK
1560 int res = 0;
1561
617ba13b 1562 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
2b2d6d01
TT
1563 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1564 "forcing read-only mode\n");
ac27a0ec
DK
1565 res = MS_RDONLY;
1566 }
1567 if (read_only)
1568 return res;
617ba13b 1569 if (!(sbi->s_mount_state & EXT4_VALID_FS))
2b2d6d01
TT
1570 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1571 "running e2fsck is recommended\n");
617ba13b 1572 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
2b2d6d01
TT
1573 printk(KERN_WARNING
1574 "EXT4-fs warning: mounting fs with errors, "
1575 "running e2fsck is recommended\n");
ac27a0ec
DK
1576 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1577 le16_to_cpu(es->s_mnt_count) >=
1578 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
2b2d6d01
TT
1579 printk(KERN_WARNING
1580 "EXT4-fs warning: maximal mount count reached, "
1581 "running e2fsck is recommended\n");
ac27a0ec
DK
1582 else if (le32_to_cpu(es->s_checkinterval) &&
1583 (le32_to_cpu(es->s_lastcheck) +
1584 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
2b2d6d01
TT
1585 printk(KERN_WARNING
1586 "EXT4-fs warning: checktime reached, "
1587 "running e2fsck is recommended\n");
0390131b
FM
1588 if (!sbi->s_journal)
1589 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
ac27a0ec 1590 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
617ba13b 1591 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
e8546d06 1592 le16_add_cpu(&es->s_mnt_count, 1);
ac27a0ec 1593 es->s_mtime = cpu_to_le32(get_seconds());
617ba13b 1594 ext4_update_dynamic_rev(sb);
0390131b
FM
1595 if (sbi->s_journal)
1596 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
ac27a0ec 1597
e2d67052 1598 ext4_commit_super(sb, 1);
ac27a0ec 1599 if (test_opt(sb, DEBUG))
a9df9a49 1600 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
ac27a0ec
DK
1601 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1602 sb->s_blocksize,
1603 sbi->s_groups_count,
617ba13b
MC
1604 EXT4_BLOCKS_PER_GROUP(sb),
1605 EXT4_INODES_PER_GROUP(sb),
ac27a0ec
DK
1606 sbi->s_mount_opt);
1607
0390131b
FM
1608 if (EXT4_SB(sb)->s_journal) {
1609 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1610 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1611 "external", EXT4_SB(sb)->s_journal->j_devname);
1612 } else {
1613 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1614 }
ac27a0ec
DK
1615 return res;
1616}
1617
772cb7c8
JS
1618static int ext4_fill_flex_info(struct super_block *sb)
1619{
1620 struct ext4_sb_info *sbi = EXT4_SB(sb);
1621 struct ext4_group_desc *gdp = NULL;
1622 struct buffer_head *bh;
1623 ext4_group_t flex_group_count;
1624 ext4_group_t flex_group;
1625 int groups_per_flex = 0;
c5ca7c76 1626 size_t size;
772cb7c8
JS
1627 int i;
1628
1629 if (!sbi->s_es->s_log_groups_per_flex) {
1630 sbi->s_log_groups_per_flex = 0;
1631 return 1;
1632 }
1633
1634 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1635 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1636
c62a11fd
FB
1637 /* We allocate both existing and potentially added groups */
1638 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
d94e99a6
AK
1639 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1640 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
c5ca7c76
TT
1641 size = flex_group_count * sizeof(struct flex_groups);
1642 sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
1643 if (sbi->s_flex_groups == NULL) {
1644 sbi->s_flex_groups = vmalloc(size);
1645 if (sbi->s_flex_groups)
1646 memset(sbi->s_flex_groups, 0, size);
1647 }
772cb7c8 1648 if (sbi->s_flex_groups == NULL) {
ec05e868 1649 printk(KERN_ERR "EXT4-fs: not enough memory for "
a9df9a49 1650 "%u flex groups\n", flex_group_count);
772cb7c8
JS
1651 goto failed;
1652 }
772cb7c8 1653
772cb7c8
JS
1654 for (i = 0; i < sbi->s_groups_count; i++) {
1655 gdp = ext4_get_group_desc(sb, i, &bh);
1656
1657 flex_group = ext4_flex_group(sbi, i);
9f24e420
TT
1658 atomic_set(&sbi->s_flex_groups[flex_group].free_inodes,
1659 ext4_free_inodes_count(sb, gdp));
1660 atomic_set(&sbi->s_flex_groups[flex_group].free_blocks,
1661 ext4_free_blks_count(sb, gdp));
7d39db14
TT
1662 atomic_set(&sbi->s_flex_groups[flex_group].used_dirs,
1663 ext4_used_dirs_count(sb, gdp));
772cb7c8
JS
1664 }
1665
1666 return 1;
1667failed:
1668 return 0;
1669}
1670
717d50e4
AD
1671__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1672 struct ext4_group_desc *gdp)
1673{
1674 __u16 crc = 0;
1675
1676 if (sbi->s_es->s_feature_ro_compat &
1677 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1678 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1679 __le32 le_group = cpu_to_le32(block_group);
1680
1681 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1682 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1683 crc = crc16(crc, (__u8 *)gdp, offset);
1684 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1685 /* for checksum of struct ext4_group_desc do the rest...*/
1686 if ((sbi->s_es->s_feature_incompat &
1687 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1688 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1689 crc = crc16(crc, (__u8 *)gdp + offset,
1690 le16_to_cpu(sbi->s_es->s_desc_size) -
1691 offset);
1692 }
1693
1694 return cpu_to_le16(crc);
1695}
1696
1697int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1698 struct ext4_group_desc *gdp)
1699{
1700 if ((sbi->s_es->s_feature_ro_compat &
1701 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1702 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1703 return 0;
1704
1705 return 1;
1706}
1707
ac27a0ec 1708/* Called at mount-time, super-block is locked */
197cd65a 1709static int ext4_check_descriptors(struct super_block *sb)
ac27a0ec 1710{
617ba13b
MC
1711 struct ext4_sb_info *sbi = EXT4_SB(sb);
1712 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1713 ext4_fsblk_t last_block;
bd81d8ee
LV
1714 ext4_fsblk_t block_bitmap;
1715 ext4_fsblk_t inode_bitmap;
1716 ext4_fsblk_t inode_table;
ce421581 1717 int flexbg_flag = 0;
fd2d4291 1718 ext4_group_t i;
ac27a0ec 1719
ce421581
JS
1720 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1721 flexbg_flag = 1;
1722
af5bc92d 1723 ext4_debug("Checking group descriptors");
ac27a0ec 1724
197cd65a
AM
1725 for (i = 0; i < sbi->s_groups_count; i++) {
1726 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1727
ce421581 1728 if (i == sbi->s_groups_count - 1 || flexbg_flag)
bd81d8ee 1729 last_block = ext4_blocks_count(sbi->s_es) - 1;
ac27a0ec
DK
1730 else
1731 last_block = first_block +
617ba13b 1732 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
ac27a0ec 1733
8fadc143 1734 block_bitmap = ext4_block_bitmap(sb, gdp);
2b2d6d01 1735 if (block_bitmap < first_block || block_bitmap > last_block) {
c19204b0 1736 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
a9df9a49 1737 "Block bitmap for group %u not in group "
5128273a 1738 "(block %llu)!\n", i, block_bitmap);
ac27a0ec
DK
1739 return 0;
1740 }
8fadc143 1741 inode_bitmap = ext4_inode_bitmap(sb, gdp);
2b2d6d01 1742 if (inode_bitmap < first_block || inode_bitmap > last_block) {
c19204b0 1743 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
a9df9a49 1744 "Inode bitmap for group %u not in group "
5128273a 1745 "(block %llu)!\n", i, inode_bitmap);
ac27a0ec
DK
1746 return 0;
1747 }
8fadc143 1748 inode_table = ext4_inode_table(sb, gdp);
bd81d8ee 1749 if (inode_table < first_block ||
2b2d6d01 1750 inode_table + sbi->s_itb_per_group - 1 > last_block) {
c19204b0 1751 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
a9df9a49 1752 "Inode table for group %u not in group "
5128273a 1753 "(block %llu)!\n", i, inode_table);
ac27a0ec
DK
1754 return 0;
1755 }
b5f10eed 1756 spin_lock(sb_bgl_lock(sbi, i));
717d50e4 1757 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
c19204b0 1758 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
a9df9a49 1759 "Checksum for group %u failed (%u!=%u)\n",
c19204b0
JB
1760 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1761 gdp)), le16_to_cpu(gdp->bg_checksum));
7ee1ec4c
LZ
1762 if (!(sb->s_flags & MS_RDONLY)) {
1763 spin_unlock(sb_bgl_lock(sbi, i));
8a266467 1764 return 0;
7ee1ec4c 1765 }
717d50e4 1766 }
b5f10eed 1767 spin_unlock(sb_bgl_lock(sbi, i));
ce421581
JS
1768 if (!flexbg_flag)
1769 first_block += EXT4_BLOCKS_PER_GROUP(sb);
ac27a0ec
DK
1770 }
1771
bd81d8ee 1772 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
2b2d6d01 1773 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
ac27a0ec
DK
1774 return 1;
1775}
1776
617ba13b 1777/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
ac27a0ec
DK
1778 * the superblock) which were deleted from all directories, but held open by
1779 * a process at the time of a crash. We walk the list and try to delete these
1780 * inodes at recovery time (only with a read-write filesystem).
1781 *
1782 * In order to keep the orphan inode chain consistent during traversal (in
1783 * case of crash during recovery), we link each inode into the superblock
1784 * orphan list_head and handle it the same way as an inode deletion during
1785 * normal operation (which journals the operations for us).
1786 *
1787 * We only do an iget() and an iput() on each inode, which is very safe if we
1788 * accidentally point at an in-use or already deleted inode. The worst that
1789 * can happen in this case is that we get a "bit already cleared" message from
617ba13b 1790 * ext4_free_inode(). The only reason we would point at a wrong inode is if
ac27a0ec
DK
1791 * e2fsck was run on this filesystem, and it must have already done the orphan
1792 * inode cleanup for us, so we can safely abort without any further action.
1793 */
2b2d6d01
TT
1794static void ext4_orphan_cleanup(struct super_block *sb,
1795 struct ext4_super_block *es)
ac27a0ec
DK
1796{
1797 unsigned int s_flags = sb->s_flags;
1798 int nr_orphans = 0, nr_truncates = 0;
1799#ifdef CONFIG_QUOTA
1800 int i;
1801#endif
1802 if (!es->s_last_orphan) {
1803 jbd_debug(4, "no orphan inodes to clean up\n");
1804 return;
1805 }
1806
a8f48a95
ES
1807 if (bdev_read_only(sb->s_bdev)) {
1808 printk(KERN_ERR "EXT4-fs: write access "
1809 "unavailable, skipping orphan cleanup.\n");
1810 return;
1811 }
1812
617ba13b 1813 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
ac27a0ec
DK
1814 if (es->s_last_orphan)
1815 jbd_debug(1, "Errors on filesystem, "
1816 "clearing orphan list.\n");
1817 es->s_last_orphan = 0;
1818 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1819 return;
1820 }
1821
1822 if (s_flags & MS_RDONLY) {
617ba13b 1823 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
ac27a0ec
DK
1824 sb->s_id);
1825 sb->s_flags &= ~MS_RDONLY;
1826 }
1827#ifdef CONFIG_QUOTA
1828 /* Needed for iput() to work correctly and not trash data */
1829 sb->s_flags |= MS_ACTIVE;
1830 /* Turn on quotas so that they are updated correctly */
1831 for (i = 0; i < MAXQUOTAS; i++) {
617ba13b
MC
1832 if (EXT4_SB(sb)->s_qf_names[i]) {
1833 int ret = ext4_quota_on_mount(sb, i);
ac27a0ec
DK
1834 if (ret < 0)
1835 printk(KERN_ERR
2c8be6b2 1836 "EXT4-fs: Cannot turn on journaled "
ac27a0ec
DK
1837 "quota: error %d\n", ret);
1838 }
1839 }
1840#endif
1841
1842 while (es->s_last_orphan) {
1843 struct inode *inode;
1844
97bd42b9
JB
1845 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1846 if (IS_ERR(inode)) {
ac27a0ec
DK
1847 es->s_last_orphan = 0;
1848 break;
1849 }
1850
617ba13b 1851 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
a269eb18 1852 vfs_dq_init(inode);
ac27a0ec
DK
1853 if (inode->i_nlink) {
1854 printk(KERN_DEBUG
e5f8eab8 1855 "%s: truncating inode %lu to %lld bytes\n",
46e665e9 1856 __func__, inode->i_ino, inode->i_size);
e5f8eab8 1857 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
ac27a0ec 1858 inode->i_ino, inode->i_size);
617ba13b 1859 ext4_truncate(inode);
ac27a0ec
DK
1860 nr_truncates++;
1861 } else {
1862 printk(KERN_DEBUG
1863 "%s: deleting unreferenced inode %lu\n",
46e665e9 1864 __func__, inode->i_ino);
ac27a0ec
DK
1865 jbd_debug(2, "deleting unreferenced inode %lu\n",
1866 inode->i_ino);
1867 nr_orphans++;
1868 }
1869 iput(inode); /* The delete magic happens here! */
1870 }
1871
2b2d6d01 1872#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
ac27a0ec
DK
1873
1874 if (nr_orphans)
617ba13b 1875 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
ac27a0ec
DK
1876 sb->s_id, PLURAL(nr_orphans));
1877 if (nr_truncates)
617ba13b 1878 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
ac27a0ec
DK
1879 sb->s_id, PLURAL(nr_truncates));
1880#ifdef CONFIG_QUOTA
1881 /* Turn quotas off */
1882 for (i = 0; i < MAXQUOTAS; i++) {
1883 if (sb_dqopt(sb)->files[i])
6f28e087 1884 vfs_quota_off(sb, i, 0);
ac27a0ec
DK
1885 }
1886#endif
1887 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1888}
cd2291a4
ES
1889/*
1890 * Maximal extent format file size.
1891 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1892 * extent format containers, within a sector_t, and within i_blocks
1893 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1894 * so that won't be a limiting factor.
1895 *
1896 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1897 */
f287a1a5 1898static loff_t ext4_max_size(int blkbits, int has_huge_files)
cd2291a4
ES
1899{
1900 loff_t res;
1901 loff_t upper_limit = MAX_LFS_FILESIZE;
1902
1903 /* small i_blocks in vfs inode? */
f287a1a5 1904 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
cd2291a4 1905 /*
b3a6ffe1 1906 * CONFIG_LBD is not enabled implies the inode
cd2291a4
ES
1907 * i_block represent total blocks in 512 bytes
1908 * 32 == size of vfs inode i_blocks * 8
1909 */
1910 upper_limit = (1LL << 32) - 1;
1911
1912 /* total blocks in file system block size */
1913 upper_limit >>= (blkbits - 9);
1914 upper_limit <<= blkbits;
1915 }
1916
1917 /* 32-bit extent-start container, ee_block */
1918 res = 1LL << 32;
1919 res <<= blkbits;
1920 res -= 1;
1921
1922 /* Sanity check against vm- & vfs- imposed limits */
1923 if (res > upper_limit)
1924 res = upper_limit;
1925
1926 return res;
1927}
ac27a0ec 1928
ac27a0ec 1929/*
cd2291a4 1930 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
0fc1b451
AK
1931 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1932 * We need to be 1 filesystem block less than the 2^48 sector limit.
ac27a0ec 1933 */
f287a1a5 1934static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
ac27a0ec 1935{
617ba13b 1936 loff_t res = EXT4_NDIR_BLOCKS;
0fc1b451
AK
1937 int meta_blocks;
1938 loff_t upper_limit;
1939 /* This is calculated to be the largest file size for a
cd2291a4 1940 * dense, bitmapped file such that the total number of
ac27a0ec 1941 * sectors in the file, including data and all indirect blocks,
0fc1b451
AK
1942 * does not exceed 2^48 -1
1943 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1944 * total number of 512 bytes blocks of the file
1945 */
1946
f287a1a5 1947 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
0fc1b451 1948 /*
b3a6ffe1 1949 * !has_huge_files or CONFIG_LBD is not enabled
f287a1a5
TT
1950 * implies the inode i_block represent total blocks in
1951 * 512 bytes 32 == size of vfs inode i_blocks * 8
0fc1b451
AK
1952 */
1953 upper_limit = (1LL << 32) - 1;
1954
1955 /* total blocks in file system block size */
1956 upper_limit >>= (bits - 9);
1957
1958 } else {
8180a562
AK
1959 /*
1960 * We use 48 bit ext4_inode i_blocks
1961 * With EXT4_HUGE_FILE_FL set the i_blocks
1962 * represent total number of blocks in
1963 * file system block size
1964 */
0fc1b451
AK
1965 upper_limit = (1LL << 48) - 1;
1966
0fc1b451
AK
1967 }
1968
1969 /* indirect blocks */
1970 meta_blocks = 1;
1971 /* double indirect blocks */
1972 meta_blocks += 1 + (1LL << (bits-2));
1973 /* tripple indirect blocks */
1974 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1975
1976 upper_limit -= meta_blocks;
1977 upper_limit <<= bits;
ac27a0ec
DK
1978
1979 res += 1LL << (bits-2);
1980 res += 1LL << (2*(bits-2));
1981 res += 1LL << (3*(bits-2));
1982 res <<= bits;
1983 if (res > upper_limit)
1984 res = upper_limit;
0fc1b451
AK
1985
1986 if (res > MAX_LFS_FILESIZE)
1987 res = MAX_LFS_FILESIZE;
1988
ac27a0ec
DK
1989 return res;
1990}
1991
617ba13b 1992static ext4_fsblk_t descriptor_loc(struct super_block *sb,
70bbb3e0 1993 ext4_fsblk_t logical_sb_block, int nr)
ac27a0ec 1994{
617ba13b 1995 struct ext4_sb_info *sbi = EXT4_SB(sb);
fd2d4291 1996 ext4_group_t bg, first_meta_bg;
ac27a0ec
DK
1997 int has_super = 0;
1998
1999 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
2000
617ba13b 2001 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
ac27a0ec 2002 nr < first_meta_bg)
70bbb3e0 2003 return logical_sb_block + nr + 1;
ac27a0ec 2004 bg = sbi->s_desc_per_block * nr;
617ba13b 2005 if (ext4_bg_has_super(sb, bg))
ac27a0ec 2006 has_super = 1;
617ba13b 2007 return (has_super + ext4_group_first_block_no(sb, bg));
ac27a0ec
DK
2008}
2009
c9de560d
AT
2010/**
2011 * ext4_get_stripe_size: Get the stripe size.
2012 * @sbi: In memory super block info
2013 *
2014 * If we have specified it via mount option, then
2015 * use the mount option value. If the value specified at mount time is
2016 * greater than the blocks per group use the super block value.
2017 * If the super block value is greater than blocks per group return 0.
2018 * Allocator needs it be less than blocks per group.
2019 *
2020 */
2021static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2022{
2023 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2024 unsigned long stripe_width =
2025 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2026
2027 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2028 return sbi->s_stripe;
2029
2030 if (stripe_width <= sbi->s_blocks_per_group)
2031 return stripe_width;
2032
2033 if (stride <= sbi->s_blocks_per_group)
2034 return stride;
2035
2036 return 0;
2037}
ac27a0ec 2038
3197ebdb
TT
2039/* sysfs supprt */
2040
2041struct ext4_attr {
2042 struct attribute attr;
2043 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2044 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2045 const char *, size_t);
2046 int offset;
2047};
2048
2049static int parse_strtoul(const char *buf,
2050 unsigned long max, unsigned long *value)
2051{
2052 char *endp;
2053
2054 while (*buf && isspace(*buf))
2055 buf++;
2056 *value = simple_strtoul(buf, &endp, 0);
2057 while (*endp && isspace(*endp))
2058 endp++;
2059 if (*endp || *value > max)
2060 return -EINVAL;
2061
2062 return 0;
2063}
2064
2065static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2066 struct ext4_sb_info *sbi,
2067 char *buf)
2068{
2069 return snprintf(buf, PAGE_SIZE, "%llu\n",
2070 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2071}
2072
2073static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2074 struct ext4_sb_info *sbi, char *buf)
2075{
2076 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2077
2078 return snprintf(buf, PAGE_SIZE, "%lu\n",
2079 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2080 sbi->s_sectors_written_start) >> 1);
2081}
2082
2083static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2084 struct ext4_sb_info *sbi, char *buf)
2085{
2086 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2087
2088 return snprintf(buf, PAGE_SIZE, "%llu\n",
2089 sbi->s_kbytes_written +
2090 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2091 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2092}
2093
2094static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2095 struct ext4_sb_info *sbi,
2096 const char *buf, size_t count)
2097{
2098 unsigned long t;
2099
2100 if (parse_strtoul(buf, 0x40000000, &t))
2101 return -EINVAL;
2102
f7c43950 2103 if (!is_power_of_2(t))
3197ebdb
TT
2104 return -EINVAL;
2105
2106 sbi->s_inode_readahead_blks = t;
2107 return count;
2108}
2109
2110static ssize_t sbi_ui_show(struct ext4_attr *a,
2111 struct ext4_sb_info *sbi, char *buf)
2112{
2113 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2114
2115 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2116}
2117
2118static ssize_t sbi_ui_store(struct ext4_attr *a,
2119 struct ext4_sb_info *sbi,
2120 const char *buf, size_t count)
2121{
2122 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2123 unsigned long t;
2124
2125 if (parse_strtoul(buf, 0xffffffff, &t))
2126 return -EINVAL;
2127 *ui = t;
2128 return count;
2129}
2130
2131#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2132static struct ext4_attr ext4_attr_##_name = { \
2133 .attr = {.name = __stringify(_name), .mode = _mode }, \
2134 .show = _show, \
2135 .store = _store, \
2136 .offset = offsetof(struct ext4_sb_info, _elname), \
2137}
2138#define EXT4_ATTR(name, mode, show, store) \
2139static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2140
2141#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2142#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2143#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2144 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2145#define ATTR_LIST(name) &ext4_attr_##name.attr
2146
2147EXT4_RO_ATTR(delayed_allocation_blocks);
2148EXT4_RO_ATTR(session_write_kbytes);
2149EXT4_RO_ATTR(lifetime_write_kbytes);
2150EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2151 inode_readahead_blks_store, s_inode_readahead_blks);
2152EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2153EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2154EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2155EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2156EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2157EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2158
2159static struct attribute *ext4_attrs[] = {
2160 ATTR_LIST(delayed_allocation_blocks),
2161 ATTR_LIST(session_write_kbytes),
2162 ATTR_LIST(lifetime_write_kbytes),
2163 ATTR_LIST(inode_readahead_blks),
2164 ATTR_LIST(mb_stats),
2165 ATTR_LIST(mb_max_to_scan),
2166 ATTR_LIST(mb_min_to_scan),
2167 ATTR_LIST(mb_order2_req),
2168 ATTR_LIST(mb_stream_req),
2169 ATTR_LIST(mb_group_prealloc),
2170 NULL,
2171};
2172
2173static ssize_t ext4_attr_show(struct kobject *kobj,
2174 struct attribute *attr, char *buf)
2175{
2176 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2177 s_kobj);
2178 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2179
2180 return a->show ? a->show(a, sbi, buf) : 0;
2181}
2182
2183static ssize_t ext4_attr_store(struct kobject *kobj,
2184 struct attribute *attr,
2185 const char *buf, size_t len)
2186{
2187 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2188 s_kobj);
2189 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2190
2191 return a->store ? a->store(a, sbi, buf, len) : 0;
2192}
2193
2194static void ext4_sb_release(struct kobject *kobj)
2195{
2196 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2197 s_kobj);
2198 complete(&sbi->s_kobj_unregister);
2199}
2200
2201
2202static struct sysfs_ops ext4_attr_ops = {
2203 .show = ext4_attr_show,
2204 .store = ext4_attr_store,
2205};
2206
2207static struct kobj_type ext4_ktype = {
2208 .default_attrs = ext4_attrs,
2209 .sysfs_ops = &ext4_attr_ops,
2210 .release = ext4_sb_release,
2211};
2212
2b2d6d01 2213static int ext4_fill_super(struct super_block *sb, void *data, int silent)
7477827f
AK
2214 __releases(kernel_lock)
2215 __acquires(kernel_lock)
1d03ec98 2216
ac27a0ec 2217{
2b2d6d01 2218 struct buffer_head *bh;
617ba13b
MC
2219 struct ext4_super_block *es = NULL;
2220 struct ext4_sb_info *sbi;
2221 ext4_fsblk_t block;
2222 ext4_fsblk_t sb_block = get_sb_block(&data);
70bbb3e0 2223 ext4_fsblk_t logical_sb_block;
ac27a0ec 2224 unsigned long offset = 0;
ac27a0ec
DK
2225 unsigned long journal_devnum = 0;
2226 unsigned long def_mount_opts;
2227 struct inode *root;
9f6200bb 2228 char *cp;
0390131b 2229 const char *descr;
1d1fe1ee 2230 int ret = -EINVAL;
ac27a0ec 2231 int blocksize;
4ec11028
TT
2232 unsigned int db_count;
2233 unsigned int i;
f287a1a5 2234 int needs_recovery, has_huge_files;
3a06d778 2235 int features;
bd81d8ee 2236 __u64 blocks_count;
833f4077 2237 int err;
b3881f74 2238 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
ac27a0ec
DK
2239
2240 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2241 if (!sbi)
2242 return -ENOMEM;
705895b6
PE
2243
2244 sbi->s_blockgroup_lock =
2245 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2246 if (!sbi->s_blockgroup_lock) {
2247 kfree(sbi);
2248 return -ENOMEM;
2249 }
ac27a0ec
DK
2250 sb->s_fs_info = sbi;
2251 sbi->s_mount_opt = 0;
617ba13b
MC
2252 sbi->s_resuid = EXT4_DEF_RESUID;
2253 sbi->s_resgid = EXT4_DEF_RESGID;
240799cd 2254 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
d9c9bef1 2255 sbi->s_sb_block = sb_block;
afc32f7e
TT
2256 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2257 sectors[1]);
ac27a0ec
DK
2258
2259 unlock_kernel();
2260
9f6200bb
TT
2261 /* Cleanup superblock name */
2262 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2263 *cp = '!';
2264
617ba13b 2265 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
ac27a0ec 2266 if (!blocksize) {
617ba13b 2267 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
ac27a0ec
DK
2268 goto out_fail;
2269 }
2270
2271 /*
617ba13b 2272 * The ext4 superblock will not be buffer aligned for other than 1kB
ac27a0ec
DK
2273 * block sizes. We need to calculate the offset from buffer start.
2274 */
617ba13b 2275 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
70bbb3e0
AM
2276 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2277 offset = do_div(logical_sb_block, blocksize);
ac27a0ec 2278 } else {
70bbb3e0 2279 logical_sb_block = sb_block;
ac27a0ec
DK
2280 }
2281
70bbb3e0 2282 if (!(bh = sb_bread(sb, logical_sb_block))) {
2b2d6d01 2283 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
ac27a0ec
DK
2284 goto out_fail;
2285 }
2286 /*
2287 * Note: s_es must be initialized as soon as possible because
617ba13b 2288 * some ext4 macro-instructions depend on its value
ac27a0ec 2289 */
617ba13b 2290 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
ac27a0ec
DK
2291 sbi->s_es = es;
2292 sb->s_magic = le16_to_cpu(es->s_magic);
617ba13b
MC
2293 if (sb->s_magic != EXT4_SUPER_MAGIC)
2294 goto cantfind_ext4;
afc32f7e 2295 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
ac27a0ec
DK
2296
2297 /* Set defaults before we parse the mount options */
2298 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
617ba13b 2299 if (def_mount_opts & EXT4_DEFM_DEBUG)
ac27a0ec 2300 set_opt(sbi->s_mount_opt, DEBUG);
617ba13b 2301 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
ac27a0ec 2302 set_opt(sbi->s_mount_opt, GRPID);
617ba13b 2303 if (def_mount_opts & EXT4_DEFM_UID16)
ac27a0ec 2304 set_opt(sbi->s_mount_opt, NO_UID32);
03010a33 2305#ifdef CONFIG_EXT4_FS_XATTR
617ba13b 2306 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
ac27a0ec 2307 set_opt(sbi->s_mount_opt, XATTR_USER);
2e7842b8 2308#endif
03010a33 2309#ifdef CONFIG_EXT4_FS_POSIX_ACL
617ba13b 2310 if (def_mount_opts & EXT4_DEFM_ACL)
ac27a0ec 2311 set_opt(sbi->s_mount_opt, POSIX_ACL);
2e7842b8 2312#endif
617ba13b
MC
2313 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2314 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2315 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2316 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2317 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2318 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
2319
2320 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
ac27a0ec 2321 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
bb4f397a 2322 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
ceea16bf 2323 set_opt(sbi->s_mount_opt, ERRORS_CONT);
bb4f397a
AK
2324 else
2325 set_opt(sbi->s_mount_opt, ERRORS_RO);
ac27a0ec
DK
2326
2327 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2328 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
30773840
TT
2329 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2330 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2331 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
ac27a0ec 2332
571640ca 2333 set_opt(sbi->s_mount_opt, BARRIER);
ac27a0ec 2334
dd919b98
AK
2335 /*
2336 * enable delayed allocation by default
2337 * Use -o nodelalloc to turn it off
2338 */
2339 set_opt(sbi->s_mount_opt, DELALLOC);
2340
2341
b3881f74
TT
2342 if (!parse_options((char *) data, sb, &journal_devnum,
2343 &journal_ioprio, NULL, 0))
ac27a0ec
DK
2344 goto failed_mount;
2345
2346 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
617ba13b 2347 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
ac27a0ec 2348
617ba13b
MC
2349 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2350 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2351 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2352 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
ac27a0ec 2353 printk(KERN_WARNING
617ba13b 2354 "EXT4-fs warning: feature flags set on rev 0 fs, "
ac27a0ec 2355 "running e2fsck is recommended\n");
469108ff 2356
ac27a0ec
DK
2357 /*
2358 * Check feature flags regardless of the revision level, since we
2359 * previously didn't change the revision level when setting the flags,
2360 * so there is a chance incompat flags are set on a rev 0 filesystem.
2361 */
617ba13b 2362 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
ac27a0ec 2363 if (features) {
617ba13b 2364 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
3a06d778
AK
2365 "unsupported optional features (%x).\n", sb->s_id,
2366 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2367 ~EXT4_FEATURE_INCOMPAT_SUPP));
ac27a0ec
DK
2368 goto failed_mount;
2369 }
617ba13b 2370 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
ac27a0ec 2371 if (!(sb->s_flags & MS_RDONLY) && features) {
617ba13b 2372 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
3a06d778
AK
2373 "unsupported optional features (%x).\n", sb->s_id,
2374 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2375 ~EXT4_FEATURE_RO_COMPAT_SUPP));
ac27a0ec
DK
2376 goto failed_mount;
2377 }
f287a1a5
TT
2378 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2379 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2380 if (has_huge_files) {
0fc1b451
AK
2381 /*
2382 * Large file size enabled file system can only be
b3a6ffe1 2383 * mount if kernel is build with CONFIG_LBD
0fc1b451
AK
2384 */
2385 if (sizeof(root->i_blocks) < sizeof(u64) &&
2386 !(sb->s_flags & MS_RDONLY)) {
2387 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2388 "files cannot be mounted read-write "
b3a6ffe1 2389 "without CONFIG_LBD.\n", sb->s_id);
0fc1b451
AK
2390 goto failed_mount;
2391 }
2392 }
ac27a0ec
DK
2393 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2394
617ba13b
MC
2395 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2396 blocksize > EXT4_MAX_BLOCK_SIZE) {
ac27a0ec 2397 printk(KERN_ERR
617ba13b 2398 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
ac27a0ec
DK
2399 blocksize, sb->s_id);
2400 goto failed_mount;
2401 }
2402
ac27a0ec 2403 if (sb->s_blocksize != blocksize) {
ce40733c
AK
2404
2405 /* Validate the filesystem blocksize */
2406 if (!sb_set_blocksize(sb, blocksize)) {
2407 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2408 blocksize);
ac27a0ec
DK
2409 goto failed_mount;
2410 }
2411
2b2d6d01 2412 brelse(bh);
70bbb3e0
AM
2413 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2414 offset = do_div(logical_sb_block, blocksize);
2415 bh = sb_bread(sb, logical_sb_block);
ac27a0ec
DK
2416 if (!bh) {
2417 printk(KERN_ERR
617ba13b 2418 "EXT4-fs: Can't read superblock on 2nd try.\n");
ac27a0ec
DK
2419 goto failed_mount;
2420 }
617ba13b 2421 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
ac27a0ec 2422 sbi->s_es = es;
617ba13b 2423 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
2b2d6d01
TT
2424 printk(KERN_ERR
2425 "EXT4-fs: Magic mismatch, very weird !\n");
ac27a0ec
DK
2426 goto failed_mount;
2427 }
2428 }
2429
f287a1a5
TT
2430 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2431 has_huge_files);
2432 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
ac27a0ec 2433
617ba13b
MC
2434 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2435 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2436 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
ac27a0ec
DK
2437 } else {
2438 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2439 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
617ba13b 2440 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
1330593e 2441 (!is_power_of_2(sbi->s_inode_size)) ||
ac27a0ec 2442 (sbi->s_inode_size > blocksize)) {
2b2d6d01
TT
2443 printk(KERN_ERR
2444 "EXT4-fs: unsupported inode size: %d\n",
2445 sbi->s_inode_size);
ac27a0ec
DK
2446 goto failed_mount;
2447 }
ef7f3835
KS
2448 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2449 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
ac27a0ec 2450 }
0d1ee42f
AR
2451 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2452 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
8fadc143 2453 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
0d1ee42f 2454 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
d8ea6cf8 2455 !is_power_of_2(sbi->s_desc_size)) {
0d1ee42f 2456 printk(KERN_ERR
8fadc143 2457 "EXT4-fs: unsupported descriptor size %lu\n",
0d1ee42f
AR
2458 sbi->s_desc_size);
2459 goto failed_mount;
2460 }
2461 } else
2462 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
ac27a0ec 2463 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
ac27a0ec 2464 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
b47b6f38 2465 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
617ba13b
MC
2466 goto cantfind_ext4;
2467 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
ac27a0ec 2468 if (sbi->s_inodes_per_block == 0)
617ba13b 2469 goto cantfind_ext4;
ac27a0ec
DK
2470 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2471 sbi->s_inodes_per_block;
0d1ee42f 2472 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
ac27a0ec
DK
2473 sbi->s_sbh = bh;
2474 sbi->s_mount_state = le16_to_cpu(es->s_state);
e57aa839
FW
2475 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2476 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
2b2d6d01 2477 for (i = 0; i < 4; i++)
ac27a0ec
DK
2478 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2479 sbi->s_def_hash_version = es->s_def_hash_version;
f99b2589
TT
2480 i = le32_to_cpu(es->s_flags);
2481 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2482 sbi->s_hash_unsigned = 3;
2483 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2484#ifdef __CHAR_UNSIGNED__
2485 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2486 sbi->s_hash_unsigned = 3;
2487#else
2488 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2489#endif
2490 sb->s_dirt = 1;
2491 }
ac27a0ec
DK
2492
2493 if (sbi->s_blocks_per_group > blocksize * 8) {
2b2d6d01
TT
2494 printk(KERN_ERR
2495 "EXT4-fs: #blocks per group too big: %lu\n",
2496 sbi->s_blocks_per_group);
ac27a0ec
DK
2497 goto failed_mount;
2498 }
ac27a0ec 2499 if (sbi->s_inodes_per_group > blocksize * 8) {
2b2d6d01
TT
2500 printk(KERN_ERR
2501 "EXT4-fs: #inodes per group too big: %lu\n",
2502 sbi->s_inodes_per_group);
ac27a0ec
DK
2503 goto failed_mount;
2504 }
2505
bd81d8ee 2506 if (ext4_blocks_count(es) >
ac27a0ec 2507 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
617ba13b 2508 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
ac27a0ec
DK
2509 " too large to mount safely\n", sb->s_id);
2510 if (sizeof(sector_t) < 8)
617ba13b 2511 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
ac27a0ec
DK
2512 "enabled\n");
2513 goto failed_mount;
2514 }
2515
617ba13b
MC
2516 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2517 goto cantfind_ext4;
e7c95593 2518
0f2ddca6
FTN
2519 /* check blocks count against device size */
2520 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2521 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
2522 printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu "
2523 "exceeds size of device (%llu blocks)\n",
2524 ext4_blocks_count(es), blocks_count);
2525 goto failed_mount;
2526 }
2527
4ec11028
TT
2528 /*
2529 * It makes no sense for the first data block to be beyond the end
2530 * of the filesystem.
2531 */
2532 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2533 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2534 "block %u is beyond end of filesystem (%llu)\n",
2535 le32_to_cpu(es->s_first_data_block),
2536 ext4_blocks_count(es));
e7c95593
ES
2537 goto failed_mount;
2538 }
bd81d8ee
LV
2539 blocks_count = (ext4_blocks_count(es) -
2540 le32_to_cpu(es->s_first_data_block) +
2541 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2542 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
4ec11028
TT
2543 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2544 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2545 "(block count %llu, first data block %u, "
2546 "blocks per group %lu)\n", sbi->s_groups_count,
2547 ext4_blocks_count(es),
2548 le32_to_cpu(es->s_first_data_block),
2549 EXT4_BLOCKS_PER_GROUP(sb));
2550 goto failed_mount;
2551 }
bd81d8ee 2552 sbi->s_groups_count = blocks_count;
617ba13b
MC
2553 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2554 EXT4_DESC_PER_BLOCK(sb);
2b2d6d01 2555 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
ac27a0ec
DK
2556 GFP_KERNEL);
2557 if (sbi->s_group_desc == NULL) {
2b2d6d01 2558 printk(KERN_ERR "EXT4-fs: not enough memory\n");
ac27a0ec
DK
2559 goto failed_mount;
2560 }
2561
3244fcb1 2562#ifdef CONFIG_PROC_FS
9f6200bb
TT
2563 if (ext4_proc_root)
2564 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
3244fcb1 2565#endif
240799cd 2566
705895b6 2567 bgl_lock_init(sbi->s_blockgroup_lock);
ac27a0ec
DK
2568
2569 for (i = 0; i < db_count; i++) {
70bbb3e0 2570 block = descriptor_loc(sb, logical_sb_block, i);
ac27a0ec
DK
2571 sbi->s_group_desc[i] = sb_bread(sb, block);
2572 if (!sbi->s_group_desc[i]) {
2b2d6d01
TT
2573 printk(KERN_ERR "EXT4-fs: "
2574 "can't read group descriptor %d\n", i);
ac27a0ec
DK
2575 db_count = i;
2576 goto failed_mount2;
2577 }
2578 }
2b2d6d01 2579 if (!ext4_check_descriptors(sb)) {
617ba13b 2580 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
ac27a0ec
DK
2581 goto failed_mount2;
2582 }
772cb7c8
JS
2583 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2584 if (!ext4_fill_flex_info(sb)) {
2585 printk(KERN_ERR
2586 "EXT4-fs: unable to initialize "
2587 "flex_bg meta info!\n");
2588 goto failed_mount2;
2589 }
2590
ac27a0ec
DK
2591 sbi->s_gdb_count = db_count;
2592 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2593 spin_lock_init(&sbi->s_next_gen_lock);
2594
833f4077
PZ
2595 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2596 ext4_count_free_blocks(sb));
2597 if (!err) {
2598 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2599 ext4_count_free_inodes(sb));
2600 }
2601 if (!err) {
2602 err = percpu_counter_init(&sbi->s_dirs_counter,
2603 ext4_count_dirs(sb));
2604 }
6bc6e63f
AK
2605 if (!err) {
2606 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2607 }
833f4077
PZ
2608 if (err) {
2609 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2610 goto failed_mount3;
2611 }
ac27a0ec 2612
c9de560d
AT
2613 sbi->s_stripe = ext4_get_stripe_size(sbi);
2614
ac27a0ec
DK
2615 /*
2616 * set up enough so that it can read an inode
2617 */
617ba13b
MC
2618 sb->s_op = &ext4_sops;
2619 sb->s_export_op = &ext4_export_ops;
2620 sb->s_xattr = ext4_xattr_handlers;
ac27a0ec 2621#ifdef CONFIG_QUOTA
617ba13b
MC
2622 sb->s_qcop = &ext4_qctl_operations;
2623 sb->dq_op = &ext4_quota_operations;
ac27a0ec
DK
2624#endif
2625 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2626
2627 sb->s_root = NULL;
2628
2629 needs_recovery = (es->s_last_orphan != 0 ||
617ba13b
MC
2630 EXT4_HAS_INCOMPAT_FEATURE(sb,
2631 EXT4_FEATURE_INCOMPAT_RECOVER));
ac27a0ec
DK
2632
2633 /*
2634 * The first inode we look at is the journal inode. Don't try
2635 * root first: it may be modified in the journal!
2636 */
2637 if (!test_opt(sb, NOLOAD) &&
617ba13b
MC
2638 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2639 if (ext4_load_journal(sb, es, journal_devnum))
ac27a0ec 2640 goto failed_mount3;
624080ed
TT
2641 if (!(sb->s_flags & MS_RDONLY) &&
2642 EXT4_SB(sb)->s_journal->j_failed_commit) {
2643 printk(KERN_CRIT "EXT4-fs error (device %s): "
2644 "ext4_fill_super: Journal transaction "
2b2d6d01 2645 "%u is corrupt\n", sb->s_id,
624080ed 2646 EXT4_SB(sb)->s_journal->j_failed_commit);
2b2d6d01
TT
2647 if (test_opt(sb, ERRORS_RO)) {
2648 printk(KERN_CRIT
2649 "Mounting filesystem read-only\n");
624080ed
TT
2650 sb->s_flags |= MS_RDONLY;
2651 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2652 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2653 }
2654 if (test_opt(sb, ERRORS_PANIC)) {
2655 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2656 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
e2d67052 2657 ext4_commit_super(sb, 1);
624080ed
TT
2658 goto failed_mount4;
2659 }
2660 }
0390131b
FM
2661 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2662 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2663 printk(KERN_ERR "EXT4-fs: required journal recovery "
2664 "suppressed and not mounted read-only\n");
2665 goto failed_mount4;
ac27a0ec 2666 } else {
0390131b
FM
2667 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2668 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2669 sbi->s_journal = NULL;
2670 needs_recovery = 0;
2671 goto no_journal;
ac27a0ec
DK
2672 }
2673
eb40a09c
JS
2674 if (ext4_blocks_count(es) > 0xffffffffULL &&
2675 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2676 JBD2_FEATURE_INCOMPAT_64BIT)) {
abda1418 2677 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
eb40a09c
JS
2678 goto failed_mount4;
2679 }
2680
818d276c
GS
2681 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2682 jbd2_journal_set_features(sbi->s_journal,
2683 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2684 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2685 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2686 jbd2_journal_set_features(sbi->s_journal,
2687 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2688 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2689 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2690 } else {
2691 jbd2_journal_clear_features(sbi->s_journal,
2692 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2693 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2694 }
2695
ac27a0ec
DK
2696 /* We have now updated the journal if required, so we can
2697 * validate the data journaling mode. */
2698 switch (test_opt(sb, DATA_FLAGS)) {
2699 case 0:
2700 /* No mode set, assume a default based on the journal
63f57933
AM
2701 * capabilities: ORDERED_DATA if the journal can
2702 * cope, else JOURNAL_DATA
2703 */
dab291af
MC
2704 if (jbd2_journal_check_available_features
2705 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
ac27a0ec
DK
2706 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2707 else
2708 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2709 break;
2710
617ba13b
MC
2711 case EXT4_MOUNT_ORDERED_DATA:
2712 case EXT4_MOUNT_WRITEBACK_DATA:
dab291af
MC
2713 if (!jbd2_journal_check_available_features
2714 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
617ba13b 2715 printk(KERN_ERR "EXT4-fs: Journal does not support "
ac27a0ec
DK
2716 "requested data journaling mode\n");
2717 goto failed_mount4;
2718 }
2719 default:
2720 break;
2721 }
b3881f74 2722 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
ac27a0ec 2723
0390131b 2724no_journal:
ac27a0ec
DK
2725
2726 if (test_opt(sb, NOBH)) {
617ba13b
MC
2727 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2728 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
ac27a0ec
DK
2729 "its supported only with writeback mode\n");
2730 clear_opt(sbi->s_mount_opt, NOBH);
2731 }
2732 }
2733 /*
dab291af 2734 * The jbd2_journal_load will have done any necessary log recovery,
ac27a0ec
DK
2735 * so we can safely mount the rest of the filesystem now.
2736 */
2737
1d1fe1ee
DH
2738 root = ext4_iget(sb, EXT4_ROOT_INO);
2739 if (IS_ERR(root)) {
617ba13b 2740 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
1d1fe1ee 2741 ret = PTR_ERR(root);
ac27a0ec
DK
2742 goto failed_mount4;
2743 }
2744 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1d1fe1ee 2745 iput(root);
617ba13b 2746 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
ac27a0ec
DK
2747 goto failed_mount4;
2748 }
1d1fe1ee
DH
2749 sb->s_root = d_alloc_root(root);
2750 if (!sb->s_root) {
2751 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2752 iput(root);
2753 ret = -ENOMEM;
2754 goto failed_mount4;
2755 }
ac27a0ec 2756
2b2d6d01 2757 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
ef7f3835
KS
2758
2759 /* determine the minimum size of new large inodes, if present */
2760 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2761 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2762 EXT4_GOOD_OLD_INODE_SIZE;
2763 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2764 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2765 if (sbi->s_want_extra_isize <
2766 le16_to_cpu(es->s_want_extra_isize))
2767 sbi->s_want_extra_isize =
2768 le16_to_cpu(es->s_want_extra_isize);
2769 if (sbi->s_want_extra_isize <
2770 le16_to_cpu(es->s_min_extra_isize))
2771 sbi->s_want_extra_isize =
2772 le16_to_cpu(es->s_min_extra_isize);
2773 }
2774 }
2775 /* Check if enough inode space is available */
2776 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2777 sbi->s_inode_size) {
2778 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2779 EXT4_GOOD_OLD_INODE_SIZE;
2780 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2781 "available.\n");
2782 }
2783
c2774d84
AK
2784 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2785 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2786 "requested data journaling mode\n");
2787 clear_opt(sbi->s_mount_opt, DELALLOC);
2788 } else if (test_opt(sb, DELALLOC))
2789 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2790
2791 ext4_ext_init(sb);
2792 err = ext4_mb_init(sb, needs_recovery);
2793 if (err) {
2794 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2795 err);
2796 goto failed_mount4;
2797 }
2798
3197ebdb
TT
2799 sbi->s_kobj.kset = ext4_kset;
2800 init_completion(&sbi->s_kobj_unregister);
2801 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2802 "%s", sb->s_id);
2803 if (err) {
2804 ext4_mb_release(sb);
2805 ext4_ext_release(sb);
2806 goto failed_mount4;
2807 };
2808
ac27a0ec
DK
2809 /*
2810 * akpm: core read_super() calls in here with the superblock locked.
2811 * That deadlocks, because orphan cleanup needs to lock the superblock
2812 * in numerous places. Here we just pop the lock - it's relatively
2813 * harmless, because we are now ready to accept write_super() requests,
2814 * and aviro says that's the only reason for hanging onto the
2815 * superblock lock.
2816 */
617ba13b
MC
2817 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2818 ext4_orphan_cleanup(sb, es);
2819 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
0390131b 2820 if (needs_recovery) {
2b2d6d01 2821 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
0390131b
FM
2822 ext4_mark_recovery_complete(sb, es);
2823 }
2824 if (EXT4_SB(sb)->s_journal) {
2825 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2826 descr = " journalled data mode";
2827 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2828 descr = " ordered data mode";
2829 else
2830 descr = " writeback data mode";
2831 } else
2832 descr = "out journal";
2833
2834 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2835 sb->s_id, descr);
ac27a0ec
DK
2836
2837 lock_kernel();
2838 return 0;
2839
617ba13b 2840cantfind_ext4:
ac27a0ec 2841 if (!silent)
617ba13b 2842 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
ac27a0ec
DK
2843 sb->s_id);
2844 goto failed_mount;
2845
2846failed_mount4:
0390131b
FM
2847 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2848 if (sbi->s_journal) {
2849 jbd2_journal_destroy(sbi->s_journal);
2850 sbi->s_journal = NULL;
2851 }
ac27a0ec 2852failed_mount3:
c5ca7c76
TT
2853 if (sbi->s_flex_groups) {
2854 if (is_vmalloc_addr(sbi->s_flex_groups))
2855 vfree(sbi->s_flex_groups);
2856 else
2857 kfree(sbi->s_flex_groups);
2858 }
ac27a0ec
DK
2859 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2860 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2861 percpu_counter_destroy(&sbi->s_dirs_counter);
6bc6e63f 2862 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
ac27a0ec
DK
2863failed_mount2:
2864 for (i = 0; i < db_count; i++)
2865 brelse(sbi->s_group_desc[i]);
2866 kfree(sbi->s_group_desc);
2867failed_mount:
240799cd 2868 if (sbi->s_proc) {
9f6200bb 2869 remove_proc_entry(sb->s_id, ext4_proc_root);
240799cd 2870 }
ac27a0ec
DK
2871#ifdef CONFIG_QUOTA
2872 for (i = 0; i < MAXQUOTAS; i++)
2873 kfree(sbi->s_qf_names[i]);
2874#endif
617ba13b 2875 ext4_blkdev_remove(sbi);
ac27a0ec
DK
2876 brelse(bh);
2877out_fail:
2878 sb->s_fs_info = NULL;
2879 kfree(sbi);
2880 lock_kernel();
1d1fe1ee 2881 return ret;
ac27a0ec
DK
2882}
2883
2884/*
2885 * Setup any per-fs journal parameters now. We'll do this both on
2886 * initial mount, once the journal has been initialised but before we've
2887 * done any recovery; and again on any subsequent remount.
2888 */
617ba13b 2889static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
ac27a0ec 2890{
617ba13b 2891 struct ext4_sb_info *sbi = EXT4_SB(sb);
ac27a0ec 2892
30773840
TT
2893 journal->j_commit_interval = sbi->s_commit_interval;
2894 journal->j_min_batch_time = sbi->s_min_batch_time;
2895 journal->j_max_batch_time = sbi->s_max_batch_time;
ac27a0ec
DK
2896
2897 spin_lock(&journal->j_state_lock);
2898 if (test_opt(sb, BARRIER))
dab291af 2899 journal->j_flags |= JBD2_BARRIER;
ac27a0ec 2900 else
dab291af 2901 journal->j_flags &= ~JBD2_BARRIER;
5bf5683a
HK
2902 if (test_opt(sb, DATA_ERR_ABORT))
2903 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2904 else
2905 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
ac27a0ec
DK
2906 spin_unlock(&journal->j_state_lock);
2907}
2908
617ba13b 2909static journal_t *ext4_get_journal(struct super_block *sb,
ac27a0ec
DK
2910 unsigned int journal_inum)
2911{
2912 struct inode *journal_inode;
2913 journal_t *journal;
2914
0390131b
FM
2915 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2916
ac27a0ec
DK
2917 /* First, test for the existence of a valid inode on disk. Bad
2918 * things happen if we iget() an unused inode, as the subsequent
2919 * iput() will try to delete it. */
2920
1d1fe1ee
DH
2921 journal_inode = ext4_iget(sb, journal_inum);
2922 if (IS_ERR(journal_inode)) {
617ba13b 2923 printk(KERN_ERR "EXT4-fs: no journal found.\n");
ac27a0ec
DK
2924 return NULL;
2925 }
2926 if (!journal_inode->i_nlink) {
2927 make_bad_inode(journal_inode);
2928 iput(journal_inode);
617ba13b 2929 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
ac27a0ec
DK
2930 return NULL;
2931 }
2932
e5f8eab8 2933 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
ac27a0ec 2934 journal_inode, journal_inode->i_size);
1d1fe1ee 2935 if (!S_ISREG(journal_inode->i_mode)) {
617ba13b 2936 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
ac27a0ec
DK
2937 iput(journal_inode);
2938 return NULL;
2939 }
2940
dab291af 2941 journal = jbd2_journal_init_inode(journal_inode);
ac27a0ec 2942 if (!journal) {
617ba13b 2943 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
ac27a0ec
DK
2944 iput(journal_inode);
2945 return NULL;
2946 }
2947 journal->j_private = sb;
617ba13b 2948 ext4_init_journal_params(sb, journal);
ac27a0ec
DK
2949 return journal;
2950}
2951
617ba13b 2952static journal_t *ext4_get_dev_journal(struct super_block *sb,
ac27a0ec
DK
2953 dev_t j_dev)
2954{
2b2d6d01 2955 struct buffer_head *bh;
ac27a0ec 2956 journal_t *journal;
617ba13b
MC
2957 ext4_fsblk_t start;
2958 ext4_fsblk_t len;
ac27a0ec 2959 int hblock, blocksize;
617ba13b 2960 ext4_fsblk_t sb_block;
ac27a0ec 2961 unsigned long offset;
2b2d6d01 2962 struct ext4_super_block *es;
ac27a0ec
DK
2963 struct block_device *bdev;
2964
0390131b
FM
2965 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2966
617ba13b 2967 bdev = ext4_blkdev_get(j_dev);
ac27a0ec
DK
2968 if (bdev == NULL)
2969 return NULL;
2970
2971 if (bd_claim(bdev, sb)) {
2972 printk(KERN_ERR
abda1418 2973 "EXT4-fs: failed to claim external journal device.\n");
9a1c3542 2974 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
ac27a0ec
DK
2975 return NULL;
2976 }
2977
2978 blocksize = sb->s_blocksize;
2979 hblock = bdev_hardsect_size(bdev);
2980 if (blocksize < hblock) {
2981 printk(KERN_ERR
617ba13b 2982 "EXT4-fs: blocksize too small for journal device.\n");
ac27a0ec
DK
2983 goto out_bdev;
2984 }
2985
617ba13b
MC
2986 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2987 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
ac27a0ec
DK
2988 set_blocksize(bdev, blocksize);
2989 if (!(bh = __bread(bdev, sb_block, blocksize))) {
617ba13b 2990 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
ac27a0ec
DK
2991 "external journal\n");
2992 goto out_bdev;
2993 }
2994
617ba13b
MC
2995 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2996 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
ac27a0ec 2997 !(le32_to_cpu(es->s_feature_incompat) &
617ba13b
MC
2998 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2999 printk(KERN_ERR "EXT4-fs: external journal has "
ac27a0ec
DK
3000 "bad superblock\n");
3001 brelse(bh);
3002 goto out_bdev;
3003 }
3004
617ba13b
MC
3005 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
3006 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
ac27a0ec
DK
3007 brelse(bh);
3008 goto out_bdev;
3009 }
3010
bd81d8ee 3011 len = ext4_blocks_count(es);
ac27a0ec
DK
3012 start = sb_block + 1;
3013 brelse(bh); /* we're done with the superblock */
3014
dab291af 3015 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
ac27a0ec
DK
3016 start, len, blocksize);
3017 if (!journal) {
617ba13b 3018 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
ac27a0ec
DK
3019 goto out_bdev;
3020 }
3021 journal->j_private = sb;
3022 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3023 wait_on_buffer(journal->j_sb_buffer);
3024 if (!buffer_uptodate(journal->j_sb_buffer)) {
617ba13b 3025 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
ac27a0ec
DK
3026 goto out_journal;
3027 }
3028 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
617ba13b 3029 printk(KERN_ERR "EXT4-fs: External journal has more than one "
ac27a0ec
DK
3030 "user (unsupported) - %d\n",
3031 be32_to_cpu(journal->j_superblock->s_nr_users));
3032 goto out_journal;
3033 }
617ba13b
MC
3034 EXT4_SB(sb)->journal_bdev = bdev;
3035 ext4_init_journal_params(sb, journal);
ac27a0ec
DK
3036 return journal;
3037out_journal:
dab291af 3038 jbd2_journal_destroy(journal);
ac27a0ec 3039out_bdev:
617ba13b 3040 ext4_blkdev_put(bdev);
ac27a0ec
DK
3041 return NULL;
3042}
3043
617ba13b
MC
3044static int ext4_load_journal(struct super_block *sb,
3045 struct ext4_super_block *es,
ac27a0ec
DK
3046 unsigned long journal_devnum)
3047{
3048 journal_t *journal;
3049 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3050 dev_t journal_dev;
3051 int err = 0;
3052 int really_read_only;
3053
0390131b
FM
3054 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3055
ac27a0ec
DK
3056 if (journal_devnum &&
3057 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
617ba13b 3058 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
ac27a0ec
DK
3059 "numbers have changed\n");
3060 journal_dev = new_decode_dev(journal_devnum);
3061 } else
3062 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3063
3064 really_read_only = bdev_read_only(sb->s_bdev);
3065
3066 /*
3067 * Are we loading a blank journal or performing recovery after a
3068 * crash? For recovery, we need to check in advance whether we
3069 * can get read-write access to the device.
3070 */
3071
617ba13b 3072 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
ac27a0ec 3073 if (sb->s_flags & MS_RDONLY) {
617ba13b 3074 printk(KERN_INFO "EXT4-fs: INFO: recovery "
ac27a0ec
DK
3075 "required on readonly filesystem.\n");
3076 if (really_read_only) {
617ba13b 3077 printk(KERN_ERR "EXT4-fs: write access "
ac27a0ec
DK
3078 "unavailable, cannot proceed.\n");
3079 return -EROFS;
3080 }
2b2d6d01
TT
3081 printk(KERN_INFO "EXT4-fs: write access will "
3082 "be enabled during recovery.\n");
ac27a0ec
DK
3083 }
3084 }
3085
3086 if (journal_inum && journal_dev) {
617ba13b 3087 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
ac27a0ec
DK
3088 "and inode journals!\n");
3089 return -EINVAL;
3090 }
3091
3092 if (journal_inum) {
617ba13b 3093 if (!(journal = ext4_get_journal(sb, journal_inum)))
ac27a0ec
DK
3094 return -EINVAL;
3095 } else {
617ba13b 3096 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
ac27a0ec
DK
3097 return -EINVAL;
3098 }
3099
4776004f
TT
3100 if (journal->j_flags & JBD2_BARRIER)
3101 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3102 else
3103 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3104
ac27a0ec 3105 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
dab291af 3106 err = jbd2_journal_update_format(journal);
ac27a0ec 3107 if (err) {
617ba13b 3108 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
dab291af 3109 jbd2_journal_destroy(journal);
ac27a0ec
DK
3110 return err;
3111 }
3112 }
3113
617ba13b 3114 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
dab291af 3115 err = jbd2_journal_wipe(journal, !really_read_only);
ac27a0ec 3116 if (!err)
dab291af 3117 err = jbd2_journal_load(journal);
ac27a0ec
DK
3118
3119 if (err) {
617ba13b 3120 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
dab291af 3121 jbd2_journal_destroy(journal);
ac27a0ec
DK
3122 return err;
3123 }
3124
617ba13b
MC
3125 EXT4_SB(sb)->s_journal = journal;
3126 ext4_clear_journal_err(sb, es);
ac27a0ec
DK
3127
3128 if (journal_devnum &&
3129 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3130 es->s_journal_dev = cpu_to_le32(journal_devnum);
ac27a0ec
DK
3131
3132 /* Make sure we flush the recovery flag to disk. */
e2d67052 3133 ext4_commit_super(sb, 1);
ac27a0ec
DK
3134 }
3135
3136 return 0;
3137}
3138
e2d67052 3139static int ext4_commit_super(struct super_block *sb, int sync)
ac27a0ec 3140{
e2d67052 3141 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
617ba13b 3142 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
c4be0c1d 3143 int error = 0;
ac27a0ec
DK
3144
3145 if (!sbh)
c4be0c1d 3146 return error;
914258bf
TT
3147 if (buffer_write_io_error(sbh)) {
3148 /*
3149 * Oh, dear. A previous attempt to write the
3150 * superblock failed. This could happen because the
3151 * USB device was yanked out. Or it could happen to
3152 * be a transient write error and maybe the block will
3153 * be remapped. Nothing we can do but to retry the
3154 * write and hope for the best.
3155 */
abda1418 3156 printk(KERN_ERR "EXT4-fs: previous I/O error to "
914258bf
TT
3157 "superblock detected for %s.\n", sb->s_id);
3158 clear_buffer_write_io_error(sbh);
3159 set_buffer_uptodate(sbh);
3160 }
ac27a0ec 3161 es->s_wtime = cpu_to_le32(get_seconds());
afc32f7e
TT
3162 es->s_kbytes_written =
3163 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3164 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3165 EXT4_SB(sb)->s_sectors_written_start) >> 1));
5d1b1b3f
AK
3166 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3167 &EXT4_SB(sb)->s_freeblocks_counter));
3168 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3169 &EXT4_SB(sb)->s_freeinodes_counter));
7234ab2a 3170 sb->s_dirt = 0;
ac27a0ec
DK
3171 BUFFER_TRACE(sbh, "marking dirty");
3172 mark_buffer_dirty(sbh);
914258bf 3173 if (sync) {
c4be0c1d
TS
3174 error = sync_dirty_buffer(sbh);
3175 if (error)
3176 return error;
3177
3178 error = buffer_write_io_error(sbh);
3179 if (error) {
abda1418 3180 printk(KERN_ERR "EXT4-fs: I/O error while writing "
914258bf
TT
3181 "superblock for %s.\n", sb->s_id);
3182 clear_buffer_write_io_error(sbh);
3183 set_buffer_uptodate(sbh);
3184 }
3185 }
c4be0c1d 3186 return error;
ac27a0ec
DK
3187}
3188
3189
3190/*
3191 * Have we just finished recovery? If so, and if we are mounting (or
3192 * remounting) the filesystem readonly, then we will end up with a
3193 * consistent fs on disk. Record that fact.
3194 */
2b2d6d01
TT
3195static void ext4_mark_recovery_complete(struct super_block *sb,
3196 struct ext4_super_block *es)
ac27a0ec 3197{
617ba13b 3198 journal_t *journal = EXT4_SB(sb)->s_journal;
ac27a0ec 3199
0390131b
FM
3200 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3201 BUG_ON(journal != NULL);
3202 return;
3203 }
dab291af 3204 jbd2_journal_lock_updates(journal);
7ffe1ea8
HK
3205 if (jbd2_journal_flush(journal) < 0)
3206 goto out;
3207
32c37730 3208 lock_super(sb);
617ba13b 3209 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
ac27a0ec 3210 sb->s_flags & MS_RDONLY) {
617ba13b 3211 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
e2d67052 3212 ext4_commit_super(sb, 1);
ac27a0ec 3213 }
32c37730 3214 unlock_super(sb);
7ffe1ea8
HK
3215
3216out:
dab291af 3217 jbd2_journal_unlock_updates(journal);
ac27a0ec
DK
3218}
3219
3220/*
3221 * If we are mounting (or read-write remounting) a filesystem whose journal
3222 * has recorded an error from a previous lifetime, move that error to the
3223 * main filesystem now.
3224 */
2b2d6d01
TT
3225static void ext4_clear_journal_err(struct super_block *sb,
3226 struct ext4_super_block *es)
ac27a0ec
DK
3227{
3228 journal_t *journal;
3229 int j_errno;
3230 const char *errstr;
3231
0390131b
FM
3232 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3233
617ba13b 3234 journal = EXT4_SB(sb)->s_journal;
ac27a0ec
DK
3235
3236 /*
3237 * Now check for any error status which may have been recorded in the
617ba13b 3238 * journal by a prior ext4_error() or ext4_abort()
ac27a0ec
DK
3239 */
3240
dab291af 3241 j_errno = jbd2_journal_errno(journal);
ac27a0ec
DK
3242 if (j_errno) {
3243 char nbuf[16];
3244
617ba13b 3245 errstr = ext4_decode_error(sb, j_errno, nbuf);
46e665e9 3246 ext4_warning(sb, __func__, "Filesystem error recorded "
ac27a0ec 3247 "from previous mount: %s", errstr);
46e665e9 3248 ext4_warning(sb, __func__, "Marking fs in need of "
ac27a0ec
DK
3249 "filesystem check.");
3250
617ba13b
MC
3251 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3252 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
e2d67052 3253 ext4_commit_super(sb, 1);
ac27a0ec 3254
dab291af 3255 jbd2_journal_clear_err(journal);
ac27a0ec
DK
3256 }
3257}
3258
3259/*
3260 * Force the running and committing transactions to commit,
3261 * and wait on the commit.
3262 */
617ba13b 3263int ext4_force_commit(struct super_block *sb)
ac27a0ec
DK
3264{
3265 journal_t *journal;
0390131b 3266 int ret = 0;
ac27a0ec
DK
3267
3268 if (sb->s_flags & MS_RDONLY)
3269 return 0;
3270
617ba13b 3271 journal = EXT4_SB(sb)->s_journal;
7234ab2a 3272 if (journal)
0390131b 3273 ret = ext4_journal_force_commit(journal);
0390131b 3274
ac27a0ec
DK
3275 return ret;
3276}
3277
3278/*
617ba13b 3279 * Ext4 always journals updates to the superblock itself, so we don't
ac27a0ec 3280 * have to propagate any other updates to the superblock on disk at this
7234ab2a 3281 * point if the journalling is enabled.
ac27a0ec 3282 */
2b2d6d01 3283static void ext4_write_super(struct super_block *sb)
ac27a0ec 3284{
0390131b
FM
3285 if (EXT4_SB(sb)->s_journal) {
3286 if (mutex_trylock(&sb->s_lock) != 0)
3287 BUG();
0390131b 3288 } else {
e2d67052 3289 ext4_commit_super(sb, 1);
0390131b 3290 }
ac27a0ec
DK
3291}
3292
617ba13b 3293static int ext4_sync_fs(struct super_block *sb, int wait)
ac27a0ec 3294{
14ce0cb4 3295 int ret = 0;
9eddacf9 3296 tid_t target;
ac27a0ec 3297
ede86cc4 3298 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
0390131b 3299 if (EXT4_SB(sb)->s_journal) {
9eddacf9
JK
3300 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal,
3301 &target)) {
3302 if (wait)
3303 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal,
3304 target);
3305 }
0390131b 3306 } else {
e2d67052 3307 ext4_commit_super(sb, wait);
0390131b 3308 }
14ce0cb4 3309 return ret;
ac27a0ec
DK
3310}
3311
3312/*
3313 * LVM calls this function before a (read-only) snapshot is created. This
3314 * gives us a chance to flush the journal completely and mark the fs clean.
3315 */
c4be0c1d 3316static int ext4_freeze(struct super_block *sb)
ac27a0ec 3317{
c4be0c1d
TS
3318 int error = 0;
3319 journal_t *journal;
ac27a0ec
DK
3320
3321 if (!(sb->s_flags & MS_RDONLY)) {
c4be0c1d 3322 journal = EXT4_SB(sb)->s_journal;
ac27a0ec 3323
0390131b
FM
3324 if (journal) {
3325 /* Now we set up the journal barrier. */
3326 jbd2_journal_lock_updates(journal);
7ffe1ea8 3327
0390131b
FM
3328 /*
3329 * We don't want to clear needs_recovery flag when we
3330 * failed to flush the journal.
3331 */
c4be0c1d
TS
3332 error = jbd2_journal_flush(journal);
3333 if (error < 0)
3334 goto out;
0390131b 3335 }
ac27a0ec
DK
3336
3337 /* Journal blocked and flushed, clear needs_recovery flag. */
617ba13b 3338 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
e2d67052 3339 error = ext4_commit_super(sb, 1);
c4be0c1d
TS
3340 if (error)
3341 goto out;
ac27a0ec 3342 }
c4be0c1d
TS
3343 return 0;
3344out:
3345 jbd2_journal_unlock_updates(journal);
3346 return error;
ac27a0ec
DK
3347}
3348
3349/*
3350 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3351 * flag here, even though the filesystem is not technically dirty yet.
3352 */
c4be0c1d 3353static int ext4_unfreeze(struct super_block *sb)
ac27a0ec 3354{
0390131b 3355 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
ac27a0ec
DK
3356 lock_super(sb);
3357 /* Reser the needs_recovery flag before the fs is unlocked. */
617ba13b 3358 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
e2d67052 3359 ext4_commit_super(sb, 1);
ac27a0ec 3360 unlock_super(sb);
dab291af 3361 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
ac27a0ec 3362 }
c4be0c1d 3363 return 0;
ac27a0ec
DK
3364}
3365
2b2d6d01 3366static int ext4_remount(struct super_block *sb, int *flags, char *data)
ac27a0ec 3367{
2b2d6d01 3368 struct ext4_super_block *es;
617ba13b
MC
3369 struct ext4_sb_info *sbi = EXT4_SB(sb);
3370 ext4_fsblk_t n_blocks_count = 0;
ac27a0ec 3371 unsigned long old_sb_flags;
617ba13b 3372 struct ext4_mount_options old_opts;
8a266467 3373 ext4_group_t g;
b3881f74 3374 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
ac27a0ec
DK
3375 int err;
3376#ifdef CONFIG_QUOTA
3377 int i;
3378#endif
3379
3380 /* Store the original options */
3381 old_sb_flags = sb->s_flags;
3382 old_opts.s_mount_opt = sbi->s_mount_opt;
3383 old_opts.s_resuid = sbi->s_resuid;
3384 old_opts.s_resgid = sbi->s_resgid;
3385 old_opts.s_commit_interval = sbi->s_commit_interval;
30773840
TT
3386 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3387 old_opts.s_max_batch_time = sbi->s_max_batch_time;
ac27a0ec
DK
3388#ifdef CONFIG_QUOTA
3389 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3390 for (i = 0; i < MAXQUOTAS; i++)
3391 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3392#endif
b3881f74
TT
3393 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3394 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
ac27a0ec
DK
3395
3396 /*
3397 * Allow the "check" option to be passed as a remount option.
3398 */
b3881f74
TT
3399 if (!parse_options(data, sb, NULL, &journal_ioprio,
3400 &n_blocks_count, 1)) {
ac27a0ec
DK
3401 err = -EINVAL;
3402 goto restore_opts;
3403 }
3404
617ba13b 3405 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
46e665e9 3406 ext4_abort(sb, __func__, "Abort forced by user");
ac27a0ec
DK
3407
3408 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
617ba13b 3409 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
ac27a0ec
DK
3410
3411 es = sbi->s_es;
3412
b3881f74 3413 if (sbi->s_journal) {
0390131b 3414 ext4_init_journal_params(sb, sbi->s_journal);
b3881f74
TT
3415 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3416 }
ac27a0ec
DK
3417
3418 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
bd81d8ee 3419 n_blocks_count > ext4_blocks_count(es)) {
617ba13b 3420 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
ac27a0ec
DK
3421 err = -EROFS;
3422 goto restore_opts;
3423 }
3424
3425 if (*flags & MS_RDONLY) {
3426 /*
3427 * First of all, the unconditional stuff we have to do
3428 * to disable replay of the journal when we next remount
3429 */
3430 sb->s_flags |= MS_RDONLY;
3431
3432 /*
3433 * OK, test if we are remounting a valid rw partition
3434 * readonly, and if so set the rdonly flag and then
3435 * mark the partition as valid again.
3436 */
617ba13b
MC
3437 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3438 (sbi->s_mount_state & EXT4_VALID_FS))
ac27a0ec
DK
3439 es->s_state = cpu_to_le16(sbi->s_mount_state);
3440
32c37730
JK
3441 /*
3442 * We have to unlock super so that we can wait for
3443 * transactions.
3444 */
0390131b
FM
3445 if (sbi->s_journal) {
3446 unlock_super(sb);
3447 ext4_mark_recovery_complete(sb, es);
3448 lock_super(sb);
3449 }
ac27a0ec 3450 } else {
3a06d778 3451 int ret;
617ba13b
MC
3452 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3453 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3454 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
ac27a0ec 3455 "remount RDWR because of unsupported "
3a06d778
AK
3456 "optional features (%x).\n", sb->s_id,
3457 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3458 ~EXT4_FEATURE_RO_COMPAT_SUPP));
ac27a0ec
DK
3459 err = -EROFS;
3460 goto restore_opts;
3461 }
ead6596b 3462
8a266467
TT
3463 /*
3464 * Make sure the group descriptor checksums
3465 * are sane. If they aren't, refuse to
3466 * remount r/w.
3467 */
3468 for (g = 0; g < sbi->s_groups_count; g++) {
3469 struct ext4_group_desc *gdp =
3470 ext4_get_group_desc(sb, g, NULL);
3471
3472 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3473 printk(KERN_ERR
3474 "EXT4-fs: ext4_remount: "
a9df9a49 3475 "Checksum for group %u failed (%u!=%u)\n",
8a266467
TT
3476 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3477 le16_to_cpu(gdp->bg_checksum));
3478 err = -EINVAL;
3479 goto restore_opts;
3480 }
3481 }
3482
ead6596b
ES
3483 /*
3484 * If we have an unprocessed orphan list hanging
3485 * around from a previously readonly bdev mount,
3486 * require a full umount/remount for now.
3487 */
3488 if (es->s_last_orphan) {
3489 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3490 "remount RDWR because of unprocessed "
3491 "orphan inode list. Please "
3492 "umount/remount instead.\n",
3493 sb->s_id);
3494 err = -EINVAL;
3495 goto restore_opts;
3496 }
3497
ac27a0ec
DK
3498 /*
3499 * Mounting a RDONLY partition read-write, so reread
3500 * and store the current valid flag. (It may have
3501 * been changed by e2fsck since we originally mounted
3502 * the partition.)
3503 */
0390131b
FM
3504 if (sbi->s_journal)
3505 ext4_clear_journal_err(sb, es);
ac27a0ec 3506 sbi->s_mount_state = le16_to_cpu(es->s_state);
617ba13b 3507 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
ac27a0ec 3508 goto restore_opts;
2b2d6d01 3509 if (!ext4_setup_super(sb, es, 0))
ac27a0ec
DK
3510 sb->s_flags &= ~MS_RDONLY;
3511 }
3512 }
0390131b 3513 if (sbi->s_journal == NULL)
e2d67052 3514 ext4_commit_super(sb, 1);
0390131b 3515
ac27a0ec
DK
3516#ifdef CONFIG_QUOTA
3517 /* Release old quota file names */
3518 for (i = 0; i < MAXQUOTAS; i++)
3519 if (old_opts.s_qf_names[i] &&
3520 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3521 kfree(old_opts.s_qf_names[i]);
3522#endif
3523 return 0;
3524restore_opts:
3525 sb->s_flags = old_sb_flags;
3526 sbi->s_mount_opt = old_opts.s_mount_opt;
3527 sbi->s_resuid = old_opts.s_resuid;
3528 sbi->s_resgid = old_opts.s_resgid;
3529 sbi->s_commit_interval = old_opts.s_commit_interval;
30773840
TT
3530 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3531 sbi->s_max_batch_time = old_opts.s_max_batch_time;
ac27a0ec
DK
3532#ifdef CONFIG_QUOTA
3533 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3534 for (i = 0; i < MAXQUOTAS; i++) {
3535 if (sbi->s_qf_names[i] &&
3536 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3537 kfree(sbi->s_qf_names[i]);
3538 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3539 }
3540#endif
3541 return err;
3542}
3543
2b2d6d01 3544static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
ac27a0ec
DK
3545{
3546 struct super_block *sb = dentry->d_sb;
617ba13b
MC
3547 struct ext4_sb_info *sbi = EXT4_SB(sb);
3548 struct ext4_super_block *es = sbi->s_es;
960cc398 3549 u64 fsid;
ac27a0ec 3550
5e70030d
BP
3551 if (test_opt(sb, MINIX_DF)) {
3552 sbi->s_overhead_last = 0;
6bc9feff 3553 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
fd2d4291 3554 ext4_group_t ngroups = sbi->s_groups_count, i;
5e70030d 3555 ext4_fsblk_t overhead = 0;
ac27a0ec
DK
3556 smp_rmb();
3557
3558 /*
5e70030d
BP
3559 * Compute the overhead (FS structures). This is constant
3560 * for a given filesystem unless the number of block groups
3561 * changes so we cache the previous value until it does.
ac27a0ec
DK
3562 */
3563
3564 /*
3565 * All of the blocks before first_data_block are
3566 * overhead
3567 */
3568 overhead = le32_to_cpu(es->s_first_data_block);
3569
3570 /*
3571 * Add the overhead attributed to the superblock and
3572 * block group descriptors. If the sparse superblocks
3573 * feature is turned on, then not all groups have this.
3574 */
3575 for (i = 0; i < ngroups; i++) {
617ba13b
MC
3576 overhead += ext4_bg_has_super(sb, i) +
3577 ext4_bg_num_gdb(sb, i);
ac27a0ec
DK
3578 cond_resched();
3579 }
3580
3581 /*
3582 * Every block group has an inode bitmap, a block
3583 * bitmap, and an inode table.
3584 */
5e70030d
BP
3585 overhead += ngroups * (2 + sbi->s_itb_per_group);
3586 sbi->s_overhead_last = overhead;
3587 smp_wmb();
6bc9feff 3588 sbi->s_blocks_last = ext4_blocks_count(es);
ac27a0ec
DK
3589 }
3590
617ba13b 3591 buf->f_type = EXT4_SUPER_MAGIC;
ac27a0ec 3592 buf->f_bsize = sb->s_blocksize;
5e70030d 3593 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
6bc6e63f
AK
3594 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3595 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
308ba3ec 3596 ext4_free_blocks_count_set(es, buf->f_bfree);
bd81d8ee
LV
3597 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3598 if (buf->f_bfree < ext4_r_blocks_count(es))
ac27a0ec
DK
3599 buf->f_bavail = 0;
3600 buf->f_files = le32_to_cpu(es->s_inodes_count);
52d9f3b4 3601 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
5e70030d 3602 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
617ba13b 3603 buf->f_namelen = EXT4_NAME_LEN;
960cc398
PE
3604 fsid = le64_to_cpup((void *)es->s_uuid) ^
3605 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3606 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3607 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
ac27a0ec
DK
3608 return 0;
3609}
3610
3611/* Helper function for writing quotas on sync - we need to start transaction before quota file
3612 * is locked for write. Otherwise the are possible deadlocks:
3613 * Process 1 Process 2
617ba13b 3614 * ext4_create() quota_sync()
a269eb18
JK
3615 * jbd2_journal_start() write_dquot()
3616 * vfs_dq_init() down(dqio_mutex)
dab291af 3617 * down(dqio_mutex) jbd2_journal_start()
ac27a0ec
DK
3618 *
3619 */
3620
3621#ifdef CONFIG_QUOTA
3622
3623static inline struct inode *dquot_to_inode(struct dquot *dquot)
3624{
3625 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3626}
3627
617ba13b 3628static int ext4_write_dquot(struct dquot *dquot)
ac27a0ec
DK
3629{
3630 int ret, err;
3631 handle_t *handle;
3632 struct inode *inode;
3633
3634 inode = dquot_to_inode(dquot);
617ba13b
MC
3635 handle = ext4_journal_start(inode,
3636 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
ac27a0ec
DK
3637 if (IS_ERR(handle))
3638 return PTR_ERR(handle);
3639 ret = dquot_commit(dquot);
617ba13b 3640 err = ext4_journal_stop(handle);
ac27a0ec
DK
3641 if (!ret)
3642 ret = err;
3643 return ret;
3644}
3645
617ba13b 3646static int ext4_acquire_dquot(struct dquot *dquot)
ac27a0ec
DK
3647{
3648 int ret, err;
3649 handle_t *handle;
3650
617ba13b
MC
3651 handle = ext4_journal_start(dquot_to_inode(dquot),
3652 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
ac27a0ec
DK
3653 if (IS_ERR(handle))
3654 return PTR_ERR(handle);
3655 ret = dquot_acquire(dquot);
617ba13b 3656 err = ext4_journal_stop(handle);
ac27a0ec
DK
3657 if (!ret)
3658 ret = err;
3659 return ret;
3660}
3661
617ba13b 3662static int ext4_release_dquot(struct dquot *dquot)
ac27a0ec
DK
3663{
3664 int ret, err;
3665 handle_t *handle;
3666
617ba13b
MC
3667 handle = ext4_journal_start(dquot_to_inode(dquot),
3668 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
9c3013e9
JK
3669 if (IS_ERR(handle)) {
3670 /* Release dquot anyway to avoid endless cycle in dqput() */
3671 dquot_release(dquot);
ac27a0ec 3672 return PTR_ERR(handle);
9c3013e9 3673 }
ac27a0ec 3674 ret = dquot_release(dquot);
617ba13b 3675 err = ext4_journal_stop(handle);
ac27a0ec
DK
3676 if (!ret)
3677 ret = err;
3678 return ret;
3679}
3680
617ba13b 3681static int ext4_mark_dquot_dirty(struct dquot *dquot)
ac27a0ec 3682{
2c8be6b2 3683 /* Are we journaling quotas? */
617ba13b
MC
3684 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3685 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
ac27a0ec 3686 dquot_mark_dquot_dirty(dquot);
617ba13b 3687 return ext4_write_dquot(dquot);
ac27a0ec
DK
3688 } else {
3689 return dquot_mark_dquot_dirty(dquot);
3690 }
3691}
3692
617ba13b 3693static int ext4_write_info(struct super_block *sb, int type)
ac27a0ec
DK
3694{
3695 int ret, err;
3696 handle_t *handle;
3697
3698 /* Data block + inode block */
617ba13b 3699 handle = ext4_journal_start(sb->s_root->d_inode, 2);
ac27a0ec
DK
3700 if (IS_ERR(handle))
3701 return PTR_ERR(handle);
3702 ret = dquot_commit_info(sb, type);
617ba13b 3703 err = ext4_journal_stop(handle);
ac27a0ec
DK
3704 if (!ret)
3705 ret = err;
3706 return ret;
3707}
3708
3709/*
3710 * Turn on quotas during mount time - we need to find
3711 * the quota file and such...
3712 */
617ba13b 3713static int ext4_quota_on_mount(struct super_block *sb, int type)
ac27a0ec 3714{
617ba13b
MC
3715 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3716 EXT4_SB(sb)->s_jquota_fmt, type);
ac27a0ec
DK
3717}
3718
3719/*
3720 * Standard function to be called on quota_on
3721 */
617ba13b 3722static int ext4_quota_on(struct super_block *sb, int type, int format_id,
8264613d 3723 char *name, int remount)
ac27a0ec
DK
3724{
3725 int err;
8264613d 3726 struct path path;
ac27a0ec
DK
3727
3728 if (!test_opt(sb, QUOTA))
3729 return -EINVAL;
8264613d 3730 /* When remounting, no checks are needed and in fact, name is NULL */
0623543b 3731 if (remount)
8264613d 3732 return vfs_quota_on(sb, type, format_id, name, remount);
0623543b 3733
8264613d 3734 err = kern_path(name, LOOKUP_FOLLOW, &path);
ac27a0ec
DK
3735 if (err)
3736 return err;
0623543b 3737
ac27a0ec 3738 /* Quotafile not on the same filesystem? */
8264613d
AV
3739 if (path.mnt->mnt_sb != sb) {
3740 path_put(&path);
ac27a0ec
DK
3741 return -EXDEV;
3742 }
0623543b
JK
3743 /* Journaling quota? */
3744 if (EXT4_SB(sb)->s_qf_names[type]) {
2b2d6d01 3745 /* Quotafile not in fs root? */
8264613d 3746 if (path.dentry->d_parent != sb->s_root)
0623543b
JK
3747 printk(KERN_WARNING
3748 "EXT4-fs: Quota file not on filesystem root. "
3749 "Journaled quota will not work.\n");
2b2d6d01 3750 }
0623543b
JK
3751
3752 /*
3753 * When we journal data on quota file, we have to flush journal to see
3754 * all updates to the file when we bypass pagecache...
3755 */
0390131b
FM
3756 if (EXT4_SB(sb)->s_journal &&
3757 ext4_should_journal_data(path.dentry->d_inode)) {
0623543b
JK
3758 /*
3759 * We don't need to lock updates but journal_flush() could
3760 * otherwise be livelocked...
3761 */
3762 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
7ffe1ea8 3763 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
0623543b 3764 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
7ffe1ea8 3765 if (err) {
8264613d 3766 path_put(&path);
7ffe1ea8
HK
3767 return err;
3768 }
0623543b
JK
3769 }
3770
8264613d
AV
3771 err = vfs_quota_on_path(sb, type, format_id, &path);
3772 path_put(&path);
77e69dac 3773 return err;
ac27a0ec
DK
3774}
3775
3776/* Read data from quotafile - avoid pagecache and such because we cannot afford
3777 * acquiring the locks... As quota files are never truncated and quota code
3778 * itself serializes the operations (and noone else should touch the files)
3779 * we don't have to be afraid of races */
617ba13b 3780static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
ac27a0ec
DK
3781 size_t len, loff_t off)
3782{
3783 struct inode *inode = sb_dqopt(sb)->files[type];
725d26d3 3784 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
ac27a0ec
DK
3785 int err = 0;
3786 int offset = off & (sb->s_blocksize - 1);
3787 int tocopy;
3788 size_t toread;
3789 struct buffer_head *bh;
3790 loff_t i_size = i_size_read(inode);
3791
3792 if (off > i_size)
3793 return 0;
3794 if (off+len > i_size)
3795 len = i_size-off;
3796 toread = len;
3797 while (toread > 0) {
3798 tocopy = sb->s_blocksize - offset < toread ?
3799 sb->s_blocksize - offset : toread;
617ba13b 3800 bh = ext4_bread(NULL, inode, blk, 0, &err);
ac27a0ec
DK
3801 if (err)
3802 return err;
3803 if (!bh) /* A hole? */
3804 memset(data, 0, tocopy);
3805 else
3806 memcpy(data, bh->b_data+offset, tocopy);
3807 brelse(bh);
3808 offset = 0;
3809 toread -= tocopy;
3810 data += tocopy;
3811 blk++;
3812 }
3813 return len;
3814}
3815
3816/* Write to quotafile (we know the transaction is already started and has
3817 * enough credits) */
617ba13b 3818static ssize_t ext4_quota_write(struct super_block *sb, int type,
ac27a0ec
DK
3819 const char *data, size_t len, loff_t off)
3820{
3821 struct inode *inode = sb_dqopt(sb)->files[type];
725d26d3 3822 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
ac27a0ec
DK
3823 int err = 0;
3824 int offset = off & (sb->s_blocksize - 1);
3825 int tocopy;
617ba13b 3826 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
ac27a0ec
DK
3827 size_t towrite = len;
3828 struct buffer_head *bh;
3829 handle_t *handle = journal_current_handle();
3830
0390131b 3831 if (EXT4_SB(sb)->s_journal && !handle) {
e5f8eab8 3832 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
9c3013e9
JK
3833 " cancelled because transaction is not started.\n",
3834 (unsigned long long)off, (unsigned long long)len);
3835 return -EIO;
3836 }
ac27a0ec
DK
3837 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3838 while (towrite > 0) {
3839 tocopy = sb->s_blocksize - offset < towrite ?
3840 sb->s_blocksize - offset : towrite;
617ba13b 3841 bh = ext4_bread(handle, inode, blk, 1, &err);
ac27a0ec
DK
3842 if (!bh)
3843 goto out;
3844 if (journal_quota) {
617ba13b 3845 err = ext4_journal_get_write_access(handle, bh);
ac27a0ec
DK
3846 if (err) {
3847 brelse(bh);
3848 goto out;
3849 }
3850 }
3851 lock_buffer(bh);
3852 memcpy(bh->b_data+offset, data, tocopy);
3853 flush_dcache_page(bh->b_page);
3854 unlock_buffer(bh);
3855 if (journal_quota)
0390131b 3856 err = ext4_handle_dirty_metadata(handle, NULL, bh);
ac27a0ec
DK
3857 else {
3858 /* Always do at least ordered writes for quotas */
678aaf48 3859 err = ext4_jbd2_file_inode(handle, inode);
ac27a0ec
DK
3860 mark_buffer_dirty(bh);
3861 }
3862 brelse(bh);
3863 if (err)
3864 goto out;
3865 offset = 0;
3866 towrite -= tocopy;
3867 data += tocopy;
3868 blk++;
3869 }
3870out:
4d04e4fb
JK
3871 if (len == towrite) {
3872 mutex_unlock(&inode->i_mutex);
ac27a0ec 3873 return err;
4d04e4fb 3874 }
ac27a0ec
DK
3875 if (inode->i_size < off+len-towrite) {
3876 i_size_write(inode, off+len-towrite);
617ba13b 3877 EXT4_I(inode)->i_disksize = inode->i_size;
ac27a0ec 3878 }
ac27a0ec 3879 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
617ba13b 3880 ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
3881 mutex_unlock(&inode->i_mutex);
3882 return len - towrite;
3883}
3884
3885#endif
3886
617ba13b 3887static int ext4_get_sb(struct file_system_type *fs_type,
ac27a0ec
DK
3888 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3889{
617ba13b 3890 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
ac27a0ec
DK
3891}
3892
03010a33
TT
3893static struct file_system_type ext4_fs_type = {
3894 .owner = THIS_MODULE,
3895 .name = "ext4",
3896 .get_sb = ext4_get_sb,
3897 .kill_sb = kill_block_super,
3898 .fs_flags = FS_REQUIRES_DEV,
3899};
3900
3901#ifdef CONFIG_EXT4DEV_COMPAT
3902static int ext4dev_get_sb(struct file_system_type *fs_type,
3903 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3904{
3905 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3906 "to mount using ext4\n");
3907 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3908 "will go away by 2.6.31\n");
3909 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3910}
3911
617ba13b 3912static struct file_system_type ext4dev_fs_type = {
ac27a0ec 3913 .owner = THIS_MODULE,
617ba13b 3914 .name = "ext4dev",
03010a33 3915 .get_sb = ext4dev_get_sb,
ac27a0ec
DK
3916 .kill_sb = kill_block_super,
3917 .fs_flags = FS_REQUIRES_DEV,
3918};
03010a33
TT
3919MODULE_ALIAS("ext4dev");
3920#endif
ac27a0ec 3921
617ba13b 3922static int __init init_ext4_fs(void)
ac27a0ec 3923{
c9de560d
AT
3924 int err;
3925
3197ebdb
TT
3926 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3927 if (!ext4_kset)
3928 return -ENOMEM;
9f6200bb 3929 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
c9de560d 3930 err = init_ext4_mballoc();
ac27a0ec
DK
3931 if (err)
3932 return err;
c9de560d
AT
3933
3934 err = init_ext4_xattr();
3935 if (err)
3936 goto out2;
ac27a0ec
DK
3937 err = init_inodecache();
3938 if (err)
3939 goto out1;
03010a33 3940 err = register_filesystem(&ext4_fs_type);
ac27a0ec
DK
3941 if (err)
3942 goto out;
03010a33
TT
3943#ifdef CONFIG_EXT4DEV_COMPAT
3944 err = register_filesystem(&ext4dev_fs_type);
3945 if (err) {
3946 unregister_filesystem(&ext4_fs_type);
3947 goto out;
3948 }
3949#endif
ac27a0ec
DK
3950 return 0;
3951out:
3952 destroy_inodecache();
3953out1:
617ba13b 3954 exit_ext4_xattr();
c9de560d
AT
3955out2:
3956 exit_ext4_mballoc();
ac27a0ec
DK
3957 return err;
3958}
3959
617ba13b 3960static void __exit exit_ext4_fs(void)
ac27a0ec 3961{
03010a33
TT
3962 unregister_filesystem(&ext4_fs_type);
3963#ifdef CONFIG_EXT4DEV_COMPAT
617ba13b 3964 unregister_filesystem(&ext4dev_fs_type);
03010a33 3965#endif
ac27a0ec 3966 destroy_inodecache();
617ba13b 3967 exit_ext4_xattr();
c9de560d 3968 exit_ext4_mballoc();
9f6200bb 3969 remove_proc_entry("fs/ext4", NULL);
3197ebdb 3970 kset_unregister(ext4_kset);
ac27a0ec
DK
3971}
3972
3973MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
83982b6f 3974MODULE_DESCRIPTION("Fourth Extended Filesystem");
ac27a0ec 3975MODULE_LICENSE("GPL");
617ba13b
MC
3976module_init(init_ext4_fs)
3977module_exit(exit_ext4_fs)