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