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