Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
[deliverable/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
4ab2f15b 306 EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
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;
4ab2f15b 419 EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
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:
4ab2f15b 1479 sbi->s_mount_flags |= EXT4_MF_FS_ABORTED;
ac27a0ec 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 /*
90c699a9 1962 * CONFIG_LBDAF 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 /*
90c699a9 2005 * !has_huge_files or CONFIG_LBDAF not enabled implies that
0b8e58a1
AD
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);
11013911 2209EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
3197ebdb
TT
2210EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2211EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2212EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2213EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2214EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2215EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2216
2217static struct attribute *ext4_attrs[] = {
2218 ATTR_LIST(delayed_allocation_blocks),
2219 ATTR_LIST(session_write_kbytes),
2220 ATTR_LIST(lifetime_write_kbytes),
2221 ATTR_LIST(inode_readahead_blks),
11013911 2222 ATTR_LIST(inode_goal),
3197ebdb
TT
2223 ATTR_LIST(mb_stats),
2224 ATTR_LIST(mb_max_to_scan),
2225 ATTR_LIST(mb_min_to_scan),
2226 ATTR_LIST(mb_order2_req),
2227 ATTR_LIST(mb_stream_req),
2228 ATTR_LIST(mb_group_prealloc),
2229 NULL,
2230};
2231
2232static ssize_t ext4_attr_show(struct kobject *kobj,
2233 struct attribute *attr, char *buf)
2234{
2235 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2236 s_kobj);
2237 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2238
2239 return a->show ? a->show(a, sbi, buf) : 0;
2240}
2241
2242static ssize_t ext4_attr_store(struct kobject *kobj,
2243 struct attribute *attr,
2244 const char *buf, size_t len)
2245{
2246 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2247 s_kobj);
2248 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2249
2250 return a->store ? a->store(a, sbi, buf, len) : 0;
2251}
2252
2253static void ext4_sb_release(struct kobject *kobj)
2254{
2255 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2256 s_kobj);
2257 complete(&sbi->s_kobj_unregister);
2258}
2259
2260
2261static struct sysfs_ops ext4_attr_ops = {
2262 .show = ext4_attr_show,
2263 .store = ext4_attr_store,
2264};
2265
2266static struct kobj_type ext4_ktype = {
2267 .default_attrs = ext4_attrs,
2268 .sysfs_ops = &ext4_attr_ops,
2269 .release = ext4_sb_release,
2270};
2271
2b2d6d01 2272static int ext4_fill_super(struct super_block *sb, void *data, int silent)
7477827f
AK
2273 __releases(kernel_lock)
2274 __acquires(kernel_lock)
ac27a0ec 2275{
2b2d6d01 2276 struct buffer_head *bh;
617ba13b
MC
2277 struct ext4_super_block *es = NULL;
2278 struct ext4_sb_info *sbi;
2279 ext4_fsblk_t block;
2280 ext4_fsblk_t sb_block = get_sb_block(&data);
70bbb3e0 2281 ext4_fsblk_t logical_sb_block;
ac27a0ec 2282 unsigned long offset = 0;
ac27a0ec
DK
2283 unsigned long journal_devnum = 0;
2284 unsigned long def_mount_opts;
2285 struct inode *root;
9f6200bb 2286 char *cp;
0390131b 2287 const char *descr;
1d1fe1ee 2288 int ret = -EINVAL;
ac27a0ec 2289 int blocksize;
4ec11028
TT
2290 unsigned int db_count;
2291 unsigned int i;
f287a1a5 2292 int needs_recovery, has_huge_files;
3a06d778 2293 int features;
bd81d8ee 2294 __u64 blocks_count;
833f4077 2295 int err;
b3881f74 2296 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
ac27a0ec
DK
2297
2298 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2299 if (!sbi)
2300 return -ENOMEM;
705895b6
PE
2301
2302 sbi->s_blockgroup_lock =
2303 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2304 if (!sbi->s_blockgroup_lock) {
2305 kfree(sbi);
2306 return -ENOMEM;
2307 }
ac27a0ec
DK
2308 sb->s_fs_info = sbi;
2309 sbi->s_mount_opt = 0;
617ba13b
MC
2310 sbi->s_resuid = EXT4_DEF_RESUID;
2311 sbi->s_resgid = EXT4_DEF_RESGID;
240799cd 2312 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
d9c9bef1 2313 sbi->s_sb_block = sb_block;
afc32f7e
TT
2314 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2315 sectors[1]);
ac27a0ec
DK
2316
2317 unlock_kernel();
2318
9f6200bb
TT
2319 /* Cleanup superblock name */
2320 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2321 *cp = '!';
2322
617ba13b 2323 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
ac27a0ec 2324 if (!blocksize) {
b31e1552 2325 ext4_msg(sb, KERN_ERR, "unable to set blocksize");
ac27a0ec
DK
2326 goto out_fail;
2327 }
2328
2329 /*
617ba13b 2330 * The ext4 superblock will not be buffer aligned for other than 1kB
ac27a0ec
DK
2331 * block sizes. We need to calculate the offset from buffer start.
2332 */
617ba13b 2333 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
70bbb3e0
AM
2334 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2335 offset = do_div(logical_sb_block, blocksize);
ac27a0ec 2336 } else {
70bbb3e0 2337 logical_sb_block = sb_block;
ac27a0ec
DK
2338 }
2339
70bbb3e0 2340 if (!(bh = sb_bread(sb, logical_sb_block))) {
b31e1552 2341 ext4_msg(sb, KERN_ERR, "unable to read superblock");
ac27a0ec
DK
2342 goto out_fail;
2343 }
2344 /*
2345 * Note: s_es must be initialized as soon as possible because
617ba13b 2346 * some ext4 macro-instructions depend on its value
ac27a0ec 2347 */
617ba13b 2348 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
ac27a0ec
DK
2349 sbi->s_es = es;
2350 sb->s_magic = le16_to_cpu(es->s_magic);
617ba13b
MC
2351 if (sb->s_magic != EXT4_SUPER_MAGIC)
2352 goto cantfind_ext4;
afc32f7e 2353 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
ac27a0ec
DK
2354
2355 /* Set defaults before we parse the mount options */
2356 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
617ba13b 2357 if (def_mount_opts & EXT4_DEFM_DEBUG)
ac27a0ec 2358 set_opt(sbi->s_mount_opt, DEBUG);
617ba13b 2359 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
ac27a0ec 2360 set_opt(sbi->s_mount_opt, GRPID);
617ba13b 2361 if (def_mount_opts & EXT4_DEFM_UID16)
ac27a0ec 2362 set_opt(sbi->s_mount_opt, NO_UID32);
03010a33 2363#ifdef CONFIG_EXT4_FS_XATTR
617ba13b 2364 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
ac27a0ec 2365 set_opt(sbi->s_mount_opt, XATTR_USER);
2e7842b8 2366#endif
03010a33 2367#ifdef CONFIG_EXT4_FS_POSIX_ACL
617ba13b 2368 if (def_mount_opts & EXT4_DEFM_ACL)
ac27a0ec 2369 set_opt(sbi->s_mount_opt, POSIX_ACL);
2e7842b8 2370#endif
617ba13b
MC
2371 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2372 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2373 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2374 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2375 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2376 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
2377
2378 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
ac27a0ec 2379 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
bb4f397a 2380 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
ceea16bf 2381 set_opt(sbi->s_mount_opt, ERRORS_CONT);
bb4f397a
AK
2382 else
2383 set_opt(sbi->s_mount_opt, ERRORS_RO);
ac27a0ec
DK
2384
2385 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2386 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
30773840
TT
2387 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2388 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2389 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
f4033903 2390 sbi->s_mb_history_max = default_mb_history_length;
ac27a0ec 2391
571640ca 2392 set_opt(sbi->s_mount_opt, BARRIER);
ac27a0ec 2393
dd919b98
AK
2394 /*
2395 * enable delayed allocation by default
2396 * Use -o nodelalloc to turn it off
2397 */
2398 set_opt(sbi->s_mount_opt, DELALLOC);
2399
b3881f74
TT
2400 if (!parse_options((char *) data, sb, &journal_devnum,
2401 &journal_ioprio, NULL, 0))
ac27a0ec
DK
2402 goto failed_mount;
2403
2404 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
617ba13b 2405 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
ac27a0ec 2406
617ba13b
MC
2407 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2408 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2409 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2410 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
b31e1552
ES
2411 ext4_msg(sb, KERN_WARNING,
2412 "feature flags set on rev 0 fs, "
2413 "running e2fsck is recommended");
469108ff 2414
ac27a0ec
DK
2415 /*
2416 * Check feature flags regardless of the revision level, since we
2417 * previously didn't change the revision level when setting the flags,
2418 * so there is a chance incompat flags are set on a rev 0 filesystem.
2419 */
617ba13b 2420 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
ac27a0ec 2421 if (features) {
b31e1552
ES
2422 ext4_msg(sb, KERN_ERR,
2423 "Couldn't mount because of "
2424 "unsupported optional features (%x)",
3a06d778
AK
2425 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2426 ~EXT4_FEATURE_INCOMPAT_SUPP));
ac27a0ec
DK
2427 goto failed_mount;
2428 }
617ba13b 2429 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
ac27a0ec 2430 if (!(sb->s_flags & MS_RDONLY) && features) {
b31e1552
ES
2431 ext4_msg(sb, KERN_ERR,
2432 "Couldn't mount RDWR because of "
2433 "unsupported optional features (%x)",
3a06d778
AK
2434 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2435 ~EXT4_FEATURE_RO_COMPAT_SUPP));
ac27a0ec
DK
2436 goto failed_mount;
2437 }
f287a1a5
TT
2438 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2439 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2440 if (has_huge_files) {
0fc1b451
AK
2441 /*
2442 * Large file size enabled file system can only be
90c699a9 2443 * mount if kernel is build with CONFIG_LBDAF
0fc1b451
AK
2444 */
2445 if (sizeof(root->i_blocks) < sizeof(u64) &&
2446 !(sb->s_flags & MS_RDONLY)) {
b31e1552 2447 ext4_msg(sb, KERN_ERR, "Filesystem with huge "
0fc1b451 2448 "files cannot be mounted read-write "
90c699a9 2449 "without CONFIG_LBDAF");
0fc1b451
AK
2450 goto failed_mount;
2451 }
2452 }
ac27a0ec
DK
2453 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2454
617ba13b
MC
2455 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2456 blocksize > EXT4_MAX_BLOCK_SIZE) {
b31e1552
ES
2457 ext4_msg(sb, KERN_ERR,
2458 "Unsupported filesystem blocksize %d", blocksize);
ac27a0ec
DK
2459 goto failed_mount;
2460 }
2461
ac27a0ec 2462 if (sb->s_blocksize != blocksize) {
ce40733c
AK
2463 /* Validate the filesystem blocksize */
2464 if (!sb_set_blocksize(sb, blocksize)) {
b31e1552 2465 ext4_msg(sb, KERN_ERR, "bad block size %d",
ce40733c 2466 blocksize);
ac27a0ec
DK
2467 goto failed_mount;
2468 }
2469
2b2d6d01 2470 brelse(bh);
70bbb3e0
AM
2471 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2472 offset = do_div(logical_sb_block, blocksize);
2473 bh = sb_bread(sb, logical_sb_block);
ac27a0ec 2474 if (!bh) {
b31e1552
ES
2475 ext4_msg(sb, KERN_ERR,
2476 "Can't read superblock on 2nd try");
ac27a0ec
DK
2477 goto failed_mount;
2478 }
617ba13b 2479 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
ac27a0ec 2480 sbi->s_es = es;
617ba13b 2481 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
b31e1552
ES
2482 ext4_msg(sb, KERN_ERR,
2483 "Magic mismatch, very weird!");
ac27a0ec
DK
2484 goto failed_mount;
2485 }
2486 }
2487
f287a1a5
TT
2488 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2489 has_huge_files);
2490 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
ac27a0ec 2491
617ba13b
MC
2492 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2493 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2494 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
ac27a0ec
DK
2495 } else {
2496 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2497 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
617ba13b 2498 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
1330593e 2499 (!is_power_of_2(sbi->s_inode_size)) ||
ac27a0ec 2500 (sbi->s_inode_size > blocksize)) {
b31e1552
ES
2501 ext4_msg(sb, KERN_ERR,
2502 "unsupported inode size: %d",
2b2d6d01 2503 sbi->s_inode_size);
ac27a0ec
DK
2504 goto failed_mount;
2505 }
ef7f3835
KS
2506 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2507 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
ac27a0ec 2508 }
0b8e58a1 2509
0d1ee42f
AR
2510 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2511 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
8fadc143 2512 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
0d1ee42f 2513 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
d8ea6cf8 2514 !is_power_of_2(sbi->s_desc_size)) {
b31e1552
ES
2515 ext4_msg(sb, KERN_ERR,
2516 "unsupported descriptor size %lu",
0d1ee42f
AR
2517 sbi->s_desc_size);
2518 goto failed_mount;
2519 }
2520 } else
2521 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
0b8e58a1 2522
ac27a0ec 2523 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
ac27a0ec 2524 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
b47b6f38 2525 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
617ba13b 2526 goto cantfind_ext4;
0b8e58a1 2527
617ba13b 2528 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
ac27a0ec 2529 if (sbi->s_inodes_per_block == 0)
617ba13b 2530 goto cantfind_ext4;
ac27a0ec
DK
2531 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2532 sbi->s_inodes_per_block;
0d1ee42f 2533 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
ac27a0ec
DK
2534 sbi->s_sbh = bh;
2535 sbi->s_mount_state = le16_to_cpu(es->s_state);
e57aa839
FW
2536 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2537 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
0b8e58a1 2538
2b2d6d01 2539 for (i = 0; i < 4; i++)
ac27a0ec
DK
2540 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2541 sbi->s_def_hash_version = es->s_def_hash_version;
f99b2589
TT
2542 i = le32_to_cpu(es->s_flags);
2543 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2544 sbi->s_hash_unsigned = 3;
2545 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2546#ifdef __CHAR_UNSIGNED__
2547 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2548 sbi->s_hash_unsigned = 3;
2549#else
2550 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2551#endif
2552 sb->s_dirt = 1;
2553 }
ac27a0ec
DK
2554
2555 if (sbi->s_blocks_per_group > blocksize * 8) {
b31e1552
ES
2556 ext4_msg(sb, KERN_ERR,
2557 "#blocks per group too big: %lu",
2b2d6d01 2558 sbi->s_blocks_per_group);
ac27a0ec
DK
2559 goto failed_mount;
2560 }
ac27a0ec 2561 if (sbi->s_inodes_per_group > blocksize * 8) {
b31e1552
ES
2562 ext4_msg(sb, KERN_ERR,
2563 "#inodes per group too big: %lu",
2b2d6d01 2564 sbi->s_inodes_per_group);
ac27a0ec
DK
2565 goto failed_mount;
2566 }
2567
bd81d8ee 2568 if (ext4_blocks_count(es) >
ac27a0ec 2569 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
b31e1552
ES
2570 ext4_msg(sb, KERN_ERR, "filesystem"
2571 " too large to mount safely");
ac27a0ec 2572 if (sizeof(sector_t) < 8)
90c699a9 2573 ext4_msg(sb, KERN_WARNING, "CONFIG_LBDAF not enabled");
ac27a0ec
DK
2574 goto failed_mount;
2575 }
2576
617ba13b
MC
2577 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2578 goto cantfind_ext4;
e7c95593 2579
0f2ddca6
FTN
2580 /* check blocks count against device size */
2581 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2582 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
b31e1552
ES
2583 ext4_msg(sb, KERN_WARNING, "bad geometry: block count %llu "
2584 "exceeds size of device (%llu blocks)",
0f2ddca6
FTN
2585 ext4_blocks_count(es), blocks_count);
2586 goto failed_mount;
2587 }
2588
0b8e58a1
AD
2589 /*
2590 * It makes no sense for the first data block to be beyond the end
2591 * of the filesystem.
2592 */
2593 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
b31e1552
ES
2594 ext4_msg(sb, KERN_WARNING, "bad geometry: first data"
2595 "block %u is beyond end of filesystem (%llu)",
2596 le32_to_cpu(es->s_first_data_block),
2597 ext4_blocks_count(es));
e7c95593
ES
2598 goto failed_mount;
2599 }
bd81d8ee
LV
2600 blocks_count = (ext4_blocks_count(es) -
2601 le32_to_cpu(es->s_first_data_block) +
2602 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2603 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
4ec11028 2604 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
b31e1552 2605 ext4_msg(sb, KERN_WARNING, "groups count too large: %u "
4ec11028 2606 "(block count %llu, first data block %u, "
b31e1552 2607 "blocks per group %lu)", sbi->s_groups_count,
4ec11028
TT
2608 ext4_blocks_count(es),
2609 le32_to_cpu(es->s_first_data_block),
2610 EXT4_BLOCKS_PER_GROUP(sb));
2611 goto failed_mount;
2612 }
bd81d8ee 2613 sbi->s_groups_count = blocks_count;
617ba13b
MC
2614 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2615 EXT4_DESC_PER_BLOCK(sb);
2b2d6d01 2616 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
ac27a0ec
DK
2617 GFP_KERNEL);
2618 if (sbi->s_group_desc == NULL) {
b31e1552 2619 ext4_msg(sb, KERN_ERR, "not enough memory");
ac27a0ec
DK
2620 goto failed_mount;
2621 }
2622
3244fcb1 2623#ifdef CONFIG_PROC_FS
9f6200bb
TT
2624 if (ext4_proc_root)
2625 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
3244fcb1 2626#endif
240799cd 2627
705895b6 2628 bgl_lock_init(sbi->s_blockgroup_lock);
ac27a0ec
DK
2629
2630 for (i = 0; i < db_count; i++) {
70bbb3e0 2631 block = descriptor_loc(sb, logical_sb_block, i);
ac27a0ec
DK
2632 sbi->s_group_desc[i] = sb_bread(sb, block);
2633 if (!sbi->s_group_desc[i]) {
b31e1552
ES
2634 ext4_msg(sb, KERN_ERR,
2635 "can't read group descriptor %d", i);
ac27a0ec
DK
2636 db_count = i;
2637 goto failed_mount2;
2638 }
2639 }
2b2d6d01 2640 if (!ext4_check_descriptors(sb)) {
b31e1552 2641 ext4_msg(sb, KERN_ERR, "group descriptors corrupted!");
ac27a0ec
DK
2642 goto failed_mount2;
2643 }
772cb7c8
JS
2644 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2645 if (!ext4_fill_flex_info(sb)) {
b31e1552
ES
2646 ext4_msg(sb, KERN_ERR,
2647 "unable to initialize "
2648 "flex_bg meta info!");
772cb7c8
JS
2649 goto failed_mount2;
2650 }
2651
ac27a0ec
DK
2652 sbi->s_gdb_count = db_count;
2653 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2654 spin_lock_init(&sbi->s_next_gen_lock);
2655
833f4077
PZ
2656 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2657 ext4_count_free_blocks(sb));
2658 if (!err) {
2659 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2660 ext4_count_free_inodes(sb));
2661 }
2662 if (!err) {
2663 err = percpu_counter_init(&sbi->s_dirs_counter,
2664 ext4_count_dirs(sb));
2665 }
6bc6e63f
AK
2666 if (!err) {
2667 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2668 }
833f4077 2669 if (err) {
b31e1552 2670 ext4_msg(sb, KERN_ERR, "insufficient memory");
833f4077
PZ
2671 goto failed_mount3;
2672 }
ac27a0ec 2673
c9de560d
AT
2674 sbi->s_stripe = ext4_get_stripe_size(sbi);
2675
ac27a0ec
DK
2676 /*
2677 * set up enough so that it can read an inode
2678 */
9ca92389
TT
2679 if (!test_opt(sb, NOLOAD) &&
2680 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
2681 sb->s_op = &ext4_sops;
2682 else
2683 sb->s_op = &ext4_nojournal_sops;
617ba13b
MC
2684 sb->s_export_op = &ext4_export_ops;
2685 sb->s_xattr = ext4_xattr_handlers;
ac27a0ec 2686#ifdef CONFIG_QUOTA
617ba13b
MC
2687 sb->s_qcop = &ext4_qctl_operations;
2688 sb->dq_op = &ext4_quota_operations;
ac27a0ec
DK
2689#endif
2690 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
3b9d4ed2 2691 mutex_init(&sbi->s_orphan_lock);
32ed5058 2692 mutex_init(&sbi->s_resize_lock);
ac27a0ec
DK
2693
2694 sb->s_root = NULL;
2695
2696 needs_recovery = (es->s_last_orphan != 0 ||
617ba13b
MC
2697 EXT4_HAS_INCOMPAT_FEATURE(sb,
2698 EXT4_FEATURE_INCOMPAT_RECOVER));
ac27a0ec
DK
2699
2700 /*
2701 * The first inode we look at is the journal inode. Don't try
2702 * root first: it may be modified in the journal!
2703 */
2704 if (!test_opt(sb, NOLOAD) &&
617ba13b
MC
2705 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2706 if (ext4_load_journal(sb, es, journal_devnum))
ac27a0ec 2707 goto failed_mount3;
624080ed
TT
2708 if (!(sb->s_flags & MS_RDONLY) &&
2709 EXT4_SB(sb)->s_journal->j_failed_commit) {
b31e1552 2710 ext4_msg(sb, KERN_CRIT, "error: "
624080ed 2711 "ext4_fill_super: Journal transaction "
b31e1552 2712 "%u is corrupt",
624080ed 2713 EXT4_SB(sb)->s_journal->j_failed_commit);
2b2d6d01 2714 if (test_opt(sb, ERRORS_RO)) {
b31e1552
ES
2715 ext4_msg(sb, KERN_CRIT,
2716 "Mounting filesystem read-only");
624080ed
TT
2717 sb->s_flags |= MS_RDONLY;
2718 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2719 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2720 }
2721 if (test_opt(sb, ERRORS_PANIC)) {
2722 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2723 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
e2d67052 2724 ext4_commit_super(sb, 1);
624080ed
TT
2725 goto failed_mount4;
2726 }
2727 }
0390131b
FM
2728 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2729 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
b31e1552
ES
2730 ext4_msg(sb, KERN_ERR, "required journal recovery "
2731 "suppressed and not mounted read-only");
0390131b 2732 goto failed_mount4;
ac27a0ec 2733 } else {
0390131b
FM
2734 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2735 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2736 sbi->s_journal = NULL;
2737 needs_recovery = 0;
2738 goto no_journal;
ac27a0ec
DK
2739 }
2740
eb40a09c
JS
2741 if (ext4_blocks_count(es) > 0xffffffffULL &&
2742 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2743 JBD2_FEATURE_INCOMPAT_64BIT)) {
b31e1552 2744 ext4_msg(sb, KERN_ERR, "Failed to set 64-bit journal feature");
eb40a09c
JS
2745 goto failed_mount4;
2746 }
2747
818d276c
GS
2748 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2749 jbd2_journal_set_features(sbi->s_journal,
2750 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2751 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2752 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2753 jbd2_journal_set_features(sbi->s_journal,
2754 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2755 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2756 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2757 } else {
2758 jbd2_journal_clear_features(sbi->s_journal,
2759 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2760 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2761 }
2762
ac27a0ec
DK
2763 /* We have now updated the journal if required, so we can
2764 * validate the data journaling mode. */
2765 switch (test_opt(sb, DATA_FLAGS)) {
2766 case 0:
2767 /* No mode set, assume a default based on the journal
63f57933
AM
2768 * capabilities: ORDERED_DATA if the journal can
2769 * cope, else JOURNAL_DATA
2770 */
dab291af
MC
2771 if (jbd2_journal_check_available_features
2772 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
ac27a0ec
DK
2773 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2774 else
2775 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2776 break;
2777
617ba13b
MC
2778 case EXT4_MOUNT_ORDERED_DATA:
2779 case EXT4_MOUNT_WRITEBACK_DATA:
dab291af
MC
2780 if (!jbd2_journal_check_available_features
2781 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
b31e1552
ES
2782 ext4_msg(sb, KERN_ERR, "Journal does not support "
2783 "requested data journaling mode");
ac27a0ec
DK
2784 goto failed_mount4;
2785 }
2786 default:
2787 break;
2788 }
b3881f74 2789 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
ac27a0ec 2790
0390131b 2791no_journal:
ac27a0ec
DK
2792
2793 if (test_opt(sb, NOBH)) {
617ba13b 2794 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
b31e1552
ES
2795 ext4_msg(sb, KERN_WARNING, "Ignoring nobh option - "
2796 "its supported only with writeback mode");
ac27a0ec
DK
2797 clear_opt(sbi->s_mount_opt, NOBH);
2798 }
2799 }
2800 /*
dab291af 2801 * The jbd2_journal_load will have done any necessary log recovery,
ac27a0ec
DK
2802 * so we can safely mount the rest of the filesystem now.
2803 */
2804
1d1fe1ee
DH
2805 root = ext4_iget(sb, EXT4_ROOT_INO);
2806 if (IS_ERR(root)) {
b31e1552 2807 ext4_msg(sb, KERN_ERR, "get root inode failed");
1d1fe1ee 2808 ret = PTR_ERR(root);
ac27a0ec
DK
2809 goto failed_mount4;
2810 }
2811 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1d1fe1ee 2812 iput(root);
b31e1552 2813 ext4_msg(sb, KERN_ERR, "corrupt root inode, run e2fsck");
ac27a0ec
DK
2814 goto failed_mount4;
2815 }
1d1fe1ee
DH
2816 sb->s_root = d_alloc_root(root);
2817 if (!sb->s_root) {
b31e1552 2818 ext4_msg(sb, KERN_ERR, "get root dentry failed");
1d1fe1ee
DH
2819 iput(root);
2820 ret = -ENOMEM;
2821 goto failed_mount4;
2822 }
ac27a0ec 2823
2b2d6d01 2824 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
ef7f3835
KS
2825
2826 /* determine the minimum size of new large inodes, if present */
2827 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2828 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2829 EXT4_GOOD_OLD_INODE_SIZE;
2830 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2831 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2832 if (sbi->s_want_extra_isize <
2833 le16_to_cpu(es->s_want_extra_isize))
2834 sbi->s_want_extra_isize =
2835 le16_to_cpu(es->s_want_extra_isize);
2836 if (sbi->s_want_extra_isize <
2837 le16_to_cpu(es->s_min_extra_isize))
2838 sbi->s_want_extra_isize =
2839 le16_to_cpu(es->s_min_extra_isize);
2840 }
2841 }
2842 /* Check if enough inode space is available */
2843 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2844 sbi->s_inode_size) {
2845 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2846 EXT4_GOOD_OLD_INODE_SIZE;
b31e1552
ES
2847 ext4_msg(sb, KERN_INFO, "required extra inode space not"
2848 "available");
ef7f3835
KS
2849 }
2850
c2774d84 2851 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
b31e1552
ES
2852 ext4_msg(sb, KERN_WARNING, "Ignoring delalloc option - "
2853 "requested data journaling mode");
c2774d84
AK
2854 clear_opt(sbi->s_mount_opt, DELALLOC);
2855 } else if (test_opt(sb, DELALLOC))
b31e1552 2856 ext4_msg(sb, KERN_INFO, "delayed allocation enabled");
c2774d84 2857
6fd058f7
TT
2858 err = ext4_setup_system_zone(sb);
2859 if (err) {
b31e1552
ES
2860 ext4_msg(sb, KERN_ERR, "failed to initialize system "
2861 "zone (%d)\n", err);
6fd058f7
TT
2862 goto failed_mount4;
2863 }
2864
c2774d84
AK
2865 ext4_ext_init(sb);
2866 err = ext4_mb_init(sb, needs_recovery);
2867 if (err) {
b31e1552
ES
2868 ext4_msg(sb, KERN_ERR, "failed to initalize mballoc (%d)",
2869 err);
c2774d84
AK
2870 goto failed_mount4;
2871 }
2872
3197ebdb
TT
2873 sbi->s_kobj.kset = ext4_kset;
2874 init_completion(&sbi->s_kobj_unregister);
2875 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2876 "%s", sb->s_id);
2877 if (err) {
2878 ext4_mb_release(sb);
2879 ext4_ext_release(sb);
2880 goto failed_mount4;
2881 };
2882
617ba13b
MC
2883 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2884 ext4_orphan_cleanup(sb, es);
2885 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
0390131b 2886 if (needs_recovery) {
b31e1552 2887 ext4_msg(sb, KERN_INFO, "recovery complete");
0390131b
FM
2888 ext4_mark_recovery_complete(sb, es);
2889 }
2890 if (EXT4_SB(sb)->s_journal) {
2891 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2892 descr = " journalled data mode";
2893 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2894 descr = " ordered data mode";
2895 else
2896 descr = " writeback data mode";
2897 } else
2898 descr = "out journal";
2899
b31e1552 2900 ext4_msg(sb, KERN_INFO, "mounted filesystem with%s", descr);
ac27a0ec
DK
2901
2902 lock_kernel();
2903 return 0;
2904
617ba13b 2905cantfind_ext4:
ac27a0ec 2906 if (!silent)
b31e1552 2907 ext4_msg(sb, KERN_ERR, "VFS: Can't find ext4 filesystem");
ac27a0ec
DK
2908 goto failed_mount;
2909
2910failed_mount4:
b31e1552 2911 ext4_msg(sb, KERN_ERR, "mount failed");
6fd058f7 2912 ext4_release_system_zone(sb);
0390131b
FM
2913 if (sbi->s_journal) {
2914 jbd2_journal_destroy(sbi->s_journal);
2915 sbi->s_journal = NULL;
2916 }
ac27a0ec 2917failed_mount3:
c5ca7c76
TT
2918 if (sbi->s_flex_groups) {
2919 if (is_vmalloc_addr(sbi->s_flex_groups))
2920 vfree(sbi->s_flex_groups);
2921 else
2922 kfree(sbi->s_flex_groups);
2923 }
ac27a0ec
DK
2924 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2925 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2926 percpu_counter_destroy(&sbi->s_dirs_counter);
6bc6e63f 2927 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
ac27a0ec
DK
2928failed_mount2:
2929 for (i = 0; i < db_count; i++)
2930 brelse(sbi->s_group_desc[i]);
2931 kfree(sbi->s_group_desc);
2932failed_mount:
240799cd 2933 if (sbi->s_proc) {
9f6200bb 2934 remove_proc_entry(sb->s_id, ext4_proc_root);
240799cd 2935 }
ac27a0ec
DK
2936#ifdef CONFIG_QUOTA
2937 for (i = 0; i < MAXQUOTAS; i++)
2938 kfree(sbi->s_qf_names[i]);
2939#endif
617ba13b 2940 ext4_blkdev_remove(sbi);
ac27a0ec
DK
2941 brelse(bh);
2942out_fail:
2943 sb->s_fs_info = NULL;
f6830165 2944 kfree(sbi->s_blockgroup_lock);
ac27a0ec
DK
2945 kfree(sbi);
2946 lock_kernel();
1d1fe1ee 2947 return ret;
ac27a0ec
DK
2948}
2949
2950/*
2951 * Setup any per-fs journal parameters now. We'll do this both on
2952 * initial mount, once the journal has been initialised but before we've
2953 * done any recovery; and again on any subsequent remount.
2954 */
617ba13b 2955static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
ac27a0ec 2956{
617ba13b 2957 struct ext4_sb_info *sbi = EXT4_SB(sb);
ac27a0ec 2958
30773840
TT
2959 journal->j_commit_interval = sbi->s_commit_interval;
2960 journal->j_min_batch_time = sbi->s_min_batch_time;
2961 journal->j_max_batch_time = sbi->s_max_batch_time;
ac27a0ec
DK
2962
2963 spin_lock(&journal->j_state_lock);
2964 if (test_opt(sb, BARRIER))
dab291af 2965 journal->j_flags |= JBD2_BARRIER;
ac27a0ec 2966 else
dab291af 2967 journal->j_flags &= ~JBD2_BARRIER;
5bf5683a
HK
2968 if (test_opt(sb, DATA_ERR_ABORT))
2969 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2970 else
2971 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
ac27a0ec
DK
2972 spin_unlock(&journal->j_state_lock);
2973}
2974
617ba13b 2975static journal_t *ext4_get_journal(struct super_block *sb,
ac27a0ec
DK
2976 unsigned int journal_inum)
2977{
2978 struct inode *journal_inode;
2979 journal_t *journal;
2980
0390131b
FM
2981 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2982
ac27a0ec
DK
2983 /* First, test for the existence of a valid inode on disk. Bad
2984 * things happen if we iget() an unused inode, as the subsequent
2985 * iput() will try to delete it. */
2986
1d1fe1ee
DH
2987 journal_inode = ext4_iget(sb, journal_inum);
2988 if (IS_ERR(journal_inode)) {
b31e1552 2989 ext4_msg(sb, KERN_ERR, "no journal found");
ac27a0ec
DK
2990 return NULL;
2991 }
2992 if (!journal_inode->i_nlink) {
2993 make_bad_inode(journal_inode);
2994 iput(journal_inode);
b31e1552 2995 ext4_msg(sb, KERN_ERR, "journal inode is deleted");
ac27a0ec
DK
2996 return NULL;
2997 }
2998
e5f8eab8 2999 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
ac27a0ec 3000 journal_inode, journal_inode->i_size);
1d1fe1ee 3001 if (!S_ISREG(journal_inode->i_mode)) {
b31e1552 3002 ext4_msg(sb, KERN_ERR, "invalid journal inode");
ac27a0ec
DK
3003 iput(journal_inode);
3004 return NULL;
3005 }
3006
dab291af 3007 journal = jbd2_journal_init_inode(journal_inode);
ac27a0ec 3008 if (!journal) {
b31e1552 3009 ext4_msg(sb, KERN_ERR, "Could not load journal inode");
ac27a0ec
DK
3010 iput(journal_inode);
3011 return NULL;
3012 }
3013 journal->j_private = sb;
617ba13b 3014 ext4_init_journal_params(sb, journal);
ac27a0ec
DK
3015 return journal;
3016}
3017
617ba13b 3018static journal_t *ext4_get_dev_journal(struct super_block *sb,
ac27a0ec
DK
3019 dev_t j_dev)
3020{
2b2d6d01 3021 struct buffer_head *bh;
ac27a0ec 3022 journal_t *journal;
617ba13b
MC
3023 ext4_fsblk_t start;
3024 ext4_fsblk_t len;
ac27a0ec 3025 int hblock, blocksize;
617ba13b 3026 ext4_fsblk_t sb_block;
ac27a0ec 3027 unsigned long offset;
2b2d6d01 3028 struct ext4_super_block *es;
ac27a0ec
DK
3029 struct block_device *bdev;
3030
0390131b
FM
3031 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3032
b31e1552 3033 bdev = ext4_blkdev_get(j_dev, sb);
ac27a0ec
DK
3034 if (bdev == NULL)
3035 return NULL;
3036
3037 if (bd_claim(bdev, sb)) {
b31e1552
ES
3038 ext4_msg(sb, KERN_ERR,
3039 "failed to claim external journal device");
9a1c3542 3040 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
ac27a0ec
DK
3041 return NULL;
3042 }
3043
3044 blocksize = sb->s_blocksize;
e1defc4f 3045 hblock = bdev_logical_block_size(bdev);
ac27a0ec 3046 if (blocksize < hblock) {
b31e1552
ES
3047 ext4_msg(sb, KERN_ERR,
3048 "blocksize too small for journal device");
ac27a0ec
DK
3049 goto out_bdev;
3050 }
3051
617ba13b
MC
3052 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
3053 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
ac27a0ec
DK
3054 set_blocksize(bdev, blocksize);
3055 if (!(bh = __bread(bdev, sb_block, blocksize))) {
b31e1552
ES
3056 ext4_msg(sb, KERN_ERR, "couldn't read superblock of "
3057 "external journal");
ac27a0ec
DK
3058 goto out_bdev;
3059 }
3060
617ba13b
MC
3061 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
3062 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
ac27a0ec 3063 !(le32_to_cpu(es->s_feature_incompat) &
617ba13b 3064 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
b31e1552
ES
3065 ext4_msg(sb, KERN_ERR, "external journal has "
3066 "bad superblock");
ac27a0ec
DK
3067 brelse(bh);
3068 goto out_bdev;
3069 }
3070
617ba13b 3071 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
b31e1552 3072 ext4_msg(sb, KERN_ERR, "journal UUID does not match");
ac27a0ec
DK
3073 brelse(bh);
3074 goto out_bdev;
3075 }
3076
bd81d8ee 3077 len = ext4_blocks_count(es);
ac27a0ec
DK
3078 start = sb_block + 1;
3079 brelse(bh); /* we're done with the superblock */
3080
dab291af 3081 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
ac27a0ec
DK
3082 start, len, blocksize);
3083 if (!journal) {
b31e1552 3084 ext4_msg(sb, KERN_ERR, "failed to create device journal");
ac27a0ec
DK
3085 goto out_bdev;
3086 }
3087 journal->j_private = sb;
3088 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3089 wait_on_buffer(journal->j_sb_buffer);
3090 if (!buffer_uptodate(journal->j_sb_buffer)) {
b31e1552 3091 ext4_msg(sb, KERN_ERR, "I/O error on journal device");
ac27a0ec
DK
3092 goto out_journal;
3093 }
3094 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
b31e1552
ES
3095 ext4_msg(sb, KERN_ERR, "External journal has more than one "
3096 "user (unsupported) - %d",
ac27a0ec
DK
3097 be32_to_cpu(journal->j_superblock->s_nr_users));
3098 goto out_journal;
3099 }
617ba13b
MC
3100 EXT4_SB(sb)->journal_bdev = bdev;
3101 ext4_init_journal_params(sb, journal);
ac27a0ec 3102 return journal;
0b8e58a1 3103
ac27a0ec 3104out_journal:
dab291af 3105 jbd2_journal_destroy(journal);
ac27a0ec 3106out_bdev:
617ba13b 3107 ext4_blkdev_put(bdev);
ac27a0ec
DK
3108 return NULL;
3109}
3110
617ba13b
MC
3111static int ext4_load_journal(struct super_block *sb,
3112 struct ext4_super_block *es,
ac27a0ec
DK
3113 unsigned long journal_devnum)
3114{
3115 journal_t *journal;
3116 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3117 dev_t journal_dev;
3118 int err = 0;
3119 int really_read_only;
3120
0390131b
FM
3121 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3122
ac27a0ec
DK
3123 if (journal_devnum &&
3124 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
b31e1552
ES
3125 ext4_msg(sb, KERN_INFO, "external journal device major/minor "
3126 "numbers have changed");
ac27a0ec
DK
3127 journal_dev = new_decode_dev(journal_devnum);
3128 } else
3129 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3130
3131 really_read_only = bdev_read_only(sb->s_bdev);
3132
3133 /*
3134 * Are we loading a blank journal or performing recovery after a
3135 * crash? For recovery, we need to check in advance whether we
3136 * can get read-write access to the device.
3137 */
617ba13b 3138 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
ac27a0ec 3139 if (sb->s_flags & MS_RDONLY) {
b31e1552
ES
3140 ext4_msg(sb, KERN_INFO, "INFO: recovery "
3141 "required on readonly filesystem");
ac27a0ec 3142 if (really_read_only) {
b31e1552
ES
3143 ext4_msg(sb, KERN_ERR, "write access "
3144 "unavailable, cannot proceed");
ac27a0ec
DK
3145 return -EROFS;
3146 }
b31e1552
ES
3147 ext4_msg(sb, KERN_INFO, "write access will "
3148 "be enabled during recovery");
ac27a0ec
DK
3149 }
3150 }
3151
3152 if (journal_inum && journal_dev) {
b31e1552
ES
3153 ext4_msg(sb, KERN_ERR, "filesystem has both journal "
3154 "and inode journals!");
ac27a0ec
DK
3155 return -EINVAL;
3156 }
3157
3158 if (journal_inum) {
617ba13b 3159 if (!(journal = ext4_get_journal(sb, journal_inum)))
ac27a0ec
DK
3160 return -EINVAL;
3161 } else {
617ba13b 3162 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
ac27a0ec
DK
3163 return -EINVAL;
3164 }
3165
4776004f 3166 if (journal->j_flags & JBD2_BARRIER)
b31e1552 3167 ext4_msg(sb, KERN_INFO, "barriers enabled");
4776004f 3168 else
b31e1552 3169 ext4_msg(sb, KERN_INFO, "barriers disabled");
4776004f 3170
ac27a0ec 3171 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
dab291af 3172 err = jbd2_journal_update_format(journal);
ac27a0ec 3173 if (err) {
b31e1552 3174 ext4_msg(sb, KERN_ERR, "error updating journal");
dab291af 3175 jbd2_journal_destroy(journal);
ac27a0ec
DK
3176 return err;
3177 }
3178 }
3179
617ba13b 3180 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
dab291af 3181 err = jbd2_journal_wipe(journal, !really_read_only);
ac27a0ec 3182 if (!err)
dab291af 3183 err = jbd2_journal_load(journal);
ac27a0ec
DK
3184
3185 if (err) {
b31e1552 3186 ext4_msg(sb, KERN_ERR, "error loading journal");
dab291af 3187 jbd2_journal_destroy(journal);
ac27a0ec
DK
3188 return err;
3189 }
3190
617ba13b
MC
3191 EXT4_SB(sb)->s_journal = journal;
3192 ext4_clear_journal_err(sb, es);
ac27a0ec
DK
3193
3194 if (journal_devnum &&
3195 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3196 es->s_journal_dev = cpu_to_le32(journal_devnum);
ac27a0ec
DK
3197
3198 /* Make sure we flush the recovery flag to disk. */
e2d67052 3199 ext4_commit_super(sb, 1);
ac27a0ec
DK
3200 }
3201
3202 return 0;
3203}
3204
e2d67052 3205static int ext4_commit_super(struct super_block *sb, int sync)
ac27a0ec 3206{
e2d67052 3207 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
617ba13b 3208 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
c4be0c1d 3209 int error = 0;
ac27a0ec
DK
3210
3211 if (!sbh)
c4be0c1d 3212 return error;
914258bf
TT
3213 if (buffer_write_io_error(sbh)) {
3214 /*
3215 * Oh, dear. A previous attempt to write the
3216 * superblock failed. This could happen because the
3217 * USB device was yanked out. Or it could happen to
3218 * be a transient write error and maybe the block will
3219 * be remapped. Nothing we can do but to retry the
3220 * write and hope for the best.
3221 */
b31e1552
ES
3222 ext4_msg(sb, KERN_ERR, "previous I/O error to "
3223 "superblock detected");
914258bf
TT
3224 clear_buffer_write_io_error(sbh);
3225 set_buffer_uptodate(sbh);
3226 }
ac27a0ec 3227 es->s_wtime = cpu_to_le32(get_seconds());
afc32f7e
TT
3228 es->s_kbytes_written =
3229 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3230 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3231 EXT4_SB(sb)->s_sectors_written_start) >> 1));
5d1b1b3f
AK
3232 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3233 &EXT4_SB(sb)->s_freeblocks_counter));
3234 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3235 &EXT4_SB(sb)->s_freeinodes_counter));
7234ab2a 3236 sb->s_dirt = 0;
ac27a0ec
DK
3237 BUFFER_TRACE(sbh, "marking dirty");
3238 mark_buffer_dirty(sbh);
914258bf 3239 if (sync) {
c4be0c1d
TS
3240 error = sync_dirty_buffer(sbh);
3241 if (error)
3242 return error;
3243
3244 error = buffer_write_io_error(sbh);
3245 if (error) {
b31e1552
ES
3246 ext4_msg(sb, KERN_ERR, "I/O error while writing "
3247 "superblock");
914258bf
TT
3248 clear_buffer_write_io_error(sbh);
3249 set_buffer_uptodate(sbh);
3250 }
3251 }
c4be0c1d 3252 return error;
ac27a0ec
DK
3253}
3254
ac27a0ec
DK
3255/*
3256 * Have we just finished recovery? If so, and if we are mounting (or
3257 * remounting) the filesystem readonly, then we will end up with a
3258 * consistent fs on disk. Record that fact.
3259 */
2b2d6d01
TT
3260static void ext4_mark_recovery_complete(struct super_block *sb,
3261 struct ext4_super_block *es)
ac27a0ec 3262{
617ba13b 3263 journal_t *journal = EXT4_SB(sb)->s_journal;
ac27a0ec 3264
0390131b
FM
3265 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3266 BUG_ON(journal != NULL);
3267 return;
3268 }
dab291af 3269 jbd2_journal_lock_updates(journal);
7ffe1ea8
HK
3270 if (jbd2_journal_flush(journal) < 0)
3271 goto out;
3272
617ba13b 3273 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
ac27a0ec 3274 sb->s_flags & MS_RDONLY) {
617ba13b 3275 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
e2d67052 3276 ext4_commit_super(sb, 1);
ac27a0ec 3277 }
7ffe1ea8
HK
3278
3279out:
dab291af 3280 jbd2_journal_unlock_updates(journal);
ac27a0ec
DK
3281}
3282
3283/*
3284 * If we are mounting (or read-write remounting) a filesystem whose journal
3285 * has recorded an error from a previous lifetime, move that error to the
3286 * main filesystem now.
3287 */
2b2d6d01
TT
3288static void ext4_clear_journal_err(struct super_block *sb,
3289 struct ext4_super_block *es)
ac27a0ec
DK
3290{
3291 journal_t *journal;
3292 int j_errno;
3293 const char *errstr;
3294
0390131b
FM
3295 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3296
617ba13b 3297 journal = EXT4_SB(sb)->s_journal;
ac27a0ec
DK
3298
3299 /*
3300 * Now check for any error status which may have been recorded in the
617ba13b 3301 * journal by a prior ext4_error() or ext4_abort()
ac27a0ec
DK
3302 */
3303
dab291af 3304 j_errno = jbd2_journal_errno(journal);
ac27a0ec
DK
3305 if (j_errno) {
3306 char nbuf[16];
3307
617ba13b 3308 errstr = ext4_decode_error(sb, j_errno, nbuf);
46e665e9 3309 ext4_warning(sb, __func__, "Filesystem error recorded "
ac27a0ec 3310 "from previous mount: %s", errstr);
46e665e9 3311 ext4_warning(sb, __func__, "Marking fs in need of "
ac27a0ec
DK
3312 "filesystem check.");
3313
617ba13b
MC
3314 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3315 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
e2d67052 3316 ext4_commit_super(sb, 1);
ac27a0ec 3317
dab291af 3318 jbd2_journal_clear_err(journal);
ac27a0ec
DK
3319 }
3320}
3321
3322/*
3323 * Force the running and committing transactions to commit,
3324 * and wait on the commit.
3325 */
617ba13b 3326int ext4_force_commit(struct super_block *sb)
ac27a0ec
DK
3327{
3328 journal_t *journal;
0390131b 3329 int ret = 0;
ac27a0ec
DK
3330
3331 if (sb->s_flags & MS_RDONLY)
3332 return 0;
3333
617ba13b 3334 journal = EXT4_SB(sb)->s_journal;
7234ab2a 3335 if (journal)
0390131b 3336 ret = ext4_journal_force_commit(journal);
0390131b 3337
ac27a0ec
DK
3338 return ret;
3339}
3340
2b2d6d01 3341static void ext4_write_super(struct super_block *sb)
ac27a0ec 3342{
ebc1ac16 3343 lock_super(sb);
9ca92389 3344 ext4_commit_super(sb, 1);
ebc1ac16 3345 unlock_super(sb);
ac27a0ec
DK
3346}
3347
617ba13b 3348static int ext4_sync_fs(struct super_block *sb, int wait)
ac27a0ec 3349{
14ce0cb4 3350 int ret = 0;
9eddacf9 3351 tid_t target;
ac27a0ec 3352
9bffad1e 3353 trace_ext4_sync_fs(sb, wait);
9ca92389
TT
3354 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal, &target)) {
3355 if (wait)
3356 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal, target);
0390131b 3357 }
14ce0cb4 3358 return ret;
ac27a0ec
DK
3359}
3360
3361/*
3362 * LVM calls this function before a (read-only) snapshot is created. This
3363 * gives us a chance to flush the journal completely and mark the fs clean.
3364 */
c4be0c1d 3365static int ext4_freeze(struct super_block *sb)
ac27a0ec 3366{
c4be0c1d
TS
3367 int error = 0;
3368 journal_t *journal;
ac27a0ec 3369
9ca92389
TT
3370 if (sb->s_flags & MS_RDONLY)
3371 return 0;
ac27a0ec 3372
9ca92389 3373 journal = EXT4_SB(sb)->s_journal;
7ffe1ea8 3374
9ca92389
TT
3375 /* Now we set up the journal barrier. */
3376 jbd2_journal_lock_updates(journal);
ac27a0ec 3377
9ca92389
TT
3378 /*
3379 * Don't clear the needs_recovery flag if we failed to flush
3380 * the journal.
3381 */
3382 error = jbd2_journal_flush(journal);
3383 if (error < 0) {
3384 out:
3385 jbd2_journal_unlock_updates(journal);
3386 return error;
ac27a0ec 3387 }
9ca92389
TT
3388
3389 /* Journal blocked and flushed, clear needs_recovery flag. */
3390 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3391 error = ext4_commit_super(sb, 1);
3392 if (error)
3393 goto out;
c4be0c1d 3394 return 0;
ac27a0ec
DK
3395}
3396
3397/*
3398 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3399 * flag here, even though the filesystem is not technically dirty yet.
3400 */
c4be0c1d 3401static int ext4_unfreeze(struct super_block *sb)
ac27a0ec 3402{
9ca92389
TT
3403 if (sb->s_flags & MS_RDONLY)
3404 return 0;
3405
3406 lock_super(sb);
3407 /* Reset the needs_recovery flag before the fs is unlocked. */
3408 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3409 ext4_commit_super(sb, 1);
3410 unlock_super(sb);
3411 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
c4be0c1d 3412 return 0;
ac27a0ec
DK
3413}
3414
2b2d6d01 3415static int ext4_remount(struct super_block *sb, int *flags, char *data)
ac27a0ec 3416{
2b2d6d01 3417 struct ext4_super_block *es;
617ba13b
MC
3418 struct ext4_sb_info *sbi = EXT4_SB(sb);
3419 ext4_fsblk_t n_blocks_count = 0;
ac27a0ec 3420 unsigned long old_sb_flags;
617ba13b 3421 struct ext4_mount_options old_opts;
8a266467 3422 ext4_group_t g;
b3881f74 3423 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
ac27a0ec
DK
3424 int err;
3425#ifdef CONFIG_QUOTA
3426 int i;
3427#endif
3428
337eb00a
AIB
3429 lock_kernel();
3430
ac27a0ec 3431 /* Store the original options */
bbd6851a 3432 lock_super(sb);
ac27a0ec
DK
3433 old_sb_flags = sb->s_flags;
3434 old_opts.s_mount_opt = sbi->s_mount_opt;
3435 old_opts.s_resuid = sbi->s_resuid;
3436 old_opts.s_resgid = sbi->s_resgid;
3437 old_opts.s_commit_interval = sbi->s_commit_interval;
30773840
TT
3438 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3439 old_opts.s_max_batch_time = sbi->s_max_batch_time;
ac27a0ec
DK
3440#ifdef CONFIG_QUOTA
3441 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3442 for (i = 0; i < MAXQUOTAS; i++)
3443 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3444#endif
b3881f74
TT
3445 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3446 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
ac27a0ec
DK
3447
3448 /*
3449 * Allow the "check" option to be passed as a remount option.
3450 */
b3881f74
TT
3451 if (!parse_options(data, sb, NULL, &journal_ioprio,
3452 &n_blocks_count, 1)) {
ac27a0ec
DK
3453 err = -EINVAL;
3454 goto restore_opts;
3455 }
3456
4ab2f15b 3457 if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED)
46e665e9 3458 ext4_abort(sb, __func__, "Abort forced by user");
ac27a0ec
DK
3459
3460 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
617ba13b 3461 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
ac27a0ec
DK
3462
3463 es = sbi->s_es;
3464
b3881f74 3465 if (sbi->s_journal) {
0390131b 3466 ext4_init_journal_params(sb, sbi->s_journal);
b3881f74
TT
3467 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3468 }
ac27a0ec
DK
3469
3470 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
bd81d8ee 3471 n_blocks_count > ext4_blocks_count(es)) {
4ab2f15b 3472 if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED) {
ac27a0ec
DK
3473 err = -EROFS;
3474 goto restore_opts;
3475 }
3476
3477 if (*flags & MS_RDONLY) {
3478 /*
3479 * First of all, the unconditional stuff we have to do
3480 * to disable replay of the journal when we next remount
3481 */
3482 sb->s_flags |= MS_RDONLY;
3483
3484 /*
3485 * OK, test if we are remounting a valid rw partition
3486 * readonly, and if so set the rdonly flag and then
3487 * mark the partition as valid again.
3488 */
617ba13b
MC
3489 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3490 (sbi->s_mount_state & EXT4_VALID_FS))
ac27a0ec
DK
3491 es->s_state = cpu_to_le16(sbi->s_mount_state);
3492
a63c9eb2 3493 if (sbi->s_journal)
0390131b 3494 ext4_mark_recovery_complete(sb, es);
ac27a0ec 3495 } else {
3a06d778 3496 int ret;
617ba13b
MC
3497 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3498 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
b31e1552 3499 ext4_msg(sb, KERN_WARNING, "couldn't "
ac27a0ec 3500 "remount RDWR because of unsupported "
b31e1552 3501 "optional features (%x)",
3a06d778
AK
3502 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3503 ~EXT4_FEATURE_RO_COMPAT_SUPP));
ac27a0ec
DK
3504 err = -EROFS;
3505 goto restore_opts;
3506 }
ead6596b 3507
8a266467
TT
3508 /*
3509 * Make sure the group descriptor checksums
0b8e58a1 3510 * are sane. If they aren't, refuse to remount r/w.
8a266467
TT
3511 */
3512 for (g = 0; g < sbi->s_groups_count; g++) {
3513 struct ext4_group_desc *gdp =
3514 ext4_get_group_desc(sb, g, NULL);
3515
3516 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
b31e1552
ES
3517 ext4_msg(sb, KERN_ERR,
3518 "ext4_remount: Checksum for group %u failed (%u!=%u)",
8a266467
TT
3519 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3520 le16_to_cpu(gdp->bg_checksum));
3521 err = -EINVAL;
3522 goto restore_opts;
3523 }
3524 }
3525
ead6596b
ES
3526 /*
3527 * If we have an unprocessed orphan list hanging
3528 * around from a previously readonly bdev mount,
3529 * require a full umount/remount for now.
3530 */
3531 if (es->s_last_orphan) {
b31e1552 3532 ext4_msg(sb, KERN_WARNING, "Couldn't "
ead6596b
ES
3533 "remount RDWR because of unprocessed "
3534 "orphan inode list. Please "
b31e1552 3535 "umount/remount instead");
ead6596b
ES
3536 err = -EINVAL;
3537 goto restore_opts;
3538 }
3539
ac27a0ec
DK
3540 /*
3541 * Mounting a RDONLY partition read-write, so reread
3542 * and store the current valid flag. (It may have
3543 * been changed by e2fsck since we originally mounted
3544 * the partition.)
3545 */
0390131b
FM
3546 if (sbi->s_journal)
3547 ext4_clear_journal_err(sb, es);
ac27a0ec 3548 sbi->s_mount_state = le16_to_cpu(es->s_state);
617ba13b 3549 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
ac27a0ec 3550 goto restore_opts;
2b2d6d01 3551 if (!ext4_setup_super(sb, es, 0))
ac27a0ec
DK
3552 sb->s_flags &= ~MS_RDONLY;
3553 }
3554 }
6fd058f7 3555 ext4_setup_system_zone(sb);
0390131b 3556 if (sbi->s_journal == NULL)
e2d67052 3557 ext4_commit_super(sb, 1);
0390131b 3558
ac27a0ec
DK
3559#ifdef CONFIG_QUOTA
3560 /* Release old quota file names */
3561 for (i = 0; i < MAXQUOTAS; i++)
3562 if (old_opts.s_qf_names[i] &&
3563 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3564 kfree(old_opts.s_qf_names[i]);
3565#endif
bbd6851a 3566 unlock_super(sb);
337eb00a 3567 unlock_kernel();
ac27a0ec 3568 return 0;
0b8e58a1 3569
ac27a0ec
DK
3570restore_opts:
3571 sb->s_flags = old_sb_flags;
3572 sbi->s_mount_opt = old_opts.s_mount_opt;
3573 sbi->s_resuid = old_opts.s_resuid;
3574 sbi->s_resgid = old_opts.s_resgid;
3575 sbi->s_commit_interval = old_opts.s_commit_interval;
30773840
TT
3576 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3577 sbi->s_max_batch_time = old_opts.s_max_batch_time;
ac27a0ec
DK
3578#ifdef CONFIG_QUOTA
3579 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3580 for (i = 0; i < MAXQUOTAS; i++) {
3581 if (sbi->s_qf_names[i] &&
3582 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3583 kfree(sbi->s_qf_names[i]);
3584 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3585 }
3586#endif
bbd6851a 3587 unlock_super(sb);
337eb00a 3588 unlock_kernel();
ac27a0ec
DK
3589 return err;
3590}
3591
2b2d6d01 3592static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
ac27a0ec
DK
3593{
3594 struct super_block *sb = dentry->d_sb;
617ba13b
MC
3595 struct ext4_sb_info *sbi = EXT4_SB(sb);
3596 struct ext4_super_block *es = sbi->s_es;
960cc398 3597 u64 fsid;
ac27a0ec 3598
5e70030d
BP
3599 if (test_opt(sb, MINIX_DF)) {
3600 sbi->s_overhead_last = 0;
6bc9feff 3601 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
8df9675f 3602 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
5e70030d 3603 ext4_fsblk_t overhead = 0;
ac27a0ec
DK
3604
3605 /*
5e70030d
BP
3606 * Compute the overhead (FS structures). This is constant
3607 * for a given filesystem unless the number of block groups
3608 * changes so we cache the previous value until it does.
ac27a0ec
DK
3609 */
3610
3611 /*
3612 * All of the blocks before first_data_block are
3613 * overhead
3614 */
3615 overhead = le32_to_cpu(es->s_first_data_block);
3616
3617 /*
3618 * Add the overhead attributed to the superblock and
3619 * block group descriptors. If the sparse superblocks
3620 * feature is turned on, then not all groups have this.
3621 */
3622 for (i = 0; i < ngroups; i++) {
617ba13b
MC
3623 overhead += ext4_bg_has_super(sb, i) +
3624 ext4_bg_num_gdb(sb, i);
ac27a0ec
DK
3625 cond_resched();
3626 }
3627
3628 /*
3629 * Every block group has an inode bitmap, a block
3630 * bitmap, and an inode table.
3631 */
5e70030d
BP
3632 overhead += ngroups * (2 + sbi->s_itb_per_group);
3633 sbi->s_overhead_last = overhead;
3634 smp_wmb();
6bc9feff 3635 sbi->s_blocks_last = ext4_blocks_count(es);
ac27a0ec
DK
3636 }
3637
617ba13b 3638 buf->f_type = EXT4_SUPER_MAGIC;
ac27a0ec 3639 buf->f_bsize = sb->s_blocksize;
5e70030d 3640 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
6bc6e63f
AK
3641 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3642 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
308ba3ec 3643 ext4_free_blocks_count_set(es, buf->f_bfree);
bd81d8ee
LV
3644 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3645 if (buf->f_bfree < ext4_r_blocks_count(es))
ac27a0ec
DK
3646 buf->f_bavail = 0;
3647 buf->f_files = le32_to_cpu(es->s_inodes_count);
52d9f3b4 3648 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
5e70030d 3649 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
617ba13b 3650 buf->f_namelen = EXT4_NAME_LEN;
960cc398
PE
3651 fsid = le64_to_cpup((void *)es->s_uuid) ^
3652 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3653 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3654 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
0b8e58a1 3655
ac27a0ec
DK
3656 return 0;
3657}
3658
0b8e58a1
AD
3659/* Helper function for writing quotas on sync - we need to start transaction
3660 * before quota file is locked for write. Otherwise the are possible deadlocks:
ac27a0ec 3661 * Process 1 Process 2
617ba13b 3662 * ext4_create() quota_sync()
a269eb18
JK
3663 * jbd2_journal_start() write_dquot()
3664 * vfs_dq_init() down(dqio_mutex)
dab291af 3665 * down(dqio_mutex) jbd2_journal_start()
ac27a0ec
DK
3666 *
3667 */
3668
3669#ifdef CONFIG_QUOTA
3670
3671static inline struct inode *dquot_to_inode(struct dquot *dquot)
3672{
3673 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3674}
3675
617ba13b 3676static int ext4_write_dquot(struct dquot *dquot)
ac27a0ec
DK
3677{
3678 int ret, err;
3679 handle_t *handle;
3680 struct inode *inode;
3681
3682 inode = dquot_to_inode(dquot);
617ba13b 3683 handle = ext4_journal_start(inode,
0b8e58a1 3684 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
ac27a0ec
DK
3685 if (IS_ERR(handle))
3686 return PTR_ERR(handle);
3687 ret = dquot_commit(dquot);
617ba13b 3688 err = ext4_journal_stop(handle);
ac27a0ec
DK
3689 if (!ret)
3690 ret = err;
3691 return ret;
3692}
3693
617ba13b 3694static int ext4_acquire_dquot(struct dquot *dquot)
ac27a0ec
DK
3695{
3696 int ret, err;
3697 handle_t *handle;
3698
617ba13b 3699 handle = ext4_journal_start(dquot_to_inode(dquot),
0b8e58a1 3700 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
ac27a0ec
DK
3701 if (IS_ERR(handle))
3702 return PTR_ERR(handle);
3703 ret = dquot_acquire(dquot);
617ba13b 3704 err = ext4_journal_stop(handle);
ac27a0ec
DK
3705 if (!ret)
3706 ret = err;
3707 return ret;
3708}
3709
617ba13b 3710static int ext4_release_dquot(struct dquot *dquot)
ac27a0ec
DK
3711{
3712 int ret, err;
3713 handle_t *handle;
3714
617ba13b 3715 handle = ext4_journal_start(dquot_to_inode(dquot),
0b8e58a1 3716 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
9c3013e9
JK
3717 if (IS_ERR(handle)) {
3718 /* Release dquot anyway to avoid endless cycle in dqput() */
3719 dquot_release(dquot);
ac27a0ec 3720 return PTR_ERR(handle);
9c3013e9 3721 }
ac27a0ec 3722 ret = dquot_release(dquot);
617ba13b 3723 err = ext4_journal_stop(handle);
ac27a0ec
DK
3724 if (!ret)
3725 ret = err;
3726 return ret;
3727}
3728
617ba13b 3729static int ext4_mark_dquot_dirty(struct dquot *dquot)
ac27a0ec 3730{
2c8be6b2 3731 /* Are we journaling quotas? */
617ba13b
MC
3732 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3733 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
ac27a0ec 3734 dquot_mark_dquot_dirty(dquot);
617ba13b 3735 return ext4_write_dquot(dquot);
ac27a0ec
DK
3736 } else {
3737 return dquot_mark_dquot_dirty(dquot);
3738 }
3739}
3740
617ba13b 3741static int ext4_write_info(struct super_block *sb, int type)
ac27a0ec
DK
3742{
3743 int ret, err;
3744 handle_t *handle;
3745
3746 /* Data block + inode block */
617ba13b 3747 handle = ext4_journal_start(sb->s_root->d_inode, 2);
ac27a0ec
DK
3748 if (IS_ERR(handle))
3749 return PTR_ERR(handle);
3750 ret = dquot_commit_info(sb, type);
617ba13b 3751 err = ext4_journal_stop(handle);
ac27a0ec
DK
3752 if (!ret)
3753 ret = err;
3754 return ret;
3755}
3756
3757/*
3758 * Turn on quotas during mount time - we need to find
3759 * the quota file and such...
3760 */
617ba13b 3761static int ext4_quota_on_mount(struct super_block *sb, int type)
ac27a0ec 3762{
617ba13b 3763 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
0b8e58a1 3764 EXT4_SB(sb)->s_jquota_fmt, type);
ac27a0ec
DK
3765}
3766
3767/*
3768 * Standard function to be called on quota_on
3769 */
617ba13b 3770static int ext4_quota_on(struct super_block *sb, int type, int format_id,
8264613d 3771 char *name, int remount)
ac27a0ec
DK
3772{
3773 int err;
8264613d 3774 struct path path;
ac27a0ec
DK
3775
3776 if (!test_opt(sb, QUOTA))
3777 return -EINVAL;
8264613d 3778 /* When remounting, no checks are needed and in fact, name is NULL */
0623543b 3779 if (remount)
8264613d 3780 return vfs_quota_on(sb, type, format_id, name, remount);
0623543b 3781
8264613d 3782 err = kern_path(name, LOOKUP_FOLLOW, &path);
ac27a0ec
DK
3783 if (err)
3784 return err;
0623543b 3785
ac27a0ec 3786 /* Quotafile not on the same filesystem? */
8264613d
AV
3787 if (path.mnt->mnt_sb != sb) {
3788 path_put(&path);
ac27a0ec
DK
3789 return -EXDEV;
3790 }
0623543b
JK
3791 /* Journaling quota? */
3792 if (EXT4_SB(sb)->s_qf_names[type]) {
2b2d6d01 3793 /* Quotafile not in fs root? */
8264613d 3794 if (path.dentry->d_parent != sb->s_root)
b31e1552
ES
3795 ext4_msg(sb, KERN_WARNING,
3796 "Quota file not on filesystem root. "
3797 "Journaled quota will not work");
2b2d6d01 3798 }
0623543b
JK
3799
3800 /*
3801 * When we journal data on quota file, we have to flush journal to see
3802 * all updates to the file when we bypass pagecache...
3803 */
0390131b
FM
3804 if (EXT4_SB(sb)->s_journal &&
3805 ext4_should_journal_data(path.dentry->d_inode)) {
0623543b
JK
3806 /*
3807 * We don't need to lock updates but journal_flush() could
3808 * otherwise be livelocked...
3809 */
3810 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
7ffe1ea8 3811 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
0623543b 3812 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
7ffe1ea8 3813 if (err) {
8264613d 3814 path_put(&path);
7ffe1ea8
HK
3815 return err;
3816 }
0623543b
JK
3817 }
3818
8264613d
AV
3819 err = vfs_quota_on_path(sb, type, format_id, &path);
3820 path_put(&path);
77e69dac 3821 return err;
ac27a0ec
DK
3822}
3823
3824/* Read data from quotafile - avoid pagecache and such because we cannot afford
3825 * acquiring the locks... As quota files are never truncated and quota code
3826 * itself serializes the operations (and noone else should touch the files)
3827 * we don't have to be afraid of races */
617ba13b 3828static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
ac27a0ec
DK
3829 size_t len, loff_t off)
3830{
3831 struct inode *inode = sb_dqopt(sb)->files[type];
725d26d3 3832 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
ac27a0ec
DK
3833 int err = 0;
3834 int offset = off & (sb->s_blocksize - 1);
3835 int tocopy;
3836 size_t toread;
3837 struct buffer_head *bh;
3838 loff_t i_size = i_size_read(inode);
3839
3840 if (off > i_size)
3841 return 0;
3842 if (off+len > i_size)
3843 len = i_size-off;
3844 toread = len;
3845 while (toread > 0) {
3846 tocopy = sb->s_blocksize - offset < toread ?
3847 sb->s_blocksize - offset : toread;
617ba13b 3848 bh = ext4_bread(NULL, inode, blk, 0, &err);
ac27a0ec
DK
3849 if (err)
3850 return err;
3851 if (!bh) /* A hole? */
3852 memset(data, 0, tocopy);
3853 else
3854 memcpy(data, bh->b_data+offset, tocopy);
3855 brelse(bh);
3856 offset = 0;
3857 toread -= tocopy;
3858 data += tocopy;
3859 blk++;
3860 }
3861 return len;
3862}
3863
3864/* Write to quotafile (we know the transaction is already started and has
3865 * enough credits) */
617ba13b 3866static ssize_t ext4_quota_write(struct super_block *sb, int type,
ac27a0ec
DK
3867 const char *data, size_t len, loff_t off)
3868{
3869 struct inode *inode = sb_dqopt(sb)->files[type];
725d26d3 3870 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
ac27a0ec
DK
3871 int err = 0;
3872 int offset = off & (sb->s_blocksize - 1);
3873 int tocopy;
617ba13b 3874 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
ac27a0ec
DK
3875 size_t towrite = len;
3876 struct buffer_head *bh;
3877 handle_t *handle = journal_current_handle();
3878
0390131b 3879 if (EXT4_SB(sb)->s_journal && !handle) {
b31e1552
ES
3880 ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
3881 " cancelled because transaction is not started",
9c3013e9
JK
3882 (unsigned long long)off, (unsigned long long)len);
3883 return -EIO;
3884 }
ac27a0ec
DK
3885 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3886 while (towrite > 0) {
3887 tocopy = sb->s_blocksize - offset < towrite ?
3888 sb->s_blocksize - offset : towrite;
617ba13b 3889 bh = ext4_bread(handle, inode, blk, 1, &err);
ac27a0ec
DK
3890 if (!bh)
3891 goto out;
3892 if (journal_quota) {
617ba13b 3893 err = ext4_journal_get_write_access(handle, bh);
ac27a0ec
DK
3894 if (err) {
3895 brelse(bh);
3896 goto out;
3897 }
3898 }
3899 lock_buffer(bh);
3900 memcpy(bh->b_data+offset, data, tocopy);
3901 flush_dcache_page(bh->b_page);
3902 unlock_buffer(bh);
3903 if (journal_quota)
0390131b 3904 err = ext4_handle_dirty_metadata(handle, NULL, bh);
ac27a0ec
DK
3905 else {
3906 /* Always do at least ordered writes for quotas */
678aaf48 3907 err = ext4_jbd2_file_inode(handle, inode);
ac27a0ec
DK
3908 mark_buffer_dirty(bh);
3909 }
3910 brelse(bh);
3911 if (err)
3912 goto out;
3913 offset = 0;
3914 towrite -= tocopy;
3915 data += tocopy;
3916 blk++;
3917 }
3918out:
4d04e4fb
JK
3919 if (len == towrite) {
3920 mutex_unlock(&inode->i_mutex);
ac27a0ec 3921 return err;
4d04e4fb 3922 }
ac27a0ec
DK
3923 if (inode->i_size < off+len-towrite) {
3924 i_size_write(inode, off+len-towrite);
617ba13b 3925 EXT4_I(inode)->i_disksize = inode->i_size;
ac27a0ec 3926 }
ac27a0ec 3927 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
617ba13b 3928 ext4_mark_inode_dirty(handle, inode);
ac27a0ec
DK
3929 mutex_unlock(&inode->i_mutex);
3930 return len - towrite;
3931}
3932
3933#endif
3934
0b8e58a1
AD
3935static int ext4_get_sb(struct file_system_type *fs_type, int flags,
3936 const char *dev_name, void *data, struct vfsmount *mnt)
ac27a0ec 3937{
0b8e58a1 3938 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
ac27a0ec
DK
3939}
3940
03010a33
TT
3941static struct file_system_type ext4_fs_type = {
3942 .owner = THIS_MODULE,
3943 .name = "ext4",
3944 .get_sb = ext4_get_sb,
3945 .kill_sb = kill_block_super,
3946 .fs_flags = FS_REQUIRES_DEV,
3947};
3948
3949#ifdef CONFIG_EXT4DEV_COMPAT
0b8e58a1
AD
3950static int ext4dev_get_sb(struct file_system_type *fs_type, int flags,
3951 const char *dev_name, void *data,struct vfsmount *mnt)
03010a33 3952{
b31e1552
ES
3953 printk(KERN_WARNING "EXT4-fs (%s): Update your userspace programs "
3954 "to mount using ext4\n", dev_name);
3955 printk(KERN_WARNING "EXT4-fs (%s): ext4dev backwards compatibility "
3956 "will go away by 2.6.31\n", dev_name);
0b8e58a1 3957 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
03010a33
TT
3958}
3959
617ba13b 3960static struct file_system_type ext4dev_fs_type = {
ac27a0ec 3961 .owner = THIS_MODULE,
617ba13b 3962 .name = "ext4dev",
03010a33 3963 .get_sb = ext4dev_get_sb,
ac27a0ec
DK
3964 .kill_sb = kill_block_super,
3965 .fs_flags = FS_REQUIRES_DEV,
3966};
03010a33
TT
3967MODULE_ALIAS("ext4dev");
3968#endif
ac27a0ec 3969
617ba13b 3970static int __init init_ext4_fs(void)
ac27a0ec 3971{
c9de560d
AT
3972 int err;
3973
6fd058f7
TT
3974 err = init_ext4_system_zone();
3975 if (err)
3976 return err;
3197ebdb
TT
3977 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3978 if (!ext4_kset)
6fd058f7 3979 goto out4;
9f6200bb 3980 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
c9de560d 3981 err = init_ext4_mballoc();
ac27a0ec 3982 if (err)
6fd058f7 3983 goto out3;
c9de560d
AT
3984
3985 err = init_ext4_xattr();
3986 if (err)
3987 goto out2;
ac27a0ec
DK
3988 err = init_inodecache();
3989 if (err)
3990 goto out1;
03010a33 3991 err = register_filesystem(&ext4_fs_type);
ac27a0ec
DK
3992 if (err)
3993 goto out;
03010a33
TT
3994#ifdef CONFIG_EXT4DEV_COMPAT
3995 err = register_filesystem(&ext4dev_fs_type);
3996 if (err) {
3997 unregister_filesystem(&ext4_fs_type);
3998 goto out;
3999 }
4000#endif
ac27a0ec
DK
4001 return 0;
4002out:
4003 destroy_inodecache();
4004out1:
617ba13b 4005 exit_ext4_xattr();
c9de560d
AT
4006out2:
4007 exit_ext4_mballoc();
6fd058f7
TT
4008out3:
4009 remove_proc_entry("fs/ext4", NULL);
4010 kset_unregister(ext4_kset);
4011out4:
4012 exit_ext4_system_zone();
ac27a0ec
DK
4013 return err;
4014}
4015
617ba13b 4016static void __exit exit_ext4_fs(void)
ac27a0ec 4017{
03010a33
TT
4018 unregister_filesystem(&ext4_fs_type);
4019#ifdef CONFIG_EXT4DEV_COMPAT
617ba13b 4020 unregister_filesystem(&ext4dev_fs_type);
03010a33 4021#endif
ac27a0ec 4022 destroy_inodecache();
617ba13b 4023 exit_ext4_xattr();
c9de560d 4024 exit_ext4_mballoc();
9f6200bb 4025 remove_proc_entry("fs/ext4", NULL);
3197ebdb 4026 kset_unregister(ext4_kset);
6fd058f7 4027 exit_ext4_system_zone();
ac27a0ec
DK
4028}
4029
4030MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
83982b6f 4031MODULE_DESCRIPTION("Fourth Extended Filesystem");
ac27a0ec 4032MODULE_LICENSE("GPL");
617ba13b
MC
4033module_init(init_ext4_fs)
4034module_exit(exit_ext4_fs)
This page took 0.601673 seconds and 5 git commands to generate.