blob: 3f4475daa66d6024ce37cb32c2ae77da37b2d814 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -040023#include <linux/vmalloc.h>
Mingming Caodab291a2006-10-11 01:21:01 -070024#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/blkdev.h>
28#include <linux/parser.h>
29#include <linux/smp_lock.h>
30#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070031#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/vfs.h>
33#include <linux/random.h>
34#include <linux/mount.h>
35#include <linux/namei.h>
36#include <linux/quotaops.h>
37#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040038#include <linux/proc_fs.h>
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040039#include <linux/ctype.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040040#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040041#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040042#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043#include <asm/uaccess.h>
44
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040045#include "ext4.h"
46#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047#include "xattr.h"
48#include "acl.h"
49#include "namei.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040050#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070051
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040052struct proc_dir_entry *ext4_proc_root;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040053static struct kset *ext4_kset;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040054
Mingming Cao617ba132006-10-11 01:20:53 -070055static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070056 unsigned long journal_devnum);
Takashi Satoc4be0c12009-01-09 16:40:58 -080057static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040058 struct ext4_super_block *es, int sync);
59static void ext4_mark_recovery_complete(struct super_block *sb,
60 struct ext4_super_block *es);
61static void ext4_clear_journal_err(struct super_block *sb,
62 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070063static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040064static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070065 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040066static int ext4_remount(struct super_block *sb, int *flags, char *data);
67static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080068static int ext4_unfreeze(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040069static void ext4_write_super(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080070static int ext4_freeze(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070071
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070072
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070073ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
74 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070075{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040076 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070077 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040078 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070079}
80
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070081ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
82 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070083{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040084 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070085 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040086 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070087}
88
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070089ext4_fsblk_t ext4_inode_table(struct super_block *sb,
90 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070091{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040092 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070093 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040094 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070095}
96
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050097__u32 ext4_free_blks_count(struct super_block *sb,
98 struct ext4_group_desc *bg)
99{
100 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
101 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
102 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
103}
104
105__u32 ext4_free_inodes_count(struct super_block *sb,
106 struct ext4_group_desc *bg)
107{
108 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
109 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
110 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
111}
112
113__u32 ext4_used_dirs_count(struct super_block *sb,
114 struct ext4_group_desc *bg)
115{
116 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
117 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
118 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
119}
120
121__u32 ext4_itable_unused_count(struct super_block *sb,
122 struct ext4_group_desc *bg)
123{
124 return le16_to_cpu(bg->bg_itable_unused_lo) |
125 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
126 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
127}
128
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700129void ext4_block_bitmap_set(struct super_block *sb,
130 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700131{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400132 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700133 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
134 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700135}
136
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700137void ext4_inode_bitmap_set(struct super_block *sb,
138 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700139{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400140 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700141 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
142 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700143}
144
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700145void ext4_inode_table_set(struct super_block *sb,
146 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700147{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400148 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700149 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
150 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700151}
152
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500153void ext4_free_blks_set(struct super_block *sb,
154 struct ext4_group_desc *bg, __u32 count)
155{
156 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
157 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
158 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
159}
160
161void ext4_free_inodes_set(struct super_block *sb,
162 struct ext4_group_desc *bg, __u32 count)
163{
164 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
165 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
166 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
167}
168
169void ext4_used_dirs_set(struct super_block *sb,
170 struct ext4_group_desc *bg, __u32 count)
171{
172 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
173 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
174 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
175}
176
177void ext4_itable_unused_set(struct super_block *sb,
178 struct ext4_group_desc *bg, __u32 count)
179{
180 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
181 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
182 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
183}
184
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700185/*
Mingming Caodab291a2006-10-11 01:21:01 -0700186 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700187 *
188 * The only special thing we need to do here is to make sure that all
189 * journal_end calls result in the superblock being marked dirty, so
190 * that sync() will call the filesystem's write_super callback if
191 * appropriate.
192 */
Mingming Cao617ba132006-10-11 01:20:53 -0700193handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700194{
195 journal_t *journal;
196
197 if (sb->s_flags & MS_RDONLY)
198 return ERR_PTR(-EROFS);
199
200 /* Special case here: if the journal has aborted behind our
201 * backs (eg. EIO in the commit thread), then we still need to
202 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700203 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500204 if (journal) {
205 if (is_journal_aborted(journal)) {
206 ext4_abort(sb, __func__,
207 "Detected aborted journal");
208 return ERR_PTR(-EROFS);
209 }
210 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700211 }
Frank Mayhar03901312009-01-07 00:06:22 -0500212 /*
213 * We're not journaling, return the appropriate indication.
214 */
215 current->journal_info = EXT4_NOJOURNAL_HANDLE;
216 return current->journal_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700217}
218
219/*
220 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700221 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700222 * that sync() will call the filesystem's write_super callback if
223 * appropriate.
224 */
Mingming Cao617ba132006-10-11 01:20:53 -0700225int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226{
227 struct super_block *sb;
228 int err;
229 int rc;
230
Frank Mayhar03901312009-01-07 00:06:22 -0500231 if (!ext4_handle_valid(handle)) {
232 /*
233 * Do this here since we don't call jbd2_journal_stop() in
234 * no-journal mode.
235 */
236 current->journal_info = NULL;
237 return 0;
238 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239 sb = handle->h_transaction->t_journal->j_private;
240 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700241 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242
243 if (!err)
244 err = rc;
245 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700246 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 return err;
248}
249
Mingming Cao617ba132006-10-11 01:20:53 -0700250void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251 struct buffer_head *bh, handle_t *handle, int err)
252{
253 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700254 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700255
Frank Mayhar03901312009-01-07 00:06:22 -0500256 BUG_ON(!ext4_handle_valid(handle));
257
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700258 if (bh)
259 BUFFER_TRACE(bh, "abort");
260
261 if (!handle->h_err)
262 handle->h_err = err;
263
264 if (is_handle_aborted(handle))
265 return;
266
267 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
268 caller, errstr, err_fn);
269
Mingming Caodab291a2006-10-11 01:21:01 -0700270 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700271}
272
273/* Deal with the reporting of failure conditions on a filesystem such as
274 * inconsistencies detected or read IO failures.
275 *
276 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700277 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700278 * write ordering constraints on the superblock which prevent us from
279 * writing it out straight away; and given that the journal is about to
280 * be aborted, we can't rely on the current, or future, transactions to
281 * write out the superblock safely.
282 *
Mingming Caodab291a2006-10-11 01:21:01 -0700283 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700284 * the journal instead. On recovery, the journal will compain about
285 * that error until we've noted it down and cleared it.
286 */
287
Mingming Cao617ba132006-10-11 01:20:53 -0700288static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700289{
Mingming Cao617ba132006-10-11 01:20:53 -0700290 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700291
Mingming Cao617ba132006-10-11 01:20:53 -0700292 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
293 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700294
295 if (sb->s_flags & MS_RDONLY)
296 return;
297
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400298 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700299 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700300
Mingming Cao617ba132006-10-11 01:20:53 -0700301 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700302 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700303 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400305 if (test_opt(sb, ERRORS_RO)) {
306 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700307 sb->s_flags |= MS_RDONLY;
308 }
Mingming Cao617ba132006-10-11 01:20:53 -0700309 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700311 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312 sb->s_id);
313}
314
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400315void ext4_error(struct super_block *sb, const char *function,
316 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700317{
318 va_list args;
319
320 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400321 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700322 vprintk(fmt, args);
323 printk("\n");
324 va_end(args);
325
Mingming Cao617ba132006-10-11 01:20:53 -0700326 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700327}
328
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400329static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700330 char nbuf[16])
331{
332 char *errstr = NULL;
333
334 switch (errno) {
335 case -EIO:
336 errstr = "IO failure";
337 break;
338 case -ENOMEM:
339 errstr = "Out of memory";
340 break;
341 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700342 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700343 errstr = "Journal has aborted";
344 else
345 errstr = "Readonly filesystem";
346 break;
347 default:
348 /* If the caller passed in an extra buffer for unknown
349 * errors, textualise them now. Else we just return
350 * NULL. */
351 if (nbuf) {
352 /* Check for truncated error codes... */
353 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
354 errstr = nbuf;
355 }
356 break;
357 }
358
359 return errstr;
360}
361
Mingming Cao617ba132006-10-11 01:20:53 -0700362/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700363 * automatically and invokes the appropriate error response. */
364
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400365void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700366{
367 char nbuf[16];
368 const char *errstr;
369
370 /* Special case: if the error is EROFS, and we're not already
371 * inside a transaction, then there's really no point in logging
372 * an error. */
373 if (errno == -EROFS && journal_current_handle() == NULL &&
374 (sb->s_flags & MS_RDONLY))
375 return;
376
Mingming Cao617ba132006-10-11 01:20:53 -0700377 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400378 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
379 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700380
Mingming Cao617ba132006-10-11 01:20:53 -0700381 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700382}
383
384/*
Mingming Cao617ba132006-10-11 01:20:53 -0700385 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700386 * abort function may be used to deal with unrecoverable failures such
387 * as journal IO errors or ENOMEM at a critical moment in log management.
388 *
389 * We unconditionally force the filesystem into an ABORT|READONLY state,
390 * unless the error response on the fs has been set to panic in which
391 * case we take the easy way out and panic immediately.
392 */
393
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400394void ext4_abort(struct super_block *sb, const char *function,
395 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700396{
397 va_list args;
398
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400399 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700400
401 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400402 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700403 vprintk(fmt, args);
404 printk("\n");
405 va_end(args);
406
407 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700408 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700409
410 if (sb->s_flags & MS_RDONLY)
411 return;
412
413 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700414 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700415 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700416 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400417 if (EXT4_SB(sb)->s_journal)
418 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700419}
420
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400421void ext4_warning(struct super_block *sb, const char *function,
422 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700423{
424 va_list args;
425
426 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700427 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700428 sb->s_id, function);
429 vprintk(fmt, args);
430 printk("\n");
431 va_end(args);
432}
433
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500434void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
435 const char *function, const char *fmt, ...)
436__releases(bitlock)
437__acquires(bitlock)
438{
439 va_list args;
440 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
441
442 va_start(args, fmt);
443 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
444 vprintk(fmt, args);
445 printk("\n");
446 va_end(args);
447
448 if (test_opt(sb, ERRORS_CONT)) {
449 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
450 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
451 ext4_commit_super(sb, es, 0);
452 return;
453 }
454 ext4_unlock_group(sb, grp);
455 ext4_handle_error(sb);
456 /*
457 * We only get here in the ERRORS_RO case; relocking the group
458 * may be dangerous, but nothing bad will happen since the
459 * filesystem will have already been marked read/only and the
460 * journal has been aborted. We return 1 as a hint to callers
461 * who might what to use the return value from
462 * ext4_grp_locked_error() to distinguish beween the
463 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
464 * aggressively from the ext4 function in question, with a
465 * more appropriate error code.
466 */
467 ext4_lock_group(sb, grp);
468 return;
469}
470
471
Mingming Cao617ba132006-10-11 01:20:53 -0700472void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700473{
Mingming Cao617ba132006-10-11 01:20:53 -0700474 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475
Mingming Cao617ba132006-10-11 01:20:53 -0700476 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 return;
478
Harvey Harrison46e665e2008-04-17 10:38:59 -0400479 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700480 "updating to rev %d because of new feature flag, "
481 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700482 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700483
Mingming Cao617ba132006-10-11 01:20:53 -0700484 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
485 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
486 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700487 /* leave es->s_feature_*compat flags alone */
488 /* es->s_uuid will be set by e2fsck if empty */
489
490 /*
491 * The rest of the superblock fields should be zero, and if not it
492 * means they are likely already in use, so leave them alone. We
493 * can leave it up to e2fsck to clean up any inconsistencies there.
494 */
495}
496
497/*
498 * Open the external journal device
499 */
Mingming Cao617ba132006-10-11 01:20:53 -0700500static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700501{
502 struct block_device *bdev;
503 char b[BDEVNAME_SIZE];
504
505 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
506 if (IS_ERR(bdev))
507 goto fail;
508 return bdev;
509
510fail:
Theodore Ts'oabda1412009-01-06 00:20:32 -0500511 printk(KERN_ERR "EXT4-fs: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512 __bdevname(dev, b), PTR_ERR(bdev));
513 return NULL;
514}
515
516/*
517 * Release the journal device
518 */
Mingming Cao617ba132006-10-11 01:20:53 -0700519static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520{
521 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500522 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523}
524
Mingming Cao617ba132006-10-11 01:20:53 -0700525static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700526{
527 struct block_device *bdev;
528 int ret = -ENODEV;
529
530 bdev = sbi->journal_bdev;
531 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700532 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700533 sbi->journal_bdev = NULL;
534 }
535 return ret;
536}
537
538static inline struct inode *orphan_list_entry(struct list_head *l)
539{
Mingming Cao617ba132006-10-11 01:20:53 -0700540 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700541}
542
Mingming Cao617ba132006-10-11 01:20:53 -0700543static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700544{
545 struct list_head *l;
546
547 printk(KERN_ERR "sb orphan head is %d\n",
548 le32_to_cpu(sbi->s_es->s_last_orphan));
549
550 printk(KERN_ERR "sb_info orphan list:\n");
551 list_for_each(l, &sbi->s_orphan) {
552 struct inode *inode = orphan_list_entry(l);
553 printk(KERN_ERR " "
554 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
555 inode->i_sb->s_id, inode->i_ino, inode,
556 inode->i_mode, inode->i_nlink,
557 NEXT_ORPHAN(inode));
558 }
559}
560
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400561static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700562{
Mingming Cao617ba132006-10-11 01:20:53 -0700563 struct ext4_sb_info *sbi = EXT4_SB(sb);
564 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400565 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700566
Alex Tomasc9de5602008-01-29 00:19:52 -0500567 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700568 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700569 ext4_xattr_put_super(sb);
Frank Mayhar03901312009-01-07 00:06:22 -0500570 if (sbi->s_journal) {
571 err = jbd2_journal_destroy(sbi->s_journal);
572 sbi->s_journal = NULL;
573 if (err < 0)
574 ext4_abort(sb, __func__,
575 "Couldn't clean up the journal");
576 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700577 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700578 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579 es->s_state = cpu_to_le16(sbi->s_mount_state);
Mingming Cao617ba132006-10-11 01:20:53 -0700580 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700581 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400582 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400583 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400584 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400585 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586
587 for (i = 0; i < sbi->s_gdb_count; i++)
588 brelse(sbi->s_group_desc[i]);
589 kfree(sbi->s_group_desc);
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -0400590 if (is_vmalloc_addr(sbi->s_flex_groups))
591 vfree(sbi->s_flex_groups);
592 else
593 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700594 percpu_counter_destroy(&sbi->s_freeblocks_counter);
595 percpu_counter_destroy(&sbi->s_freeinodes_counter);
596 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400597 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700598 brelse(sbi->s_sbh);
599#ifdef CONFIG_QUOTA
600 for (i = 0; i < MAXQUOTAS; i++)
601 kfree(sbi->s_qf_names[i]);
602#endif
603
604 /* Debugging code just in case the in-memory inode orphan list
605 * isn't empty. The on-disk one can be non-empty if we've
606 * detected an error and taken the fs readonly, but the
607 * in-memory list had better be clean by this point. */
608 if (!list_empty(&sbi->s_orphan))
609 dump_orphan_list(sb, sbi);
610 J_ASSERT(list_empty(&sbi->s_orphan));
611
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700612 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700613 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
614 /*
615 * Invalidate the journal device's buffers. We don't want them
616 * floating about in memory - the physical journal device may
617 * hotswapped, and it breaks the `ro-after' testing code.
618 */
619 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700620 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700621 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700622 }
623 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400624 /*
625 * Now that we are completely done shutting down the
626 * superblock, we need to actually destroy the kobject.
627 */
628 unlock_kernel();
629 unlock_super(sb);
630 kobject_put(&sbi->s_kobj);
631 wait_for_completion(&sbi->s_kobj_unregister);
632 lock_super(sb);
633 lock_kernel();
Pekka Enberg705895b2009-02-15 18:07:52 -0500634 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700635 kfree(sbi);
636 return;
637}
638
Christoph Lametere18b8902006-12-06 20:33:20 -0800639static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700640
641/*
642 * Called inside transaction, so use GFP_NOFS
643 */
Mingming Cao617ba132006-10-11 01:20:53 -0700644static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645{
Mingming Cao617ba132006-10-11 01:20:53 -0700646 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700647
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800648 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649 if (!ei)
650 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400651#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700652 ei->i_acl = EXT4_ACL_NOT_CACHED;
653 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700655 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400656 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700657 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500658 INIT_LIST_HEAD(&ei->i_prealloc_list);
659 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500660 /*
661 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
662 * therefore it can be null here. Don't check it, just initialize
663 * jinode.
664 */
Jan Kara678aaf42008-07-11 19:27:31 -0400665 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400666 ei->i_reserved_data_blocks = 0;
667 ei->i_reserved_meta_blocks = 0;
668 ei->i_allocated_meta_blocks = 0;
669 ei->i_delalloc_reserved_flag = 0;
670 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671 return &ei->vfs_inode;
672}
673
Mingming Cao617ba132006-10-11 01:20:53 -0700674static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700675{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700676 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
677 printk("EXT4 Inode %p: orphan list check failed!\n",
678 EXT4_I(inode));
679 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
680 EXT4_I(inode), sizeof(struct ext4_inode_info),
681 true);
682 dump_stack();
683 }
Mingming Cao617ba132006-10-11 01:20:53 -0700684 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700685}
686
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700687static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700688{
Mingming Cao617ba132006-10-11 01:20:53 -0700689 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690
Christoph Lametera35afb82007-05-16 22:10:57 -0700691 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400692#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700693 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700694#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500695 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700696 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700697}
698
699static int init_inodecache(void)
700{
Mingming Cao617ba132006-10-11 01:20:53 -0700701 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
702 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 0, (SLAB_RECLAIM_ACCOUNT|
704 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900705 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700706 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707 return -ENOMEM;
708 return 0;
709}
710
711static void destroy_inodecache(void)
712{
Mingming Cao617ba132006-10-11 01:20:53 -0700713 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714}
715
Mingming Cao617ba132006-10-11 01:20:53 -0700716static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400718#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700719 if (EXT4_I(inode)->i_acl &&
720 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
721 posix_acl_release(EXT4_I(inode)->i_acl);
722 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700723 }
Mingming Cao617ba132006-10-11 01:20:53 -0700724 if (EXT4_I(inode)->i_default_acl &&
725 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
726 posix_acl_release(EXT4_I(inode)->i_default_acl);
727 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728 }
729#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400730 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500731 if (EXT4_JOURNAL(inode))
732 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400733 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734}
735
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400736static inline void ext4_show_quota_options(struct seq_file *seq,
737 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738{
739#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700740 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741
742 if (sbi->s_jquota_fmt)
743 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400744 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700745
746 if (sbi->s_qf_names[USRQUOTA])
747 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
748
749 if (sbi->s_qf_names[GRPQUOTA])
750 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
751
Mingming Cao617ba132006-10-11 01:20:53 -0700752 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 seq_puts(seq, ",usrquota");
754
Mingming Cao617ba132006-10-11 01:20:53 -0700755 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700756 seq_puts(seq, ",grpquota");
757#endif
758}
759
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700760/*
761 * Show an option if
762 * - it's set to a non-default value OR
763 * - if the per-sb default is different from the global default
764 */
Mingming Cao617ba132006-10-11 01:20:53 -0700765static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700766{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500767 int def_errors;
768 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700769 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700770 struct ext4_sb_info *sbi = EXT4_SB(sb);
771 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700772
773 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500774 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700775
776 if (sbi->s_sb_block != 1)
777 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
778 if (test_opt(sb, MINIX_DF))
779 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500780 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700781 seq_puts(seq, ",grpid");
782 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
783 seq_puts(seq, ",nogrpid");
784 if (sbi->s_resuid != EXT4_DEF_RESUID ||
785 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
786 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
787 }
788 if (sbi->s_resgid != EXT4_DEF_RESGID ||
789 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
790 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
791 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500792 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700793 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500794 def_errors == EXT4_ERRORS_CONTINUE) {
795 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700796 }
797 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500798 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500799 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500800 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700801 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500802 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700803 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500804 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700805 seq_puts(seq, ",debug");
806 if (test_opt(sb, OLDALLOC))
807 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400808#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500809 if (test_opt(sb, XATTR_USER) &&
810 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700811 seq_puts(seq, ",user_xattr");
812 if (!test_opt(sb, XATTR_USER) &&
813 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
814 seq_puts(seq, ",nouser_xattr");
815 }
816#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400817#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500818 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700819 seq_puts(seq, ",acl");
820 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
821 seq_puts(seq, ",noacl");
822#endif
Theodore Ts'o30773842009-01-03 20:27:38 -0500823 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700824 seq_printf(seq, ",commit=%u",
825 (unsigned) (sbi->s_commit_interval / HZ));
826 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500827 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
828 seq_printf(seq, ",min_batch_time=%u",
829 (unsigned) sbi->s_min_batch_time);
830 }
831 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
832 seq_printf(seq, ",max_batch_time=%u",
833 (unsigned) sbi->s_min_batch_time);
834 }
835
Eric Sandeen571640c2008-05-26 12:29:46 -0400836 /*
837 * We're changing the default of barrier mount option, so
838 * let's always display its mount state so it's clear what its
839 * status is.
840 */
841 seq_puts(seq, ",barrier=");
842 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400843 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
844 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700845 if (test_opt(sb, NOBH))
846 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500847 if (test_opt(sb, I_VERSION))
848 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400849 if (!test_opt(sb, DELALLOC))
850 seq_puts(seq, ",nodelalloc");
851
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500853 if (sbi->s_stripe)
854 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500855 /*
856 * journal mode get enabled in different ways
857 * So just print the value even if we didn't specify it
858 */
Mingming Cao617ba132006-10-11 01:20:53 -0700859 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700860 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700861 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700863 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700864 seq_puts(seq, ",data=writeback");
865
Theodore Ts'o240799c2008-10-09 23:53:47 -0400866 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
867 seq_printf(seq, ",inode_readahead_blks=%u",
868 sbi->s_inode_readahead_blks);
869
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400870 if (test_opt(sb, DATA_ERR_ABORT))
871 seq_puts(seq, ",data_err=abort");
872
Theodore Ts'oafd46722009-03-16 23:12:23 -0400873 if (test_opt(sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o06705bf2009-03-28 10:59:57 -0400874 seq_puts(seq, ",noauto_da_alloc");
Theodore Ts'oafd46722009-03-16 23:12:23 -0400875
Mingming Cao617ba132006-10-11 01:20:53 -0700876 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700877 return 0;
878}
879
880
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700881static struct inode *ext4_nfs_get_inode(struct super_block *sb,
882 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700884 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700885
Mingming Cao617ba132006-10-11 01:20:53 -0700886 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700888 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700889 return ERR_PTR(-ESTALE);
890
891 /* iget isn't really right if the inode is currently unallocated!!
892 *
Mingming Cao617ba132006-10-11 01:20:53 -0700893 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700894 * deleted, so we should be safe.
895 *
896 * Currently we don't know the generation for parent directory, so
897 * a generation of 0 means "accept any"
898 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800899 inode = ext4_iget(sb, ino);
900 if (IS_ERR(inode))
901 return ERR_CAST(inode);
902 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 iput(inode);
904 return ERR_PTR(-ESTALE);
905 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700906
907 return inode;
908}
909
910static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
911 int fh_len, int fh_type)
912{
913 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
914 ext4_nfs_get_inode);
915}
916
917static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
918 int fh_len, int fh_type)
919{
920 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
921 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700922}
923
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500924/*
925 * Try to release metadata pages (indirect blocks, directories) which are
926 * mapped via the block device. Since these pages could have journal heads
927 * which would prevent try_to_free_buffers() from freeing them, we must use
928 * jbd2 layer's try_to_free_buffers() function to release them.
929 */
930static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
931{
932 journal_t *journal = EXT4_SB(sb)->s_journal;
933
934 WARN_ON(PageChecked(page));
935 if (!page_has_buffers(page))
936 return 0;
937 if (journal)
938 return jbd2_journal_try_to_free_buffers(journal, page,
939 wait & ~__GFP_WAIT);
940 return try_to_free_buffers(page);
941}
942
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700943#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400944#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400945#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700946
Mingming Cao617ba132006-10-11 01:20:53 -0700947static int ext4_write_dquot(struct dquot *dquot);
948static int ext4_acquire_dquot(struct dquot *dquot);
949static int ext4_release_dquot(struct dquot *dquot);
950static int ext4_mark_dquot_dirty(struct dquot *dquot);
951static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700952static int ext4_quota_on(struct super_block *sb, int type, int format_id,
953 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700954static int ext4_quota_on_mount(struct super_block *sb, int type);
955static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700956 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700957static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958 const char *data, size_t len, loff_t off);
959
Mingming Cao617ba132006-10-11 01:20:53 -0700960static struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +0100961 .initialize = dquot_initialize,
962 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +0100964 .reserve_space = dquot_reserve_space,
965 .claim_space = dquot_claim_space,
966 .release_rsv = dquot_release_reserved_space,
967 .get_reserved_space = ext4_get_reserved_space,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700968 .alloc_inode = dquot_alloc_inode,
969 .free_space = dquot_free_space,
970 .free_inode = dquot_free_inode,
971 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700972 .write_dquot = ext4_write_dquot,
973 .acquire_dquot = ext4_acquire_dquot,
974 .release_dquot = ext4_release_dquot,
975 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +0100976 .write_info = ext4_write_info,
977 .alloc_dquot = dquot_alloc,
978 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700979};
980
Mingming Cao617ba132006-10-11 01:20:53 -0700981static struct quotactl_ops ext4_qctl_operations = {
982 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700983 .quota_off = vfs_quota_off,
984 .quota_sync = vfs_quota_sync,
985 .get_info = vfs_get_dqinfo,
986 .set_info = vfs_set_dqinfo,
987 .get_dqblk = vfs_get_dqblk,
988 .set_dqblk = vfs_set_dqblk
989};
990#endif
991
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800992static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700993 .alloc_inode = ext4_alloc_inode,
994 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700995 .write_inode = ext4_write_inode,
996 .dirty_inode = ext4_dirty_inode,
997 .delete_inode = ext4_delete_inode,
998 .put_super = ext4_put_super,
999 .write_super = ext4_write_super,
1000 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001001 .freeze_fs = ext4_freeze,
1002 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -07001003 .statfs = ext4_statfs,
1004 .remount_fs = ext4_remount,
1005 .clear_inode = ext4_clear_inode,
1006 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001007#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001008 .quota_read = ext4_quota_read,
1009 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001010#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001011 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001012};
1013
Christoph Hellwig39655162007-10-21 16:42:17 -07001014static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001015 .fh_to_dentry = ext4_fh_to_dentry,
1016 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001017 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001018};
1019
1020enum {
1021 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1022 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001023 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001024 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001025 Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001026 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001027 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001028 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001029 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001030 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001031 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1032 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001033 Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err, Opt_resize,
1034 Opt_usrquota, Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001035 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001036 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037};
1038
Steven Whitehousea447c092008-10-13 10:46:57 +01001039static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001040 {Opt_bsd_df, "bsddf"},
1041 {Opt_minix_df, "minixdf"},
1042 {Opt_grpid, "grpid"},
1043 {Opt_grpid, "bsdgroups"},
1044 {Opt_nogrpid, "nogrpid"},
1045 {Opt_nogrpid, "sysvgroups"},
1046 {Opt_resgid, "resgid=%u"},
1047 {Opt_resuid, "resuid=%u"},
1048 {Opt_sb, "sb=%u"},
1049 {Opt_err_cont, "errors=continue"},
1050 {Opt_err_panic, "errors=panic"},
1051 {Opt_err_ro, "errors=remount-ro"},
1052 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001053 {Opt_debug, "debug"},
1054 {Opt_oldalloc, "oldalloc"},
1055 {Opt_orlov, "orlov"},
1056 {Opt_user_xattr, "user_xattr"},
1057 {Opt_nouser_xattr, "nouser_xattr"},
1058 {Opt_acl, "acl"},
1059 {Opt_noacl, "noacl"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001060 {Opt_noload, "noload"},
1061 {Opt_nobh, "nobh"},
1062 {Opt_bh, "bh"},
1063 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001064 {Opt_min_batch_time, "min_batch_time=%u"},
1065 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001066 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001068 {Opt_journal_checksum, "journal_checksum"},
1069 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001070 {Opt_abort, "abort"},
1071 {Opt_data_journal, "data=journal"},
1072 {Opt_data_ordered, "data=ordered"},
1073 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001074 {Opt_data_err_abort, "data_err=abort"},
1075 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001076 {Opt_offusrjquota, "usrjquota="},
1077 {Opt_usrjquota, "usrjquota=%s"},
1078 {Opt_offgrpjquota, "grpjquota="},
1079 {Opt_grpjquota, "grpjquota=%s"},
1080 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1081 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1082 {Opt_grpquota, "grpquota"},
1083 {Opt_noquota, "noquota"},
1084 {Opt_quota, "quota"},
1085 {Opt_usrquota, "usrquota"},
1086 {Opt_barrier, "barrier=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001087 {Opt_barrier, "barrier"},
1088 {Opt_nobarrier, "nobarrier"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001089 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001090 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001091 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001092 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001093 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001094 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001095 {Opt_journal_ioprio, "journal_ioprio=%u"},
Theodore Ts'oafd46722009-03-16 23:12:23 -04001096 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001097 {Opt_auto_da_alloc, "auto_da_alloc"},
1098 {Opt_noauto_da_alloc, "noauto_da_alloc"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001099 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001100};
1101
Mingming Cao617ba132006-10-11 01:20:53 -07001102static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001103{
Mingming Cao617ba132006-10-11 01:20:53 -07001104 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001105 char *options = (char *) *data;
1106
1107 if (!options || strncmp(options, "sb=", 3) != 0)
1108 return 1; /* Default location */
1109 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001110 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001111 sb_block = simple_strtoul(options, &options, 0);
1112 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001113 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001114 (char *) *data);
1115 return 1;
1116 }
1117 if (*options == ',')
1118 options++;
1119 *data = (void *) options;
1120 return sb_block;
1121}
1122
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001123#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1124
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001125static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001126 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001127 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001128 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129{
Mingming Cao617ba132006-10-11 01:20:53 -07001130 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001131 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132 substring_t args[MAX_OPT_ARGS];
1133 int data_opt = 0;
1134 int option;
1135#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001136 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137 char *qname;
1138#endif
1139
1140 if (!options)
1141 return 1;
1142
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001143 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001144 int token;
1145 if (!*p)
1146 continue;
1147
1148 token = match_token(p, tokens, args);
1149 switch (token) {
1150 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001151 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001152 break;
1153 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001154 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001155 break;
1156 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001157 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001158 break;
1159 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001160 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001161 break;
1162 case Opt_resuid:
1163 if (match_int(&args[0], &option))
1164 return 0;
1165 sbi->s_resuid = option;
1166 break;
1167 case Opt_resgid:
1168 if (match_int(&args[0], &option))
1169 return 0;
1170 sbi->s_resgid = option;
1171 break;
1172 case Opt_sb:
1173 /* handled by get_sb_block() instead of here */
1174 /* *sb_block = match_int(&args[0]); */
1175 break;
1176 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001177 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1178 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1179 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001180 break;
1181 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001182 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1183 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1184 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001185 break;
1186 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001187 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1188 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1189 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001190 break;
1191 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001192 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001193 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001195 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001196 break;
1197 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001198 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001199 break;
1200 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001201 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001203#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001204 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001205 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206 break;
1207 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001208 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001209 break;
1210#else
1211 case Opt_user_xattr:
1212 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001213 printk(KERN_ERR "EXT4 (no)user_xattr options "
1214 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001215 break;
1216#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001217#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001218 case Opt_acl:
1219 set_opt(sbi->s_mount_opt, POSIX_ACL);
1220 break;
1221 case Opt_noacl:
1222 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1223 break;
1224#else
1225 case Opt_acl:
1226 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001227 printk(KERN_ERR "EXT4 (no)acl options "
1228 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001229 break;
1230#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001231 case Opt_journal_update:
1232 /* @@@ FIXME */
1233 /* Eventually we will want to be able to create
1234 a journal file here. For now, only allow the
1235 user to specify an existing inode to be the
1236 journal file. */
1237 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001238 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001239 "journal on remount\n");
1240 return 0;
1241 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001242 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001243 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001244 case Opt_journal_dev:
1245 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001246 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247 "journal on remount\n");
1248 return 0;
1249 }
1250 if (match_int(&args[0], &option))
1251 return 0;
1252 *journal_devnum = option;
1253 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001254 case Opt_journal_checksum:
1255 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1256 break;
1257 case Opt_journal_async_commit:
1258 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1259 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1260 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001261 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001262 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001263 break;
1264 case Opt_commit:
1265 if (match_int(&args[0], &option))
1266 return 0;
1267 if (option < 0)
1268 return 0;
1269 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001270 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001271 sbi->s_commit_interval = HZ * option;
1272 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001273 case Opt_max_batch_time:
1274 if (match_int(&args[0], &option))
1275 return 0;
1276 if (option < 0)
1277 return 0;
1278 if (option == 0)
1279 option = EXT4_DEF_MAX_BATCH_TIME;
1280 sbi->s_max_batch_time = option;
1281 break;
1282 case Opt_min_batch_time:
1283 if (match_int(&args[0], &option))
1284 return 0;
1285 if (option < 0)
1286 return 0;
1287 sbi->s_min_batch_time = option;
1288 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001289 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001290 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001291 goto datacheck;
1292 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001293 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001294 goto datacheck;
1295 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001296 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001297 datacheck:
1298 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001299 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001300 != data_opt) {
1301 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001302 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001303 "mode on remount\n");
1304 return 0;
1305 }
1306 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001307 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001308 sbi->s_mount_opt |= data_opt;
1309 }
1310 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001311 case Opt_data_err_abort:
1312 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1313 break;
1314 case Opt_data_err_ignore:
1315 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1316 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001317#ifdef CONFIG_QUOTA
1318 case Opt_usrjquota:
1319 qtype = USRQUOTA;
1320 goto set_qf_name;
1321 case Opt_grpjquota:
1322 qtype = GRPQUOTA;
1323set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001324 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001325 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001326 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001327 "EXT4-fs: Cannot change journaled "
1328 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001329 return 0;
1330 }
1331 qname = match_strdup(&args[0]);
1332 if (!qname) {
1333 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001334 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001335 "storing quotafile name.\n");
1336 return 0;
1337 }
1338 if (sbi->s_qf_names[qtype] &&
1339 strcmp(sbi->s_qf_names[qtype], qname)) {
1340 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001341 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342 "specified.\n", QTYPE2NAME(qtype));
1343 kfree(qname);
1344 return 0;
1345 }
1346 sbi->s_qf_names[qtype] = qname;
1347 if (strchr(sbi->s_qf_names[qtype], '/')) {
1348 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001349 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001350 "filesystem root.\n");
1351 kfree(sbi->s_qf_names[qtype]);
1352 sbi->s_qf_names[qtype] = NULL;
1353 return 0;
1354 }
1355 set_opt(sbi->s_mount_opt, QUOTA);
1356 break;
1357 case Opt_offusrjquota:
1358 qtype = USRQUOTA;
1359 goto clear_qf_name;
1360 case Opt_offgrpjquota:
1361 qtype = GRPQUOTA;
1362clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001363 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001364 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001365 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001366 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 "quota turned on.\n");
1368 return 0;
1369 }
1370 /*
1371 * The space will be released later when all options
1372 * are confirmed to be correct
1373 */
1374 sbi->s_qf_names[qtype] = NULL;
1375 break;
1376 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001377 qfmt = QFMT_VFS_OLD;
1378 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001379 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001380 qfmt = QFMT_VFS_V0;
1381set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001382 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001383 sbi->s_jquota_fmt != qfmt) {
1384 printk(KERN_ERR "EXT4-fs: Cannot change "
1385 "journaled quota options when "
1386 "quota turned on.\n");
1387 return 0;
1388 }
1389 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001390 break;
1391 case Opt_quota:
1392 case Opt_usrquota:
1393 set_opt(sbi->s_mount_opt, QUOTA);
1394 set_opt(sbi->s_mount_opt, USRQUOTA);
1395 break;
1396 case Opt_grpquota:
1397 set_opt(sbi->s_mount_opt, QUOTA);
1398 set_opt(sbi->s_mount_opt, GRPQUOTA);
1399 break;
1400 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001401 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001402 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001403 "options when quota turned on.\n");
1404 return 0;
1405 }
1406 clear_opt(sbi->s_mount_opt, QUOTA);
1407 clear_opt(sbi->s_mount_opt, USRQUOTA);
1408 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1409 break;
1410#else
1411 case Opt_quota:
1412 case Opt_usrquota:
1413 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001414 printk(KERN_ERR
1415 "EXT4-fs: quota options not supported.\n");
1416 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417 case Opt_usrjquota:
1418 case Opt_grpjquota:
1419 case Opt_offusrjquota:
1420 case Opt_offgrpjquota:
1421 case Opt_jqfmt_vfsold:
1422 case Opt_jqfmt_vfsv0:
1423 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001424 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001425 "supported.\n");
1426 break;
1427 case Opt_noquota:
1428 break;
1429#endif
1430 case Opt_abort:
1431 set_opt(sbi->s_mount_opt, ABORT);
1432 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001433 case Opt_nobarrier:
1434 clear_opt(sbi->s_mount_opt, BARRIER);
1435 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001436 case Opt_barrier:
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001437 if (match_int(&args[0], &option)) {
1438 set_opt(sbi->s_mount_opt, BARRIER);
1439 break;
1440 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001441 if (option)
1442 set_opt(sbi->s_mount_opt, BARRIER);
1443 else
1444 clear_opt(sbi->s_mount_opt, BARRIER);
1445 break;
1446 case Opt_ignore:
1447 break;
1448 case Opt_resize:
1449 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001450 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001451 "for remount\n");
1452 return 0;
1453 }
1454 if (match_int(&args[0], &option) != 0)
1455 return 0;
1456 *n_blocks_count = option;
1457 break;
1458 case Opt_nobh:
1459 set_opt(sbi->s_mount_opt, NOBH);
1460 break;
1461 case Opt_bh:
1462 clear_opt(sbi->s_mount_opt, NOBH);
1463 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001464 case Opt_i_version:
1465 set_opt(sbi->s_mount_opt, I_VERSION);
1466 sb->s_flags |= MS_I_VERSION;
1467 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001468 case Opt_nodelalloc:
1469 clear_opt(sbi->s_mount_opt, DELALLOC);
1470 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001471 case Opt_stripe:
1472 if (match_int(&args[0], &option))
1473 return 0;
1474 if (option < 0)
1475 return 0;
1476 sbi->s_stripe = option;
1477 break;
Alex Tomas64769242008-07-11 19:27:31 -04001478 case Opt_delalloc:
1479 set_opt(sbi->s_mount_opt, DELALLOC);
1480 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001481 case Opt_inode_readahead_blks:
1482 if (match_int(&args[0], &option))
1483 return 0;
1484 if (option < 0 || option > (1 << 30))
1485 return 0;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001486 if (option & (option - 1)) {
1487 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1488 " must be a power of 2\n");
1489 return 0;
1490 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001491 sbi->s_inode_readahead_blks = option;
1492 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001493 case Opt_journal_ioprio:
1494 if (match_int(&args[0], &option))
1495 return 0;
1496 if (option < 0 || option > 7)
1497 break;
1498 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1499 option);
1500 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001501 case Opt_noauto_da_alloc:
1502 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1503 break;
Theodore Ts'oafd46722009-03-16 23:12:23 -04001504 case Opt_auto_da_alloc:
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001505 if (match_int(&args[0], &option)) {
1506 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1507 break;
1508 }
Theodore Ts'oafd46722009-03-16 23:12:23 -04001509 if (option)
1510 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1511 else
1512 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1513 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001514 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001515 printk(KERN_ERR
1516 "EXT4-fs: Unrecognized mount option \"%s\" "
1517 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001518 return 0;
1519 }
1520 }
1521#ifdef CONFIG_QUOTA
1522 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001523 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001524 sbi->s_qf_names[USRQUOTA])
1525 clear_opt(sbi->s_mount_opt, USRQUOTA);
1526
Mingming Cao617ba132006-10-11 01:20:53 -07001527 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001528 sbi->s_qf_names[GRPQUOTA])
1529 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1530
1531 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001532 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001533 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001534 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1535 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001536 "format mixing.\n");
1537 return 0;
1538 }
1539
1540 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001541 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001542 "not specified.\n");
1543 return 0;
1544 }
1545 } else {
1546 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001547 printk(KERN_ERR "EXT4-fs: journaled quota format "
1548 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001549 "enabled.\n");
1550 return 0;
1551 }
1552 }
1553#endif
1554 return 1;
1555}
1556
Mingming Cao617ba132006-10-11 01:20:53 -07001557static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001558 int read_only)
1559{
Mingming Cao617ba132006-10-11 01:20:53 -07001560 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001561 int res = 0;
1562
Mingming Cao617ba132006-10-11 01:20:53 -07001563 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001564 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1565 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001566 res = MS_RDONLY;
1567 }
1568 if (read_only)
1569 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001570 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001571 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1572 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001573 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001574 printk(KERN_WARNING
1575 "EXT4-fs warning: mounting fs with errors, "
1576 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001577 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1578 le16_to_cpu(es->s_mnt_count) >=
1579 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001580 printk(KERN_WARNING
1581 "EXT4-fs warning: maximal mount count reached, "
1582 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001583 else if (le32_to_cpu(es->s_checkinterval) &&
1584 (le32_to_cpu(es->s_lastcheck) +
1585 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001586 printk(KERN_WARNING
1587 "EXT4-fs warning: checktime reached, "
1588 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001589 if (!sbi->s_journal)
1590 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001591 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001592 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001593 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001594 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001595 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001596 if (sbi->s_journal)
1597 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001598
Mingming Cao617ba132006-10-11 01:20:53 -07001599 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001600 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001601 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001602 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1603 sb->s_blocksize,
1604 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001605 EXT4_BLOCKS_PER_GROUP(sb),
1606 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001607 sbi->s_mount_opt);
1608
Frank Mayhar03901312009-01-07 00:06:22 -05001609 if (EXT4_SB(sb)->s_journal) {
1610 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1611 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1612 "external", EXT4_SB(sb)->s_journal->j_devname);
1613 } else {
1614 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1615 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001616 return res;
1617}
1618
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001619static int ext4_fill_flex_info(struct super_block *sb)
1620{
1621 struct ext4_sb_info *sbi = EXT4_SB(sb);
1622 struct ext4_group_desc *gdp = NULL;
1623 struct buffer_head *bh;
1624 ext4_group_t flex_group_count;
1625 ext4_group_t flex_group;
1626 int groups_per_flex = 0;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001627 size_t size;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001628 int i;
1629
1630 if (!sbi->s_es->s_log_groups_per_flex) {
1631 sbi->s_log_groups_per_flex = 0;
1632 return 1;
1633 }
1634
1635 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1636 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1637
Frederic Bohec62a11f2008-09-08 10:20:24 -04001638 /* We allocate both existing and potentially added groups */
1639 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001640 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1641 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001642 size = flex_group_count * sizeof(struct flex_groups);
1643 sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
1644 if (sbi->s_flex_groups == NULL) {
1645 sbi->s_flex_groups = vmalloc(size);
1646 if (sbi->s_flex_groups)
1647 memset(sbi->s_flex_groups, 0, size);
1648 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001649 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001650 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001651 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001652 goto failed;
1653 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001654
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001655 for (i = 0; i < sbi->s_groups_count; i++) {
1656 gdp = ext4_get_group_desc(sb, i, &bh);
1657
1658 flex_group = ext4_flex_group(sbi, i);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05001659 atomic_set(&sbi->s_flex_groups[flex_group].free_inodes,
1660 ext4_free_inodes_count(sb, gdp));
1661 atomic_set(&sbi->s_flex_groups[flex_group].free_blocks,
1662 ext4_free_blks_count(sb, gdp));
Theodore Ts'o7d39db12009-03-04 19:31:53 -05001663 atomic_set(&sbi->s_flex_groups[flex_group].used_dirs,
1664 ext4_used_dirs_count(sb, gdp));
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001665 }
1666
1667 return 1;
1668failed:
1669 return 0;
1670}
1671
Andreas Dilger717d50e2007-10-16 18:38:25 -04001672__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1673 struct ext4_group_desc *gdp)
1674{
1675 __u16 crc = 0;
1676
1677 if (sbi->s_es->s_feature_ro_compat &
1678 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1679 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1680 __le32 le_group = cpu_to_le32(block_group);
1681
1682 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1683 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1684 crc = crc16(crc, (__u8 *)gdp, offset);
1685 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1686 /* for checksum of struct ext4_group_desc do the rest...*/
1687 if ((sbi->s_es->s_feature_incompat &
1688 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1689 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1690 crc = crc16(crc, (__u8 *)gdp + offset,
1691 le16_to_cpu(sbi->s_es->s_desc_size) -
1692 offset);
1693 }
1694
1695 return cpu_to_le16(crc);
1696}
1697
1698int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1699 struct ext4_group_desc *gdp)
1700{
1701 if ((sbi->s_es->s_feature_ro_compat &
1702 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1703 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1704 return 0;
1705
1706 return 1;
1707}
1708
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001709/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001710static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001711{
Mingming Cao617ba132006-10-11 01:20:53 -07001712 struct ext4_sb_info *sbi = EXT4_SB(sb);
1713 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1714 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001715 ext4_fsblk_t block_bitmap;
1716 ext4_fsblk_t inode_bitmap;
1717 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001718 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001719 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001720
Jose R. Santosce421582007-10-16 18:38:25 -04001721 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1722 flexbg_flag = 1;
1723
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001724 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001725
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001726 for (i = 0; i < sbi->s_groups_count; i++) {
1727 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1728
Jose R. Santosce421582007-10-16 18:38:25 -04001729 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001730 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001731 else
1732 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001733 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001734
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001735 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001736 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001737 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001738 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001739 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001740 return 0;
1741 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001742 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001743 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001744 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001745 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001746 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001747 return 0;
1748 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001749 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001750 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001751 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001752 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001753 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001754 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001755 return 0;
1756 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001757 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001758 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001759 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001760 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001761 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1762 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001763 if (!(sb->s_flags & MS_RDONLY)) {
1764 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001765 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001766 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001767 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001768 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001769 if (!flexbg_flag)
1770 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001771 }
1772
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001773 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001774 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001775 return 1;
1776}
1777
Mingming Cao617ba132006-10-11 01:20:53 -07001778/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001779 * the superblock) which were deleted from all directories, but held open by
1780 * a process at the time of a crash. We walk the list and try to delete these
1781 * inodes at recovery time (only with a read-write filesystem).
1782 *
1783 * In order to keep the orphan inode chain consistent during traversal (in
1784 * case of crash during recovery), we link each inode into the superblock
1785 * orphan list_head and handle it the same way as an inode deletion during
1786 * normal operation (which journals the operations for us).
1787 *
1788 * We only do an iget() and an iput() on each inode, which is very safe if we
1789 * accidentally point at an in-use or already deleted inode. The worst that
1790 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001791 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001792 * e2fsck was run on this filesystem, and it must have already done the orphan
1793 * inode cleanup for us, so we can safely abort without any further action.
1794 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001795static void ext4_orphan_cleanup(struct super_block *sb,
1796 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001797{
1798 unsigned int s_flags = sb->s_flags;
1799 int nr_orphans = 0, nr_truncates = 0;
1800#ifdef CONFIG_QUOTA
1801 int i;
1802#endif
1803 if (!es->s_last_orphan) {
1804 jbd_debug(4, "no orphan inodes to clean up\n");
1805 return;
1806 }
1807
Eric Sandeena8f48a92006-12-06 20:40:13 -08001808 if (bdev_read_only(sb->s_bdev)) {
1809 printk(KERN_ERR "EXT4-fs: write access "
1810 "unavailable, skipping orphan cleanup.\n");
1811 return;
1812 }
1813
Mingming Cao617ba132006-10-11 01:20:53 -07001814 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001815 if (es->s_last_orphan)
1816 jbd_debug(1, "Errors on filesystem, "
1817 "clearing orphan list.\n");
1818 es->s_last_orphan = 0;
1819 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1820 return;
1821 }
1822
1823 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001824 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001825 sb->s_id);
1826 sb->s_flags &= ~MS_RDONLY;
1827 }
1828#ifdef CONFIG_QUOTA
1829 /* Needed for iput() to work correctly and not trash data */
1830 sb->s_flags |= MS_ACTIVE;
1831 /* Turn on quotas so that they are updated correctly */
1832 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001833 if (EXT4_SB(sb)->s_qf_names[i]) {
1834 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001835 if (ret < 0)
1836 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001837 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001838 "quota: error %d\n", ret);
1839 }
1840 }
1841#endif
1842
1843 while (es->s_last_orphan) {
1844 struct inode *inode;
1845
Josef Bacik97bd42b2008-04-29 22:04:56 -04001846 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1847 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001848 es->s_last_orphan = 0;
1849 break;
1850 }
1851
Mingming Cao617ba132006-10-11 01:20:53 -07001852 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001853 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001854 if (inode->i_nlink) {
1855 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001856 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001857 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001858 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001859 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001860 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001861 nr_truncates++;
1862 } else {
1863 printk(KERN_DEBUG
1864 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001865 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001866 jbd_debug(2, "deleting unreferenced inode %lu\n",
1867 inode->i_ino);
1868 nr_orphans++;
1869 }
1870 iput(inode); /* The delete magic happens here! */
1871 }
1872
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001873#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001874
1875 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001876 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001877 sb->s_id, PLURAL(nr_orphans));
1878 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001879 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001880 sb->s_id, PLURAL(nr_truncates));
1881#ifdef CONFIG_QUOTA
1882 /* Turn quotas off */
1883 for (i = 0; i < MAXQUOTAS; i++) {
1884 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001885 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001886 }
1887#endif
1888 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1889}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001890/*
1891 * Maximal extent format file size.
1892 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1893 * extent format containers, within a sector_t, and within i_blocks
1894 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1895 * so that won't be a limiting factor.
1896 *
1897 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1898 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001899static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001900{
1901 loff_t res;
1902 loff_t upper_limit = MAX_LFS_FILESIZE;
1903
1904 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001905 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001906 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001907 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001908 * i_block represent total blocks in 512 bytes
1909 * 32 == size of vfs inode i_blocks * 8
1910 */
1911 upper_limit = (1LL << 32) - 1;
1912
1913 /* total blocks in file system block size */
1914 upper_limit >>= (blkbits - 9);
1915 upper_limit <<= blkbits;
1916 }
1917
1918 /* 32-bit extent-start container, ee_block */
1919 res = 1LL << 32;
1920 res <<= blkbits;
1921 res -= 1;
1922
1923 /* Sanity check against vm- & vfs- imposed limits */
1924 if (res > upper_limit)
1925 res = upper_limit;
1926
1927 return res;
1928}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001929
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001930/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001931 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001932 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1933 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001934 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001935static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001936{
Mingming Cao617ba132006-10-11 01:20:53 -07001937 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001938 int meta_blocks;
1939 loff_t upper_limit;
1940 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001941 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001942 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001943 * does not exceed 2^48 -1
1944 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1945 * total number of 512 bytes blocks of the file
1946 */
1947
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001948 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001949 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001950 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001951 * implies the inode i_block represent total blocks in
1952 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001953 */
1954 upper_limit = (1LL << 32) - 1;
1955
1956 /* total blocks in file system block size */
1957 upper_limit >>= (bits - 9);
1958
1959 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001960 /*
1961 * We use 48 bit ext4_inode i_blocks
1962 * With EXT4_HUGE_FILE_FL set the i_blocks
1963 * represent total number of blocks in
1964 * file system block size
1965 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001966 upper_limit = (1LL << 48) - 1;
1967
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001968 }
1969
1970 /* indirect blocks */
1971 meta_blocks = 1;
1972 /* double indirect blocks */
1973 meta_blocks += 1 + (1LL << (bits-2));
1974 /* tripple indirect blocks */
1975 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1976
1977 upper_limit -= meta_blocks;
1978 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979
1980 res += 1LL << (bits-2);
1981 res += 1LL << (2*(bits-2));
1982 res += 1LL << (3*(bits-2));
1983 res <<= bits;
1984 if (res > upper_limit)
1985 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001986
1987 if (res > MAX_LFS_FILESIZE)
1988 res = MAX_LFS_FILESIZE;
1989
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001990 return res;
1991}
1992
Mingming Cao617ba132006-10-11 01:20:53 -07001993static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001994 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001995{
Mingming Cao617ba132006-10-11 01:20:53 -07001996 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001997 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001998 int has_super = 0;
1999
2000 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
2001
Mingming Cao617ba132006-10-11 01:20:53 -07002002 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002003 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002004 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002005 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07002006 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002007 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002008 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002009}
2010
Alex Tomasc9de5602008-01-29 00:19:52 -05002011/**
2012 * ext4_get_stripe_size: Get the stripe size.
2013 * @sbi: In memory super block info
2014 *
2015 * If we have specified it via mount option, then
2016 * use the mount option value. If the value specified at mount time is
2017 * greater than the blocks per group use the super block value.
2018 * If the super block value is greater than blocks per group return 0.
2019 * Allocator needs it be less than blocks per group.
2020 *
2021 */
2022static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2023{
2024 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2025 unsigned long stripe_width =
2026 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2027
2028 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2029 return sbi->s_stripe;
2030
2031 if (stripe_width <= sbi->s_blocks_per_group)
2032 return stripe_width;
2033
2034 if (stride <= sbi->s_blocks_per_group)
2035 return stride;
2036
2037 return 0;
2038}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002039
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002040/* sysfs supprt */
2041
2042struct ext4_attr {
2043 struct attribute attr;
2044 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2045 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2046 const char *, size_t);
2047 int offset;
2048};
2049
2050static int parse_strtoul(const char *buf,
2051 unsigned long max, unsigned long *value)
2052{
2053 char *endp;
2054
2055 while (*buf && isspace(*buf))
2056 buf++;
2057 *value = simple_strtoul(buf, &endp, 0);
2058 while (*endp && isspace(*endp))
2059 endp++;
2060 if (*endp || *value > max)
2061 return -EINVAL;
2062
2063 return 0;
2064}
2065
2066static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2067 struct ext4_sb_info *sbi,
2068 char *buf)
2069{
2070 return snprintf(buf, PAGE_SIZE, "%llu\n",
2071 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2072}
2073
2074static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2075 struct ext4_sb_info *sbi, char *buf)
2076{
2077 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2078
2079 return snprintf(buf, PAGE_SIZE, "%lu\n",
2080 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2081 sbi->s_sectors_written_start) >> 1);
2082}
2083
2084static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2085 struct ext4_sb_info *sbi, char *buf)
2086{
2087 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2088
2089 return snprintf(buf, PAGE_SIZE, "%llu\n",
2090 sbi->s_kbytes_written +
2091 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2092 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2093}
2094
2095static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2096 struct ext4_sb_info *sbi,
2097 const char *buf, size_t count)
2098{
2099 unsigned long t;
2100
2101 if (parse_strtoul(buf, 0x40000000, &t))
2102 return -EINVAL;
2103
2104 /* inode_readahead_blks must be a power of 2 */
2105 if (t & (t-1))
2106 return -EINVAL;
2107
2108 sbi->s_inode_readahead_blks = t;
2109 return count;
2110}
2111
2112static ssize_t sbi_ui_show(struct ext4_attr *a,
2113 struct ext4_sb_info *sbi, char *buf)
2114{
2115 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2116
2117 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2118}
2119
2120static ssize_t sbi_ui_store(struct ext4_attr *a,
2121 struct ext4_sb_info *sbi,
2122 const char *buf, size_t count)
2123{
2124 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2125 unsigned long t;
2126
2127 if (parse_strtoul(buf, 0xffffffff, &t))
2128 return -EINVAL;
2129 *ui = t;
2130 return count;
2131}
2132
2133#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2134static struct ext4_attr ext4_attr_##_name = { \
2135 .attr = {.name = __stringify(_name), .mode = _mode }, \
2136 .show = _show, \
2137 .store = _store, \
2138 .offset = offsetof(struct ext4_sb_info, _elname), \
2139}
2140#define EXT4_ATTR(name, mode, show, store) \
2141static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2142
2143#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2144#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2145#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2146 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2147#define ATTR_LIST(name) &ext4_attr_##name.attr
2148
2149EXT4_RO_ATTR(delayed_allocation_blocks);
2150EXT4_RO_ATTR(session_write_kbytes);
2151EXT4_RO_ATTR(lifetime_write_kbytes);
2152EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2153 inode_readahead_blks_store, s_inode_readahead_blks);
2154EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2155EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2156EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2157EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2158EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2159EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2160
2161static struct attribute *ext4_attrs[] = {
2162 ATTR_LIST(delayed_allocation_blocks),
2163 ATTR_LIST(session_write_kbytes),
2164 ATTR_LIST(lifetime_write_kbytes),
2165 ATTR_LIST(inode_readahead_blks),
2166 ATTR_LIST(mb_stats),
2167 ATTR_LIST(mb_max_to_scan),
2168 ATTR_LIST(mb_min_to_scan),
2169 ATTR_LIST(mb_order2_req),
2170 ATTR_LIST(mb_stream_req),
2171 ATTR_LIST(mb_group_prealloc),
2172 NULL,
2173};
2174
2175static ssize_t ext4_attr_show(struct kobject *kobj,
2176 struct attribute *attr, char *buf)
2177{
2178 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2179 s_kobj);
2180 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2181
2182 return a->show ? a->show(a, sbi, buf) : 0;
2183}
2184
2185static ssize_t ext4_attr_store(struct kobject *kobj,
2186 struct attribute *attr,
2187 const char *buf, size_t len)
2188{
2189 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2190 s_kobj);
2191 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2192
2193 return a->store ? a->store(a, sbi, buf, len) : 0;
2194}
2195
2196static void ext4_sb_release(struct kobject *kobj)
2197{
2198 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2199 s_kobj);
2200 complete(&sbi->s_kobj_unregister);
2201}
2202
2203
2204static struct sysfs_ops ext4_attr_ops = {
2205 .show = ext4_attr_show,
2206 .store = ext4_attr_store,
2207};
2208
2209static struct kobj_type ext4_ktype = {
2210 .default_attrs = ext4_attrs,
2211 .sysfs_ops = &ext4_attr_ops,
2212 .release = ext4_sb_release,
2213};
2214
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002215static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002216 __releases(kernel_lock)
2217 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002218
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002219{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002220 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002221 struct ext4_super_block *es = NULL;
2222 struct ext4_sb_info *sbi;
2223 ext4_fsblk_t block;
2224 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002225 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002226 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002227 unsigned long journal_devnum = 0;
2228 unsigned long def_mount_opts;
2229 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002230 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002231 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002232 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002233 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002234 unsigned int db_count;
2235 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002236 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002237 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002238 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002239 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002240 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002241
2242 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2243 if (!sbi)
2244 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002245
2246 sbi->s_blockgroup_lock =
2247 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2248 if (!sbi->s_blockgroup_lock) {
2249 kfree(sbi);
2250 return -ENOMEM;
2251 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002252 sb->s_fs_info = sbi;
2253 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002254 sbi->s_resuid = EXT4_DEF_RESUID;
2255 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002256 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002257 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002258 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2259 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002260
2261 unlock_kernel();
2262
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002263 /* Cleanup superblock name */
2264 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2265 *cp = '!';
2266
Mingming Cao617ba132006-10-11 01:20:53 -07002267 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002268 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002269 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002270 goto out_fail;
2271 }
2272
2273 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002274 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002275 * block sizes. We need to calculate the offset from buffer start.
2276 */
Mingming Cao617ba132006-10-11 01:20:53 -07002277 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002278 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2279 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002280 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002281 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002282 }
2283
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002284 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002285 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002286 goto out_fail;
2287 }
2288 /*
2289 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002290 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002291 */
Mingming Cao617ba132006-10-11 01:20:53 -07002292 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002293 sbi->s_es = es;
2294 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002295 if (sb->s_magic != EXT4_SUPER_MAGIC)
2296 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002297 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002298
2299 /* Set defaults before we parse the mount options */
2300 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002301 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002302 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002303 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002304 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002305 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002306 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002307#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002308 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002309 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002310#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002311#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002312 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002313 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002314#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002315 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2316 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2317 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2318 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2319 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2320 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002321
Mingming Cao617ba132006-10-11 01:20:53 -07002322 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002323 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002324 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002325 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002326 else
2327 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002328
2329 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2330 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002331 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2332 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2333 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002334
Eric Sandeen571640c2008-05-26 12:29:46 -04002335 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002336
Mingming Cao1e2462f2007-07-18 09:00:55 -04002337 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002338 * enable delayed allocation by default
2339 * Use -o nodelalloc to turn it off
2340 */
2341 set_opt(sbi->s_mount_opt, DELALLOC);
2342
2343
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002344 if (!parse_options((char *) data, sb, &journal_devnum,
2345 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002346 goto failed_mount;
2347
2348 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002349 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002350
Mingming Cao617ba132006-10-11 01:20:53 -07002351 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2352 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2353 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2354 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002355 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002356 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002357 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002358
2359 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002360 * Check feature flags regardless of the revision level, since we
2361 * previously didn't change the revision level when setting the flags,
2362 * so there is a chance incompat flags are set on a rev 0 filesystem.
2363 */
Mingming Cao617ba132006-10-11 01:20:53 -07002364 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002365 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002366 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002367 "unsupported optional features (%x).\n", sb->s_id,
2368 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2369 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002370 goto failed_mount;
2371 }
Mingming Cao617ba132006-10-11 01:20:53 -07002372 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002373 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002374 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002375 "unsupported optional features (%x).\n", sb->s_id,
2376 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2377 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002378 goto failed_mount;
2379 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002380 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2381 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2382 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002383 /*
2384 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002385 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002386 */
2387 if (sizeof(root->i_blocks) < sizeof(u64) &&
2388 !(sb->s_flags & MS_RDONLY)) {
2389 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2390 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002391 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002392 goto failed_mount;
2393 }
2394 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002395 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2396
Mingming Cao617ba132006-10-11 01:20:53 -07002397 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2398 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002399 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002400 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002401 blocksize, sb->s_id);
2402 goto failed_mount;
2403 }
2404
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002405 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002406
2407 /* Validate the filesystem blocksize */
2408 if (!sb_set_blocksize(sb, blocksize)) {
2409 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2410 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002411 goto failed_mount;
2412 }
2413
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002414 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002415 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2416 offset = do_div(logical_sb_block, blocksize);
2417 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002418 if (!bh) {
2419 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002420 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002421 goto failed_mount;
2422 }
Mingming Cao617ba132006-10-11 01:20:53 -07002423 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002424 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002425 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002426 printk(KERN_ERR
2427 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002428 goto failed_mount;
2429 }
2430 }
2431
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002432 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2433 has_huge_files);
2434 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002435
Mingming Cao617ba132006-10-11 01:20:53 -07002436 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2437 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2438 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002439 } else {
2440 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2441 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002442 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002443 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002444 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002445 printk(KERN_ERR
2446 "EXT4-fs: unsupported inode size: %d\n",
2447 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002448 goto failed_mount;
2449 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002450 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2451 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002452 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002453 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2454 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002455 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002456 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002457 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002458 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002459 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002460 sbi->s_desc_size);
2461 goto failed_mount;
2462 }
2463 } else
2464 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002465 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002466 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002467 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002468 goto cantfind_ext4;
2469 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002470 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002471 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002472 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2473 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002474 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475 sbi->s_sbh = bh;
2476 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002477 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2478 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002479 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002480 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2481 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002482 i = le32_to_cpu(es->s_flags);
2483 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2484 sbi->s_hash_unsigned = 3;
2485 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2486#ifdef __CHAR_UNSIGNED__
2487 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2488 sbi->s_hash_unsigned = 3;
2489#else
2490 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2491#endif
2492 sb->s_dirt = 1;
2493 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002494
2495 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002496 printk(KERN_ERR
2497 "EXT4-fs: #blocks per group too big: %lu\n",
2498 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002499 goto failed_mount;
2500 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002501 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002502 printk(KERN_ERR
2503 "EXT4-fs: #inodes per group too big: %lu\n",
2504 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505 goto failed_mount;
2506 }
2507
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002508 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002509 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002510 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002511 " too large to mount safely\n", sb->s_id);
2512 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002513 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002514 "enabled\n");
2515 goto failed_mount;
2516 }
2517
Mingming Cao617ba132006-10-11 01:20:53 -07002518 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2519 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002520
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002521 /* check blocks count against device size */
2522 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2523 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
2524 printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu "
2525 "exceeds size of device (%llu blocks)\n",
2526 ext4_blocks_count(es), blocks_count);
2527 goto failed_mount;
2528 }
2529
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002530 /*
2531 * It makes no sense for the first data block to be beyond the end
2532 * of the filesystem.
2533 */
2534 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2535 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2536 "block %u is beyond end of filesystem (%llu)\n",
2537 le32_to_cpu(es->s_first_data_block),
2538 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002539 goto failed_mount;
2540 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002541 blocks_count = (ext4_blocks_count(es) -
2542 le32_to_cpu(es->s_first_data_block) +
2543 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2544 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002545 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2546 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2547 "(block count %llu, first data block %u, "
2548 "blocks per group %lu)\n", sbi->s_groups_count,
2549 ext4_blocks_count(es),
2550 le32_to_cpu(es->s_first_data_block),
2551 EXT4_BLOCKS_PER_GROUP(sb));
2552 goto failed_mount;
2553 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002554 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002555 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2556 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002557 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002558 GFP_KERNEL);
2559 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002560 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002561 goto failed_mount;
2562 }
2563
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002564#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002565 if (ext4_proc_root)
2566 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002567#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002568
Pekka Enberg705895b2009-02-15 18:07:52 -05002569 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002570
2571 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002572 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002573 sbi->s_group_desc[i] = sb_bread(sb, block);
2574 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002575 printk(KERN_ERR "EXT4-fs: "
2576 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002577 db_count = i;
2578 goto failed_mount2;
2579 }
2580 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002581 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002582 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002583 goto failed_mount2;
2584 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002585 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2586 if (!ext4_fill_flex_info(sb)) {
2587 printk(KERN_ERR
2588 "EXT4-fs: unable to initialize "
2589 "flex_bg meta info!\n");
2590 goto failed_mount2;
2591 }
2592
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002593 sbi->s_gdb_count = db_count;
2594 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2595 spin_lock_init(&sbi->s_next_gen_lock);
2596
Peter Zijlstra833f4072007-10-16 23:25:45 -07002597 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2598 ext4_count_free_blocks(sb));
2599 if (!err) {
2600 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2601 ext4_count_free_inodes(sb));
2602 }
2603 if (!err) {
2604 err = percpu_counter_init(&sbi->s_dirs_counter,
2605 ext4_count_dirs(sb));
2606 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002607 if (!err) {
2608 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2609 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002610 if (err) {
2611 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2612 goto failed_mount3;
2613 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002614
Alex Tomasc9de5602008-01-29 00:19:52 -05002615 sbi->s_stripe = ext4_get_stripe_size(sbi);
2616
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002617 /*
2618 * set up enough so that it can read an inode
2619 */
Mingming Cao617ba132006-10-11 01:20:53 -07002620 sb->s_op = &ext4_sops;
2621 sb->s_export_op = &ext4_export_ops;
2622 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002623#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002624 sb->s_qcop = &ext4_qctl_operations;
2625 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002626#endif
2627 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2628
2629 sb->s_root = NULL;
2630
2631 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002632 EXT4_HAS_INCOMPAT_FEATURE(sb,
2633 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002634
2635 /*
2636 * The first inode we look at is the journal inode. Don't try
2637 * root first: it may be modified in the journal!
2638 */
2639 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002640 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2641 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002642 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002643 if (!(sb->s_flags & MS_RDONLY) &&
2644 EXT4_SB(sb)->s_journal->j_failed_commit) {
2645 printk(KERN_CRIT "EXT4-fs error (device %s): "
2646 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002647 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002648 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002649 if (test_opt(sb, ERRORS_RO)) {
2650 printk(KERN_CRIT
2651 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002652 sb->s_flags |= MS_RDONLY;
2653 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2654 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2655 }
2656 if (test_opt(sb, ERRORS_PANIC)) {
2657 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2658 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2659 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002660 goto failed_mount4;
2661 }
2662 }
Frank Mayhar03901312009-01-07 00:06:22 -05002663 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2664 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2665 printk(KERN_ERR "EXT4-fs: required journal recovery "
2666 "suppressed and not mounted read-only\n");
2667 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002668 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002669 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2670 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2671 sbi->s_journal = NULL;
2672 needs_recovery = 0;
2673 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002674 }
2675
Jose R. Santoseb40a092007-07-18 08:37:25 -04002676 if (ext4_blocks_count(es) > 0xffffffffULL &&
2677 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2678 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002679 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002680 goto failed_mount4;
2681 }
2682
Girish Shilamkar818d2762008-01-28 23:58:27 -05002683 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2684 jbd2_journal_set_features(sbi->s_journal,
2685 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2686 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2687 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2688 jbd2_journal_set_features(sbi->s_journal,
2689 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2690 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2691 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2692 } else {
2693 jbd2_journal_clear_features(sbi->s_journal,
2694 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2695 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2696 }
2697
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002698 /* We have now updated the journal if required, so we can
2699 * validate the data journaling mode. */
2700 switch (test_opt(sb, DATA_FLAGS)) {
2701 case 0:
2702 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002703 * capabilities: ORDERED_DATA if the journal can
2704 * cope, else JOURNAL_DATA
2705 */
Mingming Caodab291a2006-10-11 01:21:01 -07002706 if (jbd2_journal_check_available_features
2707 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2709 else
2710 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2711 break;
2712
Mingming Cao617ba132006-10-11 01:20:53 -07002713 case EXT4_MOUNT_ORDERED_DATA:
2714 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002715 if (!jbd2_journal_check_available_features
2716 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002717 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002718 "requested data journaling mode\n");
2719 goto failed_mount4;
2720 }
2721 default:
2722 break;
2723 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002724 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002725
Frank Mayhar03901312009-01-07 00:06:22 -05002726no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002727
2728 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002729 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2730 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002731 "its supported only with writeback mode\n");
2732 clear_opt(sbi->s_mount_opt, NOBH);
2733 }
2734 }
2735 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002736 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002737 * so we can safely mount the rest of the filesystem now.
2738 */
2739
David Howells1d1fe1e2008-02-07 00:15:37 -08002740 root = ext4_iget(sb, EXT4_ROOT_INO);
2741 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002742 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002743 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002744 goto failed_mount4;
2745 }
2746 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002747 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002748 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002749 goto failed_mount4;
2750 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002751 sb->s_root = d_alloc_root(root);
2752 if (!sb->s_root) {
2753 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2754 iput(root);
2755 ret = -ENOMEM;
2756 goto failed_mount4;
2757 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002758
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002759 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002760
2761 /* determine the minimum size of new large inodes, if present */
2762 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2763 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2764 EXT4_GOOD_OLD_INODE_SIZE;
2765 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2766 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2767 if (sbi->s_want_extra_isize <
2768 le16_to_cpu(es->s_want_extra_isize))
2769 sbi->s_want_extra_isize =
2770 le16_to_cpu(es->s_want_extra_isize);
2771 if (sbi->s_want_extra_isize <
2772 le16_to_cpu(es->s_min_extra_isize))
2773 sbi->s_want_extra_isize =
2774 le16_to_cpu(es->s_min_extra_isize);
2775 }
2776 }
2777 /* Check if enough inode space is available */
2778 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2779 sbi->s_inode_size) {
2780 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2781 EXT4_GOOD_OLD_INODE_SIZE;
2782 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2783 "available.\n");
2784 }
2785
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002786 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2787 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2788 "requested data journaling mode\n");
2789 clear_opt(sbi->s_mount_opt, DELALLOC);
2790 } else if (test_opt(sb, DELALLOC))
2791 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2792
2793 ext4_ext_init(sb);
2794 err = ext4_mb_init(sb, needs_recovery);
2795 if (err) {
2796 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2797 err);
2798 goto failed_mount4;
2799 }
2800
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002801 sbi->s_kobj.kset = ext4_kset;
2802 init_completion(&sbi->s_kobj_unregister);
2803 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2804 "%s", sb->s_id);
2805 if (err) {
2806 ext4_mb_release(sb);
2807 ext4_ext_release(sb);
2808 goto failed_mount4;
2809 };
2810
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002811 /*
2812 * akpm: core read_super() calls in here with the superblock locked.
2813 * That deadlocks, because orphan cleanup needs to lock the superblock
2814 * in numerous places. Here we just pop the lock - it's relatively
2815 * harmless, because we are now ready to accept write_super() requests,
2816 * and aviro says that's the only reason for hanging onto the
2817 * superblock lock.
2818 */
Mingming Cao617ba132006-10-11 01:20:53 -07002819 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2820 ext4_orphan_cleanup(sb, es);
2821 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002822 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002823 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002824 ext4_mark_recovery_complete(sb, es);
2825 }
2826 if (EXT4_SB(sb)->s_journal) {
2827 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2828 descr = " journalled data mode";
2829 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2830 descr = " ordered data mode";
2831 else
2832 descr = " writeback data mode";
2833 } else
2834 descr = "out journal";
2835
2836 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2837 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002838
2839 lock_kernel();
2840 return 0;
2841
Mingming Cao617ba132006-10-11 01:20:53 -07002842cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002843 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002844 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002845 sb->s_id);
2846 goto failed_mount;
2847
2848failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002849 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2850 if (sbi->s_journal) {
2851 jbd2_journal_destroy(sbi->s_journal);
2852 sbi->s_journal = NULL;
2853 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002854failed_mount3:
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04002855 if (sbi->s_flex_groups) {
2856 if (is_vmalloc_addr(sbi->s_flex_groups))
2857 vfree(sbi->s_flex_groups);
2858 else
2859 kfree(sbi->s_flex_groups);
2860 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002861 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2862 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2863 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002864 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002865failed_mount2:
2866 for (i = 0; i < db_count; i++)
2867 brelse(sbi->s_group_desc[i]);
2868 kfree(sbi->s_group_desc);
2869failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002870 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002871 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002872 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002873#ifdef CONFIG_QUOTA
2874 for (i = 0; i < MAXQUOTAS; i++)
2875 kfree(sbi->s_qf_names[i]);
2876#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002877 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002878 brelse(bh);
2879out_fail:
2880 sb->s_fs_info = NULL;
2881 kfree(sbi);
2882 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002883 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002884}
2885
2886/*
2887 * Setup any per-fs journal parameters now. We'll do this both on
2888 * initial mount, once the journal has been initialised but before we've
2889 * done any recovery; and again on any subsequent remount.
2890 */
Mingming Cao617ba132006-10-11 01:20:53 -07002891static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002892{
Mingming Cao617ba132006-10-11 01:20:53 -07002893 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894
Theodore Ts'o30773842009-01-03 20:27:38 -05002895 journal->j_commit_interval = sbi->s_commit_interval;
2896 journal->j_min_batch_time = sbi->s_min_batch_time;
2897 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002898
2899 spin_lock(&journal->j_state_lock);
2900 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002901 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002902 else
Mingming Caodab291a2006-10-11 01:21:01 -07002903 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002904 if (test_opt(sb, DATA_ERR_ABORT))
2905 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2906 else
2907 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002908 spin_unlock(&journal->j_state_lock);
2909}
2910
Mingming Cao617ba132006-10-11 01:20:53 -07002911static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912 unsigned int journal_inum)
2913{
2914 struct inode *journal_inode;
2915 journal_t *journal;
2916
Frank Mayhar03901312009-01-07 00:06:22 -05002917 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2918
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002919 /* First, test for the existence of a valid inode on disk. Bad
2920 * things happen if we iget() an unused inode, as the subsequent
2921 * iput() will try to delete it. */
2922
David Howells1d1fe1e2008-02-07 00:15:37 -08002923 journal_inode = ext4_iget(sb, journal_inum);
2924 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002925 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002926 return NULL;
2927 }
2928 if (!journal_inode->i_nlink) {
2929 make_bad_inode(journal_inode);
2930 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002931 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002932 return NULL;
2933 }
2934
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002935 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002936 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002937 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002938 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002939 iput(journal_inode);
2940 return NULL;
2941 }
2942
Mingming Caodab291a2006-10-11 01:21:01 -07002943 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002944 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002945 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002946 iput(journal_inode);
2947 return NULL;
2948 }
2949 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002950 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002951 return journal;
2952}
2953
Mingming Cao617ba132006-10-11 01:20:53 -07002954static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002955 dev_t j_dev)
2956{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002957 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002958 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002959 ext4_fsblk_t start;
2960 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002961 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002962 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002964 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002965 struct block_device *bdev;
2966
Frank Mayhar03901312009-01-07 00:06:22 -05002967 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2968
Mingming Cao617ba132006-10-11 01:20:53 -07002969 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002970 if (bdev == NULL)
2971 return NULL;
2972
2973 if (bd_claim(bdev, sb)) {
2974 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05002975 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002976 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002977 return NULL;
2978 }
2979
2980 blocksize = sb->s_blocksize;
2981 hblock = bdev_hardsect_size(bdev);
2982 if (blocksize < hblock) {
2983 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002984 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002985 goto out_bdev;
2986 }
2987
Mingming Cao617ba132006-10-11 01:20:53 -07002988 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2989 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002990 set_blocksize(bdev, blocksize);
2991 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002992 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002993 "external journal\n");
2994 goto out_bdev;
2995 }
2996
Mingming Cao617ba132006-10-11 01:20:53 -07002997 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2998 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002999 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07003000 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
3001 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003002 "bad superblock\n");
3003 brelse(bh);
3004 goto out_bdev;
3005 }
3006
Mingming Cao617ba132006-10-11 01:20:53 -07003007 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
3008 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003009 brelse(bh);
3010 goto out_bdev;
3011 }
3012
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003013 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003014 start = sb_block + 1;
3015 brelse(bh); /* we're done with the superblock */
3016
Mingming Caodab291a2006-10-11 01:21:01 -07003017 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003018 start, len, blocksize);
3019 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07003020 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003021 goto out_bdev;
3022 }
3023 journal->j_private = sb;
3024 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3025 wait_on_buffer(journal->j_sb_buffer);
3026 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003027 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003028 goto out_journal;
3029 }
3030 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07003031 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003032 "user (unsupported) - %d\n",
3033 be32_to_cpu(journal->j_superblock->s_nr_users));
3034 goto out_journal;
3035 }
Mingming Cao617ba132006-10-11 01:20:53 -07003036 EXT4_SB(sb)->journal_bdev = bdev;
3037 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003038 return journal;
3039out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003040 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003041out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003042 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003043 return NULL;
3044}
3045
Mingming Cao617ba132006-10-11 01:20:53 -07003046static int ext4_load_journal(struct super_block *sb,
3047 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003048 unsigned long journal_devnum)
3049{
3050 journal_t *journal;
3051 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3052 dev_t journal_dev;
3053 int err = 0;
3054 int really_read_only;
3055
Frank Mayhar03901312009-01-07 00:06:22 -05003056 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3057
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003058 if (journal_devnum &&
3059 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003060 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003061 "numbers have changed\n");
3062 journal_dev = new_decode_dev(journal_devnum);
3063 } else
3064 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3065
3066 really_read_only = bdev_read_only(sb->s_bdev);
3067
3068 /*
3069 * Are we loading a blank journal or performing recovery after a
3070 * crash? For recovery, we need to check in advance whether we
3071 * can get read-write access to the device.
3072 */
3073
Mingming Cao617ba132006-10-11 01:20:53 -07003074 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003075 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003076 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003077 "required on readonly filesystem.\n");
3078 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07003079 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003080 "unavailable, cannot proceed.\n");
3081 return -EROFS;
3082 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003083 printk(KERN_INFO "EXT4-fs: write access will "
3084 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003085 }
3086 }
3087
3088 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07003089 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003090 "and inode journals!\n");
3091 return -EINVAL;
3092 }
3093
3094 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003095 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003096 return -EINVAL;
3097 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003098 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003099 return -EINVAL;
3100 }
3101
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003102 if (journal->j_flags & JBD2_BARRIER)
3103 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3104 else
3105 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3106
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003107 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003108 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003109 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003110 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003111 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003112 return err;
3113 }
3114 }
3115
Mingming Cao617ba132006-10-11 01:20:53 -07003116 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003117 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003118 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003119 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003120
3121 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003122 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003123 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003124 return err;
3125 }
3126
Mingming Cao617ba132006-10-11 01:20:53 -07003127 EXT4_SB(sb)->s_journal = journal;
3128 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003129
3130 if (journal_devnum &&
3131 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3132 es->s_journal_dev = cpu_to_le32(journal_devnum);
3133 sb->s_dirt = 1;
3134
3135 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07003136 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003137 }
3138
3139 return 0;
3140}
3141
Takashi Satoc4be0c12009-01-09 16:40:58 -08003142static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003143 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003144{
Mingming Cao617ba132006-10-11 01:20:53 -07003145 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003146 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003147
3148 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003149 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003150 if (buffer_write_io_error(sbh)) {
3151 /*
3152 * Oh, dear. A previous attempt to write the
3153 * superblock failed. This could happen because the
3154 * USB device was yanked out. Or it could happen to
3155 * be a transient write error and maybe the block will
3156 * be remapped. Nothing we can do but to retry the
3157 * write and hope for the best.
3158 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05003159 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003160 "superblock detected for %s.\n", sb->s_id);
3161 clear_buffer_write_io_error(sbh);
3162 set_buffer_uptodate(sbh);
3163 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003164 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003165 es->s_kbytes_written =
3166 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3167 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3168 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003169 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3170 &EXT4_SB(sb)->s_freeblocks_counter));
3171 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3172 &EXT4_SB(sb)->s_freeinodes_counter));
3173
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174 BUFFER_TRACE(sbh, "marking dirty");
3175 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003176 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003177 error = sync_dirty_buffer(sbh);
3178 if (error)
3179 return error;
3180
3181 error = buffer_write_io_error(sbh);
3182 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05003183 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003184 "superblock for %s.\n", sb->s_id);
3185 clear_buffer_write_io_error(sbh);
3186 set_buffer_uptodate(sbh);
3187 }
3188 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003189 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003190}
3191
3192
3193/*
3194 * Have we just finished recovery? If so, and if we are mounting (or
3195 * remounting) the filesystem readonly, then we will end up with a
3196 * consistent fs on disk. Record that fact.
3197 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003198static void ext4_mark_recovery_complete(struct super_block *sb,
3199 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003200{
Mingming Cao617ba132006-10-11 01:20:53 -07003201 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003202
Frank Mayhar03901312009-01-07 00:06:22 -05003203 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3204 BUG_ON(journal != NULL);
3205 return;
3206 }
Mingming Caodab291a2006-10-11 01:21:01 -07003207 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003208 if (jbd2_journal_flush(journal) < 0)
3209 goto out;
3210
Jan Kara32c37732007-07-15 23:41:09 -07003211 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07003212 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003213 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003214 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003215 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003216 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003217 }
Jan Kara32c37732007-07-15 23:41:09 -07003218 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003219
3220out:
Mingming Caodab291a2006-10-11 01:21:01 -07003221 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003222}
3223
3224/*
3225 * If we are mounting (or read-write remounting) a filesystem whose journal
3226 * has recorded an error from a previous lifetime, move that error to the
3227 * main filesystem now.
3228 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003229static void ext4_clear_journal_err(struct super_block *sb,
3230 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003231{
3232 journal_t *journal;
3233 int j_errno;
3234 const char *errstr;
3235
Frank Mayhar03901312009-01-07 00:06:22 -05003236 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3237
Mingming Cao617ba132006-10-11 01:20:53 -07003238 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003239
3240 /*
3241 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003242 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003243 */
3244
Mingming Caodab291a2006-10-11 01:21:01 -07003245 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003246 if (j_errno) {
3247 char nbuf[16];
3248
Mingming Cao617ba132006-10-11 01:20:53 -07003249 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003250 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003252 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003253 "filesystem check.");
3254
Mingming Cao617ba132006-10-11 01:20:53 -07003255 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3256 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003257 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003258
Mingming Caodab291a2006-10-11 01:21:01 -07003259 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003260 }
3261}
3262
3263/*
3264 * Force the running and committing transactions to commit,
3265 * and wait on the commit.
3266 */
Mingming Cao617ba132006-10-11 01:20:53 -07003267int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003268{
3269 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003270 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003271
3272 if (sb->s_flags & MS_RDONLY)
3273 return 0;
3274
Mingming Cao617ba132006-10-11 01:20:53 -07003275 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003276 if (journal) {
3277 sb->s_dirt = 0;
3278 ret = ext4_journal_force_commit(journal);
3279 }
3280
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281 return ret;
3282}
3283
3284/*
Mingming Cao617ba132006-10-11 01:20:53 -07003285 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003287 * point. (We can probably nuke this function altogether, and remove
3288 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003290static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291{
Frank Mayhar03901312009-01-07 00:06:22 -05003292 if (EXT4_SB(sb)->s_journal) {
3293 if (mutex_trylock(&sb->s_lock) != 0)
3294 BUG();
3295 sb->s_dirt = 0;
3296 } else {
3297 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3298 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003299}
3300
Mingming Cao617ba132006-10-11 01:20:53 -07003301static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003302{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003303 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003304 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003305
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003306 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003307 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003308 if (EXT4_SB(sb)->s_journal) {
Jan Kara9eddacf2009-02-10 06:46:05 -05003309 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal,
3310 &target)) {
3311 if (wait)
3312 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal,
3313 target);
3314 }
Frank Mayhar03901312009-01-07 00:06:22 -05003315 } else {
3316 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
3317 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003318 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003319}
3320
3321/*
3322 * LVM calls this function before a (read-only) snapshot is created. This
3323 * gives us a chance to flush the journal completely and mark the fs clean.
3324 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003325static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003326{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003327 int error = 0;
3328 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003329 sb->s_dirt = 0;
3330
3331 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003332 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003333
Frank Mayhar03901312009-01-07 00:06:22 -05003334 if (journal) {
3335 /* Now we set up the journal barrier. */
3336 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003337
Frank Mayhar03901312009-01-07 00:06:22 -05003338 /*
3339 * We don't want to clear needs_recovery flag when we
3340 * failed to flush the journal.
3341 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003342 error = jbd2_journal_flush(journal);
3343 if (error < 0)
3344 goto out;
Frank Mayhar03901312009-01-07 00:06:22 -05003345 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003346
3347 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003348 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003349 error = ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3350 if (error)
3351 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003352 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003353 return 0;
3354out:
3355 jbd2_journal_unlock_updates(journal);
3356 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003357}
3358
3359/*
3360 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3361 * flag here, even though the filesystem is not technically dirty yet.
3362 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003363static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003364{
Frank Mayhar03901312009-01-07 00:06:22 -05003365 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003366 lock_super(sb);
3367 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003368 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3369 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003370 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003371 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003372 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003373 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003374}
3375
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003376static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003377{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003378 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003379 struct ext4_sb_info *sbi = EXT4_SB(sb);
3380 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003382 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003383 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003384 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003385 int err;
3386#ifdef CONFIG_QUOTA
3387 int i;
3388#endif
3389
3390 /* Store the original options */
3391 old_sb_flags = sb->s_flags;
3392 old_opts.s_mount_opt = sbi->s_mount_opt;
3393 old_opts.s_resuid = sbi->s_resuid;
3394 old_opts.s_resgid = sbi->s_resgid;
3395 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003396 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3397 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003398#ifdef CONFIG_QUOTA
3399 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3400 for (i = 0; i < MAXQUOTAS; i++)
3401 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3402#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003403 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3404 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003405
3406 /*
3407 * Allow the "check" option to be passed as a remount option.
3408 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003409 if (!parse_options(data, sb, NULL, &journal_ioprio,
3410 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003411 err = -EINVAL;
3412 goto restore_opts;
3413 }
3414
Mingming Cao617ba132006-10-11 01:20:53 -07003415 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003416 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003417
3418 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003419 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003420
3421 es = sbi->s_es;
3422
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003423 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003424 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003425 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3426 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003427
3428 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003429 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003430 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003431 err = -EROFS;
3432 goto restore_opts;
3433 }
3434
3435 if (*flags & MS_RDONLY) {
3436 /*
3437 * First of all, the unconditional stuff we have to do
3438 * to disable replay of the journal when we next remount
3439 */
3440 sb->s_flags |= MS_RDONLY;
3441
3442 /*
3443 * OK, test if we are remounting a valid rw partition
3444 * readonly, and if so set the rdonly flag and then
3445 * mark the partition as valid again.
3446 */
Mingming Cao617ba132006-10-11 01:20:53 -07003447 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3448 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003449 es->s_state = cpu_to_le16(sbi->s_mount_state);
3450
Jan Kara32c37732007-07-15 23:41:09 -07003451 /*
3452 * We have to unlock super so that we can wait for
3453 * transactions.
3454 */
Frank Mayhar03901312009-01-07 00:06:22 -05003455 if (sbi->s_journal) {
3456 unlock_super(sb);
3457 ext4_mark_recovery_complete(sb, es);
3458 lock_super(sb);
3459 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003460 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003461 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003462 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3463 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3464 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003465 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003466 "optional features (%x).\n", sb->s_id,
3467 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3468 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003469 err = -EROFS;
3470 goto restore_opts;
3471 }
Eric Sandeenead65962007-02-10 01:46:08 -08003472
3473 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003474 * Make sure the group descriptor checksums
3475 * are sane. If they aren't, refuse to
3476 * remount r/w.
3477 */
3478 for (g = 0; g < sbi->s_groups_count; g++) {
3479 struct ext4_group_desc *gdp =
3480 ext4_get_group_desc(sb, g, NULL);
3481
3482 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3483 printk(KERN_ERR
3484 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003485 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003486 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3487 le16_to_cpu(gdp->bg_checksum));
3488 err = -EINVAL;
3489 goto restore_opts;
3490 }
3491 }
3492
3493 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003494 * If we have an unprocessed orphan list hanging
3495 * around from a previously readonly bdev mount,
3496 * require a full umount/remount for now.
3497 */
3498 if (es->s_last_orphan) {
3499 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3500 "remount RDWR because of unprocessed "
3501 "orphan inode list. Please "
3502 "umount/remount instead.\n",
3503 sb->s_id);
3504 err = -EINVAL;
3505 goto restore_opts;
3506 }
3507
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003508 /*
3509 * Mounting a RDONLY partition read-write, so reread
3510 * and store the current valid flag. (It may have
3511 * been changed by e2fsck since we originally mounted
3512 * the partition.)
3513 */
Frank Mayhar03901312009-01-07 00:06:22 -05003514 if (sbi->s_journal)
3515 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003516 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003517 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003518 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003519 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003520 sb->s_flags &= ~MS_RDONLY;
3521 }
3522 }
Frank Mayhar03901312009-01-07 00:06:22 -05003523 if (sbi->s_journal == NULL)
3524 ext4_commit_super(sb, es, 1);
3525
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003526#ifdef CONFIG_QUOTA
3527 /* Release old quota file names */
3528 for (i = 0; i < MAXQUOTAS; i++)
3529 if (old_opts.s_qf_names[i] &&
3530 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3531 kfree(old_opts.s_qf_names[i]);
3532#endif
3533 return 0;
3534restore_opts:
3535 sb->s_flags = old_sb_flags;
3536 sbi->s_mount_opt = old_opts.s_mount_opt;
3537 sbi->s_resuid = old_opts.s_resuid;
3538 sbi->s_resgid = old_opts.s_resgid;
3539 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003540 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3541 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003542#ifdef CONFIG_QUOTA
3543 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3544 for (i = 0; i < MAXQUOTAS; i++) {
3545 if (sbi->s_qf_names[i] &&
3546 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3547 kfree(sbi->s_qf_names[i]);
3548 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3549 }
3550#endif
3551 return err;
3552}
3553
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003554static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003555{
3556 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003557 struct ext4_sb_info *sbi = EXT4_SB(sb);
3558 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003559 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560
Badari Pulavarty5e700302007-07-15 23:42:00 -07003561 if (test_opt(sb, MINIX_DF)) {
3562 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003563 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003564 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003565 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003566 smp_rmb();
3567
3568 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003569 * Compute the overhead (FS structures). This is constant
3570 * for a given filesystem unless the number of block groups
3571 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003572 */
3573
3574 /*
3575 * All of the blocks before first_data_block are
3576 * overhead
3577 */
3578 overhead = le32_to_cpu(es->s_first_data_block);
3579
3580 /*
3581 * Add the overhead attributed to the superblock and
3582 * block group descriptors. If the sparse superblocks
3583 * feature is turned on, then not all groups have this.
3584 */
3585 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003586 overhead += ext4_bg_has_super(sb, i) +
3587 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003588 cond_resched();
3589 }
3590
3591 /*
3592 * Every block group has an inode bitmap, a block
3593 * bitmap, and an inode table.
3594 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003595 overhead += ngroups * (2 + sbi->s_itb_per_group);
3596 sbi->s_overhead_last = overhead;
3597 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003598 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003599 }
3600
Mingming Cao617ba132006-10-11 01:20:53 -07003601 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003602 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003603 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003604 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3605 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003606 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003607 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3608 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003609 buf->f_bavail = 0;
3610 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003611 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003612 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003613 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003614 fsid = le64_to_cpup((void *)es->s_uuid) ^
3615 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3616 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3617 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003618 return 0;
3619}
3620
3621/* Helper function for writing quotas on sync - we need to start transaction before quota file
3622 * is locked for write. Otherwise the are possible deadlocks:
3623 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003624 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003625 * jbd2_journal_start() write_dquot()
3626 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003627 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003628 *
3629 */
3630
3631#ifdef CONFIG_QUOTA
3632
3633static inline struct inode *dquot_to_inode(struct dquot *dquot)
3634{
3635 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3636}
3637
Mingming Cao617ba132006-10-11 01:20:53 -07003638static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003639{
3640 int ret, err;
3641 handle_t *handle;
3642 struct inode *inode;
3643
3644 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003645 handle = ext4_journal_start(inode,
3646 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003647 if (IS_ERR(handle))
3648 return PTR_ERR(handle);
3649 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003650 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003651 if (!ret)
3652 ret = err;
3653 return ret;
3654}
3655
Mingming Cao617ba132006-10-11 01:20:53 -07003656static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003657{
3658 int ret, err;
3659 handle_t *handle;
3660
Mingming Cao617ba132006-10-11 01:20:53 -07003661 handle = ext4_journal_start(dquot_to_inode(dquot),
3662 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003663 if (IS_ERR(handle))
3664 return PTR_ERR(handle);
3665 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003666 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003667 if (!ret)
3668 ret = err;
3669 return ret;
3670}
3671
Mingming Cao617ba132006-10-11 01:20:53 -07003672static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003673{
3674 int ret, err;
3675 handle_t *handle;
3676
Mingming Cao617ba132006-10-11 01:20:53 -07003677 handle = ext4_journal_start(dquot_to_inode(dquot),
3678 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003679 if (IS_ERR(handle)) {
3680 /* Release dquot anyway to avoid endless cycle in dqput() */
3681 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003683 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003684 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003685 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003686 if (!ret)
3687 ret = err;
3688 return ret;
3689}
3690
Mingming Cao617ba132006-10-11 01:20:53 -07003691static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003693 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003694 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3695 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003696 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003697 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003698 } else {
3699 return dquot_mark_dquot_dirty(dquot);
3700 }
3701}
3702
Mingming Cao617ba132006-10-11 01:20:53 -07003703static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003704{
3705 int ret, err;
3706 handle_t *handle;
3707
3708 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003709 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 if (IS_ERR(handle))
3711 return PTR_ERR(handle);
3712 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003713 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003714 if (!ret)
3715 ret = err;
3716 return ret;
3717}
3718
3719/*
3720 * Turn on quotas during mount time - we need to find
3721 * the quota file and such...
3722 */
Mingming Cao617ba132006-10-11 01:20:53 -07003723static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003724{
Mingming Cao617ba132006-10-11 01:20:53 -07003725 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3726 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003727}
3728
3729/*
3730 * Standard function to be called on quota_on
3731 */
Mingming Cao617ba132006-10-11 01:20:53 -07003732static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003733 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003734{
3735 int err;
Al Viro82646132008-08-02 00:57:06 -04003736 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003737
3738 if (!test_opt(sb, QUOTA))
3739 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003740 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003741 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003742 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003743
Al Viro82646132008-08-02 00:57:06 -04003744 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003745 if (err)
3746 return err;
Jan Kara06235432008-05-13 19:11:51 -04003747
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003748 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003749 if (path.mnt->mnt_sb != sb) {
3750 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003751 return -EXDEV;
3752 }
Jan Kara06235432008-05-13 19:11:51 -04003753 /* Journaling quota? */
3754 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003755 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003756 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003757 printk(KERN_WARNING
3758 "EXT4-fs: Quota file not on filesystem root. "
3759 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003760 }
Jan Kara06235432008-05-13 19:11:51 -04003761
3762 /*
3763 * When we journal data on quota file, we have to flush journal to see
3764 * all updates to the file when we bypass pagecache...
3765 */
Frank Mayhar03901312009-01-07 00:06:22 -05003766 if (EXT4_SB(sb)->s_journal &&
3767 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003768 /*
3769 * We don't need to lock updates but journal_flush() could
3770 * otherwise be livelocked...
3771 */
3772 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003773 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003774 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003775 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003776 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003777 return err;
3778 }
Jan Kara06235432008-05-13 19:11:51 -04003779 }
3780
Al Viro82646132008-08-02 00:57:06 -04003781 err = vfs_quota_on_path(sb, type, format_id, &path);
3782 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003783 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003784}
3785
3786/* Read data from quotafile - avoid pagecache and such because we cannot afford
3787 * acquiring the locks... As quota files are never truncated and quota code
3788 * itself serializes the operations (and noone else should touch the files)
3789 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003790static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003791 size_t len, loff_t off)
3792{
3793 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003794 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003795 int err = 0;
3796 int offset = off & (sb->s_blocksize - 1);
3797 int tocopy;
3798 size_t toread;
3799 struct buffer_head *bh;
3800 loff_t i_size = i_size_read(inode);
3801
3802 if (off > i_size)
3803 return 0;
3804 if (off+len > i_size)
3805 len = i_size-off;
3806 toread = len;
3807 while (toread > 0) {
3808 tocopy = sb->s_blocksize - offset < toread ?
3809 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003810 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003811 if (err)
3812 return err;
3813 if (!bh) /* A hole? */
3814 memset(data, 0, tocopy);
3815 else
3816 memcpy(data, bh->b_data+offset, tocopy);
3817 brelse(bh);
3818 offset = 0;
3819 toread -= tocopy;
3820 data += tocopy;
3821 blk++;
3822 }
3823 return len;
3824}
3825
3826/* Write to quotafile (we know the transaction is already started and has
3827 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003828static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829 const char *data, size_t len, loff_t off)
3830{
3831 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003832 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003833 int err = 0;
3834 int offset = off & (sb->s_blocksize - 1);
3835 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003836 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003837 size_t towrite = len;
3838 struct buffer_head *bh;
3839 handle_t *handle = journal_current_handle();
3840
Frank Mayhar03901312009-01-07 00:06:22 -05003841 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003842 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003843 " cancelled because transaction is not started.\n",
3844 (unsigned long long)off, (unsigned long long)len);
3845 return -EIO;
3846 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003847 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3848 while (towrite > 0) {
3849 tocopy = sb->s_blocksize - offset < towrite ?
3850 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003851 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003852 if (!bh)
3853 goto out;
3854 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003855 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003856 if (err) {
3857 brelse(bh);
3858 goto out;
3859 }
3860 }
3861 lock_buffer(bh);
3862 memcpy(bh->b_data+offset, data, tocopy);
3863 flush_dcache_page(bh->b_page);
3864 unlock_buffer(bh);
3865 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003866 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003867 else {
3868 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003869 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003870 mark_buffer_dirty(bh);
3871 }
3872 brelse(bh);
3873 if (err)
3874 goto out;
3875 offset = 0;
3876 towrite -= tocopy;
3877 data += tocopy;
3878 blk++;
3879 }
3880out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003881 if (len == towrite) {
3882 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003883 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003884 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003885 if (inode->i_size < off+len-towrite) {
3886 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003887 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003888 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003889 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003890 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003891 mutex_unlock(&inode->i_mutex);
3892 return len - towrite;
3893}
3894
3895#endif
3896
Mingming Cao617ba132006-10-11 01:20:53 -07003897static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003898 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3899{
Mingming Cao617ba132006-10-11 01:20:53 -07003900 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003901}
3902
Theodore Ts'o03010a32008-10-10 20:02:48 -04003903static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003904 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003905 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003906 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003907 .kill_sb = kill_block_super,
3908 .fs_flags = FS_REQUIRES_DEV,
3909};
3910
Theodore Ts'o03010a32008-10-10 20:02:48 -04003911#ifdef CONFIG_EXT4DEV_COMPAT
3912static int ext4dev_get_sb(struct file_system_type *fs_type,
3913 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3914{
3915 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3916 "to mount using ext4\n");
3917 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3918 "will go away by 2.6.31\n");
3919 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3920}
3921
3922static struct file_system_type ext4dev_fs_type = {
3923 .owner = THIS_MODULE,
3924 .name = "ext4dev",
3925 .get_sb = ext4dev_get_sb,
3926 .kill_sb = kill_block_super,
3927 .fs_flags = FS_REQUIRES_DEV,
3928};
3929MODULE_ALIAS("ext4dev");
3930#endif
3931
Mingming Cao617ba132006-10-11 01:20:53 -07003932static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003933{
Alex Tomasc9de5602008-01-29 00:19:52 -05003934 int err;
3935
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003936 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3937 if (!ext4_kset)
3938 return -ENOMEM;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003939 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003940 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003941 if (err)
3942 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003943
3944 err = init_ext4_xattr();
3945 if (err)
3946 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003947 err = init_inodecache();
3948 if (err)
3949 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003950 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003951 if (err)
3952 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003953#ifdef CONFIG_EXT4DEV_COMPAT
3954 err = register_filesystem(&ext4dev_fs_type);
3955 if (err) {
3956 unregister_filesystem(&ext4_fs_type);
3957 goto out;
3958 }
3959#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003960 return 0;
3961out:
3962 destroy_inodecache();
3963out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003964 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003965out2:
3966 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003967 return err;
3968}
3969
Mingming Cao617ba132006-10-11 01:20:53 -07003970static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003971{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003972 unregister_filesystem(&ext4_fs_type);
3973#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003974 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003975#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003976 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003977 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003978 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003979 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003980 kset_unregister(ext4_kset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003981}
3982
3983MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05003984MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003985MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003986module_init(init_ext4_fs)
3987module_exit(exit_ext4_fs)