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