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