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