blob: b3090416a936d64ac644c864ffcce301d2fdbf58 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext2/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
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/string.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070021#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
23#include <linux/init.h>
24#include <linux/blkdev.h>
25#include <linux/parser.h>
26#include <linux/random.h>
27#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070028#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/vfs.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070030#include <linux/seq_file.h>
31#include <linux/mount.h>
vignesh babud8ea6cf2007-10-16 23:27:14 -070032#include <linux/log2.h>
Jan Kara74abb982008-07-25 01:46:51 -070033#include <linux/quotaops.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080034#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "ext2.h"
36#include "xattr.h"
37#include "acl.h"
38
Jan Kara65547662017-04-05 13:32:52 +020039static void ext2_write_super(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static int ext2_remount (struct super_block * sb, int * flags, char * data);
David Howells726c3342006-06-23 02:02:58 -070041static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf);
Christoph Hellwig40f31dd2009-06-08 10:04:17 +020042static int ext2_sync_fs(struct super_block *sb, int wait);
Jan Kara1e8b2122012-06-12 16:20:46 +020043static int ext2_freeze(struct super_block *sb);
44static int ext2_unfreeze(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Joe Perches23a2ad62010-11-09 10:16:03 -080046void ext2_error(struct super_block *sb, const char *function,
47 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Joe Perches23a2ad62010-11-09 10:16:03 -080049 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 va_list args;
51 struct ext2_sb_info *sbi = EXT2_SB(sb);
52 struct ext2_super_block *es = sbi->s_es;
53
54 if (!(sb->s_flags & MS_RDONLY)) {
Jan Blunckc15271f2010-04-14 14:38:38 +020055 spin_lock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 sbi->s_mount_state |= EXT2_ERROR_FS;
Marcin Slusarz31f68e12008-04-28 02:16:00 -070057 es->s_state |= cpu_to_le16(EXT2_ERROR_FS);
Jan Blunckc15271f2010-04-14 14:38:38 +020058 spin_unlock(&sbi->s_lock);
Jan Blunckee6921e2010-04-14 14:38:36 +020059 ext2_sync_super(sb, es, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 }
61
62 va_start(args, fmt);
Joe Perches23a2ad62010-11-09 10:16:03 -080063
64 vaf.fmt = fmt;
65 vaf.va = &args;
66
67 printk(KERN_CRIT "EXT2-fs (%s): error: %s: %pV\n",
68 sb->s_id, function, &vaf);
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 va_end(args);
71
72 if (test_opt(sb, ERRORS_PANIC))
Alexey Fisher2314b072009-11-19 19:12:51 +010073 panic("EXT2-fs: panic from previous error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 if (test_opt(sb, ERRORS_RO)) {
Alexey Fisher2314b072009-11-19 19:12:51 +010075 ext2_msg(sb, KERN_CRIT,
76 "error: remounting filesystem read-only");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 sb->s_flags |= MS_RDONLY;
78 }
79}
80
Alexey Fisher2314b072009-11-19 19:12:51 +010081void ext2_msg(struct super_block *sb, const char *prefix,
82 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Joe Perches23a2ad62010-11-09 10:16:03 -080084 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 va_list args;
86
87 va_start(args, fmt);
Joe Perches23a2ad62010-11-09 10:16:03 -080088
89 vaf.fmt = fmt;
90 vaf.va = &args;
91
92 printk("%sEXT2-fs (%s): %pV\n", prefix, sb->s_id, &vaf);
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 va_end(args);
95}
96
Jan Blunckc15271f2010-04-14 14:38:38 +020097/*
98 * This must be called with sbi->s_lock held.
99 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100void ext2_update_dynamic_rev(struct super_block *sb)
101{
102 struct ext2_super_block *es = EXT2_SB(sb)->s_es;
103
104 if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV)
105 return;
106
Alexey Fisher2314b072009-11-19 19:12:51 +0100107 ext2_msg(sb, KERN_WARNING,
108 "warning: updating to rev %d because of "
109 "new feature flag, running e2fsck is recommended",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 EXT2_DYNAMIC_REV);
111
112 es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO);
113 es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE);
114 es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV);
115 /* leave es->s_feature_*compat flags alone */
116 /* es->s_uuid will be set by e2fsck if empty */
117
118 /*
119 * The rest of the superblock fields should be zero, and if not it
120 * means they are likely already in use, so leave them alone. We
121 * can leave it up to e2fsck to clean up any inconsistencies there.
122 */
123}
124
125static void ext2_put_super (struct super_block * sb)
126{
127 int db_count;
128 int i;
129 struct ext2_sb_info *sbi = EXT2_SB(sb);
130
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400131 dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
132
Jan Karabe0726d2016-02-22 11:56:38 -0500133 if (sbi->s_mb_cache) {
134 ext2_xattr_destroy_cache(sbi->s_mb_cache);
135 sbi->s_mb_cache = NULL;
136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 if (!(sb->s_flags & MS_RDONLY)) {
138 struct ext2_super_block *es = sbi->s_es;
139
Jan Blunckc15271f2010-04-14 14:38:38 +0200140 spin_lock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 es->s_state = cpu_to_le16(sbi->s_mount_state);
Jan Blunckc15271f2010-04-14 14:38:38 +0200142 spin_unlock(&sbi->s_lock);
Jan Blunckee6921e2010-04-14 14:38:36 +0200143 ext2_sync_super(sb, es, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 db_count = sbi->s_gdb_count;
146 for (i = 0; i < db_count; i++)
147 if (sbi->s_group_desc[i])
148 brelse (sbi->s_group_desc[i]);
149 kfree(sbi->s_group_desc);
150 kfree(sbi->s_debts);
151 percpu_counter_destroy(&sbi->s_freeblocks_counter);
152 percpu_counter_destroy(&sbi->s_freeinodes_counter);
153 percpu_counter_destroy(&sbi->s_dirs_counter);
154 brelse (sbi->s_sbh);
155 sb->s_fs_info = NULL;
Pekka J Enberg18a82eb2009-01-07 18:07:19 -0800156 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Christoph Lametere18b8902006-12-06 20:33:20 -0800160static struct kmem_cache * ext2_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162static struct inode *ext2_alloc_inode(struct super_block *sb)
163{
164 struct ext2_inode_info *ei;
Himangi Saraogie625b312014-06-10 20:11:18 +0530165 ei = kmem_cache_alloc(ext2_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (!ei)
167 return NULL;
Martin J. Bligha686cd82007-10-16 23:30:46 -0700168 ei->i_block_alloc_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 ei->vfs_inode.i_version = 1;
Jan Kara64241112014-09-25 16:44:45 +0200170#ifdef CONFIG_QUOTA
171 memset(&ei->i_dquot, 0, sizeof(ei->i_dquot));
172#endif
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return &ei->vfs_inode;
175}
176
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100177static void ext2_i_callback(struct rcu_head *head)
178{
179 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100180 kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static void ext2_destroy_inode(struct inode *inode)
184{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100185 call_rcu(&inode->i_rcu, ext2_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700188static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct ext2_inode_info *ei = (struct ext2_inode_info *) foo;
191
Christoph Lametera35afb82007-05-16 22:10:57 -0700192 rwlock_init(&ei->i_meta_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193#ifdef CONFIG_EXT2_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700194 init_rwsem(&ei->xattr_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#endif
Martin J. Bligha686cd82007-10-16 23:30:46 -0700196 mutex_init(&ei->truncate_mutex);
Ross Zwisler5726b272015-10-13 16:25:37 -0600197#ifdef CONFIG_FS_DAX
198 init_rwsem(&ei->dax_sem);
199#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700200 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
Paul Mundt20c2df82007-07-20 10:11:58 +0900202
Fabian Frederick09033532014-02-01 16:02:02 +0800203static int __init init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 ext2_inode_cachep = kmem_cache_create("ext2_inode_cache",
206 sizeof(struct ext2_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800207 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800208 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900209 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (ext2_inode_cachep == NULL)
211 return -ENOMEM;
212 return 0;
213}
214
215static void destroy_inodecache(void)
216{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000217 /*
218 * Make sure all delayed rcu free inodes are flushed before we
219 * destroy cache.
220 */
221 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700222 kmem_cache_destroy(ext2_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Al Viro34c80b12011-12-08 21:32:45 -0500225static int ext2_show_options(struct seq_file *seq, struct dentry *root)
Mark Bellon8fc27512005-09-06 15:16:54 -0700226{
Al Viro34c80b12011-12-08 21:32:45 -0500227 struct super_block *sb = root->d_sb;
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700228 struct ext2_sb_info *sbi = EXT2_SB(sb);
229 struct ext2_super_block *es = sbi->s_es;
230 unsigned long def_mount_opts;
Mark Bellon8fc27512005-09-06 15:16:54 -0700231
Jan Blunckc15271f2010-04-14 14:38:38 +0200232 spin_lock(&sbi->s_lock);
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700233 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
234
235 if (sbi->s_sb_block != 1)
236 seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
237 if (test_opt(sb, MINIX_DF))
238 seq_puts(seq, ",minixdf");
239 if (test_opt(sb, GRPID))
Mark Bellon8fc27512005-09-06 15:16:54 -0700240 seq_puts(seq, ",grpid");
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700241 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT2_DEFM_BSDGROUPS))
242 seq_puts(seq, ",nogrpid");
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800243 if (!uid_eq(sbi->s_resuid, make_kuid(&init_user_ns, EXT2_DEF_RESUID)) ||
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700244 le16_to_cpu(es->s_def_resuid) != EXT2_DEF_RESUID) {
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800245 seq_printf(seq, ",resuid=%u",
246 from_kuid_munged(&init_user_ns, sbi->s_resuid));
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700247 }
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800248 if (!gid_eq(sbi->s_resgid, make_kgid(&init_user_ns, EXT2_DEF_RESGID)) ||
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700249 le16_to_cpu(es->s_def_resgid) != EXT2_DEF_RESGID) {
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800250 seq_printf(seq, ",resgid=%u",
251 from_kgid_munged(&init_user_ns, sbi->s_resgid));
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700252 }
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800253 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700254 int def_errors = le16_to_cpu(es->s_errors);
255
256 if (def_errors == EXT2_ERRORS_PANIC ||
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800257 def_errors == EXT2_ERRORS_CONTINUE) {
258 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700259 }
260 }
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800261 if (test_opt(sb, ERRORS_CONT))
262 seq_puts(seq, ",errors=continue");
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700263 if (test_opt(sb, ERRORS_PANIC))
264 seq_puts(seq, ",errors=panic");
265 if (test_opt(sb, NO_UID32))
266 seq_puts(seq, ",nouid32");
267 if (test_opt(sb, DEBUG))
268 seq_puts(seq, ",debug");
269 if (test_opt(sb, OLDALLOC))
270 seq_puts(seq, ",oldalloc");
271
272#ifdef CONFIG_EXT2_FS_XATTR
273 if (test_opt(sb, XATTR_USER))
274 seq_puts(seq, ",user_xattr");
275 if (!test_opt(sb, XATTR_USER) &&
276 (def_mount_opts & EXT2_DEFM_XATTR_USER)) {
277 seq_puts(seq, ",nouser_xattr");
278 }
279#endif
280
281#ifdef CONFIG_EXT2_FS_POSIX_ACL
282 if (test_opt(sb, POSIX_ACL))
283 seq_puts(seq, ",acl");
284 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT2_DEFM_ACL))
285 seq_puts(seq, ",noacl");
286#endif
287
288 if (test_opt(sb, NOBH))
289 seq_puts(seq, ",nobh");
Mark Bellon8fc27512005-09-06 15:16:54 -0700290
291#if defined(CONFIG_QUOTA)
292 if (sbi->s_mount_opt & EXT2_MOUNT_USRQUOTA)
293 seq_puts(seq, ",usrquota");
294
295 if (sbi->s_mount_opt & EXT2_MOUNT_GRPQUOTA)
296 seq_puts(seq, ",grpquota");
297#endif
298
Matthew Wilcox6cd176a2015-02-16 15:59:25 -0800299#ifdef CONFIG_FS_DAX
Carsten Otte83541792006-02-03 03:04:25 -0800300 if (sbi->s_mount_opt & EXT2_MOUNT_XIP)
301 seq_puts(seq, ",xip");
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800302 if (sbi->s_mount_opt & EXT2_MOUNT_DAX)
303 seq_puts(seq, ",dax");
Carsten Otte83541792006-02-03 03:04:25 -0800304#endif
305
Miklos Szeredi35c879d2008-02-08 04:21:42 -0800306 if (!test_opt(sb, RESERVATION))
307 seq_puts(seq, ",noreservation");
308
Jan Blunckc15271f2010-04-14 14:38:38 +0200309 spin_unlock(&sbi->s_lock);
Mark Bellon8fc27512005-09-06 15:16:54 -0700310 return 0;
311}
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#ifdef CONFIG_QUOTA
314static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data, size_t len, loff_t off);
315static ssize_t ext2_quota_write(struct super_block *sb, int type, const char *data, size_t len, loff_t off);
Jan Kara64241112014-09-25 16:44:45 +0200316static struct dquot **ext2_get_dquots(struct inode *inode)
317{
318 return EXT2_I(inode)->i_dquot;
319}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320#endif
321
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800322static const struct super_operations ext2_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 .alloc_inode = ext2_alloc_inode,
324 .destroy_inode = ext2_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 .write_inode = ext2_write_inode,
Al Viro72edc4d2010-06-04 23:32:28 -0400326 .evict_inode = ext2_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 .put_super = ext2_put_super,
Christoph Hellwig40f31dd2009-06-08 10:04:17 +0200328 .sync_fs = ext2_sync_fs,
Jan Kara1e8b2122012-06-12 16:20:46 +0200329 .freeze_fs = ext2_freeze,
330 .unfreeze_fs = ext2_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 .statfs = ext2_statfs,
332 .remount_fs = ext2_remount,
Mark Bellon8fc27512005-09-06 15:16:54 -0700333 .show_options = ext2_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#ifdef CONFIG_QUOTA
335 .quota_read = ext2_quota_read,
336 .quota_write = ext2_quota_write,
Jan Kara64241112014-09-25 16:44:45 +0200337 .get_dquots = ext2_get_dquots,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#endif
339};
340
Christoph Hellwig2e4c68e2007-10-21 16:42:07 -0700341static struct inode *ext2_nfs_get_inode(struct super_block *sb,
342 u64 ino, u32 generation)
NeilBrownecaff752006-09-16 12:15:37 -0700343{
NeilBrownecaff752006-09-16 12:15:37 -0700344 struct inode *inode;
NeilBrownecaff752006-09-16 12:15:37 -0700345
346 if (ino < EXT2_FIRST_INO(sb) && ino != EXT2_ROOT_INO)
347 return ERR_PTR(-ESTALE);
348 if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
349 return ERR_PTR(-ESTALE);
350
Li Haifengf32948d2011-08-30 17:32:50 +0200351 /*
352 * ext2_iget isn't quite right if the inode is currently unallocated!
353 * However ext2_iget currently does appropriate checks to handle stale
354 * inodes so everything is OK.
NeilBrownecaff752006-09-16 12:15:37 -0700355 */
David Howells52fcf702008-02-07 00:15:35 -0800356 inode = ext2_iget(sb, ino);
357 if (IS_ERR(inode))
358 return ERR_CAST(inode);
359 if (generation && inode->i_generation != generation) {
NeilBrownecaff752006-09-16 12:15:37 -0700360 /* we didn't find the right inode.. */
361 iput(inode);
362 return ERR_PTR(-ESTALE);
363 }
Christoph Hellwig2e4c68e2007-10-21 16:42:07 -0700364 return inode;
365}
366
367static struct dentry *ext2_fh_to_dentry(struct super_block *sb, struct fid *fid,
368 int fh_len, int fh_type)
369{
370 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
371 ext2_nfs_get_inode);
372}
373
374static struct dentry *ext2_fh_to_parent(struct super_block *sb, struct fid *fid,
375 int fh_len, int fh_type)
376{
377 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
378 ext2_nfs_get_inode);
NeilBrownecaff752006-09-16 12:15:37 -0700379}
380
Christoph Hellwig39655162007-10-21 16:42:17 -0700381static const struct export_operations ext2_export_ops = {
Christoph Hellwig2e4c68e2007-10-21 16:42:07 -0700382 .fh_to_dentry = ext2_fh_to_dentry,
383 .fh_to_parent = ext2_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 .get_parent = ext2_get_parent,
385};
386
387static unsigned long get_sb_block(void **data)
388{
389 unsigned long sb_block;
390 char *options = (char *) *data;
391
392 if (!options || strncmp(options, "sb=", 3) != 0)
393 return 1; /* Default location */
394 options += 3;
395 sb_block = simple_strtoul(options, &options, 0);
396 if (*options && *options != ',') {
397 printk("EXT2-fs: Invalid sb specification: %s\n",
398 (char *) *data);
399 return 1;
400 }
401 if (*options == ',')
402 options++;
403 *data = (void *) options;
404 return sb_block;
405}
406
407enum {
408 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
Mark Bellon8fc27512005-09-06 15:16:54 -0700409 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic,
Adrian Bunk2860b732005-11-08 21:34:59 -0800410 Opt_err_ro, Opt_nouid32, Opt_nocheck, Opt_debug,
Mark Bellon8fc27512005-09-06 15:16:54 -0700411 Opt_oldalloc, Opt_orlov, Opt_nobh, Opt_user_xattr, Opt_nouser_xattr,
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800412 Opt_acl, Opt_noacl, Opt_xip, Opt_dax, Opt_ignore, Opt_err, Opt_quota,
Martin J. Bligha686cd82007-10-16 23:30:46 -0700413 Opt_usrquota, Opt_grpquota, Opt_reservation, Opt_noreservation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414};
415
Steven Whitehousea447c092008-10-13 10:46:57 +0100416static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 {Opt_bsd_df, "bsddf"},
418 {Opt_minix_df, "minixdf"},
419 {Opt_grpid, "grpid"},
420 {Opt_grpid, "bsdgroups"},
421 {Opt_nogrpid, "nogrpid"},
422 {Opt_nogrpid, "sysvgroups"},
423 {Opt_resgid, "resgid=%u"},
424 {Opt_resuid, "resuid=%u"},
425 {Opt_sb, "sb=%u"},
426 {Opt_err_cont, "errors=continue"},
427 {Opt_err_panic, "errors=panic"},
428 {Opt_err_ro, "errors=remount-ro"},
429 {Opt_nouid32, "nouid32"},
430 {Opt_nocheck, "check=none"},
431 {Opt_nocheck, "nocheck"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 {Opt_debug, "debug"},
433 {Opt_oldalloc, "oldalloc"},
434 {Opt_orlov, "orlov"},
435 {Opt_nobh, "nobh"},
436 {Opt_user_xattr, "user_xattr"},
437 {Opt_nouser_xattr, "nouser_xattr"},
438 {Opt_acl, "acl"},
439 {Opt_noacl, "noacl"},
Carsten Otte6d791252005-06-23 22:05:26 -0700440 {Opt_xip, "xip"},
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800441 {Opt_dax, "dax"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700442 {Opt_grpquota, "grpquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 {Opt_ignore, "noquota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700444 {Opt_quota, "quota"},
445 {Opt_usrquota, "usrquota"},
Martin J. Bligha686cd82007-10-16 23:30:46 -0700446 {Opt_reservation, "reservation"},
447 {Opt_noreservation, "noreservation"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 {Opt_err, NULL}
449};
450
Alexey Fisher2314b072009-11-19 19:12:51 +0100451static int parse_options(char *options, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Alexey Fisher2314b072009-11-19 19:12:51 +0100453 char *p;
454 struct ext2_sb_info *sbi = EXT2_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 substring_t args[MAX_OPT_ARGS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 int option;
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800457 kuid_t uid;
458 kgid_t gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 if (!options)
461 return 1;
462
463 while ((p = strsep (&options, ",")) != NULL) {
464 int token;
465 if (!*p)
466 continue;
467
468 token = match_token(p, tokens, args);
469 switch (token) {
470 case Opt_bsd_df:
471 clear_opt (sbi->s_mount_opt, MINIX_DF);
472 break;
473 case Opt_minix_df:
474 set_opt (sbi->s_mount_opt, MINIX_DF);
475 break;
476 case Opt_grpid:
477 set_opt (sbi->s_mount_opt, GRPID);
478 break;
479 case Opt_nogrpid:
480 clear_opt (sbi->s_mount_opt, GRPID);
481 break;
482 case Opt_resuid:
483 if (match_int(&args[0], &option))
484 return 0;
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800485 uid = make_kuid(current_user_ns(), option);
486 if (!uid_valid(uid)) {
487 ext2_msg(sb, KERN_ERR, "Invalid uid value %d", option);
Zhao Hongjiangae2cf422012-10-09 13:44:36 +0800488 return 0;
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800489
490 }
491 sbi->s_resuid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 break;
493 case Opt_resgid:
494 if (match_int(&args[0], &option))
495 return 0;
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800496 gid = make_kgid(current_user_ns(), option);
497 if (!gid_valid(gid)) {
498 ext2_msg(sb, KERN_ERR, "Invalid gid value %d", option);
Zhao Hongjiangae2cf422012-10-09 13:44:36 +0800499 return 0;
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800500 }
501 sbi->s_resgid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 break;
503 case Opt_sb:
504 /* handled by get_sb_block() instead of here */
505 /* *sb_block = match_int(&args[0]); */
506 break;
507 case Opt_err_panic:
Vasily Averin5a2b4062006-10-11 01:21:50 -0700508 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
509 clear_opt (sbi->s_mount_opt, ERRORS_RO);
510 set_opt (sbi->s_mount_opt, ERRORS_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 case Opt_err_ro:
Vasily Averin5a2b4062006-10-11 01:21:50 -0700513 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
514 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
515 set_opt (sbi->s_mount_opt, ERRORS_RO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 break;
517 case Opt_err_cont:
Vasily Averin5a2b4062006-10-11 01:21:50 -0700518 clear_opt (sbi->s_mount_opt, ERRORS_RO);
519 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
520 set_opt (sbi->s_mount_opt, ERRORS_CONT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 break;
522 case Opt_nouid32:
523 set_opt (sbi->s_mount_opt, NO_UID32);
524 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 case Opt_nocheck:
526 clear_opt (sbi->s_mount_opt, CHECK);
527 break;
528 case Opt_debug:
529 set_opt (sbi->s_mount_opt, DEBUG);
530 break;
531 case Opt_oldalloc:
532 set_opt (sbi->s_mount_opt, OLDALLOC);
533 break;
534 case Opt_orlov:
535 clear_opt (sbi->s_mount_opt, OLDALLOC);
536 break;
537 case Opt_nobh:
538 set_opt (sbi->s_mount_opt, NOBH);
539 break;
540#ifdef CONFIG_EXT2_FS_XATTR
541 case Opt_user_xattr:
542 set_opt (sbi->s_mount_opt, XATTR_USER);
543 break;
544 case Opt_nouser_xattr:
545 clear_opt (sbi->s_mount_opt, XATTR_USER);
546 break;
547#else
548 case Opt_user_xattr:
549 case Opt_nouser_xattr:
Alexey Fisher2314b072009-11-19 19:12:51 +0100550 ext2_msg(sb, KERN_INFO, "(no)user_xattr options"
551 "not supported");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 break;
553#endif
554#ifdef CONFIG_EXT2_FS_POSIX_ACL
555 case Opt_acl:
556 set_opt(sbi->s_mount_opt, POSIX_ACL);
557 break;
558 case Opt_noacl:
559 clear_opt(sbi->s_mount_opt, POSIX_ACL);
560 break;
561#else
562 case Opt_acl:
563 case Opt_noacl:
Alexey Fisher2314b072009-11-19 19:12:51 +0100564 ext2_msg(sb, KERN_INFO,
565 "(no)acl options not supported");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
567#endif
Carsten Otte6d791252005-06-23 22:05:26 -0700568 case Opt_xip:
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800569 ext2_msg(sb, KERN_INFO, "use dax instead of xip");
570 set_opt(sbi->s_mount_opt, XIP);
571 /* Fall through */
572 case Opt_dax:
Matthew Wilcox6cd176a2015-02-16 15:59:25 -0800573#ifdef CONFIG_FS_DAX
Dan Williamsef83b6e2015-09-29 15:48:11 -0400574 ext2_msg(sb, KERN_WARNING,
575 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800576 set_opt(sbi->s_mount_opt, DAX);
Carsten Otte6d791252005-06-23 22:05:26 -0700577#else
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800578 ext2_msg(sb, KERN_INFO, "dax option not supported");
Carsten Otte6d791252005-06-23 22:05:26 -0700579#endif
580 break;
Mark Bellon8fc27512005-09-06 15:16:54 -0700581
582#if defined(CONFIG_QUOTA)
583 case Opt_quota:
584 case Opt_usrquota:
585 set_opt(sbi->s_mount_opt, USRQUOTA);
586 break;
587
588 case Opt_grpquota:
589 set_opt(sbi->s_mount_opt, GRPQUOTA);
590 break;
591#else
592 case Opt_quota:
593 case Opt_usrquota:
594 case Opt_grpquota:
Alexey Fisher2314b072009-11-19 19:12:51 +0100595 ext2_msg(sb, KERN_INFO,
596 "quota operations not supported");
Mark Bellon8fc27512005-09-06 15:16:54 -0700597 break;
598#endif
599
Martin J. Bligha686cd82007-10-16 23:30:46 -0700600 case Opt_reservation:
601 set_opt(sbi->s_mount_opt, RESERVATION);
Alexey Fisher2314b072009-11-19 19:12:51 +0100602 ext2_msg(sb, KERN_INFO, "reservations ON");
Martin J. Bligha686cd82007-10-16 23:30:46 -0700603 break;
604 case Opt_noreservation:
605 clear_opt(sbi->s_mount_opt, RESERVATION);
Alexey Fisher2314b072009-11-19 19:12:51 +0100606 ext2_msg(sb, KERN_INFO, "reservations OFF");
Martin J. Bligha686cd82007-10-16 23:30:46 -0700607 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 case Opt_ignore:
609 break;
610 default:
611 return 0;
612 }
613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return 1;
615}
616
617static int ext2_setup_super (struct super_block * sb,
618 struct ext2_super_block * es,
619 int read_only)
620{
621 int res = 0;
622 struct ext2_sb_info *sbi = EXT2_SB(sb);
623
624 if (le32_to_cpu(es->s_rev_level) > EXT2_MAX_SUPP_REV) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100625 ext2_msg(sb, KERN_ERR,
626 "error: revision level too high, "
627 "forcing read-only mode");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 res = MS_RDONLY;
629 }
630 if (read_only)
631 return res;
632 if (!(sbi->s_mount_state & EXT2_VALID_FS))
Alexey Fisher2314b072009-11-19 19:12:51 +0100633 ext2_msg(sb, KERN_WARNING,
634 "warning: mounting unchecked fs, "
635 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 else if ((sbi->s_mount_state & EXT2_ERROR_FS))
Alexey Fisher2314b072009-11-19 19:12:51 +0100637 ext2_msg(sb, KERN_WARNING,
638 "warning: mounting fs with errors, "
639 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
641 le16_to_cpu(es->s_mnt_count) >=
642 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Alexey Fisher2314b072009-11-19 19:12:51 +0100643 ext2_msg(sb, KERN_WARNING,
644 "warning: maximal mount count reached, "
645 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 else if (le32_to_cpu(es->s_checkinterval) &&
Alexey Fisher2314b072009-11-19 19:12:51 +0100647 (le32_to_cpu(es->s_lastcheck) +
648 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
649 ext2_msg(sb, KERN_WARNING,
650 "warning: checktime reached, "
651 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (!le16_to_cpu(es->s_max_mnt_count))
653 es->s_max_mnt_count = cpu_to_le16(EXT2_DFL_MAX_MNT_COUNT);
Marcin Slusarzfba4d392008-04-28 02:15:59 -0700654 le16_add_cpu(&es->s_mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (test_opt (sb, DEBUG))
Alexey Fisher2314b072009-11-19 19:12:51 +0100656 ext2_msg(sb, KERN_INFO, "%s, %s, bs=%lu, fs=%lu, gc=%lu, "
657 "bpg=%lu, ipg=%lu, mo=%04lx]",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 EXT2FS_VERSION, EXT2FS_DATE, sb->s_blocksize,
659 sbi->s_frag_size,
660 sbi->s_groups_count,
661 EXT2_BLOCKS_PER_GROUP(sb),
662 EXT2_INODES_PER_GROUP(sb),
663 sbi->s_mount_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return res;
665}
666
Akinobu Mita197cd65a2008-02-06 01:40:16 -0800667static int ext2_check_descriptors(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct ext2_sb_info *sbi = EXT2_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 ext2_debug ("Checking group descriptors");
673
Akinobu Mita197cd65a2008-02-06 01:40:16 -0800674 for (i = 0; i < sbi->s_groups_count; i++) {
675 struct ext2_group_desc *gdp = ext2_get_group_desc(sb, i, NULL);
Akinobu Mita24097d12008-04-28 02:16:01 -0700676 ext2_fsblk_t first_block = ext2_group_first_block_no(sb, i);
677 ext2_fsblk_t last_block;
Akinobu Mita197cd65a2008-02-06 01:40:16 -0800678
Eric Sandeen41f04d82006-09-27 01:49:30 -0700679 if (i == sbi->s_groups_count - 1)
680 last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
681 else
682 last_block = first_block +
683 (EXT2_BLOCKS_PER_GROUP(sb) - 1);
684
Eric Sandeen41f04d82006-09-27 01:49:30 -0700685 if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
686 le32_to_cpu(gdp->bg_block_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 {
688 ext2_error (sb, "ext2_check_descriptors",
689 "Block bitmap for group %d"
690 " not in group (block %lu)!",
691 i, (unsigned long) le32_to_cpu(gdp->bg_block_bitmap));
692 return 0;
693 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700694 if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
695 le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 {
697 ext2_error (sb, "ext2_check_descriptors",
698 "Inode bitmap for group %d"
699 " not in group (block %lu)!",
700 i, (unsigned long) le32_to_cpu(gdp->bg_inode_bitmap));
701 return 0;
702 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700703 if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
Eric Sandeen780dcdb2007-07-26 10:41:11 -0700704 le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
Eric Sandeen41f04d82006-09-27 01:49:30 -0700705 last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 {
707 ext2_error (sb, "ext2_check_descriptors",
708 "Inode table for group %d"
709 " not in group (block %lu)!",
710 i, (unsigned long) le32_to_cpu(gdp->bg_inode_table));
711 return 0;
712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 return 1;
715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717/*
718 * Maximal file size. There is a direct, and {,double-,triple-}indirect
719 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
720 * We need to be 1 filesystem block less than the 2^32 sector limit.
721 */
722static loff_t ext2_max_size(int bits)
723{
724 loff_t res = EXT2_NDIR_BLOCKS;
Aneesh Kumar K.V902be4c2008-01-28 23:58:26 -0500725 int meta_blocks;
726 loff_t upper_limit;
727
728 /* This is calculated to be the largest file size for a
729 * dense, file such that the total number of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V902be4c2008-01-28 23:58:26 -0500731 * does not exceed 2^32 -1
732 * __u32 i_blocks representing the total number of
733 * 512 bytes blocks of the file
734 */
735 upper_limit = (1LL << 32) - 1;
736
737 /* total blocks in file system block size */
738 upper_limit >>= (bits - 9);
739
740
741 /* indirect blocks */
742 meta_blocks = 1;
743 /* double indirect blocks */
744 meta_blocks += 1 + (1LL << (bits-2));
745 /* tripple indirect blocks */
746 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
747
748 upper_limit -= meta_blocks;
749 upper_limit <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751 res += 1LL << (bits-2);
752 res += 1LL << (2*(bits-2));
753 res += 1LL << (3*(bits-2));
754 res <<= bits;
755 if (res > upper_limit)
756 res = upper_limit;
Aneesh Kumar K.V902be4c2008-01-28 23:58:26 -0500757
758 if (res > MAX_LFS_FILESIZE)
759 res = MAX_LFS_FILESIZE;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return res;
762}
763
764static unsigned long descriptor_loc(struct super_block *sb,
765 unsigned long logic_sb_block,
766 int nr)
767{
768 struct ext2_sb_info *sbi = EXT2_SB(sb);
Akinobu Mita24097d12008-04-28 02:16:01 -0700769 unsigned long bg, first_meta_bg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 int has_super = 0;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
773
774 if (!EXT2_HAS_INCOMPAT_FEATURE(sb, EXT2_FEATURE_INCOMPAT_META_BG) ||
775 nr < first_meta_bg)
776 return (logic_sb_block + nr + 1);
777 bg = sbi->s_desc_per_block * nr;
778 if (ext2_bg_has_super(sb, bg))
779 has_super = 1;
Akinobu Mita24097d12008-04-28 02:16:01 -0700780
781 return ext2_group_first_block_no(sb, bg) + has_super;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784static int ext2_fill_super(struct super_block *sb, void *data, int silent)
785{
786 struct buffer_head * bh;
787 struct ext2_sb_info * sbi;
788 struct ext2_super_block * es;
789 struct inode *root;
790 unsigned long block;
791 unsigned long sb_block = get_sb_block(&data);
792 unsigned long logic_sb_block;
793 unsigned long offset = 0;
794 unsigned long def_mount_opts;
David Howells52fcf702008-02-07 00:15:35 -0800795 long ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 int blocksize = BLOCK_SIZE;
797 int db_count;
798 int i, j;
799 __le32 features;
Peter Zijlstra833f4072007-10-16 23:25:45 -0700800 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jan Blunckdb719222010-08-15 22:51:10 +0200802 err = -ENOMEM;
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700803 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (!sbi)
Wanlong Gaoe124a322012-06-28 00:49:44 +0800805 goto failed;
Pekka J Enberg18a82eb2009-01-07 18:07:19 -0800806
807 sbi->s_blockgroup_lock =
808 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
809 if (!sbi->s_blockgroup_lock) {
810 kfree(sbi);
Wanlong Gaoe124a322012-06-28 00:49:44 +0800811 goto failed;
Pekka J Enberg18a82eb2009-01-07 18:07:19 -0800812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 sb->s_fs_info = sbi;
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700814 sbi->s_sb_block = sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
Jan Blunckc15271f2010-04-14 14:38:38 +0200816 spin_lock_init(&sbi->s_lock);
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 /*
819 * See what the current blocksize for the device is, and
820 * use that as the blocksize. Otherwise (or if the blocksize
821 * is smaller than the default) use the default.
822 * This is important for devices that have a hardware
823 * sectorsize that is larger than the default.
824 */
825 blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
826 if (!blocksize) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100827 ext2_msg(sb, KERN_ERR, "error: unable to set blocksize");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto failed_sbi;
829 }
830
831 /*
832 * If the superblock doesn't start on a hardware sector boundary,
833 * calculate the offset.
834 */
835 if (blocksize != BLOCK_SIZE) {
836 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
837 offset = (sb_block*BLOCK_SIZE) % blocksize;
838 } else {
839 logic_sb_block = sb_block;
840 }
841
842 if (!(bh = sb_bread(sb, logic_sb_block))) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100843 ext2_msg(sb, KERN_ERR, "error: unable to read superblock");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 goto failed_sbi;
845 }
846 /*
847 * Note: s_es must be initialized as soon as possible because
848 * some ext2 macro-instructions depend on its value
849 */
850 es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
851 sbi->s_es = es;
852 sb->s_magic = le16_to_cpu(es->s_magic);
853
854 if (sb->s_magic != EXT2_SUPER_MAGIC)
855 goto cantfind_ext2;
856
857 /* Set defaults before we parse the mount options */
858 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
859 if (def_mount_opts & EXT2_DEFM_DEBUG)
860 set_opt(sbi->s_mount_opt, DEBUG);
861 if (def_mount_opts & EXT2_DEFM_BSDGROUPS)
862 set_opt(sbi->s_mount_opt, GRPID);
863 if (def_mount_opts & EXT2_DEFM_UID16)
864 set_opt(sbi->s_mount_opt, NO_UID32);
Hugh Dickins2e7842b2007-02-10 01:46:13 -0800865#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (def_mount_opts & EXT2_DEFM_XATTR_USER)
867 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -0800868#endif
869#ifdef CONFIG_EXT2_FS_POSIX_ACL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (def_mount_opts & EXT2_DEFM_ACL)
871 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -0800872#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_PANIC)
875 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800876 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_CONTINUE)
Vasily Averin5a2b4062006-10-11 01:21:50 -0700877 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800878 else
879 set_opt(sbi->s_mount_opt, ERRORS_RO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Eric W. Biedermanb8a9f9e2012-02-07 15:39:12 -0800881 sbi->s_resuid = make_kuid(&init_user_ns, le16_to_cpu(es->s_def_resuid));
882 sbi->s_resgid = make_kgid(&init_user_ns, le16_to_cpu(es->s_def_resgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Martin J. Bligha686cd82007-10-16 23:30:46 -0700884 set_opt(sbi->s_mount_opt, RESERVATION);
885
Alexey Fisher2314b072009-11-19 19:12:51 +0100886 if (!parse_options((char *) data, sb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 goto failed_mount;
888
889 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
890 ((EXT2_SB(sb)->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ?
891 MS_POSIXACL : 0);
Tejun Heo46b15ca2015-06-16 18:48:31 -0400892 sb->s_iflags |= SB_I_CGROUPWB;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV &&
895 (EXT2_HAS_COMPAT_FEATURE(sb, ~0U) ||
896 EXT2_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
897 EXT2_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Alexey Fisher2314b072009-11-19 19:12:51 +0100898 ext2_msg(sb, KERN_WARNING,
899 "warning: feature flags set on rev 0 fs, "
900 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 /*
902 * Check feature flags regardless of the revision level, since we
903 * previously didn't change the revision level when setting the flags,
904 * so there is a chance incompat flags are set on a rev 0 filesystem.
905 */
906 features = EXT2_HAS_INCOMPAT_FEATURE(sb, ~EXT2_FEATURE_INCOMPAT_SUPP);
907 if (features) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100908 ext2_msg(sb, KERN_ERR, "error: couldn't mount because of "
909 "unsupported optional features (%x)",
910 le32_to_cpu(features));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 goto failed_mount;
912 }
913 if (!(sb->s_flags & MS_RDONLY) &&
914 (features = EXT2_HAS_RO_COMPAT_FEATURE(sb, ~EXT2_FEATURE_RO_COMPAT_SUPP))){
Alexey Fisher2314b072009-11-19 19:12:51 +0100915 ext2_msg(sb, KERN_ERR, "error: couldn't mount RDWR because of "
916 "unsupported optional features (%x)",
917 le32_to_cpu(features));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto failed_mount;
919 }
920
921 blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
922
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -0800923 if (sbi->s_mount_opt & EXT2_MOUNT_DAX) {
Toshi Kani284854be2016-05-10 10:23:55 -0600924 err = bdev_dax_supported(sb, blocksize);
925 if (err)
Matthew Wilcox0de48302015-02-16 15:59:15 -0800926 goto failed_mount;
Carsten Otte6d791252005-06-23 22:05:26 -0700927 }
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* If the blocksize doesn't match, re-read the thing.. */
930 if (sb->s_blocksize != blocksize) {
931 brelse(bh);
932
933 if (!sb_set_blocksize(sb, blocksize)) {
Robin Dong4e299c12011-05-05 10:44:04 +0800934 ext2_msg(sb, KERN_ERR,
935 "error: bad blocksize %d", blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 goto failed_sbi;
937 }
938
939 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
940 offset = (sb_block*BLOCK_SIZE) % blocksize;
941 bh = sb_bread(sb, logic_sb_block);
942 if(!bh) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100943 ext2_msg(sb, KERN_ERR, "error: couldn't read"
944 "superblock on 2nd try");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 goto failed_sbi;
946 }
947 es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
948 sbi->s_es = es;
949 if (es->s_magic != cpu_to_le16(EXT2_SUPER_MAGIC)) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100950 ext2_msg(sb, KERN_ERR, "error: magic mismatch");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 goto failed_mount;
952 }
953 }
954
955 sb->s_maxbytes = ext2_max_size(sb->s_blocksize_bits);
Al Viro8de52772012-02-06 12:45:27 -0500956 sb->s_max_links = EXT2_LINK_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV) {
959 sbi->s_inode_size = EXT2_GOOD_OLD_INODE_SIZE;
960 sbi->s_first_ino = EXT2_GOOD_OLD_FIRST_INO;
961 } else {
962 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
963 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
964 if ((sbi->s_inode_size < EXT2_GOOD_OLD_INODE_SIZE) ||
vignesh babud8ea6cf2007-10-16 23:27:14 -0700965 !is_power_of_2(sbi->s_inode_size) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 (sbi->s_inode_size > blocksize)) {
Alexey Fisher2314b072009-11-19 19:12:51 +0100967 ext2_msg(sb, KERN_ERR,
968 "error: unsupported inode size: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 sbi->s_inode_size);
970 goto failed_mount;
971 }
972 }
973
974 sbi->s_frag_size = EXT2_MIN_FRAG_SIZE <<
975 le32_to_cpu(es->s_log_frag_size);
976 if (sbi->s_frag_size == 0)
977 goto cantfind_ext2;
978 sbi->s_frags_per_block = sb->s_blocksize / sbi->s_frag_size;
979
980 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
981 sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
982 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
983
984 if (EXT2_INODE_SIZE(sb) == 0)
985 goto cantfind_ext2;
986 sbi->s_inodes_per_block = sb->s_blocksize / EXT2_INODE_SIZE(sb);
Andries Brouwer607eb262006-08-27 01:23:43 -0700987 if (sbi->s_inodes_per_block == 0 || sbi->s_inodes_per_group == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 goto cantfind_ext2;
989 sbi->s_itb_per_group = sbi->s_inodes_per_group /
990 sbi->s_inodes_per_block;
991 sbi->s_desc_per_block = sb->s_blocksize /
992 sizeof (struct ext2_group_desc);
993 sbi->s_sbh = bh;
994 sbi->s_mount_state = le16_to_cpu(es->s_state);
995 sbi->s_addr_per_block_bits =
David Howellsf0d1b0b2006-12-08 02:37:49 -0800996 ilog2 (EXT2_ADDR_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 sbi->s_desc_per_block_bits =
David Howellsf0d1b0b2006-12-08 02:37:49 -0800998 ilog2 (EXT2_DESC_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 if (sb->s_magic != EXT2_SUPER_MAGIC)
1001 goto cantfind_ext2;
1002
1003 if (sb->s_blocksize != bh->b_size) {
1004 if (!silent)
Alexey Fisher2314b072009-11-19 19:12:51 +01001005 ext2_msg(sb, KERN_ERR, "error: unsupported blocksize");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 goto failed_mount;
1007 }
1008
1009 if (sb->s_blocksize != sbi->s_frag_size) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001010 ext2_msg(sb, KERN_ERR,
1011 "error: fragsize %lu != blocksize %lu"
1012 "(not supported yet)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 sbi->s_frag_size, sb->s_blocksize);
1014 goto failed_mount;
1015 }
1016
1017 if (sbi->s_blocks_per_group > sb->s_blocksize * 8) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001018 ext2_msg(sb, KERN_ERR,
1019 "error: #blocks per group too big: %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 sbi->s_blocks_per_group);
1021 goto failed_mount;
1022 }
1023 if (sbi->s_frags_per_group > sb->s_blocksize * 8) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001024 ext2_msg(sb, KERN_ERR,
1025 "error: #fragments per group too big: %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 sbi->s_frags_per_group);
1027 goto failed_mount;
1028 }
1029 if (sbi->s_inodes_per_group > sb->s_blocksize * 8) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001030 ext2_msg(sb, KERN_ERR,
1031 "error: #inodes per group too big: %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 sbi->s_inodes_per_group);
1033 goto failed_mount;
1034 }
1035
1036 if (EXT2_BLOCKS_PER_GROUP(sb) == 0)
1037 goto cantfind_ext2;
Eric Sandeen41f04d82006-09-27 01:49:30 -07001038 sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
1039 le32_to_cpu(es->s_first_data_block) - 1)
1040 / EXT2_BLOCKS_PER_GROUP(sb)) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) /
1042 EXT2_DESC_PER_BLOCK(sb);
1043 sbi->s_group_desc = kmalloc (db_count * sizeof (struct buffer_head *), GFP_KERNEL);
1044 if (sbi->s_group_desc == NULL) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001045 ext2_msg(sb, KERN_ERR, "error: not enough memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 goto failed_mount;
1047 }
Pekka J Enberg18a82eb2009-01-07 18:07:19 -08001048 bgl_lock_init(sbi->s_blockgroup_lock);
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001049 sbi->s_debts = kcalloc(sbi->s_groups_count, sizeof(*sbi->s_debts), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (!sbi->s_debts) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001051 ext2_msg(sb, KERN_ERR, "error: not enough memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 goto failed_mount_group_desc;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 for (i = 0; i < db_count; i++) {
1055 block = descriptor_loc(sb, logic_sb_block, i);
1056 sbi->s_group_desc[i] = sb_bread(sb, block);
1057 if (!sbi->s_group_desc[i]) {
1058 for (j = 0; j < i; j++)
1059 brelse (sbi->s_group_desc[j]);
Alexey Fisher2314b072009-11-19 19:12:51 +01001060 ext2_msg(sb, KERN_ERR,
1061 "error: unable to read group descriptors");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 goto failed_mount_group_desc;
1063 }
1064 }
1065 if (!ext2_check_descriptors (sb)) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001066 ext2_msg(sb, KERN_ERR, "group descriptors corrupted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 goto failed_mount2;
1068 }
1069 sbi->s_gdb_count = db_count;
1070 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1071 spin_lock_init(&sbi->s_next_gen_lock);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001072
Martin J. Bligha686cd82007-10-16 23:30:46 -07001073 /* per fileystem reservation list head & lock */
1074 spin_lock_init(&sbi->s_rsv_window_lock);
1075 sbi->s_rsv_window_root = RB_ROOT;
1076 /*
1077 * Add a single, static dummy reservation to the start of the
1078 * reservation window list --- it gives us a placeholder for
1079 * append-at-start-of-list which makes the allocation logic
1080 * _much_ simpler.
1081 */
1082 sbi->s_rsv_window_head.rsv_start = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1083 sbi->s_rsv_window_head.rsv_end = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1084 sbi->s_rsv_window_head.rsv_alloc_hit = 0;
1085 sbi->s_rsv_window_head.rsv_goal_size = 0;
1086 ext2_rsv_window_add(sb, &sbi->s_rsv_window_head);
1087
Peter Zijlstra833f4072007-10-16 23:25:45 -07001088 err = percpu_counter_init(&sbi->s_freeblocks_counter,
Tejun Heo908c7f12014-09-08 09:51:29 +09001089 ext2_count_free_blocks(sb), GFP_KERNEL);
Peter Zijlstra833f4072007-10-16 23:25:45 -07001090 if (!err) {
1091 err = percpu_counter_init(&sbi->s_freeinodes_counter,
Tejun Heo908c7f12014-09-08 09:51:29 +09001092 ext2_count_free_inodes(sb), GFP_KERNEL);
Peter Zijlstra833f4072007-10-16 23:25:45 -07001093 }
1094 if (!err) {
1095 err = percpu_counter_init(&sbi->s_dirs_counter,
Tejun Heo908c7f12014-09-08 09:51:29 +09001096 ext2_count_dirs(sb), GFP_KERNEL);
Peter Zijlstra833f4072007-10-16 23:25:45 -07001097 }
1098 if (err) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001099 ext2_msg(sb, KERN_ERR, "error: insufficient memory");
Peter Zijlstra833f4072007-10-16 23:25:45 -07001100 goto failed_mount3;
1101 }
Jan Karabe0726d2016-02-22 11:56:38 -05001102
1103#ifdef CONFIG_EXT2_FS_XATTR
1104 sbi->s_mb_cache = ext2_xattr_create_cache();
1105 if (!sbi->s_mb_cache) {
1106 ext2_msg(sb, KERN_ERR, "Failed to create an mb_cache");
1107 goto failed_mount3;
1108 }
1109#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * set up enough so that it can read an inode
1112 */
1113 sb->s_op = &ext2_sops;
1114 sb->s_export_op = &ext2_export_ops;
1115 sb->s_xattr = ext2_xattr_handlers;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001116
1117#ifdef CONFIG_QUOTA
1118 sb->dq_op = &dquot_operations;
Christoph Hellwig287a8092010-05-19 07:16:45 -04001119 sb->s_qcop = &dquot_quotactl_ops;
Jan Kara64241112014-09-25 16:44:45 +02001120 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
Christoph Hellwig123e9ca2010-05-19 07:16:44 -04001121#endif
1122
David Howells52fcf702008-02-07 00:15:35 -08001123 root = ext2_iget(sb, EXT2_ROOT_INO);
1124 if (IS_ERR(root)) {
1125 ret = PTR_ERR(root);
1126 goto failed_mount3;
1127 }
1128 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1129 iput(root);
Alexey Fisher2314b072009-11-19 19:12:51 +01001130 ext2_msg(sb, KERN_ERR, "error: corrupt root inode, run e2fsck");
David Howells52fcf702008-02-07 00:15:35 -08001131 goto failed_mount3;
1132 }
1133
Al Viro48fde702012-01-08 22:15:13 -05001134 sb->s_root = d_make_root(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 if (!sb->s_root) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001136 ext2_msg(sb, KERN_ERR, "error: get root inode failed");
David Howells52fcf702008-02-07 00:15:35 -08001137 ret = -ENOMEM;
Mingming Cao0216bfc2006-06-23 02:05:41 -07001138 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140 if (EXT2_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL))
Alexey Fisher2314b072009-11-19 19:12:51 +01001141 ext2_msg(sb, KERN_WARNING,
1142 "warning: mounting ext3 filesystem as ext2");
Jan Blunck4c96a682010-04-14 14:38:37 +02001143 if (ext2_setup_super (sb, es, sb->s_flags & MS_RDONLY))
1144 sb->s_flags |= MS_RDONLY;
1145 ext2_write_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return 0;
1147
1148cantfind_ext2:
1149 if (!silent)
Alexey Fisher2314b072009-11-19 19:12:51 +01001150 ext2_msg(sb, KERN_ERR,
1151 "error: can't find an ext2 filesystem on dev %s.",
1152 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 goto failed_mount;
Mingming Cao0216bfc2006-06-23 02:05:41 -07001154failed_mount3:
Jan Karabe0726d2016-02-22 11:56:38 -05001155 if (sbi->s_mb_cache)
1156 ext2_xattr_destroy_cache(sbi->s_mb_cache);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001157 percpu_counter_destroy(&sbi->s_freeblocks_counter);
1158 percpu_counter_destroy(&sbi->s_freeinodes_counter);
1159 percpu_counter_destroy(&sbi->s_dirs_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160failed_mount2:
1161 for (i = 0; i < db_count; i++)
1162 brelse(sbi->s_group_desc[i]);
1163failed_mount_group_desc:
1164 kfree(sbi->s_group_desc);
1165 kfree(sbi->s_debts);
1166failed_mount:
1167 brelse(bh);
1168failed_sbi:
1169 sb->s_fs_info = NULL;
Manish Katiyar0f7ee7c2009-05-17 23:52:51 -04001170 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 kfree(sbi);
Wanlong Gaoe124a322012-06-28 00:49:44 +08001172failed:
David Howells52fcf702008-02-07 00:15:35 -08001173 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Theodore Ts'o7bf0dc92009-12-15 16:46:48 -08001176static void ext2_clear_super_error(struct super_block *sb)
1177{
1178 struct buffer_head *sbh = EXT2_SB(sb)->s_sbh;
1179
1180 if (buffer_write_io_error(sbh)) {
1181 /*
1182 * Oh, dear. A previous attempt to write the
1183 * superblock failed. This could happen because the
1184 * USB device was yanked out. Or it could happen to
1185 * be a transient write error and maybe the block will
1186 * be remapped. Nothing we can do but to retry the
1187 * write and hope for the best.
1188 */
Jan Blunck2b8120e2010-04-14 14:38:33 +02001189 ext2_msg(sb, KERN_ERR,
1190 "previous I/O error to superblock detected\n");
Theodore Ts'o7bf0dc92009-12-15 16:46:48 -08001191 clear_buffer_write_io_error(sbh);
1192 set_buffer_uptodate(sbh);
1193 }
1194}
1195
Jan Kara65547662017-04-05 13:32:52 +02001196void ext2_sync_super(struct super_block *sb, struct ext2_super_block *es,
1197 int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Theodore Ts'o7bf0dc92009-12-15 16:46:48 -08001199 ext2_clear_super_error(sb);
Jan Blunckc15271f2010-04-14 14:38:38 +02001200 spin_lock(&EXT2_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 es->s_free_blocks_count = cpu_to_le32(ext2_count_free_blocks(sb));
1202 es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb));
1203 es->s_wtime = cpu_to_le32(get_seconds());
Jan Blunckc15271f2010-04-14 14:38:38 +02001204 /* unlock before we do IO */
1205 spin_unlock(&EXT2_SB(sb)->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
Jan Blunckee6921e2010-04-14 14:38:36 +02001207 if (wait)
1208 sync_dirty_buffer(EXT2_SB(sb)->s_sbh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211/*
1212 * In the second extended file system, it is not necessary to
1213 * write the super block since we use a mapping of the
1214 * disk super block in a buffer.
1215 *
1216 * However, this function is still used to set the fs valid
1217 * flags to 0. We need to set this flag to 0 since the fs
1218 * may have been checked while mounted and e2fsck may have
1219 * set s_state to EXT2_VALID_FS after some corrections.
1220 */
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001221static int ext2_sync_fs(struct super_block *sb, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Jan Blunckc15271f2010-04-14 14:38:38 +02001223 struct ext2_sb_info *sbi = EXT2_SB(sb);
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001224 struct ext2_super_block *es = EXT2_SB(sb)->s_es;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Jan Karaa1177822012-07-03 16:45:29 +02001226 /*
1227 * Write quota structures to quota file, sync_blockdev() will write
1228 * them to disk later
1229 */
1230 dquot_writeback_dquots(sb, -1);
1231
Jan Blunckc15271f2010-04-14 14:38:38 +02001232 spin_lock(&sbi->s_lock);
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001233 if (es->s_state & cpu_to_le16(EXT2_VALID_FS)) {
1234 ext2_debug("setting valid to 0\n");
1235 es->s_state &= cpu_to_le16(~EXT2_VALID_FS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
Jan Blunckc15271f2010-04-14 14:38:38 +02001237 spin_unlock(&sbi->s_lock);
Jan Blunckee6921e2010-04-14 14:38:36 +02001238 ext2_sync_super(sb, es, wait);
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001239 return 0;
1240}
1241
Jan Kara1e8b2122012-06-12 16:20:46 +02001242static int ext2_freeze(struct super_block *sb)
1243{
1244 struct ext2_sb_info *sbi = EXT2_SB(sb);
1245
1246 /*
1247 * Open but unlinked files present? Keep EXT2_VALID_FS flag cleared
1248 * because we have unattached inodes and thus filesystem is not fully
1249 * consistent.
1250 */
1251 if (atomic_long_read(&sb->s_remove_count)) {
1252 ext2_sync_fs(sb, 1);
1253 return 0;
1254 }
1255 /* Set EXT2_FS_VALID flag */
1256 spin_lock(&sbi->s_lock);
1257 sbi->s_es->s_state = cpu_to_le16(sbi->s_mount_state);
1258 spin_unlock(&sbi->s_lock);
1259 ext2_sync_super(sb, sbi->s_es, 1);
1260
1261 return 0;
1262}
1263
1264static int ext2_unfreeze(struct super_block *sb)
1265{
1266 /* Just write sb to clear EXT2_VALID_FS flag */
1267 ext2_write_super(sb);
1268
1269 return 0;
1270}
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001271
Jan Kara65547662017-04-05 13:32:52 +02001272static void ext2_write_super(struct super_block *sb)
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001273{
1274 if (!(sb->s_flags & MS_RDONLY))
1275 ext2_sync_fs(sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276}
1277
1278static int ext2_remount (struct super_block * sb, int * flags, char * data)
1279{
1280 struct ext2_sb_info * sbi = EXT2_SB(sb);
1281 struct ext2_super_block * es;
Jan Kara50a52232005-07-12 13:58:29 -07001282 struct ext2_mount_options old_opts;
1283 unsigned long old_sb_flags;
1284 int err;
1285
Theodore Ts'o02b99842014-03-13 10:14:33 -04001286 sync_filesystem(sb);
Jan Blunckc15271f2010-04-14 14:38:38 +02001287 spin_lock(&sbi->s_lock);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001288
Jan Kara50a52232005-07-12 13:58:29 -07001289 /* Store the old options */
1290 old_sb_flags = sb->s_flags;
1291 old_opts.s_mount_opt = sbi->s_mount_opt;
1292 old_opts.s_resuid = sbi->s_resuid;
1293 old_opts.s_resgid = sbi->s_resgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 /*
1296 * Allow the "check" option to be passed as a remount option.
1297 */
Alexey Fisher2314b072009-11-19 19:12:51 +01001298 if (!parse_options(data, sb)) {
Jan Kara50a52232005-07-12 13:58:29 -07001299 err = -EINVAL;
1300 goto restore_opts;
1301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1304 ((sbi->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1305
1306 es = sbi->s_es;
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -08001307 if ((sbi->s_mount_opt ^ old_opts.s_mount_opt) & EXT2_MOUNT_DAX) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001308 ext2_msg(sb, KERN_WARNING, "warning: refusing change of "
Matthew Wilcox9c3ce9e2015-02-16 15:59:31 -08001309 "dax flag with busy inodes while remounting");
1310 sbi->s_mount_opt ^= EXT2_MOUNT_DAX;
Carsten Otte0e4a9b52009-02-11 13:04:37 -08001311 }
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001312 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
Jan Blunckc15271f2010-04-14 14:38:38 +02001313 spin_unlock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (*flags & MS_RDONLY) {
1317 if (le16_to_cpu(es->s_state) & EXT2_VALID_FS ||
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001318 !(sbi->s_mount_state & EXT2_VALID_FS)) {
Jan Blunckc15271f2010-04-14 14:38:38 +02001319 spin_unlock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001321 }
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /*
1324 * OK, we are remounting a valid rw partition rdonly, so set
1325 * the rdonly flag and then mark the partition as valid again.
1326 */
1327 es->s_state = cpu_to_le16(sbi->s_mount_state);
1328 es->s_mtime = cpu_to_le32(get_seconds());
Jan Blunckc15271f2010-04-14 14:38:38 +02001329 spin_unlock(&sbi->s_lock);
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001330
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04001331 err = dquot_suspend(sb, -1);
1332 if (err < 0) {
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001333 spin_lock(&sbi->s_lock);
1334 goto restore_opts;
1335 }
1336
Jan Blunck4c96a682010-04-14 14:38:37 +02001337 ext2_sync_super(sb, es, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 } else {
1339 __le32 ret = EXT2_HAS_RO_COMPAT_FEATURE(sb,
1340 ~EXT2_FEATURE_RO_COMPAT_SUPP);
1341 if (ret) {
Alexey Fisher2314b072009-11-19 19:12:51 +01001342 ext2_msg(sb, KERN_WARNING,
1343 "warning: couldn't remount RDWR because of "
1344 "unsupported optional features (%x).",
1345 le32_to_cpu(ret));
Jan Kara50a52232005-07-12 13:58:29 -07001346 err = -EROFS;
1347 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
1349 /*
1350 * Mounting a RDONLY partition read-write, so reread and
1351 * store the current valid flag. (It may have been changed
1352 * by e2fsck since we originally mounted the partition.)
1353 */
1354 sbi->s_mount_state = le16_to_cpu(es->s_state);
1355 if (!ext2_setup_super (sb, es, 0))
1356 sb->s_flags &= ~MS_RDONLY;
Jan Blunckc15271f2010-04-14 14:38:38 +02001357 spin_unlock(&sbi->s_lock);
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001358
Jan Blunck4c96a682010-04-14 14:38:37 +02001359 ext2_write_super(sb);
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001360
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04001361 dquot_resume(sb, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return 0;
Jan Kara50a52232005-07-12 13:58:29 -07001365restore_opts:
1366 sbi->s_mount_opt = old_opts.s_mount_opt;
1367 sbi->s_resuid = old_opts.s_resuid;
1368 sbi->s_resgid = old_opts.s_resgid;
1369 sb->s_flags = old_sb_flags;
Jan Blunckc15271f2010-04-14 14:38:38 +02001370 spin_unlock(&sbi->s_lock);
Jan Kara50a52232005-07-12 13:58:29 -07001371 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
David Howells726c3342006-06-23 02:02:58 -07001374static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
David Howells726c3342006-06-23 02:02:58 -07001376 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 struct ext2_sb_info *sbi = EXT2_SB(sb);
Pekka Enberge4fca012006-12-06 20:35:27 -08001378 struct ext2_super_block *es = sbi->s_es;
Pekka Enberge4fca012006-12-06 20:35:27 -08001379 u64 fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Jan Blunckc15271f2010-04-14 14:38:38 +02001381 spin_lock(&sbi->s_lock);
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (test_opt (sb, MINIX_DF))
Badari Pulavarty22352192007-07-15 23:41:58 -07001384 sbi->s_overhead_last = 0;
1385 else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
1386 unsigned long i, overhead = 0;
1387 smp_rmb();
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 /*
Badari Pulavarty22352192007-07-15 23:41:58 -07001390 * Compute the overhead (FS structures). This is constant
1391 * for a given filesystem unless the number of block groups
1392 * changes so we cache the previous value until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
1394
1395 /*
1396 * All of the blocks before first_data_block are
1397 * overhead
1398 */
Pekka Enberge4fca012006-12-06 20:35:27 -08001399 overhead = le32_to_cpu(es->s_first_data_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 /*
1402 * Add the overhead attributed to the superblock and
1403 * block group descriptors. If the sparse superblocks
1404 * feature is turned on, then not all groups have this.
1405 */
1406 for (i = 0; i < sbi->s_groups_count; i++)
1407 overhead += ext2_bg_has_super(sb, i) +
1408 ext2_bg_num_gdb(sb, i);
1409
1410 /*
1411 * Every block group has an inode bitmap, a block
1412 * bitmap, and an inode table.
1413 */
1414 overhead += (sbi->s_groups_count *
1415 (2 + sbi->s_itb_per_group));
Badari Pulavarty22352192007-07-15 23:41:58 -07001416 sbi->s_overhead_last = overhead;
1417 smp_wmb();
1418 sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
1420
1421 buf->f_type = EXT2_SUPER_MAGIC;
1422 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty22352192007-07-15 23:41:58 -07001423 buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 buf->f_bfree = ext2_count_free_blocks(sb);
Badari Pulavarty22352192007-07-15 23:41:58 -07001425 es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
Pekka Enberge4fca012006-12-06 20:35:27 -08001426 buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
1427 if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 buf->f_bavail = 0;
Pekka Enberge4fca012006-12-06 20:35:27 -08001429 buf->f_files = le32_to_cpu(es->s_inodes_count);
1430 buf->f_ffree = ext2_count_free_inodes(sb);
Badari Pulavarty22352192007-07-15 23:41:58 -07001431 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 buf->f_namelen = EXT2_NAME_LEN;
Pekka Enberge4fca012006-12-06 20:35:27 -08001433 fsid = le64_to_cpup((void *)es->s_uuid) ^
1434 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
1435 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
1436 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Jan Blunckc15271f2010-04-14 14:38:38 +02001437 spin_unlock(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439}
1440
Al Viro152a0832010-07-25 00:46:55 +04001441static struct dentry *ext2_mount(struct file_system_type *fs_type,
1442 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Al Viro152a0832010-07-25 00:46:55 +04001444 return mount_bdev(fs_type, flags, dev_name, data, ext2_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
1446
1447#ifdef CONFIG_QUOTA
1448
1449/* Read data from quotafile - avoid pagecache and such because we cannot afford
1450 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001451 * itself serializes the operations (and no one else should touch the files)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 * we don't have to be afraid of races */
1453static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data,
1454 size_t len, loff_t off)
1455{
1456 struct inode *inode = sb_dqopt(sb)->files[type];
1457 sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1458 int err = 0;
1459 int offset = off & (sb->s_blocksize - 1);
1460 int tocopy;
1461 size_t toread;
1462 struct buffer_head tmp_bh;
1463 struct buffer_head *bh;
1464 loff_t i_size = i_size_read(inode);
1465
1466 if (off > i_size)
1467 return 0;
1468 if (off+len > i_size)
1469 len = i_size-off;
1470 toread = len;
1471 while (toread > 0) {
1472 tocopy = sb->s_blocksize - offset < toread ?
1473 sb->s_blocksize - offset : toread;
1474
1475 tmp_bh.b_state = 0;
Manish Katiyarc16831b2009-02-12 21:57:04 +01001476 tmp_bh.b_size = sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 err = ext2_get_block(inode, blk, &tmp_bh, 0);
Martin J. Bligha686cd82007-10-16 23:30:46 -07001478 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return err;
1480 if (!buffer_mapped(&tmp_bh)) /* A hole? */
1481 memset(data, 0, tocopy);
1482 else {
1483 bh = sb_bread(sb, tmp_bh.b_blocknr);
1484 if (!bh)
1485 return -EIO;
1486 memcpy(data, bh->b_data+offset, tocopy);
1487 brelse(bh);
1488 }
1489 offset = 0;
1490 toread -= tocopy;
1491 data += tocopy;
1492 blk++;
1493 }
1494 return len;
1495}
1496
1497/* Write to quotafile */
1498static ssize_t ext2_quota_write(struct super_block *sb, int type,
1499 const char *data, size_t len, loff_t off)
1500{
1501 struct inode *inode = sb_dqopt(sb)->files[type];
1502 sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1503 int err = 0;
1504 int offset = off & (sb->s_blocksize - 1);
1505 int tocopy;
1506 size_t towrite = len;
1507 struct buffer_head tmp_bh;
1508 struct buffer_head *bh;
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 while (towrite > 0) {
1511 tocopy = sb->s_blocksize - offset < towrite ?
1512 sb->s_blocksize - offset : towrite;
1513
1514 tmp_bh.b_state = 0;
Jan Karadf4e7ac2013-12-03 11:20:06 +01001515 tmp_bh.b_size = sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 err = ext2_get_block(inode, blk, &tmp_bh, 1);
Martin J. Bligha686cd82007-10-16 23:30:46 -07001517 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 goto out;
1519 if (offset || tocopy != EXT2_BLOCK_SIZE(sb))
1520 bh = sb_bread(sb, tmp_bh.b_blocknr);
1521 else
1522 bh = sb_getblk(sb, tmp_bh.b_blocknr);
Wang Shilong2b0542a2013-01-12 01:34:50 -08001523 if (unlikely(!bh)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 err = -EIO;
1525 goto out;
1526 }
1527 lock_buffer(bh);
1528 memcpy(bh->b_data+offset, data, tocopy);
1529 flush_dcache_page(bh->b_page);
1530 set_buffer_uptodate(bh);
1531 mark_buffer_dirty(bh);
1532 unlock_buffer(bh);
1533 brelse(bh);
1534 offset = 0;
1535 towrite -= tocopy;
1536 data += tocopy;
1537 blk++;
1538 }
1539out:
Jan Karae2a3fde2012-04-25 21:29:42 +02001540 if (len == towrite)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 return err;
1542 if (inode->i_size < off+len-towrite)
1543 i_size_write(inode, off+len-towrite);
1544 inode->i_version++;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001545 inode->i_mtime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 mark_inode_dirty(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return len - towrite;
1548}
1549
1550#endif
1551
1552static struct file_system_type ext2_fs_type = {
1553 .owner = THIS_MODULE,
1554 .name = "ext2",
Al Viro152a0832010-07-25 00:46:55 +04001555 .mount = ext2_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 .kill_sb = kill_block_super,
Tejun Heo46b15ca2015-06-16 18:48:31 -04001557 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001559MODULE_ALIAS_FS("ext2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561static int __init init_ext2_fs(void)
1562{
Jan Karabe0726d2016-02-22 11:56:38 -05001563 int err;
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 err = init_inodecache();
1566 if (err)
Jan Karabe0726d2016-02-22 11:56:38 -05001567 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 err = register_filesystem(&ext2_fs_type);
1569 if (err)
1570 goto out;
1571 return 0;
1572out:
1573 destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return err;
1575}
1576
1577static void __exit exit_ext2_fs(void)
1578{
1579 unregister_filesystem(&ext2_fs_type);
1580 destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Paul Gortmaker302bf2f2012-01-04 15:59:47 -05001583MODULE_AUTHOR("Remy Card and others");
1584MODULE_DESCRIPTION("Second Extended Filesystem");
1585MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586module_init(init_ext2_fs)
1587module_exit(exit_ext2_fs)