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