blob: 30abbab2c65b2610e9c9fae5f172c494a95c9f96 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext3/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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/blkdev.h>
21#include <linux/parser.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070022#include <linux/exportfs.h>
Al Viro4613ad12012-03-29 22:30:07 -040023#include <linux/statfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/random.h>
25#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/quotaops.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070027#include <linux/seq_file.h>
vignesh babu3fc74262007-07-15 23:41:17 -070028#include <linux/log2.h>
Dan Magenheimerd71bc6d2011-05-26 10:01:49 -060029#include <linux/cleancache.h>
Eric Sandeencf7eff42013-07-31 14:33:00 -050030#include <linux/namei.h>
Ben Dooks381be2542005-10-30 15:02:56 -080031
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/uaccess.h>
Ben Dooks381be2542005-10-30 15:02:56 -080033
Al Viro4613ad12012-03-29 22:30:07 -040034#define CREATE_TRACE_POINTS
35
36#include "ext3.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xattr.h"
38#include "acl.h"
Ben Dooks381be2542005-10-30 15:02:56 -080039#include "namei.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvaldsbbae8bc2009-04-06 17:16:47 -070041#ifdef CONFIG_EXT3_DEFAULTS_TO_ORDERED
42 #define EXT3_MOUNT_DEFAULT_DATA_MODE EXT3_MOUNT_ORDERED_DATA
43#else
44 #define EXT3_MOUNT_DEFAULT_DATA_MODE EXT3_MOUNT_WRITEBACK_DATA
45#endif
46
Johann Lombardi71b96252006-01-08 01:03:20 -080047static int ext3_load_journal(struct super_block *, struct ext3_super_block *,
48 unsigned long journal_devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static int ext3_create_journal(struct super_block *, struct ext3_super_block *,
Eric Sandeeneee194e2006-09-27 01:49:30 -070050 unsigned int);
Takashi Satoc4be0c12009-01-09 16:40:58 -080051static int ext3_commit_super(struct super_block *sb,
52 struct ext3_super_block *es,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int sync);
54static void ext3_mark_recovery_complete(struct super_block * sb,
55 struct ext3_super_block * es);
56static void ext3_clear_journal_err(struct super_block * sb,
57 struct ext3_super_block * es);
58static int ext3_sync_fs(struct super_block *sb, int wait);
59static const char *ext3_decode_error(struct super_block * sb, int errno,
60 char nbuf[16]);
61static int ext3_remount (struct super_block * sb, int * flags, char * data);
David Howells726c3342006-06-23 02:02:58 -070062static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080063static int ext3_unfreeze(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080064static int ext3_freeze(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Mingming Caoae6ddcc2006-09-27 01:49:27 -070066/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * Wrappers for journal_start/end.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69handle_t *ext3_journal_start_sb(struct super_block *sb, int nblocks)
70{
71 journal_t *journal;
72
73 if (sb->s_flags & MS_RDONLY)
74 return ERR_PTR(-EROFS);
75
76 /* Special case here: if the journal has aborted behind our
77 * backs (eg. EIO in the commit thread), then we still need to
78 * take the FS itself readonly cleanly. */
79 journal = EXT3_SB(sb)->s_journal;
80 if (is_journal_aborted(journal)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -070081 ext3_abort(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 "Detected aborted journal");
83 return ERR_PTR(-EROFS);
84 }
85
86 return journal_start(journal, nblocks);
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089int __ext3_journal_stop(const char *where, handle_t *handle)
90{
91 struct super_block *sb;
92 int err;
93 int rc;
94
95 sb = handle->h_transaction->t_journal->j_private;
96 err = handle->h_err;
97 rc = journal_stop(handle);
98
99 if (!err)
100 err = rc;
101 if (err)
102 __ext3_std_error(sb, where, err);
103 return err;
104}
105
106void ext3_journal_abort_handle(const char *caller, const char *err_fn,
107 struct buffer_head *bh, handle_t *handle, int err)
108{
109 char nbuf[16];
110 const char *errstr = ext3_decode_error(NULL, err, nbuf);
111
112 if (bh)
113 BUFFER_TRACE(bh, "abort");
114
115 if (!handle->h_err)
116 handle->h_err = err;
117
118 if (is_handle_aborted(handle))
119 return;
120
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100121 printk(KERN_ERR "EXT3-fs: %s: aborting transaction: %s in %s\n",
122 caller, errstr, err_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124 journal_abort_handle(handle);
125}
126
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100127void ext3_msg(struct super_block *sb, const char *prefix,
128 const char *fmt, ...)
129{
Joe Perches99fbb1e2010-11-09 10:18:05 -0800130 struct va_format vaf;
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100131 va_list args;
132
133 va_start(args, fmt);
Joe Perches99fbb1e2010-11-09 10:18:05 -0800134
135 vaf.fmt = fmt;
136 vaf.va = &args;
137
138 printk("%sEXT3-fs (%s): %pV\n", prefix, sb->s_id, &vaf);
139
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100140 va_end(args);
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* Deal with the reporting of failure conditions on a filesystem such as
144 * inconsistencies detected or read IO failures.
145 *
146 * On ext2, we can store the error state of the filesystem in the
147 * superblock. That is not possible on ext3, because we may have other
148 * write ordering constraints on the superblock which prevent us from
149 * writing it out straight away; and given that the journal is about to
150 * be aborted, we can't rely on the current, or future, transactions to
151 * write out the superblock safely.
152 *
153 * We'll just use the journal_abort() error code to record an error in
Thadeu Lima de Souza Cascardod6b198b2010-01-17 19:10:07 -0200154 * the journal instead. On recovery, the journal will complain about
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * that error until we've noted it down and cleared it.
156 */
157
158static void ext3_handle_error(struct super_block *sb)
159{
160 struct ext3_super_block *es = EXT3_SB(sb)->s_es;
161
162 EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
163 es->s_state |= cpu_to_le16(EXT3_ERROR_FS);
164
165 if (sb->s_flags & MS_RDONLY)
166 return;
167
Vasily Averin7543fc72006-09-27 01:49:33 -0700168 if (!test_opt (sb, ERRORS_CONT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 journal_t *journal = EXT3_SB(sb)->s_journal;
170
Dmitry Monakhove3c96432010-02-02 16:05:51 +0300171 set_opt(EXT3_SB(sb)->s_mount_opt, ABORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (journal)
173 journal_abort(journal, -EIO);
174 }
Vasily Averin7543fc72006-09-27 01:49:33 -0700175 if (test_opt (sb, ERRORS_RO)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100176 ext3_msg(sb, KERN_CRIT,
177 "error: remounting filesystem read-only");
Dmitry Monakhov3df32192013-05-28 13:19:01 +0400178 /*
179 * Make sure updated value of ->s_mount_state will be visible
180 * before ->s_flags update.
181 */
182 smp_wmb();
Vasily Averin7543fc72006-09-27 01:49:33 -0700183 sb->s_flags |= MS_RDONLY;
184 }
185 ext3_commit_super(sb, es, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (test_opt(sb, ERRORS_PANIC))
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100187 panic("EXT3-fs (%s): panic forced after error\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
Joe Perches99fbb1e2010-11-09 10:18:05 -0800191void ext3_error(struct super_block *sb, const char *function,
192 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
Joe Perches99fbb1e2010-11-09 10:18:05 -0800194 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 va_list args;
196
197 va_start(args, fmt);
Joe Perches99fbb1e2010-11-09 10:18:05 -0800198
199 vaf.fmt = fmt;
200 vaf.va = &args;
201
202 printk(KERN_CRIT "EXT3-fs error (device %s): %s: %pV\n",
203 sb->s_id, function, &vaf);
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 va_end(args);
206
207 ext3_handle_error(sb);
208}
209
210static const char *ext3_decode_error(struct super_block * sb, int errno,
211 char nbuf[16])
212{
213 char *errstr = NULL;
214
215 switch (errno) {
216 case -EIO:
217 errstr = "IO failure";
218 break;
219 case -ENOMEM:
220 errstr = "Out of memory";
221 break;
222 case -EROFS:
223 if (!sb || EXT3_SB(sb)->s_journal->j_flags & JFS_ABORT)
224 errstr = "Journal has aborted";
225 else
226 errstr = "Readonly filesystem";
227 break;
228 default:
229 /* If the caller passed in an extra buffer for unknown
230 * errors, textualise them now. Else we just return
231 * NULL. */
232 if (nbuf) {
233 /* Check for truncated error codes... */
234 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
235 errstr = nbuf;
236 }
237 break;
238 }
239
240 return errstr;
241}
242
243/* __ext3_std_error decodes expected errors from journaling functions
244 * automatically and invokes the appropriate error response. */
245
246void __ext3_std_error (struct super_block * sb, const char * function,
247 int errno)
248{
249 char nbuf[16];
Stephen Tweedie30121622005-05-18 11:47:17 -0400250 const char *errstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Stephen Tweedie30121622005-05-18 11:47:17 -0400252 /* Special case: if the error is EROFS, and we're not already
253 * inside a transaction, then there's really no point in logging
254 * an error. */
255 if (errno == -EROFS && journal_current_handle() == NULL &&
256 (sb->s_flags & MS_RDONLY))
257 return;
258
259 errstr = ext3_decode_error(sb, errno, nbuf);
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100260 ext3_msg(sb, KERN_CRIT, "error in %s: %s", function, errstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 ext3_handle_error(sb);
263}
264
265/*
266 * ext3_abort is a much stronger failure handler than ext3_error. The
267 * abort function may be used to deal with unrecoverable failures such
268 * as journal IO errors or ENOMEM at a critical moment in log management.
269 *
270 * We unconditionally force the filesystem into an ABORT|READONLY state,
271 * unless the error response on the fs has been set to panic in which
272 * case we take the easy way out and panic immediately.
273 */
274
Joe Perches99fbb1e2010-11-09 10:18:05 -0800275void ext3_abort(struct super_block *sb, const char *function,
276 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Joe Perches99fbb1e2010-11-09 10:18:05 -0800278 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 va_list args;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 va_start(args, fmt);
Joe Perches99fbb1e2010-11-09 10:18:05 -0800282
283 vaf.fmt = fmt;
284 vaf.va = &args;
285
286 printk(KERN_CRIT "EXT3-fs (%s): error: %s: %pV\n",
287 sb->s_id, function, &vaf);
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 va_end(args);
290
291 if (test_opt(sb, ERRORS_PANIC))
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100292 panic("EXT3-fs: panic from previous error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
294 if (sb->s_flags & MS_RDONLY)
295 return;
296
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100297 ext3_msg(sb, KERN_CRIT,
298 "error: remounting filesystem read-only");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
Dmitry Monakhove3c96432010-02-02 16:05:51 +0300300 set_opt(EXT3_SB(sb)->s_mount_opt, ABORT);
Dmitry Monakhov3df32192013-05-28 13:19:01 +0400301 /*
302 * Make sure updated value of ->s_mount_state will be visible
303 * before ->s_flags update.
304 */
305 smp_wmb();
306 sb->s_flags |= MS_RDONLY;
307
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400308 if (EXT3_SB(sb)->s_journal)
309 journal_abort(EXT3_SB(sb)->s_journal, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Joe Perches99fbb1e2010-11-09 10:18:05 -0800312void ext3_warning(struct super_block *sb, const char *function,
313 const char *fmt, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Joe Perches99fbb1e2010-11-09 10:18:05 -0800315 struct va_format vaf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 va_list args;
317
318 va_start(args, fmt);
Joe Perches99fbb1e2010-11-09 10:18:05 -0800319
320 vaf.fmt = fmt;
321 vaf.va = &args;
322
323 printk(KERN_WARNING "EXT3-fs (%s): warning: %s: %pV\n",
324 sb->s_id, function, &vaf);
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 va_end(args);
327}
328
329void ext3_update_dynamic_rev(struct super_block *sb)
330{
331 struct ext3_super_block *es = EXT3_SB(sb)->s_es;
332
333 if (le32_to_cpu(es->s_rev_level) > EXT3_GOOD_OLD_REV)
334 return;
335
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100336 ext3_msg(sb, KERN_WARNING,
337 "warning: updating to rev %d because of "
338 "new feature flag, running e2fsck is recommended",
339 EXT3_DYNAMIC_REV);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 es->s_first_ino = cpu_to_le32(EXT3_GOOD_OLD_FIRST_INO);
342 es->s_inode_size = cpu_to_le16(EXT3_GOOD_OLD_INODE_SIZE);
343 es->s_rev_level = cpu_to_le32(EXT3_DYNAMIC_REV);
344 /* leave es->s_feature_*compat flags alone */
345 /* es->s_uuid will be set by e2fsck if empty */
346
347 /*
348 * The rest of the superblock fields should be zero, and if not it
349 * means they are likely already in use, so leave them alone. We
350 * can leave it up to e2fsck to clean up any inconsistencies there.
351 */
352}
353
354/*
355 * Open the external journal device
356 */
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100357static struct block_device *ext3_blkdev_get(dev_t dev, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct block_device *bdev;
360 char b[BDEVNAME_SIZE];
361
Tejun Heod4d77622010-11-13 11:55:18 +0100362 bdev = blkdev_get_by_dev(dev, FMODE_READ|FMODE_WRITE|FMODE_EXCL, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (IS_ERR(bdev))
364 goto fail;
365 return bdev;
366
367fail:
Lars-Peter Clausen8d0c2d12013-03-09 15:28:44 +0100368 ext3_msg(sb, KERN_ERR, "error: failed to open journal device %s: %ld",
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100369 __bdevname(dev, b), PTR_ERR(bdev));
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return NULL;
372}
373
374/*
375 * Release the journal device
376 */
Al Viro4385bab2013-05-05 22:11:03 -0400377static void ext3_blkdev_put(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Al Viro4385bab2013-05-05 22:11:03 -0400379 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
381
Al Viro4385bab2013-05-05 22:11:03 -0400382static void ext3_blkdev_remove(struct ext3_sb_info *sbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct block_device *bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 bdev = sbi->journal_bdev;
386 if (bdev) {
Al Viro4385bab2013-05-05 22:11:03 -0400387 ext3_blkdev_put(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 sbi->journal_bdev = NULL;
389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
392static inline struct inode *orphan_list_entry(struct list_head *l)
393{
394 return &list_entry(l, struct ext3_inode_info, i_orphan)->vfs_inode;
395}
396
397static void dump_orphan_list(struct super_block *sb, struct ext3_sb_info *sbi)
398{
399 struct list_head *l;
400
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100401 ext3_msg(sb, KERN_ERR, "error: sb orphan head is %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 le32_to_cpu(sbi->s_es->s_last_orphan));
403
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100404 ext3_msg(sb, KERN_ERR, "sb_info orphan list:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 list_for_each(l, &sbi->s_orphan) {
406 struct inode *inode = orphan_list_entry(l);
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100407 ext3_msg(sb, KERN_ERR, " "
Eric Sandeeneee194e2006-09-27 01:49:30 -0700408 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 inode->i_sb->s_id, inode->i_ino, inode,
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700410 inode->i_mode, inode->i_nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 NEXT_ORPHAN(inode));
412 }
413}
414
415static void ext3_put_super (struct super_block * sb)
416{
417 struct ext3_sb_info *sbi = EXT3_SB(sb);
418 struct ext3_super_block *es = sbi->s_es;
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400419 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400421 dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 ext3_xattr_put_super(sb);
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400423 err = journal_destroy(sbi->s_journal);
424 sbi->s_journal = NULL;
425 if (err < 0)
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -0700426 ext3_abort(sb, __func__, "Couldn't clean up the journal");
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (!(sb->s_flags & MS_RDONLY)) {
429 EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
430 es->s_state = cpu_to_le16(sbi->s_mount_state);
431 BUFFER_TRACE(sbi->s_sbh, "marking dirty");
432 mark_buffer_dirty(sbi->s_sbh);
433 ext3_commit_super(sb, es, 1);
434 }
435
436 for (i = 0; i < sbi->s_gdb_count; i++)
437 brelse(sbi->s_group_desc[i]);
438 kfree(sbi->s_group_desc);
439 percpu_counter_destroy(&sbi->s_freeblocks_counter);
440 percpu_counter_destroy(&sbi->s_freeinodes_counter);
441 percpu_counter_destroy(&sbi->s_dirs_counter);
442 brelse(sbi->s_sbh);
443#ifdef CONFIG_QUOTA
Jan Karaa93114e2014-09-10 20:48:02 +0200444 for (i = 0; i < EXT3_MAXQUOTAS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kfree(sbi->s_qf_names[i]);
446#endif
447
448 /* Debugging code just in case the in-memory inode orphan list
449 * isn't empty. The on-disk one can be non-empty if we've
450 * detected an error and taken the fs readonly, but the
451 * in-memory list had better be clean by this point. */
452 if (!list_empty(&sbi->s_orphan))
453 dump_orphan_list(sb, sbi);
454 J_ASSERT(list_empty(&sbi->s_orphan));
455
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700456 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
458 /*
459 * Invalidate the journal device's buffers. We don't want them
460 * floating about in memory - the physical journal device may
461 * hotswapped, and it breaks the `ro-after' testing code.
462 */
463 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700464 invalidate_bdev(sbi->journal_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 ext3_blkdev_remove(sbi);
466 }
467 sb->s_fs_info = NULL;
Pekka Enberg5df096d2009-01-07 18:07:25 -0800468 kfree(sbi->s_blockgroup_lock);
Fabian Frederick6744e902014-12-27 16:01:22 +0100469 mutex_destroy(&sbi->s_orphan_lock);
470 mutex_destroy(&sbi->s_resize_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
Christoph Lametere18b8902006-12-06 20:33:20 -0800474static struct kmem_cache *ext3_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476/*
477 * Called inside transaction, so use GFP_NOFS
478 */
479static struct inode *ext3_alloc_inode(struct super_block *sb)
480{
481 struct ext3_inode_info *ei;
482
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800483 ei = kmem_cache_alloc(ext3_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (!ei)
485 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 ei->i_block_alloc_info = NULL;
487 ei->vfs_inode.i_version = 1;
Jan Karafe8bc912009-10-16 19:26:15 +0200488 atomic_set(&ei->i_datasync_tid, 0);
489 atomic_set(&ei->i_sync_tid, 0);
Jan Kara4018cfb2014-09-25 16:52:38 +0200490#ifdef CONFIG_QUOTA
491 memset(&ei->i_dquot, 0, sizeof(ei->i_dquot));
492#endif
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return &ei->vfs_inode;
495}
496
Lukas Czerner785c4bc2011-05-23 18:33:01 +0200497static int ext3_drop_inode(struct inode *inode)
498{
499 int drop = generic_drop_inode(inode);
500
501 trace_ext3_drop_inode(inode, drop);
502 return drop;
503}
504
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100505static void ext3_i_callback(struct rcu_head *head)
506{
507 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100508 kmem_cache_free(ext3_inode_cachep, EXT3_I(inode));
509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511static void ext3_destroy_inode(struct inode *inode)
512{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700513 if (!list_empty(&(EXT3_I(inode)->i_orphan))) {
514 printk("EXT3 Inode %p: orphan list check failed!\n",
515 EXT3_I(inode));
516 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
517 EXT3_I(inode), sizeof(struct ext3_inode_info),
518 false);
519 dump_stack();
520 }
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100521 call_rcu(&inode->i_rcu, ext3_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700524static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 struct ext3_inode_info *ei = (struct ext3_inode_info *) foo;
527
Christoph Lametera35afb82007-05-16 22:10:57 -0700528 INIT_LIST_HEAD(&ei->i_orphan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#ifdef CONFIG_EXT3_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700530 init_rwsem(&ei->xattr_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700532 mutex_init(&ei->truncate_mutex);
533 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700535
Fabian Frederick1da8b822014-02-01 19:13:00 +0800536static int __init init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 ext3_inode_cachep = kmem_cache_create("ext3_inode_cache",
539 sizeof(struct ext3_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800540 0, (SLAB_RECLAIM_ACCOUNT|
541 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900542 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (ext3_inode_cachep == NULL)
544 return -ENOMEM;
545 return 0;
546}
547
548static void destroy_inodecache(void)
549{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000550 /*
551 * Make sure all delayed rcu free inodes are flushed before we
552 * destroy cache.
553 */
554 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700555 kmem_cache_destroy(ext3_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200558static inline void ext3_show_quota_options(struct seq_file *seq, struct super_block *sb)
Mark Bellon8fc27512005-09-06 15:16:54 -0700559{
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200560#if defined(CONFIG_QUOTA)
OGAWA Hirofumi275abf52005-09-22 21:44:03 -0700561 struct ext3_sb_info *sbi = EXT3_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Jan Kara1aeec432009-11-30 22:22:41 +0100563 if (sbi->s_jquota_fmt) {
564 char *fmtname = "";
565
566 switch (sbi->s_jquota_fmt) {
567 case QFMT_VFS_OLD:
568 fmtname = "vfsold";
569 break;
570 case QFMT_VFS_V0:
571 fmtname = "vfsv0";
572 break;
573 case QFMT_VFS_V1:
574 fmtname = "vfsv1";
575 break;
576 }
577 seq_printf(seq, ",jqfmt=%s", fmtname);
578 }
Mark Bellon8fc27512005-09-06 15:16:54 -0700579
580 if (sbi->s_qf_names[USRQUOTA])
581 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
582
583 if (sbi->s_qf_names[GRPQUOTA])
584 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
585
Dmitry Monakhove3c96432010-02-02 16:05:51 +0300586 if (test_opt(sb, USRQUOTA))
Mark Bellon8fc27512005-09-06 15:16:54 -0700587 seq_puts(seq, ",usrquota");
588
Dmitry Monakhove3c96432010-02-02 16:05:51 +0300589 if (test_opt(sb, GRPQUOTA))
Mark Bellon8fc27512005-09-06 15:16:54 -0700590 seq_puts(seq, ",grpquota");
591#endif
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200592}
593
Jan Kara3c4cec62009-08-24 16:38:43 +0200594static char *data_mode_string(unsigned long mode)
595{
596 switch (mode) {
597 case EXT3_MOUNT_JOURNAL_DATA:
598 return "journal";
599 case EXT3_MOUNT_ORDERED_DATA:
600 return "ordered";
601 case EXT3_MOUNT_WRITEBACK_DATA:
602 return "writeback";
603 }
604 return "unknown";
605}
606
Miklos Szeredi571beed2007-10-16 23:26:26 -0700607/*
608 * Show an option if
609 * - it's set to a non-default value OR
610 * - if the per-sb default is different from the global default
611 */
Al Viro34c80b12011-12-08 21:32:45 -0500612static int ext3_show_options(struct seq_file *seq, struct dentry *root)
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200613{
Al Viro34c80b12011-12-08 21:32:45 -0500614 struct super_block *sb = root->d_sb;
Miklos Szeredi571beed2007-10-16 23:26:26 -0700615 struct ext3_sb_info *sbi = EXT3_SB(sb);
616 struct ext3_super_block *es = sbi->s_es;
617 unsigned long def_mount_opts;
618
619 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
620
621 if (sbi->s_sb_block != 1)
622 seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
623 if (test_opt(sb, MINIX_DF))
624 seq_puts(seq, ",minixdf");
625 if (test_opt(sb, GRPID))
626 seq_puts(seq, ",grpid");
627 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT3_DEFM_BSDGROUPS))
628 seq_puts(seq, ",nogrpid");
Eric W. Biederman15232992012-02-07 15:41:24 -0800629 if (!uid_eq(sbi->s_resuid, make_kuid(&init_user_ns, EXT3_DEF_RESUID)) ||
Miklos Szeredi571beed2007-10-16 23:26:26 -0700630 le16_to_cpu(es->s_def_resuid) != EXT3_DEF_RESUID) {
Eric W. Biederman15232992012-02-07 15:41:24 -0800631 seq_printf(seq, ",resuid=%u",
632 from_kuid_munged(&init_user_ns, sbi->s_resuid));
Miklos Szeredi571beed2007-10-16 23:26:26 -0700633 }
Eric W. Biederman15232992012-02-07 15:41:24 -0800634 if (!gid_eq(sbi->s_resgid, make_kgid(&init_user_ns, EXT3_DEF_RESGID)) ||
Miklos Szeredi571beed2007-10-16 23:26:26 -0700635 le16_to_cpu(es->s_def_resgid) != EXT3_DEF_RESGID) {
Eric W. Biederman15232992012-02-07 15:41:24 -0800636 seq_printf(seq, ",resgid=%u",
637 from_kgid_munged(&init_user_ns, sbi->s_resgid));
Miklos Szeredi571beed2007-10-16 23:26:26 -0700638 }
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -0800639 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredi571beed2007-10-16 23:26:26 -0700640 int def_errors = le16_to_cpu(es->s_errors);
641
642 if (def_errors == EXT3_ERRORS_PANIC ||
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -0800643 def_errors == EXT3_ERRORS_CONTINUE) {
644 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredi571beed2007-10-16 23:26:26 -0700645 }
646 }
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -0800647 if (test_opt(sb, ERRORS_CONT))
648 seq_puts(seq, ",errors=continue");
Miklos Szeredi571beed2007-10-16 23:26:26 -0700649 if (test_opt(sb, ERRORS_PANIC))
650 seq_puts(seq, ",errors=panic");
651 if (test_opt(sb, NO_UID32))
652 seq_puts(seq, ",nouid32");
653 if (test_opt(sb, DEBUG))
654 seq_puts(seq, ",debug");
Miklos Szeredi571beed2007-10-16 23:26:26 -0700655#ifdef CONFIG_EXT3_FS_XATTR
656 if (test_opt(sb, XATTR_USER))
657 seq_puts(seq, ",user_xattr");
658 if (!test_opt(sb, XATTR_USER) &&
659 (def_mount_opts & EXT3_DEFM_XATTR_USER)) {
660 seq_puts(seq, ",nouser_xattr");
661 }
662#endif
663#ifdef CONFIG_EXT3_FS_POSIX_ACL
664 if (test_opt(sb, POSIX_ACL))
665 seq_puts(seq, ",acl");
666 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT3_DEFM_ACL))
667 seq_puts(seq, ",noacl");
668#endif
669 if (!test_opt(sb, RESERVATION))
670 seq_puts(seq, ",noreservation");
671 if (sbi->s_commit_interval) {
672 seq_printf(seq, ",commit=%u",
673 (unsigned) (sbi->s_commit_interval / HZ));
674 }
Eric Sandeen0636c732010-04-30 11:09:34 -0500675
676 /*
677 * Always display barrier state so it's clear what the status is.
678 */
679 seq_puts(seq, ",barrier=");
680 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Dmitry Monakhove3c96432010-02-02 16:05:51 +0300681 seq_printf(seq, ",data=%s", data_mode_string(test_opt(sb, DATA_FLAGS)));
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -0700682 if (test_opt(sb, DATA_ERR_ABORT))
683 seq_puts(seq, ",data_err=abort");
684
Eric Sandeendee1d3b2009-11-16 16:50:49 -0600685 if (test_opt(sb, NOLOAD))
686 seq_puts(seq, ",norecovery");
687
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200688 ext3_show_quota_options(seq, sb);
Mark Bellon8fc27512005-09-06 15:16:54 -0700689
690 return 0;
691}
692
NeilBrownfdb36672006-09-16 12:15:38 -0700693
Christoph Hellwig74af0ba2007-10-21 16:42:07 -0700694static struct inode *ext3_nfs_get_inode(struct super_block *sb,
695 u64 ino, u32 generation)
NeilBrownfdb36672006-09-16 12:15:38 -0700696{
NeilBrownfdb36672006-09-16 12:15:38 -0700697 struct inode *inode;
NeilBrownfdb36672006-09-16 12:15:38 -0700698
699 if (ino < EXT3_FIRST_INO(sb) && ino != EXT3_ROOT_INO)
700 return ERR_PTR(-ESTALE);
701 if (ino > le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count))
702 return ERR_PTR(-ESTALE);
703
704 /* iget isn't really right if the inode is currently unallocated!!
705 *
706 * ext3_read_inode will return a bad_inode if the inode had been
707 * deleted, so we should be safe.
708 *
709 * Currently we don't know the generation for parent directory, so
710 * a generation of 0 means "accept any"
711 */
David Howells473043d2008-02-07 00:15:36 -0800712 inode = ext3_iget(sb, ino);
713 if (IS_ERR(inode))
714 return ERR_CAST(inode);
715 if (generation && inode->i_generation != generation) {
NeilBrownfdb36672006-09-16 12:15:38 -0700716 iput(inode);
717 return ERR_PTR(-ESTALE);
718 }
Christoph Hellwig74af0ba2007-10-21 16:42:07 -0700719
720 return inode;
721}
722
723static struct dentry *ext3_fh_to_dentry(struct super_block *sb, struct fid *fid,
724 int fh_len, int fh_type)
725{
726 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
727 ext3_nfs_get_inode);
728}
729
730static struct dentry *ext3_fh_to_parent(struct super_block *sb, struct fid *fid,
731 int fh_len, int fh_type)
732{
733 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
734 ext3_nfs_get_inode);
NeilBrownfdb36672006-09-16 12:15:38 -0700735}
736
Toshiyuki Okajima6b082b52009-01-05 22:38:14 -0500737/*
738 * Try to release metadata pages (indirect blocks, directories) which are
739 * mapped via the block device. Since these pages could have journal heads
740 * which would prevent try_to_free_buffers() from freeing them, we must use
741 * jbd layer's try_to_free_buffers() function to release them.
742 */
743static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
744 gfp_t wait)
745{
746 journal_t *journal = EXT3_SB(sb)->s_journal;
747
748 WARN_ON(PageChecked(page));
749 if (!page_has_buffers(page))
750 return 0;
751 if (journal)
752 return journal_try_to_free_buffers(journal, page,
753 wait & ~__GFP_WAIT);
754 return try_to_free_buffers(page);
755}
756
Mark Bellon8fc27512005-09-06 15:16:54 -0700757#ifdef CONFIG_QUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758#define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group")
759#define QTYPE2MOPT(on, t) ((t)==USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761static int ext3_write_dquot(struct dquot *dquot);
762static int ext3_acquire_dquot(struct dquot *dquot);
763static int ext3_release_dquot(struct dquot *dquot);
764static int ext3_mark_dquot_dirty(struct dquot *dquot);
765static int ext3_write_info(struct super_block *sb, int type);
Jan Kara2fd83a42008-04-28 02:14:34 -0700766static int ext3_quota_on(struct super_block *sb, int type, int format_id,
Jan Karaf00c9e42010-09-15 17:38:58 +0200767 struct path *path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768static int ext3_quota_on_mount(struct super_block *sb, int type);
769static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
770 size_t len, loff_t off);
771static ssize_t ext3_quota_write(struct super_block *sb, int type,
772 const char *data, size_t len, loff_t off);
Jan Kara4018cfb2014-09-25 16:52:38 +0200773static struct dquot **ext3_get_dquots(struct inode *inode)
774{
775 return EXT3_I(inode)->i_dquot;
776}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Alexey Dobriyan61e225d2009-09-21 17:01:08 -0700778static const struct dquot_operations ext3_quota_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 .write_dquot = ext3_write_dquot,
780 .acquire_dquot = ext3_acquire_dquot,
781 .release_dquot = ext3_release_dquot,
782 .mark_dirty = ext3_mark_dquot_dirty,
Jan Kara157091a2008-11-25 15:31:34 +0100783 .write_info = ext3_write_info,
784 .alloc_dquot = dquot_alloc,
785 .destroy_dquot = dquot_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786};
787
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700788static const struct quotactl_ops ext3_qctl_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 .quota_on = ext3_quota_on,
Christoph Hellwig287a8092010-05-19 07:16:45 -0400790 .quota_off = dquot_quota_off,
791 .quota_sync = dquot_quota_sync,
792 .get_info = dquot_get_dqinfo,
793 .set_info = dquot_set_dqinfo,
794 .get_dqblk = dquot_get_dqblk,
795 .set_dqblk = dquot_set_dqblk
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797#endif
798
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800799static const struct super_operations ext3_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 .alloc_inode = ext3_alloc_inode,
801 .destroy_inode = ext3_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 .write_inode = ext3_write_inode,
803 .dirty_inode = ext3_dirty_inode,
Lukas Czerner785c4bc2011-05-23 18:33:01 +0200804 .drop_inode = ext3_drop_inode,
Al Viroac14a952010-06-06 07:08:19 -0400805 .evict_inode = ext3_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 .put_super = ext3_put_super,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .sync_fs = ext3_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800808 .freeze_fs = ext3_freeze,
809 .unfreeze_fs = ext3_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 .statfs = ext3_statfs,
811 .remount_fs = ext3_remount,
Mark Bellon8fc27512005-09-06 15:16:54 -0700812 .show_options = ext3_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813#ifdef CONFIG_QUOTA
814 .quota_read = ext3_quota_read,
815 .quota_write = ext3_quota_write,
Jan Kara4018cfb2014-09-25 16:52:38 +0200816 .get_dquots = ext3_get_dquots,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817#endif
Toshiyuki Okajima6b082b52009-01-05 22:38:14 -0500818 .bdev_try_to_free_page = bdev_try_to_free_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819};
820
Christoph Hellwig39655162007-10-21 16:42:17 -0700821static const struct export_operations ext3_export_ops = {
Christoph Hellwig74af0ba2007-10-21 16:42:07 -0700822 .fh_to_dentry = ext3_fh_to_dentry,
823 .fh_to_parent = ext3_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 .get_parent = ext3_get_parent,
825};
826
827enum {
828 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
829 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Adrian Bunk2860b732005-11-08 21:34:59 -0800830 Opt_nouid32, Opt_nocheck, Opt_debug, Opt_oldalloc, Opt_orlov,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Badari Pulavartyade1a292006-06-26 00:25:04 -0700832 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
Johann Lombardi71b96252006-01-08 01:03:20 -0800833 Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
Eric Sandeencf7eff42013-07-31 14:33:00 -0500834 Opt_journal_path,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -0700836 Opt_data_err_abort, Opt_data_err_ignore,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
Jan Kara1aeec432009-11-30 22:22:41 +0100838 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
Eric Sandeen0636c732010-04-30 11:09:34 -0500839 Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
840 Opt_resize, Opt_usrquota, Opt_grpquota
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841};
842
Steven Whitehousea447c092008-10-13 10:46:57 +0100843static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 {Opt_bsd_df, "bsddf"},
845 {Opt_minix_df, "minixdf"},
846 {Opt_grpid, "grpid"},
847 {Opt_grpid, "bsdgroups"},
848 {Opt_nogrpid, "nogrpid"},
849 {Opt_nogrpid, "sysvgroups"},
850 {Opt_resgid, "resgid=%u"},
851 {Opt_resuid, "resuid=%u"},
852 {Opt_sb, "sb=%u"},
853 {Opt_err_cont, "errors=continue"},
854 {Opt_err_panic, "errors=panic"},
855 {Opt_err_ro, "errors=remount-ro"},
856 {Opt_nouid32, "nouid32"},
857 {Opt_nocheck, "nocheck"},
858 {Opt_nocheck, "check=none"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 {Opt_debug, "debug"},
860 {Opt_oldalloc, "oldalloc"},
861 {Opt_orlov, "orlov"},
862 {Opt_user_xattr, "user_xattr"},
863 {Opt_nouser_xattr, "nouser_xattr"},
864 {Opt_acl, "acl"},
865 {Opt_noacl, "noacl"},
866 {Opt_reservation, "reservation"},
867 {Opt_noreservation, "noreservation"},
868 {Opt_noload, "noload"},
Eric Sandeendee1d3b2009-11-16 16:50:49 -0600869 {Opt_noload, "norecovery"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 {Opt_nobh, "nobh"},
Badari Pulavartyade1a292006-06-26 00:25:04 -0700871 {Opt_bh, "bh"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 {Opt_commit, "commit=%u"},
873 {Opt_journal_update, "journal=update"},
874 {Opt_journal_inum, "journal=%u"},
Johann Lombardi71b96252006-01-08 01:03:20 -0800875 {Opt_journal_dev, "journal_dev=%u"},
Eric Sandeencf7eff42013-07-31 14:33:00 -0500876 {Opt_journal_path, "journal_path=%s"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 {Opt_abort, "abort"},
878 {Opt_data_journal, "data=journal"},
879 {Opt_data_ordered, "data=ordered"},
880 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -0700881 {Opt_data_err_abort, "data_err=abort"},
882 {Opt_data_err_ignore, "data_err=ignore"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 {Opt_offusrjquota, "usrjquota="},
884 {Opt_usrjquota, "usrjquota=%s"},
885 {Opt_offgrpjquota, "grpjquota="},
886 {Opt_grpjquota, "grpjquota=%s"},
887 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
888 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
Jan Kara1aeec432009-11-30 22:22:41 +0100889 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700890 {Opt_grpquota, "grpquota"},
Jan Kara1f545872005-06-23 22:01:04 -0700891 {Opt_noquota, "noquota"},
892 {Opt_quota, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700893 {Opt_usrquota, "usrquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 {Opt_barrier, "barrier=%u"},
Eric Sandeen0636c732010-04-30 11:09:34 -0500895 {Opt_barrier, "barrier"},
896 {Opt_nobarrier, "nobarrier"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 {Opt_resize, "resize"},
Josef Bacik925872162008-03-04 14:29:43 -0800898 {Opt_err, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899};
900
Alexey Fisher4cf46b62009-11-22 20:38:55 +0100901static ext3_fsblk_t get_sb_block(void **data, struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700903 ext3_fsblk_t sb_block;
904 char *options = (char *) *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 if (!options || strncmp(options, "sb=", 3) != 0)
907 return 1; /* Default location */
908 options += 3;
Mingming Cao43d23f92006-06-25 05:48:07 -0700909 /*todo: use simple_strtoll with >32bit ext3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 sb_block = simple_strtoul(options, &options, 0);
911 if (*options && *options != ',') {
Lars-Peter Clausen8d0c2d12013-03-09 15:28:44 +0100912 ext3_msg(sb, KERN_ERR, "error: invalid sb specification: %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 (char *) *data);
914 return 1;
915 }
916 if (*options == ',')
917 options++;
918 *data = (void *) options;
919 return sb_block;
920}
921
Dmitry Monakhove1f5c672010-02-02 16:05:53 +0300922#ifdef CONFIG_QUOTA
923static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
924{
925 struct ext3_sb_info *sbi = EXT3_SB(sb);
926 char *qname;
927
928 if (sb_any_quota_loaded(sb) &&
929 !sbi->s_qf_names[qtype]) {
930 ext3_msg(sb, KERN_ERR,
931 "Cannot change journaled "
932 "quota options when quota turned on");
933 return 0;
934 }
935 qname = match_strdup(args);
936 if (!qname) {
937 ext3_msg(sb, KERN_ERR,
938 "Not enough memory for storing quotafile name");
939 return 0;
940 }
Jan Karaf56426a2012-12-31 12:38:36 +0100941 if (sbi->s_qf_names[qtype]) {
942 int same = !strcmp(sbi->s_qf_names[qtype], qname);
943
944 kfree(qname);
945 if (!same) {
946 ext3_msg(sb, KERN_ERR,
947 "%s quota file already specified",
948 QTYPE2NAME(qtype));
949 }
950 return same;
951 }
952 if (strchr(qname, '/')) {
Dmitry Monakhove1f5c672010-02-02 16:05:53 +0300953 ext3_msg(sb, KERN_ERR,
Jan Karaf56426a2012-12-31 12:38:36 +0100954 "quotafile must be on filesystem root");
Dmitry Monakhove1f5c672010-02-02 16:05:53 +0300955 kfree(qname);
956 return 0;
957 }
958 sbi->s_qf_names[qtype] = qname;
Dmitry Monakhove1f5c672010-02-02 16:05:53 +0300959 set_opt(sbi->s_mount_opt, QUOTA);
960 return 1;
961}
962
963static int clear_qf_name(struct super_block *sb, int qtype) {
964
965 struct ext3_sb_info *sbi = EXT3_SB(sb);
966
967 if (sb_any_quota_loaded(sb) &&
968 sbi->s_qf_names[qtype]) {
969 ext3_msg(sb, KERN_ERR, "Cannot change journaled quota options"
970 " when quota turned on");
971 return 0;
972 }
Jan Karaf56426a2012-12-31 12:38:36 +0100973 if (sbi->s_qf_names[qtype]) {
974 kfree(sbi->s_qf_names[qtype]);
975 sbi->s_qf_names[qtype] = NULL;
976 }
Dmitry Monakhove1f5c672010-02-02 16:05:53 +0300977 return 1;
978}
979#endif
980
Johann Lombardi71b96252006-01-08 01:03:20 -0800981static int parse_options (char *options, struct super_block *sb,
Eric Sandeeneee194e2006-09-27 01:49:30 -0700982 unsigned int *inum, unsigned long *journal_devnum,
Mingming Cao43d23f92006-06-25 05:48:07 -0700983 ext3_fsblk_t *n_blocks_count, int is_remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct ext3_sb_info *sbi = EXT3_SB(sb);
986 char * p;
987 substring_t args[MAX_OPT_ARGS];
988 int data_opt = 0;
989 int option;
Eric W. Biederman15232992012-02-07 15:41:24 -0800990 kuid_t uid;
991 kgid_t gid;
Eric Sandeencf7eff42013-07-31 14:33:00 -0500992 char *journal_path;
993 struct inode *journal_inode;
994 struct path path;
995 int error;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997#ifdef CONFIG_QUOTA
Dmitry Monakhove1f5c672010-02-02 16:05:53 +0300998 int qfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999#endif
1000
1001 if (!options)
1002 return 1;
1003
1004 while ((p = strsep (&options, ",")) != NULL) {
1005 int token;
1006 if (!*p)
1007 continue;
Eric Sandeen0636c732010-04-30 11:09:34 -05001008 /*
1009 * Initialize args struct so we know whether arg was
1010 * found; some options take optional arguments.
1011 */
Sachin Kamat76f59b32012-09-04 13:42:00 +05301012 args[0].to = args[0].from = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 token = match_token(p, tokens, args);
1014 switch (token) {
1015 case Opt_bsd_df:
1016 clear_opt (sbi->s_mount_opt, MINIX_DF);
1017 break;
1018 case Opt_minix_df:
1019 set_opt (sbi->s_mount_opt, MINIX_DF);
1020 break;
1021 case Opt_grpid:
1022 set_opt (sbi->s_mount_opt, GRPID);
1023 break;
1024 case Opt_nogrpid:
1025 clear_opt (sbi->s_mount_opt, GRPID);
1026 break;
1027 case Opt_resuid:
1028 if (match_int(&args[0], &option))
1029 return 0;
Eric W. Biederman15232992012-02-07 15:41:24 -08001030 uid = make_kuid(current_user_ns(), option);
1031 if (!uid_valid(uid)) {
1032 ext3_msg(sb, KERN_ERR, "Invalid uid value %d", option);
Zhao Hongjiang66415f62012-10-09 13:48:47 +08001033 return 0;
Eric W. Biederman15232992012-02-07 15:41:24 -08001034
1035 }
1036 sbi->s_resuid = uid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 break;
1038 case Opt_resgid:
1039 if (match_int(&args[0], &option))
1040 return 0;
Eric W. Biederman15232992012-02-07 15:41:24 -08001041 gid = make_kgid(current_user_ns(), option);
1042 if (!gid_valid(gid)) {
1043 ext3_msg(sb, KERN_ERR, "Invalid gid value %d", option);
Zhao Hongjiang66415f62012-10-09 13:48:47 +08001044 return 0;
Eric W. Biederman15232992012-02-07 15:41:24 -08001045 }
1046 sbi->s_resgid = gid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 break;
1048 case Opt_sb:
1049 /* handled by get_sb_block() instead of here */
1050 /* *sb_block = match_int(&args[0]); */
1051 break;
1052 case Opt_err_panic:
1053 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
1054 clear_opt (sbi->s_mount_opt, ERRORS_RO);
1055 set_opt (sbi->s_mount_opt, ERRORS_PANIC);
1056 break;
1057 case Opt_err_ro:
1058 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
1059 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
1060 set_opt (sbi->s_mount_opt, ERRORS_RO);
1061 break;
1062 case Opt_err_cont:
1063 clear_opt (sbi->s_mount_opt, ERRORS_RO);
1064 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
1065 set_opt (sbi->s_mount_opt, ERRORS_CONT);
1066 break;
1067 case Opt_nouid32:
1068 set_opt (sbi->s_mount_opt, NO_UID32);
1069 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 case Opt_nocheck:
1071 clear_opt (sbi->s_mount_opt, CHECK);
1072 break;
1073 case Opt_debug:
1074 set_opt (sbi->s_mount_opt, DEBUG);
1075 break;
1076 case Opt_oldalloc:
Lukas Czernerfbc85402011-08-16 18:08:06 +02001077 ext3_msg(sb, KERN_WARNING,
1078 "Ignoring deprecated oldalloc option");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 break;
1080 case Opt_orlov:
Lukas Czernerfbc85402011-08-16 18:08:06 +02001081 ext3_msg(sb, KERN_WARNING,
1082 "Ignoring deprecated orlov option");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 break;
1084#ifdef CONFIG_EXT3_FS_XATTR
1085 case Opt_user_xattr:
1086 set_opt (sbi->s_mount_opt, XATTR_USER);
1087 break;
1088 case Opt_nouser_xattr:
1089 clear_opt (sbi->s_mount_opt, XATTR_USER);
1090 break;
1091#else
1092 case Opt_user_xattr:
1093 case Opt_nouser_xattr:
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001094 ext3_msg(sb, KERN_INFO,
1095 "(no)user_xattr options not supported");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
1097#endif
1098#ifdef CONFIG_EXT3_FS_POSIX_ACL
1099 case Opt_acl:
1100 set_opt(sbi->s_mount_opt, POSIX_ACL);
1101 break;
1102 case Opt_noacl:
1103 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1104 break;
1105#else
1106 case Opt_acl:
1107 case Opt_noacl:
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001108 ext3_msg(sb, KERN_INFO,
1109 "(no)acl options not supported");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 break;
1111#endif
1112 case Opt_reservation:
1113 set_opt(sbi->s_mount_opt, RESERVATION);
1114 break;
1115 case Opt_noreservation:
1116 clear_opt(sbi->s_mount_opt, RESERVATION);
1117 break;
1118 case Opt_journal_update:
1119 /* @@@ FIXME */
1120 /* Eventually we will want to be able to create
1121 a journal file here. For now, only allow the
1122 user to specify an existing inode to be the
1123 journal file. */
1124 if (is_remount) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001125 ext3_msg(sb, KERN_ERR, "error: cannot specify "
1126 "journal on remount");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return 0;
1128 }
1129 set_opt (sbi->s_mount_opt, UPDATE_JOURNAL);
1130 break;
1131 case Opt_journal_inum:
1132 if (is_remount) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001133 ext3_msg(sb, KERN_ERR, "error: cannot specify "
1134 "journal on remount");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 return 0;
1136 }
1137 if (match_int(&args[0], &option))
1138 return 0;
1139 *inum = option;
1140 break;
Johann Lombardi71b96252006-01-08 01:03:20 -08001141 case Opt_journal_dev:
1142 if (is_remount) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001143 ext3_msg(sb, KERN_ERR, "error: cannot specify "
1144 "journal on remount");
Johann Lombardi71b96252006-01-08 01:03:20 -08001145 return 0;
1146 }
1147 if (match_int(&args[0], &option))
1148 return 0;
1149 *journal_devnum = option;
1150 break;
Eric Sandeencf7eff42013-07-31 14:33:00 -05001151 case Opt_journal_path:
1152 if (is_remount) {
1153 ext3_msg(sb, KERN_ERR, "error: cannot specify "
1154 "journal on remount");
1155 return 0;
1156 }
1157
1158 journal_path = match_strdup(&args[0]);
1159 if (!journal_path) {
1160 ext3_msg(sb, KERN_ERR, "error: could not dup "
1161 "journal device string");
1162 return 0;
1163 }
1164
1165 error = kern_path(journal_path, LOOKUP_FOLLOW, &path);
1166 if (error) {
1167 ext3_msg(sb, KERN_ERR, "error: could not find "
1168 "journal device path: error %d", error);
1169 kfree(journal_path);
1170 return 0;
1171 }
1172
David Howells2b0143b2015-03-17 22:25:59 +00001173 journal_inode = d_inode(path.dentry);
Eric Sandeencf7eff42013-07-31 14:33:00 -05001174 if (!S_ISBLK(journal_inode->i_mode)) {
1175 ext3_msg(sb, KERN_ERR, "error: journal path %s "
1176 "is not a block device", journal_path);
1177 path_put(&path);
1178 kfree(journal_path);
1179 return 0;
1180 }
1181
1182 *journal_devnum = new_encode_dev(journal_inode->i_rdev);
1183 path_put(&path);
1184 kfree(journal_path);
1185 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 case Opt_noload:
1187 set_opt (sbi->s_mount_opt, NOLOAD);
1188 break;
1189 case Opt_commit:
1190 if (match_int(&args[0], &option))
1191 return 0;
1192 if (option < 0)
1193 return 0;
1194 if (option == 0)
1195 option = JBD_DEFAULT_MAX_COMMIT_AGE;
1196 sbi->s_commit_interval = HZ * option;
1197 break;
1198 case Opt_data_journal:
1199 data_opt = EXT3_MOUNT_JOURNAL_DATA;
1200 goto datacheck;
1201 case Opt_data_ordered:
1202 data_opt = EXT3_MOUNT_ORDERED_DATA;
1203 goto datacheck;
1204 case Opt_data_writeback:
1205 data_opt = EXT3_MOUNT_WRITEBACK_DATA;
1206 datacheck:
1207 if (is_remount) {
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001208 if (test_opt(sb, DATA_FLAGS) == data_opt)
Jan Kara3c4cec62009-08-24 16:38:43 +02001209 break;
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001210 ext3_msg(sb, KERN_ERR,
1211 "error: cannot change "
Jan Kara3c4cec62009-08-24 16:38:43 +02001212 "data mode on remount. The filesystem "
1213 "is mounted in data=%s mode and you "
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001214 "try to remount it in data=%s mode.",
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001215 data_mode_string(test_opt(sb,
1216 DATA_FLAGS)),
Jan Kara3c4cec62009-08-24 16:38:43 +02001217 data_mode_string(data_opt));
1218 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 } else {
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001220 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 sbi->s_mount_opt |= data_opt;
1222 }
1223 break;
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -07001224 case Opt_data_err_abort:
1225 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1226 break;
1227 case Opt_data_err_ignore:
1228 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230#ifdef CONFIG_QUOTA
1231 case Opt_usrjquota:
Dmitry Monakhove1f5c672010-02-02 16:05:53 +03001232 if (!set_qf_name(sb, USRQUOTA, &args[0]))
1233 return 0;
1234 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 case Opt_grpjquota:
Dmitry Monakhove1f5c672010-02-02 16:05:53 +03001236 if (!set_qf_name(sb, GRPQUOTA, &args[0]))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 break;
1239 case Opt_offusrjquota:
Dmitry Monakhove1f5c672010-02-02 16:05:53 +03001240 if (!clear_qf_name(sb, USRQUOTA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return 0;
Dmitry Monakhove1f5c672010-02-02 16:05:53 +03001242 break;
1243 case Opt_offgrpjquota:
1244 if (!clear_qf_name(sb, GRPQUOTA))
1245 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 break;
1247 case Opt_jqfmt_vfsold:
Jan Karad06bf1d2008-07-25 01:46:18 -07001248 qfmt = QFMT_VFS_OLD;
1249 goto set_qf_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 case Opt_jqfmt_vfsv0:
Jan Karad06bf1d2008-07-25 01:46:18 -07001251 qfmt = QFMT_VFS_V0;
Jan Kara1aeec432009-11-30 22:22:41 +01001252 goto set_qf_format;
1253 case Opt_jqfmt_vfsv1:
1254 qfmt = QFMT_VFS_V1;
Jan Karad06bf1d2008-07-25 01:46:18 -07001255set_qf_format:
Jan Karaee0d5ff2008-08-20 18:11:50 +02001256 if (sb_any_quota_loaded(sb) &&
Jan Karad06bf1d2008-07-25 01:46:18 -07001257 sbi->s_jquota_fmt != qfmt) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001258 ext3_msg(sb, KERN_ERR, "error: cannot change "
Jan Karad06bf1d2008-07-25 01:46:18 -07001259 "journaled quota options when "
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001260 "quota turned on.");
Jan Karad06bf1d2008-07-25 01:46:18 -07001261 return 0;
1262 }
1263 sbi->s_jquota_fmt = qfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 break;
Jan Kara1f545872005-06-23 22:01:04 -07001265 case Opt_quota:
Mark Bellon8fc27512005-09-06 15:16:54 -07001266 case Opt_usrquota:
Jan Kara1f545872005-06-23 22:01:04 -07001267 set_opt(sbi->s_mount_opt, QUOTA);
Mark Bellon8fc27512005-09-06 15:16:54 -07001268 set_opt(sbi->s_mount_opt, USRQUOTA);
1269 break;
1270 case Opt_grpquota:
1271 set_opt(sbi->s_mount_opt, QUOTA);
1272 set_opt(sbi->s_mount_opt, GRPQUOTA);
Jan Kara1f545872005-06-23 22:01:04 -07001273 break;
1274 case Opt_noquota:
Jan Karaee0d5ff2008-08-20 18:11:50 +02001275 if (sb_any_quota_loaded(sb)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001276 ext3_msg(sb, KERN_ERR, "error: cannot change "
1277 "quota options when quota turned on.");
Jan Kara1f545872005-06-23 22:01:04 -07001278 return 0;
1279 }
1280 clear_opt(sbi->s_mount_opt, QUOTA);
Mark Bellon8fc27512005-09-06 15:16:54 -07001281 clear_opt(sbi->s_mount_opt, USRQUOTA);
1282 clear_opt(sbi->s_mount_opt, GRPQUOTA);
Jan Kara1f545872005-06-23 22:01:04 -07001283 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284#else
Mark Bellon8fc27512005-09-06 15:16:54 -07001285 case Opt_quota:
1286 case Opt_usrquota:
1287 case Opt_grpquota:
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001288 ext3_msg(sb, KERN_ERR,
1289 "error: quota options not supported.");
Jan Karafa1ff1e2008-04-28 02:16:14 -07001290 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 case Opt_usrjquota:
1292 case Opt_grpjquota:
1293 case Opt_offusrjquota:
1294 case Opt_offgrpjquota:
1295 case Opt_jqfmt_vfsold:
1296 case Opt_jqfmt_vfsv0:
Jan Kara1aeec432009-11-30 22:22:41 +01001297 case Opt_jqfmt_vfsv1:
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001298 ext3_msg(sb, KERN_ERR,
1299 "error: journaled quota options not "
1300 "supported.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
Jan Kara1f545872005-06-23 22:01:04 -07001302 case Opt_noquota:
1303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304#endif
1305 case Opt_abort:
1306 set_opt(sbi->s_mount_opt, ABORT);
1307 break;
Eric Sandeen0636c732010-04-30 11:09:34 -05001308 case Opt_nobarrier:
1309 clear_opt(sbi->s_mount_opt, BARRIER);
1310 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 case Opt_barrier:
Eric Sandeen0636c732010-04-30 11:09:34 -05001312 if (args[0].from) {
1313 if (match_int(&args[0], &option))
1314 return 0;
1315 } else
1316 option = 1; /* No argument, default to 1 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (option)
1318 set_opt(sbi->s_mount_opt, BARRIER);
1319 else
1320 clear_opt(sbi->s_mount_opt, BARRIER);
1321 break;
1322 case Opt_ignore:
1323 break;
1324 case Opt_resize:
Jan Kara08c6a962005-07-12 13:58:28 -07001325 if (!is_remount) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001326 ext3_msg(sb, KERN_ERR,
1327 "error: resize option only available "
1328 "for remount");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return 0;
1330 }
KAMBAROV, ZAURc7f17212005-06-28 20:45:11 -07001331 if (match_int(&args[0], &option) != 0)
1332 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 *n_blocks_count = option;
1334 break;
1335 case Opt_nobh:
Christoph Hellwig4c4d3902010-06-07 10:20:39 +02001336 ext3_msg(sb, KERN_WARNING,
1337 "warning: ignoring deprecated nobh option");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
Badari Pulavartyade1a292006-06-26 00:25:04 -07001339 case Opt_bh:
Christoph Hellwig4c4d3902010-06-07 10:20:39 +02001340 ext3_msg(sb, KERN_WARNING,
1341 "warning: ignoring deprecated bh option");
Badari Pulavartyade1a292006-06-26 00:25:04 -07001342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 default:
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001344 ext3_msg(sb, KERN_ERR,
1345 "error: unrecognized mount option \"%s\" "
1346 "or missing value", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return 0;
1348 }
1349 }
1350#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -07001351 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001352 if (test_opt(sb, USRQUOTA) && sbi->s_qf_names[USRQUOTA])
Mark Bellon8fc27512005-09-06 15:16:54 -07001353 clear_opt(sbi->s_mount_opt, USRQUOTA);
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001354 if (test_opt(sb, GRPQUOTA) && sbi->s_qf_names[GRPQUOTA])
Mark Bellon8fc27512005-09-06 15:16:54 -07001355 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1356
Dmitry Monakhove1f5c672010-02-02 16:05:53 +03001357 if (test_opt(sb, GRPQUOTA) || test_opt(sb, USRQUOTA)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001358 ext3_msg(sb, KERN_ERR, "error: old and new quota "
1359 "format mixing.");
Mark Bellon8fc27512005-09-06 15:16:54 -07001360 return 0;
1361 }
1362
1363 if (!sbi->s_jquota_fmt) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001364 ext3_msg(sb, KERN_ERR, "error: journaled quota format "
1365 "not specified.");
Mark Bellon8fc27512005-09-06 15:16:54 -07001366 return 0;
1367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 }
1369#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return 1;
1371}
1372
1373static int ext3_setup_super(struct super_block *sb, struct ext3_super_block *es,
1374 int read_only)
1375{
1376 struct ext3_sb_info *sbi = EXT3_SB(sb);
1377 int res = 0;
1378
1379 if (le32_to_cpu(es->s_rev_level) > EXT3_MAX_SUPP_REV) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001380 ext3_msg(sb, KERN_ERR,
1381 "error: revision level too high, "
1382 "forcing read-only mode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 res = MS_RDONLY;
1384 }
1385 if (read_only)
1386 return res;
1387 if (!(sbi->s_mount_state & EXT3_VALID_FS))
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001388 ext3_msg(sb, KERN_WARNING,
1389 "warning: mounting unchecked fs, "
1390 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 else if ((sbi->s_mount_state & EXT3_ERROR_FS))
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001392 ext3_msg(sb, KERN_WARNING,
1393 "warning: mounting fs with errors, "
1394 "running e2fsck is recommended");
Namhyung Kimdf0d6b82010-10-10 21:36:59 +09001395 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 le16_to_cpu(es->s_mnt_count) >=
Namhyung Kimdf0d6b82010-10-10 21:36:59 +09001397 le16_to_cpu(es->s_max_mnt_count))
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001398 ext3_msg(sb, KERN_WARNING,
1399 "warning: maximal mount count reached, "
1400 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 else if (le32_to_cpu(es->s_checkinterval) &&
1402 (le32_to_cpu(es->s_lastcheck) +
1403 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001404 ext3_msg(sb, KERN_WARNING,
1405 "warning: checktime reached, "
1406 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407#if 0
1408 /* @@@ We _will_ want to clear the valid bit if we find
1409 inconsistencies, to force a fsck at reboot. But for
1410 a plain journaled filesystem we can keep it set as
1411 valid forever! :) */
Marcin Slusarze7f23eb2008-04-28 02:16:06 -07001412 es->s_state &= cpu_to_le16(~EXT3_VALID_FS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413#endif
Namhyung Kimdf0d6b82010-10-10 21:36:59 +09001414 if (!le16_to_cpu(es->s_max_mnt_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 es->s_max_mnt_count = cpu_to_le16(EXT3_DFL_MAX_MNT_COUNT);
Marcin Slusarz50e8a282008-02-08 04:20:13 -08001416 le16_add_cpu(&es->s_mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 es->s_mtime = cpu_to_le32(get_seconds());
1418 ext3_update_dynamic_rev(sb);
1419 EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
1420
1421 ext3_commit_super(sb, es, 1);
1422 if (test_opt(sb, DEBUG))
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001423 ext3_msg(sb, KERN_INFO, "[bs=%lu, gc=%lu, "
1424 "bpg=%lu, ipg=%lu, mo=%04lx]",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 sb->s_blocksize,
1426 sbi->s_groups_count,
1427 EXT3_BLOCKS_PER_GROUP(sb),
1428 EXT3_INODES_PER_GROUP(sb),
1429 sbi->s_mount_opt);
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if (EXT3_SB(sb)->s_journal->j_inode == NULL) {
1432 char b[BDEVNAME_SIZE];
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001433 ext3_msg(sb, KERN_INFO, "using external journal on %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 bdevname(EXT3_SB(sb)->s_journal->j_dev, b));
1435 } else {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001436 ext3_msg(sb, KERN_INFO, "using internal journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 }
Dan Magenheimerd71bc6d2011-05-26 10:01:49 -06001438 cleancache_init_fs(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return res;
1440}
1441
1442/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001443static int ext3_check_descriptors(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444{
1445 struct ext3_sb_info *sbi = EXT3_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 int i;
1447
1448 ext3_debug ("Checking group descriptors");
1449
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001450 for (i = 0; i < sbi->s_groups_count; i++) {
1451 struct ext3_group_desc *gdp = ext3_get_group_desc(sb, i, NULL);
Akinobu Mita1eaafea2008-04-28 02:16:07 -07001452 ext3_fsblk_t first_block = ext3_group_first_block_no(sb, i);
1453 ext3_fsblk_t last_block;
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001454
Eric Sandeen855565e2006-09-27 01:49:29 -07001455 if (i == sbi->s_groups_count - 1)
1456 last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
1457 else
1458 last_block = first_block +
1459 (EXT3_BLOCKS_PER_GROUP(sb) - 1);
1460
Eric Sandeen855565e2006-09-27 01:49:29 -07001461 if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
1462 le32_to_cpu(gdp->bg_block_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 {
1464 ext3_error (sb, "ext3_check_descriptors",
1465 "Block bitmap for group %d"
1466 " not in group (block %lu)!",
1467 i, (unsigned long)
1468 le32_to_cpu(gdp->bg_block_bitmap));
1469 return 0;
1470 }
Eric Sandeen855565e2006-09-27 01:49:29 -07001471 if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
1472 le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 {
1474 ext3_error (sb, "ext3_check_descriptors",
1475 "Inode bitmap for group %d"
1476 " not in group (block %lu)!",
1477 i, (unsigned long)
1478 le32_to_cpu(gdp->bg_inode_bitmap));
1479 return 0;
1480 }
Eric Sandeen855565e2006-09-27 01:49:29 -07001481 if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
Eric Sandeen780dcdb2007-07-26 10:41:11 -07001482 le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
Eric Sandeen855565e2006-09-27 01:49:29 -07001483 last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 {
1485 ext3_error (sb, "ext3_check_descriptors",
1486 "Inode table for group %d"
1487 " not in group (block %lu)!",
1488 i, (unsigned long)
1489 le32_to_cpu(gdp->bg_inode_table));
1490 return 0;
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493
1494 sbi->s_es->s_free_blocks_count=cpu_to_le32(ext3_count_free_blocks(sb));
1495 sbi->s_es->s_free_inodes_count=cpu_to_le32(ext3_count_free_inodes(sb));
1496 return 1;
1497}
1498
1499
1500/* ext3_orphan_cleanup() walks a singly-linked list of inodes (starting at
1501 * the superblock) which were deleted from all directories, but held open by
1502 * a process at the time of a crash. We walk the list and try to delete these
1503 * inodes at recovery time (only with a read-write filesystem).
1504 *
1505 * In order to keep the orphan inode chain consistent during traversal (in
1506 * case of crash during recovery), we link each inode into the superblock
1507 * orphan list_head and handle it the same way as an inode deletion during
1508 * normal operation (which journals the operations for us).
1509 *
1510 * We only do an iget() and an iput() on each inode, which is very safe if we
1511 * accidentally point at an in-use or already deleted inode. The worst that
1512 * can happen in this case is that we get a "bit already cleared" message from
1513 * ext3_free_inode(). The only reason we would point at a wrong inode is if
1514 * e2fsck was run on this filesystem, and it must have already done the orphan
1515 * inode cleanup for us, so we can safely abort without any further action.
1516 */
1517static void ext3_orphan_cleanup (struct super_block * sb,
1518 struct ext3_super_block * es)
1519{
1520 unsigned int s_flags = sb->s_flags;
1521 int nr_orphans = 0, nr_truncates = 0;
1522#ifdef CONFIG_QUOTA
1523 int i;
1524#endif
1525 if (!es->s_last_orphan) {
1526 jbd_debug(4, "no orphan inodes to clean up\n");
1527 return;
1528 }
1529
Eric Sandeena8f48a92006-12-06 20:40:13 -08001530 if (bdev_read_only(sb->s_bdev)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001531 ext3_msg(sb, KERN_ERR, "error: write access "
1532 "unavailable, skipping orphan cleanup.");
Eric Sandeena8f48a92006-12-06 20:40:13 -08001533 return;
1534 }
1535
Amir Goldsteince654b32011-02-26 22:40:19 +02001536 /* Check if feature set allows readwrite operations */
1537 if (EXT3_HAS_RO_COMPAT_FEATURE(sb, ~EXT3_FEATURE_RO_COMPAT_SUPP)) {
1538 ext3_msg(sb, KERN_INFO, "Skipping orphan cleanup due to "
1539 "unknown ROCOMPAT features");
1540 return;
1541 }
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 if (EXT3_SB(sb)->s_mount_state & EXT3_ERROR_FS) {
Eric Sandeene4230102012-08-27 14:30:40 -05001544 /* don't clear list on RO mount w/ errors */
1545 if (es->s_last_orphan && !(s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 jbd_debug(1, "Errors on filesystem, "
1547 "clearing orphan list.\n");
Eric Sandeene4230102012-08-27 14:30:40 -05001548 es->s_last_orphan = 0;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1551 return;
1552 }
1553
1554 if (s_flags & MS_RDONLY) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001555 ext3_msg(sb, KERN_INFO, "orphan cleanup on readonly fs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 sb->s_flags &= ~MS_RDONLY;
1557 }
1558#ifdef CONFIG_QUOTA
1559 /* Needed for iput() to work correctly and not trash data */
1560 sb->s_flags |= MS_ACTIVE;
1561 /* Turn on quotas so that they are updated correctly */
Jan Karaa93114e2014-09-10 20:48:02 +02001562 for (i = 0; i < EXT3_MAXQUOTAS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (EXT3_SB(sb)->s_qf_names[i]) {
1564 int ret = ext3_quota_on_mount(sb, i);
1565 if (ret < 0)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001566 ext3_msg(sb, KERN_ERR,
1567 "error: cannot turn on journaled "
1568 "quota: %d", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570 }
1571#endif
1572
1573 while (es->s_last_orphan) {
1574 struct inode *inode;
1575
David Howells473043d2008-02-07 00:15:36 -08001576 inode = ext3_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1577 if (IS_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 es->s_last_orphan = 0;
1579 break;
1580 }
1581
1582 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
Christoph Hellwig871a2932010-03-03 09:05:07 -05001583 dquot_initialize(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (inode->i_nlink) {
1585 printk(KERN_DEBUG
Eric Sandeeneee194e2006-09-27 01:49:30 -07001586 "%s: truncating inode %lu to %Ld bytes\n",
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001587 __func__, inode->i_ino, inode->i_size);
Eric Sandeeneee194e2006-09-27 01:49:30 -07001588 jbd_debug(2, "truncating inode %lu to %Ld bytes\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 inode->i_ino, inode->i_size);
1590 ext3_truncate(inode);
1591 nr_truncates++;
1592 } else {
1593 printk(KERN_DEBUG
Eric Sandeeneee194e2006-09-27 01:49:30 -07001594 "%s: deleting unreferenced inode %lu\n",
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001595 __func__, inode->i_ino);
Eric Sandeeneee194e2006-09-27 01:49:30 -07001596 jbd_debug(2, "deleting unreferenced inode %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 inode->i_ino);
1598 nr_orphans++;
1599 }
1600 iput(inode); /* The delete magic happens here! */
1601 }
1602
1603#define PLURAL(x) (x), ((x)==1) ? "" : "s"
1604
1605 if (nr_orphans)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001606 ext3_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
1607 PLURAL(nr_orphans));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (nr_truncates)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001609 ext3_msg(sb, KERN_INFO, "%d truncate%s cleaned up",
1610 PLURAL(nr_truncates));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611#ifdef CONFIG_QUOTA
1612 /* Turn quotas off */
Jan Karaa93114e2014-09-10 20:48:02 +02001613 for (i = 0; i < EXT3_MAXQUOTAS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (sb_dqopt(sb)->files[i])
Christoph Hellwig287a8092010-05-19 07:16:45 -04001615 dquot_quota_off(sb, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617#endif
1618 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1619}
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621/*
1622 * Maximal file size. There is a direct, and {,double-,triple-}indirect
1623 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
1624 * We need to be 1 filesystem block less than the 2^32 sector limit.
1625 */
1626static loff_t ext3_max_size(int bits)
1627{
1628 loff_t res = EXT3_NDIR_BLOCKS;
Aneesh Kumar K.Vfe7fdc32008-01-28 23:58:26 -05001629 int meta_blocks;
1630 loff_t upper_limit;
1631
1632 /* This is calculated to be the largest file size for a
1633 * dense, file such that the total number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.Vfe7fdc32008-01-28 23:58:26 -05001635 * does not exceed 2^32 -1
1636 * __u32 i_blocks representing the total number of
1637 * 512 bytes blocks of the file
1638 */
1639 upper_limit = (1LL << 32) - 1;
1640
1641 /* total blocks in file system block size */
1642 upper_limit >>= (bits - 9);
1643
1644
1645 /* indirect blocks */
1646 meta_blocks = 1;
1647 /* double indirect blocks */
1648 meta_blocks += 1 + (1LL << (bits-2));
1649 /* tripple indirect blocks */
1650 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1651
1652 upper_limit -= meta_blocks;
1653 upper_limit <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 res += 1LL << (bits-2);
1656 res += 1LL << (2*(bits-2));
1657 res += 1LL << (3*(bits-2));
1658 res <<= bits;
1659 if (res > upper_limit)
1660 res = upper_limit;
Aneesh Kumar K.Vfe7fdc32008-01-28 23:58:26 -05001661
1662 if (res > MAX_LFS_FILESIZE)
1663 res = MAX_LFS_FILESIZE;
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return res;
1666}
1667
Mingming Cao43d23f92006-06-25 05:48:07 -07001668static ext3_fsblk_t descriptor_loc(struct super_block *sb,
1669 ext3_fsblk_t logic_sb_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 int nr)
1671{
1672 struct ext3_sb_info *sbi = EXT3_SB(sb);
Mingming Cao43d23f92006-06-25 05:48:07 -07001673 unsigned long bg, first_meta_bg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 int has_super = 0;
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1677
1678 if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_META_BG) ||
1679 nr < first_meta_bg)
1680 return (logic_sb_block + nr + 1);
1681 bg = sbi->s_desc_per_block * nr;
1682 if (ext3_bg_has_super(sb, bg))
1683 has_super = 1;
Mingming Cao43d23f92006-06-25 05:48:07 -07001684 return (has_super + ext3_group_first_block_no(sb, bg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685}
1686
1687
1688static int ext3_fill_super (struct super_block *sb, void *data, int silent)
1689{
1690 struct buffer_head * bh;
1691 struct ext3_super_block *es = NULL;
1692 struct ext3_sb_info *sbi;
Mingming Cao43d23f92006-06-25 05:48:07 -07001693 ext3_fsblk_t block;
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001694 ext3_fsblk_t sb_block = get_sb_block(&data, sb);
Mingming Cao43d23f92006-06-25 05:48:07 -07001695 ext3_fsblk_t logic_sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 unsigned long offset = 0;
Eric Sandeeneee194e2006-09-27 01:49:30 -07001697 unsigned int journal_inum = 0;
Johann Lombardi71b96252006-01-08 01:03:20 -08001698 unsigned long journal_devnum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 unsigned long def_mount_opts;
1700 struct inode *root;
1701 int blocksize;
1702 int hblock;
1703 int db_count;
1704 int i;
1705 int needs_recovery;
David Howells473043d2008-02-07 00:15:36 -08001706 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 __le32 features;
Peter Zijlstra833f4072007-10-16 23:25:45 -07001708 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -07001710 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (!sbi)
1712 return -ENOMEM;
Pekka Enberg5df096d2009-01-07 18:07:25 -08001713
1714 sbi->s_blockgroup_lock =
1715 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
1716 if (!sbi->s_blockgroup_lock) {
1717 kfree(sbi);
1718 return -ENOMEM;
1719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 sb->s_fs_info = sbi;
Miklos Szeredi571beed2007-10-16 23:26:26 -07001721 sbi->s_sb_block = sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 blocksize = sb_min_blocksize(sb, EXT3_MIN_BLOCK_SIZE);
1724 if (!blocksize) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001725 ext3_msg(sb, KERN_ERR, "error: unable to set blocksize");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 goto out_fail;
1727 }
1728
1729 /*
1730 * The ext3 superblock will not be buffer aligned for other than 1kB
1731 * block sizes. We need to calculate the offset from buffer start.
1732 */
1733 if (blocksize != EXT3_MIN_BLOCK_SIZE) {
1734 logic_sb_block = (sb_block * EXT3_MIN_BLOCK_SIZE) / blocksize;
1735 offset = (sb_block * EXT3_MIN_BLOCK_SIZE) % blocksize;
1736 } else {
1737 logic_sb_block = sb_block;
1738 }
1739
1740 if (!(bh = sb_bread(sb, logic_sb_block))) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001741 ext3_msg(sb, KERN_ERR, "error: unable to read superblock");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 goto out_fail;
1743 }
1744 /*
1745 * Note: s_es must be initialized as soon as possible because
1746 * some ext3 macro-instructions depend on its value
1747 */
Namhyung Kim57e94d82010-10-11 02:10:45 +09001748 es = (struct ext3_super_block *) (bh->b_data + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 sbi->s_es = es;
1750 sb->s_magic = le16_to_cpu(es->s_magic);
1751 if (sb->s_magic != EXT3_SUPER_MAGIC)
1752 goto cantfind_ext3;
1753
1754 /* Set defaults before we parse the mount options */
1755 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
1756 if (def_mount_opts & EXT3_DEFM_DEBUG)
1757 set_opt(sbi->s_mount_opt, DEBUG);
1758 if (def_mount_opts & EXT3_DEFM_BSDGROUPS)
1759 set_opt(sbi->s_mount_opt, GRPID);
1760 if (def_mount_opts & EXT3_DEFM_UID16)
1761 set_opt(sbi->s_mount_opt, NO_UID32);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001762#ifdef CONFIG_EXT3_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (def_mount_opts & EXT3_DEFM_XATTR_USER)
1764 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001765#endif
1766#ifdef CONFIG_EXT3_FS_POSIX_ACL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if (def_mount_opts & EXT3_DEFM_ACL)
1768 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_DATA)
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001771 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 else if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_ORDERED)
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001773 set_opt(sbi->s_mount_opt, ORDERED_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 else if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_WBACK)
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001775 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
1777 if (le16_to_cpu(sbi->s_es->s_errors) == EXT3_ERRORS_PANIC)
1778 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -08001779 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT3_ERRORS_CONTINUE)
Dmitry Mishin2245d7c2006-10-11 01:21:49 -07001780 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -08001781 else
1782 set_opt(sbi->s_mount_opt, ERRORS_RO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Eric W. Biederman15232992012-02-07 15:41:24 -08001784 sbi->s_resuid = make_kuid(&init_user_ns, le16_to_cpu(es->s_def_resuid));
1785 sbi->s_resgid = make_kgid(&init_user_ns, le16_to_cpu(es->s_def_resgid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Christoph Hellwig00eacd62011-07-16 16:46:50 -04001787 /* enable barriers by default */
1788 set_opt(sbi->s_mount_opt, BARRIER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 set_opt(sbi->s_mount_opt, RESERVATION);
1790
Johann Lombardi71b96252006-01-08 01:03:20 -08001791 if (!parse_options ((char *) data, sb, &journal_inum, &journal_devnum,
1792 NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 goto failed_mount;
1794
1795 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Dmitry Monakhove3c96432010-02-02 16:05:51 +03001796 (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 if (le32_to_cpu(es->s_rev_level) == EXT3_GOOD_OLD_REV &&
1799 (EXT3_HAS_COMPAT_FEATURE(sb, ~0U) ||
1800 EXT3_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
1801 EXT3_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001802 ext3_msg(sb, KERN_WARNING,
1803 "warning: feature flags set on rev 0 fs, "
1804 "running e2fsck is recommended");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 /*
1806 * Check feature flags regardless of the revision level, since we
1807 * previously didn't change the revision level when setting the flags,
1808 * so there is a chance incompat flags are set on a rev 0 filesystem.
1809 */
1810 features = EXT3_HAS_INCOMPAT_FEATURE(sb, ~EXT3_FEATURE_INCOMPAT_SUPP);
1811 if (features) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001812 ext3_msg(sb, KERN_ERR,
1813 "error: couldn't mount because of unsupported "
1814 "optional features (%x)", le32_to_cpu(features));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto failed_mount;
1816 }
1817 features = EXT3_HAS_RO_COMPAT_FEATURE(sb, ~EXT3_FEATURE_RO_COMPAT_SUPP);
1818 if (!(sb->s_flags & MS_RDONLY) && features) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001819 ext3_msg(sb, KERN_ERR,
1820 "error: couldn't mount RDWR because of unsupported "
1821 "optional features (%x)", le32_to_cpu(features));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 goto failed_mount;
1823 }
1824 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
1825
1826 if (blocksize < EXT3_MIN_BLOCK_SIZE ||
1827 blocksize > EXT3_MAX_BLOCK_SIZE) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001828 ext3_msg(sb, KERN_ERR,
1829 "error: couldn't mount because of unsupported "
1830 "filesystem blocksize %d", blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 goto failed_mount;
1832 }
1833
Martin K. Petersene1defc42009-05-22 17:17:49 -04001834 hblock = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (sb->s_blocksize != blocksize) {
1836 /*
1837 * Make sure the blocksize for the filesystem is larger
1838 * than the hardware sectorsize for the machine.
1839 */
1840 if (blocksize < hblock) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001841 ext3_msg(sb, KERN_ERR,
1842 "error: fsblocksize %d too small for "
1843 "hardware sectorsize %d", blocksize, hblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 goto failed_mount;
1845 }
1846
1847 brelse (bh);
Takashi Sato0f0a89e2007-10-18 03:06:56 -07001848 if (!sb_set_blocksize(sb, blocksize)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001849 ext3_msg(sb, KERN_ERR,
1850 "error: bad blocksize %d", blocksize);
Takashi Sato0f0a89e2007-10-18 03:06:56 -07001851 goto out_fail;
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 logic_sb_block = (sb_block * EXT3_MIN_BLOCK_SIZE) / blocksize;
1854 offset = (sb_block * EXT3_MIN_BLOCK_SIZE) % blocksize;
1855 bh = sb_bread(sb, logic_sb_block);
1856 if (!bh) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001857 ext3_msg(sb, KERN_ERR,
1858 "error: can't read superblock on 2nd try");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 goto failed_mount;
1860 }
Namhyung Kim57e94d82010-10-11 02:10:45 +09001861 es = (struct ext3_super_block *)(bh->b_data + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 sbi->s_es = es;
1863 if (es->s_magic != cpu_to_le16(EXT3_SUPER_MAGIC)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001864 ext3_msg(sb, KERN_ERR,
1865 "error: magic mismatch");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 goto failed_mount;
1867 }
1868 }
1869
1870 sb->s_maxbytes = ext3_max_size(sb->s_blocksize_bits);
1871
1872 if (le32_to_cpu(es->s_rev_level) == EXT3_GOOD_OLD_REV) {
1873 sbi->s_inode_size = EXT3_GOOD_OLD_INODE_SIZE;
1874 sbi->s_first_ino = EXT3_GOOD_OLD_FIRST_INO;
1875 } else {
1876 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
1877 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
1878 if ((sbi->s_inode_size < EXT3_GOOD_OLD_INODE_SIZE) ||
vignesh babu3fc74262007-07-15 23:41:17 -07001879 (!is_power_of_2(sbi->s_inode_size)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 (sbi->s_inode_size > blocksize)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001881 ext3_msg(sb, KERN_ERR,
1882 "error: unsupported inode size: %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 sbi->s_inode_size);
1884 goto failed_mount;
1885 }
1886 }
1887 sbi->s_frag_size = EXT3_MIN_FRAG_SIZE <<
1888 le32_to_cpu(es->s_log_frag_size);
1889 if (blocksize != sbi->s_frag_size) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001890 ext3_msg(sb, KERN_ERR,
1891 "error: fragsize %lu != blocksize %u (unsupported)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 sbi->s_frag_size, blocksize);
1893 goto failed_mount;
1894 }
1895 sbi->s_frags_per_block = 1;
1896 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
1897 sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
1898 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08001899 if (EXT3_INODE_SIZE(sb) == 0 || EXT3_INODES_PER_GROUP(sb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 goto cantfind_ext3;
1901 sbi->s_inodes_per_block = blocksize / EXT3_INODE_SIZE(sb);
1902 if (sbi->s_inodes_per_block == 0)
1903 goto cantfind_ext3;
1904 sbi->s_itb_per_group = sbi->s_inodes_per_group /
1905 sbi->s_inodes_per_block;
1906 sbi->s_desc_per_block = blocksize / sizeof(struct ext3_group_desc);
1907 sbi->s_sbh = bh;
1908 sbi->s_mount_state = le16_to_cpu(es->s_state);
David Howellsf0d1b0b2006-12-08 02:37:49 -08001909 sbi->s_addr_per_block_bits = ilog2(EXT3_ADDR_PER_BLOCK(sb));
1910 sbi->s_desc_per_block_bits = ilog2(EXT3_DESC_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 for (i=0; i < 4; i++)
1912 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
1913 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001914 i = le32_to_cpu(es->s_flags);
1915 if (i & EXT2_FLAGS_UNSIGNED_HASH)
1916 sbi->s_hash_unsigned = 3;
1917 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
1918#ifdef __CHAR_UNSIGNED__
1919 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
1920 sbi->s_hash_unsigned = 3;
1921#else
1922 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
1923#endif
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 if (sbi->s_blocks_per_group > blocksize * 8) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001927 ext3_msg(sb, KERN_ERR,
1928 "#blocks per group too big: %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 sbi->s_blocks_per_group);
1930 goto failed_mount;
1931 }
1932 if (sbi->s_frags_per_group > blocksize * 8) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001933 ext3_msg(sb, KERN_ERR,
1934 "error: #fragments per group too big: %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 sbi->s_frags_per_group);
1936 goto failed_mount;
1937 }
1938 if (sbi->s_inodes_per_group > blocksize * 8) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001939 ext3_msg(sb, KERN_ERR,
1940 "error: #inodes per group too big: %lu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 sbi->s_inodes_per_group);
1942 goto failed_mount;
1943 }
1944
Darrick J. Wongad692bf2010-11-16 22:57:44 +00001945 err = generic_check_addressable(sb->s_blocksize_bits,
1946 le32_to_cpu(es->s_blocks_count));
1947 if (err) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001948 ext3_msg(sb, KERN_ERR,
1949 "error: filesystem is too large to mount safely");
Mingming Caofcd5df32006-06-25 05:47:50 -07001950 if (sizeof(sector_t) < 8)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001951 ext3_msg(sb, KERN_ERR,
1952 "error: CONFIG_LBDAF not enabled");
Darrick J. Wongad692bf2010-11-16 22:57:44 +00001953 ret = err;
Mingming Caofcd5df32006-06-25 05:47:50 -07001954 goto failed_mount;
1955 }
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (EXT3_BLOCKS_PER_GROUP(sb) == 0)
1958 goto cantfind_ext3;
Eric Sandeen855565e2006-09-27 01:49:29 -07001959 sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
1960 le32_to_cpu(es->s_first_data_block) - 1)
1961 / EXT3_BLOCKS_PER_GROUP(sb)) + 1;
Namhyung Kim81a4e322010-10-11 19:38:39 +09001962 db_count = DIV_ROUND_UP(sbi->s_groups_count, EXT3_DESC_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 sbi->s_group_desc = kmalloc(db_count * sizeof (struct buffer_head *),
1964 GFP_KERNEL);
1965 if (sbi->s_group_desc == NULL) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001966 ext3_msg(sb, KERN_ERR,
1967 "error: not enough memory");
Namhyung Kim4569cd12010-10-11 19:08:06 +09001968 ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 goto failed_mount;
1970 }
1971
Pekka Enberg5df096d2009-01-07 18:07:25 -08001972 bgl_lock_init(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 for (i = 0; i < db_count; i++) {
1975 block = descriptor_loc(sb, logic_sb_block, i);
1976 sbi->s_group_desc[i] = sb_bread(sb, block);
1977 if (!sbi->s_group_desc[i]) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001978 ext3_msg(sb, KERN_ERR,
1979 "error: can't read group descriptor %d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 db_count = i;
1981 goto failed_mount2;
1982 }
1983 }
1984 if (!ext3_check_descriptors (sb)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01001985 ext3_msg(sb, KERN_ERR,
1986 "error: group descriptors corrupted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 goto failed_mount2;
1988 }
1989 sbi->s_gdb_count = db_count;
1990 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1991 spin_lock_init(&sbi->s_next_gen_lock);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 /* per fileystem reservation list head & lock */
1994 spin_lock_init(&sbi->s_rsv_window_lock);
1995 sbi->s_rsv_window_root = RB_ROOT;
1996 /* Add a single, static dummy reservation to the start of the
1997 * reservation window list --- it gives us a placeholder for
1998 * append-at-start-of-list which makes the allocation logic
1999 * _much_ simpler. */
2000 sbi->s_rsv_window_head.rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
2001 sbi->s_rsv_window_head.rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
2002 sbi->s_rsv_window_head.rsv_alloc_hit = 0;
2003 sbi->s_rsv_window_head.rsv_goal_size = 0;
2004 ext3_rsv_window_add(sb, &sbi->s_rsv_window_head);
2005
2006 /*
2007 * set up enough so that it can read an inode
2008 */
2009 sb->s_op = &ext3_sops;
2010 sb->s_export_op = &ext3_export_ops;
2011 sb->s_xattr = ext3_xattr_handlers;
2012#ifdef CONFIG_QUOTA
2013 sb->s_qcop = &ext3_qctl_operations;
2014 sb->dq_op = &ext3_quota_operations;
Jan Kara4018cfb2014-09-25 16:52:38 +02002015 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016#endif
Aneesh Kumar K.V03cb5f02011-01-29 18:43:39 +05302017 memcpy(sb->s_uuid, es->s_uuid, sizeof(es->s_uuid));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
Eric Sandeenb8a052d2009-12-14 13:00:30 -06002019 mutex_init(&sbi->s_orphan_lock);
Eric Sandeen96d2a492009-12-14 13:01:05 -06002020 mutex_init(&sbi->s_resize_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
2022 sb->s_root = NULL;
2023
2024 needs_recovery = (es->s_last_orphan != 0 ||
2025 EXT3_HAS_INCOMPAT_FEATURE(sb,
2026 EXT3_FEATURE_INCOMPAT_RECOVER));
2027
2028 /*
2029 * The first inode we look at is the journal inode. Don't try
2030 * root first: it may be modified in the journal!
2031 */
2032 if (!test_opt(sb, NOLOAD) &&
2033 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
Johann Lombardi71b96252006-01-08 01:03:20 -08002034 if (ext3_load_journal(sb, es, journal_devnum))
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002035 goto failed_mount2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 } else if (journal_inum) {
2037 if (ext3_create_journal(sb, es, journal_inum))
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002038 goto failed_mount2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 } else {
2040 if (!silent)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002041 ext3_msg(sb, KERN_ERR,
2042 "error: no journal found. "
2043 "mounting ext3 over ext2?");
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002044 goto failed_mount2;
2045 }
2046 err = percpu_counter_init(&sbi->s_freeblocks_counter,
Tejun Heo908c7f12014-09-08 09:51:29 +09002047 ext3_count_free_blocks(sb), GFP_KERNEL);
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002048 if (!err) {
2049 err = percpu_counter_init(&sbi->s_freeinodes_counter,
Tejun Heo908c7f12014-09-08 09:51:29 +09002050 ext3_count_free_inodes(sb), GFP_KERNEL);
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002051 }
2052 if (!err) {
2053 err = percpu_counter_init(&sbi->s_dirs_counter,
Tejun Heo908c7f12014-09-08 09:51:29 +09002054 ext3_count_dirs(sb), GFP_KERNEL);
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002055 }
2056 if (err) {
2057 ext3_msg(sb, KERN_ERR, "error: insufficient memory");
Namhyung Kim4569cd12010-10-11 19:08:06 +09002058 ret = err;
Mingming Cao0216bfc2006-06-23 02:05:41 -07002059 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061
2062 /* We have now updated the journal if required, so we can
2063 * validate the data journaling mode. */
2064 switch (test_opt(sb, DATA_FLAGS)) {
2065 case 0:
2066 /* No mode set, assume a default based on the journal
2067 capabilities: ORDERED_DATA if the journal can
2068 cope, else JOURNAL_DATA */
2069 if (journal_check_available_features
2070 (sbi->s_journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE))
Linus Torvaldsbbae8bc2009-04-06 17:16:47 -07002071 set_opt(sbi->s_mount_opt, DEFAULT_DATA_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 else
2073 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2074 break;
2075
2076 case EXT3_MOUNT_ORDERED_DATA:
2077 case EXT3_MOUNT_WRITEBACK_DATA:
2078 if (!journal_check_available_features
2079 (sbi->s_journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002080 ext3_msg(sb, KERN_ERR,
2081 "error: journal does not support "
2082 "requested data journaling mode");
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002083 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085 default:
2086 break;
2087 }
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 /*
2090 * The journal_load will have done any necessary log recovery,
2091 * so we can safely mount the rest of the filesystem now.
2092 */
2093
David Howells473043d2008-02-07 00:15:36 -08002094 root = ext3_iget(sb, EXT3_ROOT_INO);
2095 if (IS_ERR(root)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002096 ext3_msg(sb, KERN_ERR, "error: get root inode failed");
David Howells473043d2008-02-07 00:15:36 -08002097 ret = PTR_ERR(root);
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002098 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 }
2100 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells473043d2008-02-07 00:15:36 -08002101 iput(root);
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002102 ext3_msg(sb, KERN_ERR, "error: corrupt root inode, run e2fsck");
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002103 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
Al Viro48fde702012-01-08 22:15:13 -05002105 sb->s_root = d_make_root(root);
David Howells473043d2008-02-07 00:15:36 -08002106 if (!sb->s_root) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002107 ext3_msg(sb, KERN_ERR, "error: get root dentry failed");
David Howells473043d2008-02-07 00:15:36 -08002108 ret = -ENOMEM;
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002109 goto failed_mount3;
David Howells473043d2008-02-07 00:15:36 -08002110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Eric Sandeenf007dbf2012-05-24 12:00:37 -05002112 if (ext3_setup_super(sb, es, sb->s_flags & MS_RDONLY))
2113 sb->s_flags |= MS_RDONLY;
Eric Sandeened505ee2009-12-14 12:59:18 -06002114
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 EXT3_SB(sb)->s_mount_state |= EXT3_ORPHAN_FS;
2116 ext3_orphan_cleanup(sb, es);
2117 EXT3_SB(sb)->s_mount_state &= ~EXT3_ORPHAN_FS;
Eryu Guan63894ab2011-11-01 10:06:19 +08002118 if (needs_recovery) {
2119 ext3_mark_recovery_complete(sb, es);
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002120 ext3_msg(sb, KERN_INFO, "recovery complete");
Eryu Guan63894ab2011-11-01 10:06:19 +08002121 }
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002122 ext3_msg(sb, KERN_INFO, "mounted filesystem with %s data mode",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 test_opt(sb,DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA ? "journal":
2124 test_opt(sb,DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA ? "ordered":
2125 "writeback");
2126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 return 0;
2128
2129cantfind_ext3:
2130 if (!silent)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002131 ext3_msg(sb, KERN_INFO,
2132 "error: can't find ext3 filesystem on dev %s.",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 sb->s_id);
2134 goto failed_mount;
2135
Mingming Cao0216bfc2006-06-23 02:05:41 -07002136failed_mount3:
2137 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2138 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2139 percpu_counter_destroy(&sbi->s_dirs_counter);
Dmitry Monakhov41d1a632010-04-12 23:46:00 +04002140 journal_destroy(sbi->s_journal);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141failed_mount2:
2142 for (i = 0; i < db_count; i++)
2143 brelse(sbi->s_group_desc[i]);
2144 kfree(sbi->s_group_desc);
2145failed_mount:
2146#ifdef CONFIG_QUOTA
Jan Karaa93114e2014-09-10 20:48:02 +02002147 for (i = 0; i < EXT3_MAXQUOTAS; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 kfree(sbi->s_qf_names[i]);
2149#endif
2150 ext3_blkdev_remove(sbi);
2151 brelse(bh);
2152out_fail:
2153 sb->s_fs_info = NULL;
Manish Katiyarde5ce032009-05-17 23:52:47 -04002154 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 kfree(sbi);
David Howells473043d2008-02-07 00:15:36 -08002156 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
2158
2159/*
2160 * Setup any per-fs journal parameters now. We'll do this both on
2161 * initial mount, once the journal has been initialised but before we've
Mingming Caoae6ddcc2006-09-27 01:49:27 -07002162 * done any recovery; and again on any subsequent remount.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 */
2164static void ext3_init_journal_params(struct super_block *sb, journal_t *journal)
2165{
2166 struct ext3_sb_info *sbi = EXT3_SB(sb);
2167
2168 if (sbi->s_commit_interval)
2169 journal->j_commit_interval = sbi->s_commit_interval;
2170 /* We could also set up an ext3-specific default for the commit
2171 * interval here, but for now we'll just fall back to the jbd
2172 * default. */
2173
2174 spin_lock(&journal->j_state_lock);
2175 if (test_opt(sb, BARRIER))
2176 journal->j_flags |= JFS_BARRIER;
2177 else
2178 journal->j_flags &= ~JFS_BARRIER;
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -07002179 if (test_opt(sb, DATA_ERR_ABORT))
2180 journal->j_flags |= JFS_ABORT_ON_SYNCDATA_ERR;
2181 else
2182 journal->j_flags &= ~JFS_ABORT_ON_SYNCDATA_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 spin_unlock(&journal->j_state_lock);
2184}
2185
Eric Sandeeneee194e2006-09-27 01:49:30 -07002186static journal_t *ext3_get_journal(struct super_block *sb,
2187 unsigned int journal_inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 struct inode *journal_inode;
2190 journal_t *journal;
2191
2192 /* First, test for the existence of a valid inode on disk. Bad
2193 * things happen if we iget() an unused inode, as the subsequent
2194 * iput() will try to delete it. */
2195
David Howells473043d2008-02-07 00:15:36 -08002196 journal_inode = ext3_iget(sb, journal_inum);
2197 if (IS_ERR(journal_inode)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002198 ext3_msg(sb, KERN_ERR, "error: no journal found");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 return NULL;
2200 }
2201 if (!journal_inode->i_nlink) {
2202 make_bad_inode(journal_inode);
2203 iput(journal_inode);
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002204 ext3_msg(sb, KERN_ERR, "error: journal inode is deleted");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return NULL;
2206 }
2207
2208 jbd_debug(2, "Journal inode found at %p: %Ld bytes\n",
2209 journal_inode, journal_inode->i_size);
David Howells473043d2008-02-07 00:15:36 -08002210 if (!S_ISREG(journal_inode->i_mode)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002211 ext3_msg(sb, KERN_ERR, "error: invalid journal inode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 iput(journal_inode);
2213 return NULL;
2214 }
2215
2216 journal = journal_init_inode(journal_inode);
2217 if (!journal) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002218 ext3_msg(sb, KERN_ERR, "error: could not load journal inode");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 iput(journal_inode);
2220 return NULL;
2221 }
2222 journal->j_private = sb;
2223 ext3_init_journal_params(sb, journal);
2224 return journal;
2225}
2226
2227static journal_t *ext3_get_dev_journal(struct super_block *sb,
2228 dev_t j_dev)
2229{
2230 struct buffer_head * bh;
2231 journal_t *journal;
Mingming Cao43d23f92006-06-25 05:48:07 -07002232 ext3_fsblk_t start;
Mingming Cao1c2bf372006-06-25 05:48:06 -07002233 ext3_fsblk_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 int hblock, blocksize;
Mingming Cao43d23f92006-06-25 05:48:07 -07002235 ext3_fsblk_t sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 unsigned long offset;
2237 struct ext3_super_block * es;
2238 struct block_device *bdev;
2239
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002240 bdev = ext3_blkdev_get(j_dev, sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 if (bdev == NULL)
2242 return NULL;
2243
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 blocksize = sb->s_blocksize;
Martin K. Petersene1defc42009-05-22 17:17:49 -04002245 hblock = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 if (blocksize < hblock) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002247 ext3_msg(sb, KERN_ERR,
2248 "error: blocksize too small for journal device");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 goto out_bdev;
2250 }
2251
2252 sb_block = EXT3_MIN_BLOCK_SIZE / blocksize;
2253 offset = EXT3_MIN_BLOCK_SIZE % blocksize;
2254 set_blocksize(bdev, blocksize);
2255 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002256 ext3_msg(sb, KERN_ERR, "error: couldn't read superblock of "
2257 "external journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 goto out_bdev;
2259 }
2260
Namhyung Kim57e94d82010-10-11 02:10:45 +09002261 es = (struct ext3_super_block *) (bh->b_data + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 if ((le16_to_cpu(es->s_magic) != EXT3_SUPER_MAGIC) ||
2263 !(le32_to_cpu(es->s_feature_incompat) &
2264 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002265 ext3_msg(sb, KERN_ERR, "error: external journal has "
2266 "bad superblock");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 brelse(bh);
2268 goto out_bdev;
2269 }
2270
2271 if (memcmp(EXT3_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002272 ext3_msg(sb, KERN_ERR, "error: journal UUID does not match");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 brelse(bh);
2274 goto out_bdev;
2275 }
2276
2277 len = le32_to_cpu(es->s_blocks_count);
2278 start = sb_block + 1;
2279 brelse(bh); /* we're done with the superblock */
2280
2281 journal = journal_init_dev(bdev, sb->s_bdev,
2282 start, len, blocksize);
2283 if (!journal) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002284 ext3_msg(sb, KERN_ERR,
2285 "error: failed to create device journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 goto out_bdev;
2287 }
2288 journal->j_private = sb;
Zheng Liud03e1292011-12-05 15:55:11 +08002289 if (!bh_uptodate_or_lock(journal->j_sb_buffer)) {
2290 if (bh_submit_read(journal->j_sb_buffer)) {
2291 ext3_msg(sb, KERN_ERR, "I/O error on journal device");
2292 goto out_journal;
2293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
2295 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002296 ext3_msg(sb, KERN_ERR,
2297 "error: external journal has more than one "
2298 "user (unsupported) - %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 be32_to_cpu(journal->j_superblock->s_nr_users));
2300 goto out_journal;
2301 }
2302 EXT3_SB(sb)->journal_bdev = bdev;
2303 ext3_init_journal_params(sb, journal);
2304 return journal;
2305out_journal:
2306 journal_destroy(journal);
2307out_bdev:
2308 ext3_blkdev_put(bdev);
2309 return NULL;
2310}
2311
Johann Lombardi71b96252006-01-08 01:03:20 -08002312static int ext3_load_journal(struct super_block *sb,
2313 struct ext3_super_block *es,
2314 unsigned long journal_devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315{
2316 journal_t *journal;
Eric Sandeeneee194e2006-09-27 01:49:30 -07002317 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
Johann Lombardi71b96252006-01-08 01:03:20 -08002318 dev_t journal_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 int err = 0;
2320 int really_read_only;
2321
Johann Lombardi71b96252006-01-08 01:03:20 -08002322 if (journal_devnum &&
2323 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002324 ext3_msg(sb, KERN_INFO, "external journal device major/minor "
2325 "numbers have changed");
Johann Lombardi71b96252006-01-08 01:03:20 -08002326 journal_dev = new_decode_dev(journal_devnum);
2327 } else
2328 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 really_read_only = bdev_read_only(sb->s_bdev);
2331
2332 /*
2333 * Are we loading a blank journal or performing recovery after a
2334 * crash? For recovery, we need to check in advance whether we
2335 * can get read-write access to the device.
2336 */
2337
2338 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER)) {
2339 if (sb->s_flags & MS_RDONLY) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002340 ext3_msg(sb, KERN_INFO,
2341 "recovery required on readonly filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (really_read_only) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002343 ext3_msg(sb, KERN_ERR, "error: write access "
2344 "unavailable, cannot proceed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 return -EROFS;
2346 }
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002347 ext3_msg(sb, KERN_INFO,
2348 "write access will be enabled during recovery");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
2350 }
2351
2352 if (journal_inum && journal_dev) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002353 ext3_msg(sb, KERN_ERR, "error: filesystem has both journal "
2354 "and inode journals");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 return -EINVAL;
2356 }
2357
2358 if (journal_inum) {
2359 if (!(journal = ext3_get_journal(sb, journal_inum)))
2360 return -EINVAL;
2361 } else {
2362 if (!(journal = ext3_get_dev_journal(sb, journal_dev)))
2363 return -EINVAL;
2364 }
2365
Eric Sandeen0636c732010-04-30 11:09:34 -05002366 if (!(journal->j_flags & JFS_BARRIER))
2367 printk(KERN_INFO "EXT3-fs: barriers not enabled\n");
2368
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
2370 err = journal_update_format(journal);
2371 if (err) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002372 ext3_msg(sb, KERN_ERR, "error updating journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 journal_destroy(journal);
2374 return err;
2375 }
2376 }
2377
2378 if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER))
2379 err = journal_wipe(journal, !really_read_only);
2380 if (!err)
2381 err = journal_load(journal);
2382
2383 if (err) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002384 ext3_msg(sb, KERN_ERR, "error loading journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 journal_destroy(journal);
2386 return err;
2387 }
2388
2389 EXT3_SB(sb)->s_journal = journal;
2390 ext3_clear_journal_err(sb, es);
Johann Lombardi71b96252006-01-08 01:03:20 -08002391
Maciej Żenczykowski31d710a2010-09-26 12:38:28 +00002392 if (!really_read_only && journal_devnum &&
Johann Lombardi71b96252006-01-08 01:03:20 -08002393 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2394 es->s_journal_dev = cpu_to_le32(journal_devnum);
Johann Lombardi71b96252006-01-08 01:03:20 -08002395
2396 /* Make sure we flush the recovery flag to disk. */
2397 ext3_commit_super(sb, es, 1);
2398 }
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return 0;
2401}
2402
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002403static int ext3_create_journal(struct super_block *sb,
2404 struct ext3_super_block *es,
Eric Sandeeneee194e2006-09-27 01:49:30 -07002405 unsigned int journal_inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
2407 journal_t *journal;
Borislav Petkov952d9de2007-07-15 23:41:45 -07002408 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
2410 if (sb->s_flags & MS_RDONLY) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002411 ext3_msg(sb, KERN_ERR,
2412 "error: readonly filesystem when trying to "
2413 "create journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return -EROFS;
2415 }
2416
Borislav Petkov952d9de2007-07-15 23:41:45 -07002417 journal = ext3_get_journal(sb, journal_inum);
2418 if (!journal)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 return -EINVAL;
2420
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002421 ext3_msg(sb, KERN_INFO, "creating new journal on inode %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 journal_inum);
2423
Borislav Petkov952d9de2007-07-15 23:41:45 -07002424 err = journal_create(journal);
2425 if (err) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002426 ext3_msg(sb, KERN_ERR, "error creating journal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 journal_destroy(journal);
2428 return -EIO;
2429 }
2430
2431 EXT3_SB(sb)->s_journal = journal;
2432
2433 ext3_update_dynamic_rev(sb);
2434 EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
2435 EXT3_SET_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL);
2436
2437 es->s_journal_inum = cpu_to_le32(journal_inum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 /* Make sure we flush the recovery flag to disk. */
2440 ext3_commit_super(sb, es, 1);
2441
2442 return 0;
2443}
2444
Takashi Satoc4be0c12009-01-09 16:40:58 -08002445static int ext3_commit_super(struct super_block *sb,
2446 struct ext3_super_block *es,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 int sync)
2448{
2449 struct buffer_head *sbh = EXT3_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08002450 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08002453 return error;
Darrick J. Wongdff68252010-10-04 12:35:05 -07002454
2455 if (buffer_write_io_error(sbh)) {
2456 /*
2457 * Oh, dear. A previous attempt to write the
2458 * superblock failed. This could happen because the
2459 * USB device was yanked out. Or it could happen to
2460 * be a transient write error and maybe the block will
2461 * be remapped. Nothing we can do but to retry the
2462 * write and hope for the best.
2463 */
2464 ext3_msg(sb, KERN_ERR, "previous I/O error to "
2465 "superblock detected");
2466 clear_buffer_write_io_error(sbh);
2467 set_buffer_uptodate(sbh);
2468 }
Theodore Ts'o96ec2e02009-09-16 11:21:13 -04002469 /*
2470 * If the file system is mounted read-only, don't update the
2471 * superblock write time. This avoids updating the superblock
2472 * write time when we are mounting the root file system
2473 * read/only but we need to replay the journal; at that point,
2474 * for people who are east of GMT and who make their clock
2475 * tick in localtime for Windows bug-for-bug compatibility,
2476 * the clock is set in the future, and this will cause e2fsck
2477 * to complain and force a full file system check.
2478 */
2479 if (!(sb->s_flags & MS_RDONLY))
2480 es->s_wtime = cpu_to_le32(get_seconds());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 es->s_free_blocks_count = cpu_to_le32(ext3_count_free_blocks(sb));
2482 es->s_free_inodes_count = cpu_to_le32(ext3_count_free_inodes(sb));
2483 BUFFER_TRACE(sbh, "marking dirty");
2484 mark_buffer_dirty(sbh);
Darrick J. Wongdff68252010-10-04 12:35:05 -07002485 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08002486 error = sync_dirty_buffer(sbh);
Darrick J. Wongdff68252010-10-04 12:35:05 -07002487 if (buffer_write_io_error(sbh)) {
2488 ext3_msg(sb, KERN_ERR, "I/O error while writing "
2489 "superblock");
2490 clear_buffer_write_io_error(sbh);
2491 set_buffer_uptodate(sbh);
2492 }
2493 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08002494 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495}
2496
2497
2498/*
2499 * Have we just finished recovery? If so, and if we are mounting (or
2500 * remounting) the filesystem readonly, then we will end up with a
2501 * consistent fs on disk. Record that fact.
2502 */
2503static void ext3_mark_recovery_complete(struct super_block * sb,
2504 struct ext3_super_block * es)
2505{
2506 journal_t *journal = EXT3_SB(sb)->s_journal;
2507
2508 journal_lock_updates(journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002509 if (journal_flush(journal) < 0)
2510 goto out;
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER) &&
2513 sb->s_flags & MS_RDONLY) {
2514 EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 ext3_commit_super(sb, es, 1);
2516 }
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002517
2518out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 journal_unlock_updates(journal);
2520}
2521
2522/*
2523 * If we are mounting (or read-write remounting) a filesystem whose journal
2524 * has recorded an error from a previous lifetime, move that error to the
2525 * main filesystem now.
2526 */
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002527static void ext3_clear_journal_err(struct super_block *sb,
2528 struct ext3_super_block *es)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
2530 journal_t *journal;
2531 int j_errno;
2532 const char *errstr;
2533
2534 journal = EXT3_SB(sb)->s_journal;
2535
2536 /*
2537 * Now check for any error status which may have been recorded in the
2538 * journal by a prior ext3_error() or ext3_abort()
2539 */
2540
2541 j_errno = journal_errno(journal);
2542 if (j_errno) {
2543 char nbuf[16];
2544
2545 errstr = ext3_decode_error(sb, j_errno, nbuf);
Harvey Harrisone05b6b52008-04-28 02:16:15 -07002546 ext3_warning(sb, __func__, "Filesystem error recorded "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 "from previous mount: %s", errstr);
Harvey Harrisone05b6b52008-04-28 02:16:15 -07002548 ext3_warning(sb, __func__, "Marking fs in need of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 "filesystem check.");
2550
2551 EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
2552 es->s_state |= cpu_to_le16(EXT3_ERROR_FS);
2553 ext3_commit_super (sb, es, 1);
2554
2555 journal_clear_err(journal);
2556 }
2557}
2558
2559/*
2560 * Force the running and committing transactions to commit,
2561 * and wait on the commit.
2562 */
2563int ext3_force_commit(struct super_block *sb)
2564{
2565 journal_t *journal;
2566 int ret;
2567
2568 if (sb->s_flags & MS_RDONLY)
2569 return 0;
2570
2571 journal = EXT3_SB(sb)->s_journal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 ret = ext3_journal_force_commit(journal);
2573 return ret;
2574}
2575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576static int ext3_sync_fs(struct super_block *sb, int wait)
2577{
Jan Kara02ac5972009-02-11 13:04:26 -08002578 tid_t target;
Arthur Jonesc87591b2008-11-06 12:53:35 -08002579
Lukas Czerner785c4bc2011-05-23 18:33:01 +02002580 trace_ext3_sync_fs(sb, wait);
Jan Karaa1177822012-07-03 16:45:29 +02002581 /*
2582 * Writeback quota in non-journalled quota case - journalled quota has
2583 * no dirty dquots
2584 */
2585 dquot_writeback_dquots(sb, -1);
Jan Kara02ac5972009-02-11 13:04:26 -08002586 if (journal_start_commit(EXT3_SB(sb)->s_journal, &target)) {
2587 if (wait)
2588 log_wait_commit(EXT3_SB(sb)->s_journal, target);
2589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 return 0;
2591}
2592
2593/*
2594 * LVM calls this function before a (read-only) snapshot is created. This
2595 * gives us a chance to flush the journal completely and mark the fs clean.
2596 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08002597static int ext3_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598{
Takashi Satoc4be0c12009-01-09 16:40:58 -08002599 int error = 0;
2600 journal_t *journal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08002603 journal = EXT3_SB(sb)->s_journal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 /* Now we set up the journal barrier. */
2606 journal_lock_updates(journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002607
2608 /*
2609 * We don't want to clear needs_recovery flag when we failed
2610 * to flush the journal.
2611 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08002612 error = journal_flush(journal);
2613 if (error < 0)
2614 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 /* Journal blocked and flushed, clear needs_recovery flag. */
2617 EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08002618 error = ext3_commit_super(sb, EXT3_SB(sb)->s_es, 1);
2619 if (error)
2620 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08002622 return 0;
2623
2624out:
2625 journal_unlock_updates(journal);
2626 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
2628
2629/*
2630 * Called by LVM after the snapshot is done. We need to reset the RECOVER
2631 * flag here, even though the filesystem is not technically dirty yet.
2632 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08002633static int ext3_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
2635 if (!(sb->s_flags & MS_RDONLY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 /* Reser the needs_recovery flag before the fs is unlocked. */
2637 EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
2638 ext3_commit_super(sb, EXT3_SB(sb)->s_es, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 journal_unlock_updates(EXT3_SB(sb)->s_journal);
2640 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08002641 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642}
2643
2644static int ext3_remount (struct super_block * sb, int * flags, char * data)
2645{
2646 struct ext3_super_block * es;
2647 struct ext3_sb_info *sbi = EXT3_SB(sb);
Mingming Cao43d23f92006-06-25 05:48:07 -07002648 ext3_fsblk_t n_blocks_count = 0;
Jan Kara08c6a962005-07-12 13:58:28 -07002649 unsigned long old_sb_flags;
2650 struct ext3_mount_options old_opts;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04002651 int enable_quota = 0;
Jan Kara08c6a962005-07-12 13:58:28 -07002652 int err;
2653#ifdef CONFIG_QUOTA
2654 int i;
2655#endif
2656
Theodore Ts'o02b99842014-03-13 10:14:33 -04002657 sync_filesystem(sb);
2658
Jan Kara08c6a962005-07-12 13:58:28 -07002659 /* Store the original options */
2660 old_sb_flags = sb->s_flags;
2661 old_opts.s_mount_opt = sbi->s_mount_opt;
2662 old_opts.s_resuid = sbi->s_resuid;
2663 old_opts.s_resgid = sbi->s_resgid;
2664 old_opts.s_commit_interval = sbi->s_commit_interval;
2665#ifdef CONFIG_QUOTA
2666 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
Jan Karaa93114e2014-09-10 20:48:02 +02002667 for (i = 0; i < EXT3_MAXQUOTAS; i++)
Jan Karaf56426a2012-12-31 12:38:36 +01002668 if (sbi->s_qf_names[i]) {
2669 old_opts.s_qf_names[i] = kstrdup(sbi->s_qf_names[i],
2670 GFP_KERNEL);
2671 if (!old_opts.s_qf_names[i]) {
2672 int j;
2673
2674 for (j = 0; j < i; j++)
2675 kfree(old_opts.s_qf_names[j]);
2676 return -ENOMEM;
2677 }
2678 } else
2679 old_opts.s_qf_names[i] = NULL;
Jan Kara08c6a962005-07-12 13:58:28 -07002680#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 /*
2683 * Allow the "check" option to be passed as a remount option.
2684 */
Johann Lombardi71b96252006-01-08 01:03:20 -08002685 if (!parse_options(data, sb, NULL, NULL, &n_blocks_count, 1)) {
Jan Kara08c6a962005-07-12 13:58:28 -07002686 err = -EINVAL;
2687 goto restore_opts;
2688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Dmitry Monakhove3c96432010-02-02 16:05:51 +03002690 if (test_opt(sb, ABORT))
Harvey Harrisone05b6b52008-04-28 02:16:15 -07002691 ext3_abort(sb, __func__, "Abort forced by user");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Dmitry Monakhove3c96432010-02-02 16:05:51 +03002694 (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
2696 es = sbi->s_es;
2697
2698 ext3_init_journal_params(sb, sbi->s_journal);
2699
2700 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
2701 n_blocks_count > le32_to_cpu(es->s_blocks_count)) {
Dmitry Monakhove3c96432010-02-02 16:05:51 +03002702 if (test_opt(sb, ABORT)) {
Jan Kara08c6a962005-07-12 13:58:28 -07002703 err = -EROFS;
2704 goto restore_opts;
2705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
2707 if (*flags & MS_RDONLY) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04002708 err = dquot_suspend(sb, -1);
2709 if (err < 0)
Christoph Hellwigc79d9672010-05-19 07:16:40 -04002710 goto restore_opts;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04002711
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 /*
2713 * First of all, the unconditional stuff we have to do
2714 * to disable replay of the journal when we next remount
2715 */
2716 sb->s_flags |= MS_RDONLY;
2717
2718 /*
2719 * OK, test if we are remounting a valid rw partition
2720 * readonly, and if so set the rdonly flag and then
2721 * mark the partition as valid again.
2722 */
2723 if (!(es->s_state & cpu_to_le16(EXT3_VALID_FS)) &&
2724 (sbi->s_mount_state & EXT3_VALID_FS))
2725 es->s_state = cpu_to_le16(sbi->s_mount_state);
2726
2727 ext3_mark_recovery_complete(sb, es);
2728 } else {
2729 __le32 ret;
2730 if ((ret = EXT3_HAS_RO_COMPAT_FEATURE(sb,
2731 ~EXT3_FEATURE_RO_COMPAT_SUPP))) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002732 ext3_msg(sb, KERN_WARNING,
2733 "warning: couldn't remount RDWR "
2734 "because of unsupported optional "
2735 "features (%x)", le32_to_cpu(ret));
Jan Kara08c6a962005-07-12 13:58:28 -07002736 err = -EROFS;
2737 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
Eric Sandeenea9a05a2007-02-10 01:46:07 -08002739
2740 /*
2741 * If we have an unprocessed orphan list hanging
2742 * around from a previously readonly bdev mount,
Toshiyuki Okajima1cde2012011-08-02 18:16:57 +09002743 * require a full umount & mount for now.
Eric Sandeenea9a05a2007-02-10 01:46:07 -08002744 */
2745 if (es->s_last_orphan) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002746 ext3_msg(sb, KERN_WARNING, "warning: couldn't "
Eric Sandeenea9a05a2007-02-10 01:46:07 -08002747 "remount RDWR because of unprocessed "
2748 "orphan inode list. Please "
Toshiyuki Okajima1cde2012011-08-02 18:16:57 +09002749 "umount & mount instead.");
Eric Sandeenea9a05a2007-02-10 01:46:07 -08002750 err = -EINVAL;
2751 goto restore_opts;
2752 }
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 /*
2755 * Mounting a RDONLY partition read-write, so reread
2756 * and store the current valid flag. (It may have
2757 * been changed by e2fsck since we originally mounted
2758 * the partition.)
2759 */
2760 ext3_clear_journal_err(sb, es);
2761 sbi->s_mount_state = le16_to_cpu(es->s_state);
Dave Kleikampa4e4de32006-09-27 01:49:36 -07002762 if ((err = ext3_group_extend(sb, es, n_blocks_count)))
Jan Kara08c6a962005-07-12 13:58:28 -07002763 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 if (!ext3_setup_super (sb, es, 0))
2765 sb->s_flags &= ~MS_RDONLY;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04002766 enable_quota = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 }
2768 }
Jan Kara08c6a962005-07-12 13:58:28 -07002769#ifdef CONFIG_QUOTA
2770 /* Release old quota file names */
Jan Karaa93114e2014-09-10 20:48:02 +02002771 for (i = 0; i < EXT3_MAXQUOTAS; i++)
Jan Karaf56426a2012-12-31 12:38:36 +01002772 kfree(old_opts.s_qf_names[i]);
Jan Kara08c6a962005-07-12 13:58:28 -07002773#endif
Christoph Hellwigc79d9672010-05-19 07:16:40 -04002774 if (enable_quota)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04002775 dquot_resume(sb, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return 0;
Jan Kara08c6a962005-07-12 13:58:28 -07002777restore_opts:
2778 sb->s_flags = old_sb_flags;
2779 sbi->s_mount_opt = old_opts.s_mount_opt;
2780 sbi->s_resuid = old_opts.s_resuid;
2781 sbi->s_resgid = old_opts.s_resgid;
2782 sbi->s_commit_interval = old_opts.s_commit_interval;
2783#ifdef CONFIG_QUOTA
2784 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
Jan Karaa93114e2014-09-10 20:48:02 +02002785 for (i = 0; i < EXT3_MAXQUOTAS; i++) {
Jan Karaf56426a2012-12-31 12:38:36 +01002786 kfree(sbi->s_qf_names[i]);
Jan Kara08c6a962005-07-12 13:58:28 -07002787 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
2788 }
2789#endif
2790 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791}
2792
David Howells726c3342006-06-23 02:02:58 -07002793static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794{
David Howells726c3342006-06-23 02:02:58 -07002795 struct super_block *sb = dentry->d_sb;
Alex Tomas09fe3162006-03-24 03:16:16 -08002796 struct ext3_sb_info *sbi = EXT3_SB(sb);
2797 struct ext3_super_block *es = sbi->s_es;
Pekka Enberg50ee0a32006-12-06 20:35:28 -08002798 u64 fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002800 if (test_opt(sb, MINIX_DF)) {
2801 sbi->s_overhead_last = 0;
2802 } else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
2803 unsigned long ngroups = sbi->s_groups_count, i;
2804 ext3_fsblk_t overhead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 smp_rmb();
2806
2807 /*
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002808 * Compute the overhead (FS structures). This is constant
2809 * for a given filesystem unless the number of block groups
2810 * changes so we cache the previous value until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 */
2812
2813 /*
2814 * All of the blocks before first_data_block are
2815 * overhead
2816 */
2817 overhead = le32_to_cpu(es->s_first_data_block);
2818
2819 /*
2820 * Add the overhead attributed to the superblock and
2821 * block group descriptors. If the sparse superblocks
2822 * feature is turned on, then not all groups have this.
2823 */
2824 for (i = 0; i < ngroups; i++) {
2825 overhead += ext3_bg_has_super(sb, i) +
2826 ext3_bg_num_gdb(sb, i);
2827 cond_resched();
2828 }
2829
2830 /*
2831 * Every block group has an inode bitmap, a block
2832 * bitmap, and an inode table.
2833 */
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002834 overhead += ngroups * (2 + sbi->s_itb_per_group);
Eric Sandeen2046fd12013-10-15 18:45:17 -05002835
Chin-Tsung Chenge6d8fb32014-08-15 15:49:31 +08002836 /* Add the internal journal blocks as well */
2837 if (sbi->s_journal && !sbi->journal_bdev)
2838 overhead += sbi->s_journal->j_maxlen;
Eric Sandeen2046fd12013-10-15 18:45:17 -05002839
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002840 sbi->s_overhead_last = overhead;
2841 smp_wmb();
2842 sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
2844
2845 buf->f_type = EXT3_SUPER_MAGIC;
2846 buf->f_bsize = sb->s_blocksize;
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002847 buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07002848 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
2850 if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
2851 buf->f_bavail = 0;
2852 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07002853 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 buf->f_namelen = EXT3_NAME_LEN;
Pekka Enberg50ee0a32006-12-06 20:35:28 -08002855 fsid = le64_to_cpup((void *)es->s_uuid) ^
2856 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
2857 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
2858 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 return 0;
2860}
2861
2862/* Helper function for writing quotas on sync - we need to start transaction before quota file
2863 * is locked for write. Otherwise the are possible deadlocks:
2864 * Process 1 Process 2
2865 * ext3_create() quota_sync()
2866 * journal_start() write_dquot()
Christoph Hellwig871a2932010-03-03 09:05:07 -05002867 * dquot_initialize() down(dqio_mutex)
Ingo Molnard3be9152006-03-23 03:00:29 -08002868 * down(dqio_mutex) journal_start()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 *
2870 */
2871
2872#ifdef CONFIG_QUOTA
2873
2874static inline struct inode *dquot_to_inode(struct dquot *dquot)
2875{
Eric W. Biederman4c376dc2012-09-16 03:56:19 -07002876 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_id.type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879static int ext3_write_dquot(struct dquot *dquot)
2880{
2881 int ret, err;
2882 handle_t *handle;
2883 struct inode *inode;
2884
2885 inode = dquot_to_inode(dquot);
2886 handle = ext3_journal_start(inode,
Jan Kara1f545872005-06-23 22:01:04 -07002887 EXT3_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 if (IS_ERR(handle))
2889 return PTR_ERR(handle);
2890 ret = dquot_commit(dquot);
2891 err = ext3_journal_stop(handle);
2892 if (!ret)
2893 ret = err;
2894 return ret;
2895}
2896
2897static int ext3_acquire_dquot(struct dquot *dquot)
2898{
2899 int ret, err;
2900 handle_t *handle;
2901
2902 handle = ext3_journal_start(dquot_to_inode(dquot),
Jan Kara1f545872005-06-23 22:01:04 -07002903 EXT3_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 if (IS_ERR(handle))
2905 return PTR_ERR(handle);
2906 ret = dquot_acquire(dquot);
2907 err = ext3_journal_stop(handle);
2908 if (!ret)
2909 ret = err;
2910 return ret;
2911}
2912
2913static int ext3_release_dquot(struct dquot *dquot)
2914{
2915 int ret, err;
2916 handle_t *handle;
2917
2918 handle = ext3_journal_start(dquot_to_inode(dquot),
Jan Kara1f545872005-06-23 22:01:04 -07002919 EXT3_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07002920 if (IS_ERR(handle)) {
2921 /* Release dquot anyway to avoid endless cycle in dqput() */
2922 dquot_release(dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07002924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 ret = dquot_release(dquot);
2926 err = ext3_journal_stop(handle);
2927 if (!ret)
2928 ret = err;
2929 return ret;
2930}
2931
2932static int ext3_mark_dquot_dirty(struct dquot *dquot)
2933{
Jan Kara99aeaf62008-07-25 01:46:17 -07002934 /* Are we journaling quotas? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (EXT3_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
2936 EXT3_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
2937 dquot_mark_dquot_dirty(dquot);
2938 return ext3_write_dquot(dquot);
2939 } else {
2940 return dquot_mark_dquot_dirty(dquot);
2941 }
2942}
2943
2944static int ext3_write_info(struct super_block *sb, int type)
2945{
2946 int ret, err;
2947 handle_t *handle;
2948
2949 /* Data block + inode block */
David Howells2b0143b2015-03-17 22:25:59 +00002950 handle = ext3_journal_start(d_inode(sb->s_root), 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 if (IS_ERR(handle))
2952 return PTR_ERR(handle);
2953 ret = dquot_commit_info(sb, type);
2954 err = ext3_journal_stop(handle);
2955 if (!ret)
2956 ret = err;
2957 return ret;
2958}
2959
2960/*
2961 * Turn on quotas during mount time - we need to find
2962 * the quota file and such...
2963 */
2964static int ext3_quota_on_mount(struct super_block *sb, int type)
2965{
Christoph Hellwig287a8092010-05-19 07:16:45 -04002966 return dquot_quota_on_mount(sb, EXT3_SB(sb)->s_qf_names[type],
2967 EXT3_SB(sb)->s_jquota_fmt, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968}
2969
2970/*
2971 * Standard function to be called on quota_on
2972 */
2973static int ext3_quota_on(struct super_block *sb, int type, int format_id,
Jan Karaf00c9e42010-09-15 17:38:58 +02002974 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
2976 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977
Jan Kara1f545872005-06-23 22:01:04 -07002978 if (!test_opt(sb, QUOTA))
2979 return -EINVAL;
Jan Kara9cfe7b92008-07-25 01:46:16 -07002980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 /* Quotafile not on the same filesystem? */
Al Virod8c95842011-12-07 18:16:57 -05002982 if (path->dentry->d_sb != sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 return -EXDEV;
Jan Kara9cfe7b92008-07-25 01:46:16 -07002984 /* Journaling quota? */
2985 if (EXT3_SB(sb)->s_qf_names[type]) {
2986 /* Quotafile not of fs root? */
Jan Karaf00c9e42010-09-15 17:38:58 +02002987 if (path->dentry->d_parent != sb->s_root)
Alexey Fisher4cf46b62009-11-22 20:38:55 +01002988 ext3_msg(sb, KERN_WARNING,
2989 "warning: Quota file not on filesystem root. "
2990 "Journaled quota will not work.");
Jan Kara9cfe7b92008-07-25 01:46:16 -07002991 }
2992
2993 /*
2994 * When we journal data on quota file, we have to flush journal to see
2995 * all updates to the file when we bypass pagecache...
2996 */
David Howells2b0143b2015-03-17 22:25:59 +00002997 if (ext3_should_journal_data(d_inode(path->dentry))) {
Jan Kara9cfe7b92008-07-25 01:46:16 -07002998 /*
2999 * We don't need to lock updates but journal_flush() could
3000 * otherwise be livelocked...
3001 */
3002 journal_lock_updates(EXT3_SB(sb)->s_journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07003003 err = journal_flush(EXT3_SB(sb)->s_journal);
Jan Kara9cfe7b92008-07-25 01:46:16 -07003004 journal_unlock_updates(EXT3_SB(sb)->s_journal);
Jan Karaf00c9e42010-09-15 17:38:58 +02003005 if (err)
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07003006 return err;
Jan Kara9cfe7b92008-07-25 01:46:16 -07003007 }
3008
Jan Karaf00c9e42010-09-15 17:38:58 +02003009 return dquot_quota_on(sb, type, format_id, path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
3012/* Read data from quotafile - avoid pagecache and such because we cannot afford
3013 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003014 * itself serializes the operations (and no one else should touch the files)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 * we don't have to be afraid of races */
3016static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
3017 size_t len, loff_t off)
3018{
3019 struct inode *inode = sb_dqopt(sb)->files[type];
3020 sector_t blk = off >> EXT3_BLOCK_SIZE_BITS(sb);
3021 int err = 0;
3022 int offset = off & (sb->s_blocksize - 1);
3023 int tocopy;
3024 size_t toread;
3025 struct buffer_head *bh;
3026 loff_t i_size = i_size_read(inode);
3027
3028 if (off > i_size)
3029 return 0;
3030 if (off+len > i_size)
3031 len = i_size-off;
3032 toread = len;
3033 while (toread > 0) {
3034 tocopy = sb->s_blocksize - offset < toread ?
3035 sb->s_blocksize - offset : toread;
3036 bh = ext3_bread(NULL, inode, blk, 0, &err);
3037 if (err)
3038 return err;
3039 if (!bh) /* A hole? */
3040 memset(data, 0, tocopy);
3041 else
3042 memcpy(data, bh->b_data+offset, tocopy);
3043 brelse(bh);
3044 offset = 0;
3045 toread -= tocopy;
3046 data += tocopy;
3047 blk++;
3048 }
3049 return len;
3050}
3051
3052/* Write to quotafile (we know the transaction is already started and has
3053 * enough credits) */
3054static ssize_t ext3_quota_write(struct super_block *sb, int type,
3055 const char *data, size_t len, loff_t off)
3056{
3057 struct inode *inode = sb_dqopt(sb)->files[type];
3058 sector_t blk = off >> EXT3_BLOCK_SIZE_BITS(sb);
3059 int err = 0;
3060 int offset = off & (sb->s_blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 int journal_quota = EXT3_SB(sb)->s_qf_names[type] != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 struct buffer_head *bh;
3063 handle_t *handle = journal_current_handle();
3064
Jan Kara9c3013e2007-09-11 15:23:29 -07003065 if (!handle) {
Alexey Fisher4cf46b62009-11-22 20:38:55 +01003066 ext3_msg(sb, KERN_WARNING,
3067 "warning: quota write (off=%llu, len=%llu)"
3068 " cancelled because transaction is not started.",
Jan Kara9c3013e2007-09-11 15:23:29 -07003069 (unsigned long long)off, (unsigned long long)len);
3070 return -EIO;
3071 }
Dmitry Monakhove5472142010-02-16 19:33:42 +03003072
3073 /*
3074 * Since we account only one data block in transaction credits,
3075 * then it is impossible to cross a block boundary.
3076 */
3077 if (sb->s_blocksize - offset < len) {
3078 ext3_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
3079 " cancelled because not block aligned",
3080 (unsigned long long)off, (unsigned long long)len);
3081 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 }
Dmitry Monakhove5472142010-02-16 19:33:42 +03003083 bh = ext3_bread(handle, inode, blk, 1, &err);
3084 if (!bh)
3085 goto out;
3086 if (journal_quota) {
3087 err = ext3_journal_get_write_access(handle, bh);
3088 if (err) {
3089 brelse(bh);
3090 goto out;
3091 }
3092 }
3093 lock_buffer(bh);
3094 memcpy(bh->b_data+offset, data, len);
3095 flush_dcache_page(bh->b_page);
3096 unlock_buffer(bh);
3097 if (journal_quota)
3098 err = ext3_journal_dirty_metadata(handle, bh);
3099 else {
3100 /* Always do at least ordered writes for quotas */
3101 err = ext3_journal_dirty_data(handle, bh);
3102 mark_buffer_dirty(bh);
3103 }
3104 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105out:
Jan Kara905c3932012-04-25 21:24:30 +02003106 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 return err;
Dmitry Monakhove5472142010-02-16 19:33:42 +03003108 if (inode->i_size < off + len) {
3109 i_size_write(inode, off + len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 EXT3_I(inode)->i_disksize = inode->i_size;
3111 }
3112 inode->i_version++;
3113 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
3114 ext3_mark_inode_dirty(handle, inode);
Dmitry Monakhove5472142010-02-16 19:33:42 +03003115 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116}
3117
3118#endif
3119
Al Viro152a0832010-07-25 00:46:55 +04003120static struct dentry *ext3_mount(struct file_system_type *fs_type,
3121 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122{
Al Viro152a0832010-07-25 00:46:55 +04003123 return mount_bdev(fs_type, flags, dev_name, data, ext3_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124}
3125
3126static struct file_system_type ext3_fs_type = {
3127 .owner = THIS_MODULE,
3128 .name = "ext3",
Al Viro152a0832010-07-25 00:46:55 +04003129 .mount = ext3_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 .kill_sb = kill_block_super,
3131 .fs_flags = FS_REQUIRES_DEV,
3132};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08003133MODULE_ALIAS_FS("ext3");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135static int __init init_ext3_fs(void)
3136{
3137 int err = init_ext3_xattr();
3138 if (err)
3139 return err;
3140 err = init_inodecache();
3141 if (err)
3142 goto out1;
3143 err = register_filesystem(&ext3_fs_type);
3144 if (err)
3145 goto out;
3146 return 0;
3147out:
3148 destroy_inodecache();
3149out1:
Dave Kleikampe9ad5622006-09-27 01:49:35 -07003150 exit_ext3_xattr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 return err;
3152}
3153
3154static void __exit exit_ext3_fs(void)
3155{
3156 unregister_filesystem(&ext3_fs_type);
3157 destroy_inodecache();
3158 exit_ext3_xattr();
3159}
3160
3161MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
3162MODULE_DESCRIPTION("Second Extended Filesystem with journaling extensions");
3163MODULE_LICENSE("GPL");
3164module_init(init_ext3_fs)
3165module_exit(exit_ext3_fs)