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