blob: 9b9076d9c4f7da4fd6f4fb477b0a2de086432803 [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>
Mingming Caodab291a2006-10-11 01:21:01 -070023#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/blkdev.h>
27#include <linux/parser.h>
28#include <linux/smp_lock.h>
29#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070030#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/vfs.h>
32#include <linux/random.h>
33#include <linux/mount.h>
34#include <linux/namei.h>
35#include <linux/quotaops.h>
36#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040037#include <linux/proc_fs.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040038#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040039#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040040#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070041#include <asm/uaccess.h>
42
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040043#include "ext4.h"
44#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070045#include "xattr.h"
46#include "acl.h"
47#include "namei.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040048#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040050struct proc_dir_entry *ext4_proc_root;
51
Mingming Cao617ba132006-10-11 01:20:53 -070052static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070053 unsigned long journal_devnum);
Mingming Cao617ba132006-10-11 01:20:53 -070054static int ext4_create_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070055 unsigned int);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040056static void ext4_commit_super(struct super_block *sb,
57 struct ext4_super_block *es, int sync);
58static void ext4_mark_recovery_complete(struct super_block *sb,
59 struct ext4_super_block *es);
60static void ext4_clear_journal_err(struct super_block *sb,
61 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070062static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040063static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070064 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040065static int ext4_remount(struct super_block *sb, int *flags, char *data);
66static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Mingming Cao617ba132006-10-11 01:20:53 -070067static void ext4_unlockfs(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040068static void ext4_write_super(struct super_block *sb);
Mingming Cao617ba132006-10-11 01:20:53 -070069static void ext4_write_super_lockfs(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070070
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070071
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070072ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
73 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070074{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040075 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070076 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040077 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070078}
79
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070080ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
81 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070082{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040083 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070084 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040085 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070086}
87
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070088ext4_fsblk_t ext4_inode_table(struct super_block *sb,
89 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070090{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040091 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070092 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040093 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070094}
95
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070096void ext4_block_bitmap_set(struct super_block *sb,
97 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070098{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040099 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700100 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
101 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700102}
103
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700104void ext4_inode_bitmap_set(struct super_block *sb,
105 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700106{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400107 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700108 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
109 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700110}
111
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700112void ext4_inode_table_set(struct super_block *sb,
113 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700114{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400115 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700116 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
117 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700118}
119
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700120/*
Mingming Caodab291a2006-10-11 01:21:01 -0700121 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700122 *
123 * The only special thing we need to do here is to make sure that all
124 * journal_end calls result in the superblock being marked dirty, so
125 * that sync() will call the filesystem's write_super callback if
126 * appropriate.
127 */
Mingming Cao617ba132006-10-11 01:20:53 -0700128handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700129{
130 journal_t *journal;
131
132 if (sb->s_flags & MS_RDONLY)
133 return ERR_PTR(-EROFS);
134
135 /* Special case here: if the journal has aborted behind our
136 * backs (eg. EIO in the commit thread), then we still need to
137 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700138 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500139 if (journal) {
140 if (is_journal_aborted(journal)) {
141 ext4_abort(sb, __func__,
142 "Detected aborted journal");
143 return ERR_PTR(-EROFS);
144 }
145 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700146 }
Frank Mayhar03901312009-01-07 00:06:22 -0500147 /*
148 * We're not journaling, return the appropriate indication.
149 */
150 current->journal_info = EXT4_NOJOURNAL_HANDLE;
151 return current->journal_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700152}
153
154/*
155 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700156 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700157 * that sync() will call the filesystem's write_super callback if
158 * appropriate.
159 */
Mingming Cao617ba132006-10-11 01:20:53 -0700160int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700161{
162 struct super_block *sb;
163 int err;
164 int rc;
165
Frank Mayhar03901312009-01-07 00:06:22 -0500166 if (!ext4_handle_valid(handle)) {
167 /*
168 * Do this here since we don't call jbd2_journal_stop() in
169 * no-journal mode.
170 */
171 current->journal_info = NULL;
172 return 0;
173 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700174 sb = handle->h_transaction->t_journal->j_private;
175 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700176 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700177
178 if (!err)
179 err = rc;
180 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700181 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182 return err;
183}
184
Mingming Cao617ba132006-10-11 01:20:53 -0700185void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186 struct buffer_head *bh, handle_t *handle, int err)
187{
188 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700189 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700190
Frank Mayhar03901312009-01-07 00:06:22 -0500191 BUG_ON(!ext4_handle_valid(handle));
192
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700193 if (bh)
194 BUFFER_TRACE(bh, "abort");
195
196 if (!handle->h_err)
197 handle->h_err = err;
198
199 if (is_handle_aborted(handle))
200 return;
201
202 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
203 caller, errstr, err_fn);
204
Mingming Caodab291a2006-10-11 01:21:01 -0700205 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700206}
207
208/* Deal with the reporting of failure conditions on a filesystem such as
209 * inconsistencies detected or read IO failures.
210 *
211 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700212 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213 * write ordering constraints on the superblock which prevent us from
214 * writing it out straight away; and given that the journal is about to
215 * be aborted, we can't rely on the current, or future, transactions to
216 * write out the superblock safely.
217 *
Mingming Caodab291a2006-10-11 01:21:01 -0700218 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219 * the journal instead. On recovery, the journal will compain about
220 * that error until we've noted it down and cleared it.
221 */
222
Mingming Cao617ba132006-10-11 01:20:53 -0700223static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224{
Mingming Cao617ba132006-10-11 01:20:53 -0700225 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226
Mingming Cao617ba132006-10-11 01:20:53 -0700227 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
228 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229
230 if (sb->s_flags & MS_RDONLY)
231 return;
232
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400233 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700234 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700235
Mingming Cao617ba132006-10-11 01:20:53 -0700236 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700237 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700238 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400240 if (test_opt(sb, ERRORS_RO)) {
241 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242 sb->s_flags |= MS_RDONLY;
243 }
Mingming Cao617ba132006-10-11 01:20:53 -0700244 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700245 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700246 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 sb->s_id);
248}
249
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400250void ext4_error(struct super_block *sb, const char *function,
251 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700252{
253 va_list args;
254
255 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400256 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 vprintk(fmt, args);
258 printk("\n");
259 va_end(args);
260
Mingming Cao617ba132006-10-11 01:20:53 -0700261 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700262}
263
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400264static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700265 char nbuf[16])
266{
267 char *errstr = NULL;
268
269 switch (errno) {
270 case -EIO:
271 errstr = "IO failure";
272 break;
273 case -ENOMEM:
274 errstr = "Out of memory";
275 break;
276 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700277 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700278 errstr = "Journal has aborted";
279 else
280 errstr = "Readonly filesystem";
281 break;
282 default:
283 /* If the caller passed in an extra buffer for unknown
284 * errors, textualise them now. Else we just return
285 * NULL. */
286 if (nbuf) {
287 /* Check for truncated error codes... */
288 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
289 errstr = nbuf;
290 }
291 break;
292 }
293
294 return errstr;
295}
296
Mingming Cao617ba132006-10-11 01:20:53 -0700297/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700298 * automatically and invokes the appropriate error response. */
299
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400300void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301{
302 char nbuf[16];
303 const char *errstr;
304
305 /* Special case: if the error is EROFS, and we're not already
306 * inside a transaction, then there's really no point in logging
307 * an error. */
308 if (errno == -EROFS && journal_current_handle() == NULL &&
309 (sb->s_flags & MS_RDONLY))
310 return;
311
Mingming Cao617ba132006-10-11 01:20:53 -0700312 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400313 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
314 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315
Mingming Cao617ba132006-10-11 01:20:53 -0700316 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700317}
318
319/*
Mingming Cao617ba132006-10-11 01:20:53 -0700320 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 * abort function may be used to deal with unrecoverable failures such
322 * as journal IO errors or ENOMEM at a critical moment in log management.
323 *
324 * We unconditionally force the filesystem into an ABORT|READONLY state,
325 * unless the error response on the fs has been set to panic in which
326 * case we take the easy way out and panic immediately.
327 */
328
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400329void ext4_abort(struct super_block *sb, const char *function,
330 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700331{
332 va_list args;
333
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400334 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700335
336 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400337 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700338 vprintk(fmt, args);
339 printk("\n");
340 va_end(args);
341
342 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700343 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700344
345 if (sb->s_flags & MS_RDONLY)
346 return;
347
348 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700349 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700350 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700351 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400352 if (EXT4_SB(sb)->s_journal)
353 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700354}
355
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400356void ext4_warning(struct super_block *sb, const char *function,
357 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700358{
359 va_list args;
360
361 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700362 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700363 sb->s_id, function);
364 vprintk(fmt, args);
365 printk("\n");
366 va_end(args);
367}
368
Mingming Cao617ba132006-10-11 01:20:53 -0700369void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700370{
Mingming Cao617ba132006-10-11 01:20:53 -0700371 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700372
Mingming Cao617ba132006-10-11 01:20:53 -0700373 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700374 return;
375
Harvey Harrison46e665e2008-04-17 10:38:59 -0400376 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700377 "updating to rev %d because of new feature flag, "
378 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700379 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700380
Mingming Cao617ba132006-10-11 01:20:53 -0700381 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
382 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
383 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700384 /* leave es->s_feature_*compat flags alone */
385 /* es->s_uuid will be set by e2fsck if empty */
386
387 /*
388 * The rest of the superblock fields should be zero, and if not it
389 * means they are likely already in use, so leave them alone. We
390 * can leave it up to e2fsck to clean up any inconsistencies there.
391 */
392}
393
394/*
395 * Open the external journal device
396 */
Mingming Cao617ba132006-10-11 01:20:53 -0700397static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700398{
399 struct block_device *bdev;
400 char b[BDEVNAME_SIZE];
401
402 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
403 if (IS_ERR(bdev))
404 goto fail;
405 return bdev;
406
407fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700408 printk(KERN_ERR "EXT4: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700409 __bdevname(dev, b), PTR_ERR(bdev));
410 return NULL;
411}
412
413/*
414 * Release the journal device
415 */
Mingming Cao617ba132006-10-11 01:20:53 -0700416static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700417{
418 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500419 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700420}
421
Mingming Cao617ba132006-10-11 01:20:53 -0700422static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700423{
424 struct block_device *bdev;
425 int ret = -ENODEV;
426
427 bdev = sbi->journal_bdev;
428 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700429 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700430 sbi->journal_bdev = NULL;
431 }
432 return ret;
433}
434
435static inline struct inode *orphan_list_entry(struct list_head *l)
436{
Mingming Cao617ba132006-10-11 01:20:53 -0700437 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700438}
439
Mingming Cao617ba132006-10-11 01:20:53 -0700440static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700441{
442 struct list_head *l;
443
444 printk(KERN_ERR "sb orphan head is %d\n",
445 le32_to_cpu(sbi->s_es->s_last_orphan));
446
447 printk(KERN_ERR "sb_info orphan list:\n");
448 list_for_each(l, &sbi->s_orphan) {
449 struct inode *inode = orphan_list_entry(l);
450 printk(KERN_ERR " "
451 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
452 inode->i_sb->s_id, inode->i_ino, inode,
453 inode->i_mode, inode->i_nlink,
454 NEXT_ORPHAN(inode));
455 }
456}
457
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400458static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700459{
Mingming Cao617ba132006-10-11 01:20:53 -0700460 struct ext4_sb_info *sbi = EXT4_SB(sb);
461 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400462 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700463
Alex Tomasc9de5602008-01-29 00:19:52 -0500464 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700465 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700466 ext4_xattr_put_super(sb);
Frank Mayhar03901312009-01-07 00:06:22 -0500467 if (sbi->s_journal) {
468 err = jbd2_journal_destroy(sbi->s_journal);
469 sbi->s_journal = NULL;
470 if (err < 0)
471 ext4_abort(sb, __func__,
472 "Couldn't clean up the journal");
473 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700475 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700476 es->s_state = cpu_to_le16(sbi->s_mount_state);
Mingming Cao617ba132006-10-11 01:20:53 -0700477 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700478 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400479 if (sbi->s_proc) {
480 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400481 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400482 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700483
484 for (i = 0; i < sbi->s_gdb_count; i++)
485 brelse(sbi->s_group_desc[i]);
486 kfree(sbi->s_group_desc);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400487 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700488 percpu_counter_destroy(&sbi->s_freeblocks_counter);
489 percpu_counter_destroy(&sbi->s_freeinodes_counter);
490 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400491 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700492 brelse(sbi->s_sbh);
493#ifdef CONFIG_QUOTA
494 for (i = 0; i < MAXQUOTAS; i++)
495 kfree(sbi->s_qf_names[i]);
496#endif
497
498 /* Debugging code just in case the in-memory inode orphan list
499 * isn't empty. The on-disk one can be non-empty if we've
500 * detected an error and taken the fs readonly, but the
501 * in-memory list had better be clean by this point. */
502 if (!list_empty(&sbi->s_orphan))
503 dump_orphan_list(sb, sbi);
504 J_ASSERT(list_empty(&sbi->s_orphan));
505
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700506 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700507 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
508 /*
509 * Invalidate the journal device's buffers. We don't want them
510 * floating about in memory - the physical journal device may
511 * hotswapped, and it breaks the `ro-after' testing code.
512 */
513 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700514 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700515 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700516 }
517 sb->s_fs_info = NULL;
518 kfree(sbi);
519 return;
520}
521
Christoph Lametere18b8902006-12-06 20:33:20 -0800522static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523
524/*
525 * Called inside transaction, so use GFP_NOFS
526 */
Mingming Cao617ba132006-10-11 01:20:53 -0700527static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700528{
Mingming Cao617ba132006-10-11 01:20:53 -0700529 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800531 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700532 if (!ei)
533 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400534#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700535 ei->i_acl = EXT4_ACL_NOT_CACHED;
536 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700537#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700538 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400539 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700540 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500541 INIT_LIST_HEAD(&ei->i_prealloc_list);
542 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500543 /*
544 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
545 * therefore it can be null here. Don't check it, just initialize
546 * jinode.
547 */
Jan Kara678aaf42008-07-11 19:27:31 -0400548 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400549 ei->i_reserved_data_blocks = 0;
550 ei->i_reserved_meta_blocks = 0;
551 ei->i_allocated_meta_blocks = 0;
552 ei->i_delalloc_reserved_flag = 0;
553 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554 return &ei->vfs_inode;
555}
556
Mingming Cao617ba132006-10-11 01:20:53 -0700557static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700558{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700559 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
560 printk("EXT4 Inode %p: orphan list check failed!\n",
561 EXT4_I(inode));
562 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
563 EXT4_I(inode), sizeof(struct ext4_inode_info),
564 true);
565 dump_stack();
566 }
Mingming Cao617ba132006-10-11 01:20:53 -0700567 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700568}
569
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700570static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700571{
Mingming Cao617ba132006-10-11 01:20:53 -0700572 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700573
Christoph Lametera35afb82007-05-16 22:10:57 -0700574 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400575#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700576 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700577#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500578 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700579 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580}
581
582static int init_inodecache(void)
583{
Mingming Cao617ba132006-10-11 01:20:53 -0700584 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
585 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586 0, (SLAB_RECLAIM_ACCOUNT|
587 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900588 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700589 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 return -ENOMEM;
591 return 0;
592}
593
594static void destroy_inodecache(void)
595{
Mingming Cao617ba132006-10-11 01:20:53 -0700596 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597}
598
Mingming Cao617ba132006-10-11 01:20:53 -0700599static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700600{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400601#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700602 if (EXT4_I(inode)->i_acl &&
603 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
604 posix_acl_release(EXT4_I(inode)->i_acl);
605 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700606 }
Mingming Cao617ba132006-10-11 01:20:53 -0700607 if (EXT4_I(inode)->i_default_acl &&
608 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
609 posix_acl_release(EXT4_I(inode)->i_default_acl);
610 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611 }
612#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400613 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500614 if (EXT4_JOURNAL(inode))
615 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400616 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700617}
618
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400619static inline void ext4_show_quota_options(struct seq_file *seq,
620 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621{
622#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700623 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700624
625 if (sbi->s_jquota_fmt)
626 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400627 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700628
629 if (sbi->s_qf_names[USRQUOTA])
630 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
631
632 if (sbi->s_qf_names[GRPQUOTA])
633 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
634
Mingming Cao617ba132006-10-11 01:20:53 -0700635 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700636 seq_puts(seq, ",usrquota");
637
Mingming Cao617ba132006-10-11 01:20:53 -0700638 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639 seq_puts(seq, ",grpquota");
640#endif
641}
642
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700643/*
644 * Show an option if
645 * - it's set to a non-default value OR
646 * - if the per-sb default is different from the global default
647 */
Mingming Cao617ba132006-10-11 01:20:53 -0700648static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700649{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500650 int def_errors;
651 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700653 struct ext4_sb_info *sbi = EXT4_SB(sb);
654 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700655
656 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500657 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700658
659 if (sbi->s_sb_block != 1)
660 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
661 if (test_opt(sb, MINIX_DF))
662 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500663 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700664 seq_puts(seq, ",grpid");
665 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
666 seq_puts(seq, ",nogrpid");
667 if (sbi->s_resuid != EXT4_DEF_RESUID ||
668 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
669 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
670 }
671 if (sbi->s_resgid != EXT4_DEF_RESGID ||
672 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
673 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
674 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500675 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700676 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500677 def_errors == EXT4_ERRORS_CONTINUE) {
678 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700679 }
680 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500681 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500682 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500683 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700684 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500685 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700686 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500687 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700688 seq_puts(seq, ",debug");
689 if (test_opt(sb, OLDALLOC))
690 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400691#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500692 if (test_opt(sb, XATTR_USER) &&
693 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700694 seq_puts(seq, ",user_xattr");
695 if (!test_opt(sb, XATTR_USER) &&
696 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
697 seq_puts(seq, ",nouser_xattr");
698 }
699#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400700#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500701 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700702 seq_puts(seq, ",acl");
703 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
704 seq_puts(seq, ",noacl");
705#endif
706 if (!test_opt(sb, RESERVATION))
707 seq_puts(seq, ",noreservation");
708 if (sbi->s_commit_interval) {
709 seq_printf(seq, ",commit=%u",
710 (unsigned) (sbi->s_commit_interval / HZ));
711 }
Eric Sandeen571640c2008-05-26 12:29:46 -0400712 /*
713 * We're changing the default of barrier mount option, so
714 * let's always display its mount state so it's clear what its
715 * status is.
716 */
717 seq_puts(seq, ",barrier=");
718 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400719 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
720 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700721 if (test_opt(sb, NOBH))
722 seq_puts(seq, ",nobh");
723 if (!test_opt(sb, EXTENTS))
724 seq_puts(seq, ",noextents");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500725 if (test_opt(sb, I_VERSION))
726 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400727 if (!test_opt(sb, DELALLOC))
728 seq_puts(seq, ",nodelalloc");
729
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700730
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500731 if (sbi->s_stripe)
732 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500733 /*
734 * journal mode get enabled in different ways
735 * So just print the value even if we didn't specify it
736 */
Mingming Cao617ba132006-10-11 01:20:53 -0700737 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700739 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700740 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700741 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742 seq_puts(seq, ",data=writeback");
743
Theodore Ts'o240799c2008-10-09 23:53:47 -0400744 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
745 seq_printf(seq, ",inode_readahead_blks=%u",
746 sbi->s_inode_readahead_blks);
747
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400748 if (test_opt(sb, DATA_ERR_ABORT))
749 seq_puts(seq, ",data_err=abort");
750
Mingming Cao617ba132006-10-11 01:20:53 -0700751 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 return 0;
753}
754
755
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700756static struct inode *ext4_nfs_get_inode(struct super_block *sb,
757 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700758{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700759 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700760
Mingming Cao617ba132006-10-11 01:20:53 -0700761 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700762 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700763 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700764 return ERR_PTR(-ESTALE);
765
766 /* iget isn't really right if the inode is currently unallocated!!
767 *
Mingming Cao617ba132006-10-11 01:20:53 -0700768 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700769 * deleted, so we should be safe.
770 *
771 * Currently we don't know the generation for parent directory, so
772 * a generation of 0 means "accept any"
773 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800774 inode = ext4_iget(sb, ino);
775 if (IS_ERR(inode))
776 return ERR_CAST(inode);
777 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700778 iput(inode);
779 return ERR_PTR(-ESTALE);
780 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700781
782 return inode;
783}
784
785static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
786 int fh_len, int fh_type)
787{
788 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
789 ext4_nfs_get_inode);
790}
791
792static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
793 int fh_len, int fh_type)
794{
795 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
796 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700797}
798
799#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400800#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400801#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700802
Mingming Cao617ba132006-10-11 01:20:53 -0700803static int ext4_dquot_initialize(struct inode *inode, int type);
804static int ext4_dquot_drop(struct inode *inode);
805static int ext4_write_dquot(struct dquot *dquot);
806static int ext4_acquire_dquot(struct dquot *dquot);
807static int ext4_release_dquot(struct dquot *dquot);
808static int ext4_mark_dquot_dirty(struct dquot *dquot);
809static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700810static int ext4_quota_on(struct super_block *sb, int type, int format_id,
811 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700812static int ext4_quota_on_mount(struct super_block *sb, int type);
813static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700815static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700816 const char *data, size_t len, loff_t off);
817
Mingming Cao617ba132006-10-11 01:20:53 -0700818static struct dquot_operations ext4_quota_operations = {
819 .initialize = ext4_dquot_initialize,
820 .drop = ext4_dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700821 .alloc_space = dquot_alloc_space,
822 .alloc_inode = dquot_alloc_inode,
823 .free_space = dquot_free_space,
824 .free_inode = dquot_free_inode,
825 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700826 .write_dquot = ext4_write_dquot,
827 .acquire_dquot = ext4_acquire_dquot,
828 .release_dquot = ext4_release_dquot,
829 .mark_dirty = ext4_mark_dquot_dirty,
830 .write_info = ext4_write_info
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700831};
832
Mingming Cao617ba132006-10-11 01:20:53 -0700833static struct quotactl_ops ext4_qctl_operations = {
834 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835 .quota_off = vfs_quota_off,
836 .quota_sync = vfs_quota_sync,
837 .get_info = vfs_get_dqinfo,
838 .set_info = vfs_set_dqinfo,
839 .get_dqblk = vfs_get_dqblk,
840 .set_dqblk = vfs_set_dqblk
841};
842#endif
843
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800844static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700845 .alloc_inode = ext4_alloc_inode,
846 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700847 .write_inode = ext4_write_inode,
848 .dirty_inode = ext4_dirty_inode,
849 .delete_inode = ext4_delete_inode,
850 .put_super = ext4_put_super,
851 .write_super = ext4_write_super,
852 .sync_fs = ext4_sync_fs,
853 .write_super_lockfs = ext4_write_super_lockfs,
854 .unlockfs = ext4_unlockfs,
855 .statfs = ext4_statfs,
856 .remount_fs = ext4_remount,
857 .clear_inode = ext4_clear_inode,
858 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -0700860 .quota_read = ext4_quota_read,
861 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862#endif
863};
864
Christoph Hellwig39655162007-10-21 16:42:17 -0700865static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700866 .fh_to_dentry = ext4_fh_to_dentry,
867 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -0700868 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869};
870
871enum {
872 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
873 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -0400874 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700875 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
876 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
877 Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -0500878 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400880 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
882 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
883 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500884 Opt_grpquota, Opt_extents, Opt_noextents, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -0400885 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'o240799c2008-10-09 23:53:47 -0400886 Opt_inode_readahead_blks
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887};
888
Steven Whitehousea447c092008-10-13 10:46:57 +0100889static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890 {Opt_bsd_df, "bsddf"},
891 {Opt_minix_df, "minixdf"},
892 {Opt_grpid, "grpid"},
893 {Opt_grpid, "bsdgroups"},
894 {Opt_nogrpid, "nogrpid"},
895 {Opt_nogrpid, "sysvgroups"},
896 {Opt_resgid, "resgid=%u"},
897 {Opt_resuid, "resuid=%u"},
898 {Opt_sb, "sb=%u"},
899 {Opt_err_cont, "errors=continue"},
900 {Opt_err_panic, "errors=panic"},
901 {Opt_err_ro, "errors=remount-ro"},
902 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 {Opt_debug, "debug"},
904 {Opt_oldalloc, "oldalloc"},
905 {Opt_orlov, "orlov"},
906 {Opt_user_xattr, "user_xattr"},
907 {Opt_nouser_xattr, "nouser_xattr"},
908 {Opt_acl, "acl"},
909 {Opt_noacl, "noacl"},
910 {Opt_reservation, "reservation"},
911 {Opt_noreservation, "noreservation"},
912 {Opt_noload, "noload"},
913 {Opt_nobh, "nobh"},
914 {Opt_bh, "bh"},
915 {Opt_commit, "commit=%u"},
916 {Opt_journal_update, "journal=update"},
917 {Opt_journal_inum, "journal=%u"},
918 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -0500919 {Opt_journal_checksum, "journal_checksum"},
920 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700921 {Opt_abort, "abort"},
922 {Opt_data_journal, "data=journal"},
923 {Opt_data_ordered, "data=ordered"},
924 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400925 {Opt_data_err_abort, "data_err=abort"},
926 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927 {Opt_offusrjquota, "usrjquota="},
928 {Opt_usrjquota, "usrjquota=%s"},
929 {Opt_offgrpjquota, "grpjquota="},
930 {Opt_grpjquota, "grpjquota=%s"},
931 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
932 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
933 {Opt_grpquota, "grpquota"},
934 {Opt_noquota, "noquota"},
935 {Opt_quota, "quota"},
936 {Opt_usrquota, "usrquota"},
937 {Opt_barrier, "barrier=%u"},
Alex Tomasa86c6182006-10-11 01:21:03 -0700938 {Opt_extents, "extents"},
Mingming Cao1e2462f2007-07-18 09:00:55 -0400939 {Opt_noextents, "noextents"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500940 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -0500941 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -0400943 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400944 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -0400945 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -0400946 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700947};
948
Mingming Cao617ba132006-10-11 01:20:53 -0700949static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700950{
Mingming Cao617ba132006-10-11 01:20:53 -0700951 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952 char *options = (char *) *data;
953
954 if (!options || strncmp(options, "sb=", 3) != 0)
955 return 1; /* Default location */
956 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -0700957 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958 sb_block = simple_strtoul(options, &options, 0);
959 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400960 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700961 (char *) *data);
962 return 1;
963 }
964 if (*options == ',')
965 options++;
966 *data = (void *) options;
967 return sb_block;
968}
969
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400970static int parse_options(char *options, struct super_block *sb,
971 unsigned int *inum, unsigned long *journal_devnum,
972 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700973{
Mingming Cao617ba132006-10-11 01:20:53 -0700974 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400975 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976 substring_t args[MAX_OPT_ARGS];
977 int data_opt = 0;
978 int option;
979#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -0400980 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700981 char *qname;
982#endif
Aneesh Kumar K.Vc07651b2008-07-11 19:27:31 -0400983 ext4_fsblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700984
985 if (!options)
986 return 1;
987
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400988 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700989 int token;
990 if (!*p)
991 continue;
992
993 token = match_token(p, tokens, args);
994 switch (token) {
995 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400996 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700997 break;
998 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400999 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001000 break;
1001 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001002 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003 break;
1004 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001005 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006 break;
1007 case Opt_resuid:
1008 if (match_int(&args[0], &option))
1009 return 0;
1010 sbi->s_resuid = option;
1011 break;
1012 case Opt_resgid:
1013 if (match_int(&args[0], &option))
1014 return 0;
1015 sbi->s_resgid = option;
1016 break;
1017 case Opt_sb:
1018 /* handled by get_sb_block() instead of here */
1019 /* *sb_block = match_int(&args[0]); */
1020 break;
1021 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001022 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1023 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1024 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 break;
1026 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001027 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1028 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1029 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001030 break;
1031 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001032 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1033 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1034 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035 break;
1036 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001037 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001038 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001039 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001040 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041 break;
1042 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001043 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001044 break;
1045 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001046 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001047 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001048#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001049 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001050 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001051 break;
1052 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001053 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054 break;
1055#else
1056 case Opt_user_xattr:
1057 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001058 printk(KERN_ERR "EXT4 (no)user_xattr options "
1059 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001060 break;
1061#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001062#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001063 case Opt_acl:
1064 set_opt(sbi->s_mount_opt, POSIX_ACL);
1065 break;
1066 case Opt_noacl:
1067 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1068 break;
1069#else
1070 case Opt_acl:
1071 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001072 printk(KERN_ERR "EXT4 (no)acl options "
1073 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 break;
1075#endif
1076 case Opt_reservation:
1077 set_opt(sbi->s_mount_opt, RESERVATION);
1078 break;
1079 case Opt_noreservation:
1080 clear_opt(sbi->s_mount_opt, RESERVATION);
1081 break;
1082 case Opt_journal_update:
1083 /* @@@ FIXME */
1084 /* Eventually we will want to be able to create
1085 a journal file here. For now, only allow the
1086 user to specify an existing inode to be the
1087 journal file. */
1088 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001089 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001090 "journal on remount\n");
1091 return 0;
1092 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001093 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001094 break;
1095 case Opt_journal_inum:
1096 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001097 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001098 "journal on remount\n");
1099 return 0;
1100 }
1101 if (match_int(&args[0], &option))
1102 return 0;
1103 *inum = option;
1104 break;
1105 case Opt_journal_dev:
1106 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001107 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001108 "journal on remount\n");
1109 return 0;
1110 }
1111 if (match_int(&args[0], &option))
1112 return 0;
1113 *journal_devnum = option;
1114 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001115 case Opt_journal_checksum:
1116 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1117 break;
1118 case Opt_journal_async_commit:
1119 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1120 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1121 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001122 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001123 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001124 break;
1125 case Opt_commit:
1126 if (match_int(&args[0], &option))
1127 return 0;
1128 if (option < 0)
1129 return 0;
1130 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001131 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132 sbi->s_commit_interval = HZ * option;
1133 break;
1134 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001135 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136 goto datacheck;
1137 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001138 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001139 goto datacheck;
1140 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001141 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001142 datacheck:
1143 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001144 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145 != data_opt) {
1146 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001147 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001148 "mode on remount\n");
1149 return 0;
1150 }
1151 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001152 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001153 sbi->s_mount_opt |= data_opt;
1154 }
1155 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001156 case Opt_data_err_abort:
1157 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1158 break;
1159 case Opt_data_err_ignore:
1160 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1161 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001162#ifdef CONFIG_QUOTA
1163 case Opt_usrjquota:
1164 qtype = USRQUOTA;
1165 goto set_qf_name;
1166 case Opt_grpjquota:
1167 qtype = GRPQUOTA;
1168set_qf_name:
Jan Karadfc5d032008-05-13 19:11:51 -04001169 if ((sb_any_quota_enabled(sb) ||
1170 sb_any_quota_suspended(sb)) &&
1171 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001173 "EXT4-fs: Cannot change journaled "
1174 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001175 return 0;
1176 }
1177 qname = match_strdup(&args[0]);
1178 if (!qname) {
1179 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001180 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001181 "storing quotafile name.\n");
1182 return 0;
1183 }
1184 if (sbi->s_qf_names[qtype] &&
1185 strcmp(sbi->s_qf_names[qtype], qname)) {
1186 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001187 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188 "specified.\n", QTYPE2NAME(qtype));
1189 kfree(qname);
1190 return 0;
1191 }
1192 sbi->s_qf_names[qtype] = qname;
1193 if (strchr(sbi->s_qf_names[qtype], '/')) {
1194 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001195 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001196 "filesystem root.\n");
1197 kfree(sbi->s_qf_names[qtype]);
1198 sbi->s_qf_names[qtype] = NULL;
1199 return 0;
1200 }
1201 set_opt(sbi->s_mount_opt, QUOTA);
1202 break;
1203 case Opt_offusrjquota:
1204 qtype = USRQUOTA;
1205 goto clear_qf_name;
1206 case Opt_offgrpjquota:
1207 qtype = GRPQUOTA;
1208clear_qf_name:
Jan Karadfc5d032008-05-13 19:11:51 -04001209 if ((sb_any_quota_enabled(sb) ||
1210 sb_any_quota_suspended(sb)) &&
1211 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001212 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001213 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001214 "quota turned on.\n");
1215 return 0;
1216 }
1217 /*
1218 * The space will be released later when all options
1219 * are confirmed to be correct
1220 */
1221 sbi->s_qf_names[qtype] = NULL;
1222 break;
1223 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001224 qfmt = QFMT_VFS_OLD;
1225 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001226 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001227 qfmt = QFMT_VFS_V0;
1228set_qf_format:
1229 if ((sb_any_quota_enabled(sb) ||
1230 sb_any_quota_suspended(sb)) &&
1231 sbi->s_jquota_fmt != qfmt) {
1232 printk(KERN_ERR "EXT4-fs: Cannot change "
1233 "journaled quota options when "
1234 "quota turned on.\n");
1235 return 0;
1236 }
1237 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 break;
1239 case Opt_quota:
1240 case Opt_usrquota:
1241 set_opt(sbi->s_mount_opt, QUOTA);
1242 set_opt(sbi->s_mount_opt, USRQUOTA);
1243 break;
1244 case Opt_grpquota:
1245 set_opt(sbi->s_mount_opt, QUOTA);
1246 set_opt(sbi->s_mount_opt, GRPQUOTA);
1247 break;
1248 case Opt_noquota:
1249 if (sb_any_quota_enabled(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001250 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001251 "options when quota turned on.\n");
1252 return 0;
1253 }
1254 clear_opt(sbi->s_mount_opt, QUOTA);
1255 clear_opt(sbi->s_mount_opt, USRQUOTA);
1256 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1257 break;
1258#else
1259 case Opt_quota:
1260 case Opt_usrquota:
1261 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001262 printk(KERN_ERR
1263 "EXT4-fs: quota options not supported.\n");
1264 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001265 case Opt_usrjquota:
1266 case Opt_grpjquota:
1267 case Opt_offusrjquota:
1268 case Opt_offgrpjquota:
1269 case Opt_jqfmt_vfsold:
1270 case Opt_jqfmt_vfsv0:
1271 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001272 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001273 "supported.\n");
1274 break;
1275 case Opt_noquota:
1276 break;
1277#endif
1278 case Opt_abort:
1279 set_opt(sbi->s_mount_opt, ABORT);
1280 break;
1281 case Opt_barrier:
1282 if (match_int(&args[0], &option))
1283 return 0;
1284 if (option)
1285 set_opt(sbi->s_mount_opt, BARRIER);
1286 else
1287 clear_opt(sbi->s_mount_opt, BARRIER);
1288 break;
1289 case Opt_ignore:
1290 break;
1291 case Opt_resize:
1292 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001293 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001294 "for remount\n");
1295 return 0;
1296 }
1297 if (match_int(&args[0], &option) != 0)
1298 return 0;
1299 *n_blocks_count = option;
1300 break;
1301 case Opt_nobh:
1302 set_opt(sbi->s_mount_opt, NOBH);
1303 break;
1304 case Opt_bh:
1305 clear_opt(sbi->s_mount_opt, NOBH);
1306 break;
Alex Tomasa86c6182006-10-11 01:21:03 -07001307 case Opt_extents:
Eric Sandeene4079a12008-07-11 19:27:31 -04001308 if (!EXT4_HAS_INCOMPAT_FEATURE(sb,
1309 EXT4_FEATURE_INCOMPAT_EXTENTS)) {
1310 ext4_warning(sb, __func__,
1311 "extents feature not enabled "
1312 "on this filesystem, use tune2fs\n");
1313 return 0;
1314 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001315 set_opt(sbi->s_mount_opt, EXTENTS);
Alex Tomasa86c6182006-10-11 01:21:03 -07001316 break;
Mingming Cao1e2462f2007-07-18 09:00:55 -04001317 case Opt_noextents:
Aneesh Kumar K.Vc07651b2008-07-11 19:27:31 -04001318 /*
1319 * When e2fsprogs support resizing an already existing
1320 * ext3 file system to greater than 2**32 we need to
1321 * add support to block allocator to handle growing
1322 * already existing block mapped inode so that blocks
1323 * allocated for them fall within 2**32
1324 */
1325 last_block = ext4_blocks_count(sbi->s_es) - 1;
1326 if (last_block > 0xffffffffULL) {
1327 printk(KERN_ERR "EXT4-fs: Filesystem too "
1328 "large to mount with "
1329 "-o noextents options\n");
1330 return 0;
1331 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001332 clear_opt(sbi->s_mount_opt, EXTENTS);
Mingming Cao1e2462f2007-07-18 09:00:55 -04001333 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001334 case Opt_i_version:
1335 set_opt(sbi->s_mount_opt, I_VERSION);
1336 sb->s_flags |= MS_I_VERSION;
1337 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001338 case Opt_nodelalloc:
1339 clear_opt(sbi->s_mount_opt, DELALLOC);
1340 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001341 case Opt_stripe:
1342 if (match_int(&args[0], &option))
1343 return 0;
1344 if (option < 0)
1345 return 0;
1346 sbi->s_stripe = option;
1347 break;
Alex Tomas64769242008-07-11 19:27:31 -04001348 case Opt_delalloc:
1349 set_opt(sbi->s_mount_opt, DELALLOC);
1350 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001351 case Opt_inode_readahead_blks:
1352 if (match_int(&args[0], &option))
1353 return 0;
1354 if (option < 0 || option > (1 << 30))
1355 return 0;
1356 sbi->s_inode_readahead_blks = option;
1357 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001358 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001359 printk(KERN_ERR
1360 "EXT4-fs: Unrecognized mount option \"%s\" "
1361 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001362 return 0;
1363 }
1364 }
1365#ifdef CONFIG_QUOTA
1366 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001367 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001368 sbi->s_qf_names[USRQUOTA])
1369 clear_opt(sbi->s_mount_opt, USRQUOTA);
1370
Mingming Cao617ba132006-10-11 01:20:53 -07001371 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001372 sbi->s_qf_names[GRPQUOTA])
1373 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1374
1375 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001376 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001378 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1379 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001380 "format mixing.\n");
1381 return 0;
1382 }
1383
1384 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001385 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001386 "not specified.\n");
1387 return 0;
1388 }
1389 } else {
1390 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001391 printk(KERN_ERR "EXT4-fs: journaled quota format "
1392 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393 "enabled.\n");
1394 return 0;
1395 }
1396 }
1397#endif
1398 return 1;
1399}
1400
Mingming Cao617ba132006-10-11 01:20:53 -07001401static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402 int read_only)
1403{
Mingming Cao617ba132006-10-11 01:20:53 -07001404 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001405 int res = 0;
1406
Mingming Cao617ba132006-10-11 01:20:53 -07001407 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001408 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1409 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001410 res = MS_RDONLY;
1411 }
1412 if (read_only)
1413 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001414 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001415 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1416 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001417 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001418 printk(KERN_WARNING
1419 "EXT4-fs warning: mounting fs with errors, "
1420 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001421 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1422 le16_to_cpu(es->s_mnt_count) >=
1423 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001424 printk(KERN_WARNING
1425 "EXT4-fs warning: maximal mount count reached, "
1426 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 else if (le32_to_cpu(es->s_checkinterval) &&
1428 (le32_to_cpu(es->s_lastcheck) +
1429 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001430 printk(KERN_WARNING
1431 "EXT4-fs warning: checktime reached, "
1432 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001433 if (!sbi->s_journal)
1434 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001435 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001436 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001437 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001438 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001439 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001440 if (sbi->s_journal)
1441 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001442
Mingming Cao617ba132006-10-11 01:20:53 -07001443 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 if (test_opt(sb, DEBUG))
Mingming Cao617ba132006-10-11 01:20:53 -07001445 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%lu, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001446 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1447 sb->s_blocksize,
1448 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001449 EXT4_BLOCKS_PER_GROUP(sb),
1450 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001451 sbi->s_mount_opt);
1452
Frank Mayhar03901312009-01-07 00:06:22 -05001453 if (EXT4_SB(sb)->s_journal) {
1454 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1455 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1456 "external", EXT4_SB(sb)->s_journal->j_devname);
1457 } else {
1458 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1459 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001460 return res;
1461}
1462
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001463static int ext4_fill_flex_info(struct super_block *sb)
1464{
1465 struct ext4_sb_info *sbi = EXT4_SB(sb);
1466 struct ext4_group_desc *gdp = NULL;
1467 struct buffer_head *bh;
1468 ext4_group_t flex_group_count;
1469 ext4_group_t flex_group;
1470 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001471 int i;
1472
1473 if (!sbi->s_es->s_log_groups_per_flex) {
1474 sbi->s_log_groups_per_flex = 0;
1475 return 1;
1476 }
1477
1478 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1479 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1480
Frederic Bohec62a11f2008-09-08 10:20:24 -04001481 /* We allocate both existing and potentially added groups */
1482 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001483 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1484 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001485 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001486 sizeof(struct flex_groups), GFP_KERNEL);
1487 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001488 printk(KERN_ERR "EXT4-fs: not enough memory for "
1489 "%lu flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001490 goto failed;
1491 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001492
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001493 for (i = 0; i < sbi->s_groups_count; i++) {
1494 gdp = ext4_get_group_desc(sb, i, &bh);
1495
1496 flex_group = ext4_flex_group(sbi, i);
1497 sbi->s_flex_groups[flex_group].free_inodes +=
1498 le16_to_cpu(gdp->bg_free_inodes_count);
1499 sbi->s_flex_groups[flex_group].free_blocks +=
1500 le16_to_cpu(gdp->bg_free_blocks_count);
1501 }
1502
1503 return 1;
1504failed:
1505 return 0;
1506}
1507
Andreas Dilger717d50e2007-10-16 18:38:25 -04001508__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1509 struct ext4_group_desc *gdp)
1510{
1511 __u16 crc = 0;
1512
1513 if (sbi->s_es->s_feature_ro_compat &
1514 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1515 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1516 __le32 le_group = cpu_to_le32(block_group);
1517
1518 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1519 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1520 crc = crc16(crc, (__u8 *)gdp, offset);
1521 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1522 /* for checksum of struct ext4_group_desc do the rest...*/
1523 if ((sbi->s_es->s_feature_incompat &
1524 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1525 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1526 crc = crc16(crc, (__u8 *)gdp + offset,
1527 le16_to_cpu(sbi->s_es->s_desc_size) -
1528 offset);
1529 }
1530
1531 return cpu_to_le16(crc);
1532}
1533
1534int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1535 struct ext4_group_desc *gdp)
1536{
1537 if ((sbi->s_es->s_feature_ro_compat &
1538 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1539 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1540 return 0;
1541
1542 return 1;
1543}
1544
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001545/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001546static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001547{
Mingming Cao617ba132006-10-11 01:20:53 -07001548 struct ext4_sb_info *sbi = EXT4_SB(sb);
1549 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1550 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001551 ext4_fsblk_t block_bitmap;
1552 ext4_fsblk_t inode_bitmap;
1553 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001554 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001555 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001556
Jose R. Santosce421582007-10-16 18:38:25 -04001557 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1558 flexbg_flag = 1;
1559
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001560 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001561
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001562 for (i = 0; i < sbi->s_groups_count; i++) {
1563 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1564
Jose R. Santosce421582007-10-16 18:38:25 -04001565 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001566 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001567 else
1568 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001569 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001570
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001571 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001572 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001573 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1574 "Block bitmap for group %lu not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001575 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001576 return 0;
1577 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001578 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001579 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001580 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1581 "Inode bitmap for group %lu not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001582 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001583 return 0;
1584 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001585 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001586 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001587 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001588 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1589 "Inode table for group %lu not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001590 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001591 return 0;
1592 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001593 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001594 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001595 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1596 "Checksum for group %lu failed (%u!=%u)\n",
1597 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1598 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001599 if (!(sb->s_flags & MS_RDONLY)) {
1600 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001601 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001602 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001603 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001604 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001605 if (!flexbg_flag)
1606 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001607 }
1608
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001609 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001610 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001611 return 1;
1612}
1613
Mingming Cao617ba132006-10-11 01:20:53 -07001614/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001615 * the superblock) which were deleted from all directories, but held open by
1616 * a process at the time of a crash. We walk the list and try to delete these
1617 * inodes at recovery time (only with a read-write filesystem).
1618 *
1619 * In order to keep the orphan inode chain consistent during traversal (in
1620 * case of crash during recovery), we link each inode into the superblock
1621 * orphan list_head and handle it the same way as an inode deletion during
1622 * normal operation (which journals the operations for us).
1623 *
1624 * We only do an iget() and an iput() on each inode, which is very safe if we
1625 * accidentally point at an in-use or already deleted inode. The worst that
1626 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001627 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001628 * e2fsck was run on this filesystem, and it must have already done the orphan
1629 * inode cleanup for us, so we can safely abort without any further action.
1630 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001631static void ext4_orphan_cleanup(struct super_block *sb,
1632 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001633{
1634 unsigned int s_flags = sb->s_flags;
1635 int nr_orphans = 0, nr_truncates = 0;
1636#ifdef CONFIG_QUOTA
1637 int i;
1638#endif
1639 if (!es->s_last_orphan) {
1640 jbd_debug(4, "no orphan inodes to clean up\n");
1641 return;
1642 }
1643
Eric Sandeena8f48a92006-12-06 20:40:13 -08001644 if (bdev_read_only(sb->s_bdev)) {
1645 printk(KERN_ERR "EXT4-fs: write access "
1646 "unavailable, skipping orphan cleanup.\n");
1647 return;
1648 }
1649
Mingming Cao617ba132006-10-11 01:20:53 -07001650 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001651 if (es->s_last_orphan)
1652 jbd_debug(1, "Errors on filesystem, "
1653 "clearing orphan list.\n");
1654 es->s_last_orphan = 0;
1655 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1656 return;
1657 }
1658
1659 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001660 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001661 sb->s_id);
1662 sb->s_flags &= ~MS_RDONLY;
1663 }
1664#ifdef CONFIG_QUOTA
1665 /* Needed for iput() to work correctly and not trash data */
1666 sb->s_flags |= MS_ACTIVE;
1667 /* Turn on quotas so that they are updated correctly */
1668 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001669 if (EXT4_SB(sb)->s_qf_names[i]) {
1670 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001671 if (ret < 0)
1672 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001673 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001674 "quota: error %d\n", ret);
1675 }
1676 }
1677#endif
1678
1679 while (es->s_last_orphan) {
1680 struct inode *inode;
1681
Josef Bacik97bd42b2008-04-29 22:04:56 -04001682 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1683 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001684 es->s_last_orphan = 0;
1685 break;
1686 }
1687
Mingming Cao617ba132006-10-11 01:20:53 -07001688 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001689 DQUOT_INIT(inode);
1690 if (inode->i_nlink) {
1691 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001692 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001693 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001694 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001695 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001696 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001697 nr_truncates++;
1698 } else {
1699 printk(KERN_DEBUG
1700 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001701 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001702 jbd_debug(2, "deleting unreferenced inode %lu\n",
1703 inode->i_ino);
1704 nr_orphans++;
1705 }
1706 iput(inode); /* The delete magic happens here! */
1707 }
1708
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001709#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710
1711 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001712 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001713 sb->s_id, PLURAL(nr_orphans));
1714 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001715 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001716 sb->s_id, PLURAL(nr_truncates));
1717#ifdef CONFIG_QUOTA
1718 /* Turn quotas off */
1719 for (i = 0; i < MAXQUOTAS; i++) {
1720 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001721 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001722 }
1723#endif
1724 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1725}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001726/*
1727 * Maximal extent format file size.
1728 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1729 * extent format containers, within a sector_t, and within i_blocks
1730 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1731 * so that won't be a limiting factor.
1732 *
1733 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1734 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001735static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001736{
1737 loff_t res;
1738 loff_t upper_limit = MAX_LFS_FILESIZE;
1739
1740 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001741 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001742 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001743 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001744 * i_block represent total blocks in 512 bytes
1745 * 32 == size of vfs inode i_blocks * 8
1746 */
1747 upper_limit = (1LL << 32) - 1;
1748
1749 /* total blocks in file system block size */
1750 upper_limit >>= (blkbits - 9);
1751 upper_limit <<= blkbits;
1752 }
1753
1754 /* 32-bit extent-start container, ee_block */
1755 res = 1LL << 32;
1756 res <<= blkbits;
1757 res -= 1;
1758
1759 /* Sanity check against vm- & vfs- imposed limits */
1760 if (res > upper_limit)
1761 res = upper_limit;
1762
1763 return res;
1764}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001765
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001766/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001767 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001768 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1769 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001770 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001771static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001772{
Mingming Cao617ba132006-10-11 01:20:53 -07001773 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001774 int meta_blocks;
1775 loff_t upper_limit;
1776 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001777 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001778 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001779 * does not exceed 2^48 -1
1780 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1781 * total number of 512 bytes blocks of the file
1782 */
1783
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001784 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001785 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001786 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001787 * implies the inode i_block represent total blocks in
1788 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001789 */
1790 upper_limit = (1LL << 32) - 1;
1791
1792 /* total blocks in file system block size */
1793 upper_limit >>= (bits - 9);
1794
1795 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001796 /*
1797 * We use 48 bit ext4_inode i_blocks
1798 * With EXT4_HUGE_FILE_FL set the i_blocks
1799 * represent total number of blocks in
1800 * file system block size
1801 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001802 upper_limit = (1LL << 48) - 1;
1803
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001804 }
1805
1806 /* indirect blocks */
1807 meta_blocks = 1;
1808 /* double indirect blocks */
1809 meta_blocks += 1 + (1LL << (bits-2));
1810 /* tripple indirect blocks */
1811 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1812
1813 upper_limit -= meta_blocks;
1814 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001815
1816 res += 1LL << (bits-2);
1817 res += 1LL << (2*(bits-2));
1818 res += 1LL << (3*(bits-2));
1819 res <<= bits;
1820 if (res > upper_limit)
1821 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001822
1823 if (res > MAX_LFS_FILESIZE)
1824 res = MAX_LFS_FILESIZE;
1825
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001826 return res;
1827}
1828
Mingming Cao617ba132006-10-11 01:20:53 -07001829static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001830 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001831{
Mingming Cao617ba132006-10-11 01:20:53 -07001832 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001833 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001834 int has_super = 0;
1835
1836 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1837
Mingming Cao617ba132006-10-11 01:20:53 -07001838 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001839 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001840 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001841 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001842 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001843 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001844 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001845}
1846
Alex Tomasc9de5602008-01-29 00:19:52 -05001847/**
1848 * ext4_get_stripe_size: Get the stripe size.
1849 * @sbi: In memory super block info
1850 *
1851 * If we have specified it via mount option, then
1852 * use the mount option value. If the value specified at mount time is
1853 * greater than the blocks per group use the super block value.
1854 * If the super block value is greater than blocks per group return 0.
1855 * Allocator needs it be less than blocks per group.
1856 *
1857 */
1858static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1859{
1860 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
1861 unsigned long stripe_width =
1862 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
1863
1864 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
1865 return sbi->s_stripe;
1866
1867 if (stripe_width <= sbi->s_blocks_per_group)
1868 return stripe_width;
1869
1870 if (stride <= sbi->s_blocks_per_group)
1871 return stride;
1872
1873 return 0;
1874}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001875
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001876static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04001877 __releases(kernel_lock)
1878 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001879
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001880{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001881 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07001882 struct ext4_super_block *es = NULL;
1883 struct ext4_sb_info *sbi;
1884 ext4_fsblk_t block;
1885 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001886 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001887 unsigned long offset = 0;
1888 unsigned int journal_inum = 0;
1889 unsigned long journal_devnum = 0;
1890 unsigned long def_mount_opts;
1891 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04001892 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05001893 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08001894 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001895 int blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001896 int db_count;
1897 int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001898 int needs_recovery, has_huge_files;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001899 __le32 features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001900 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07001901 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902
1903 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
1904 if (!sbi)
1905 return -ENOMEM;
1906 sb->s_fs_info = sbi;
1907 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001908 sbi->s_resuid = EXT4_DEF_RESUID;
1909 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001910 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07001911 sbi->s_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001912
1913 unlock_kernel();
1914
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04001915 /* Cleanup superblock name */
1916 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
1917 *cp = '!';
1918
Mingming Cao617ba132006-10-11 01:20:53 -07001919 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001920 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07001921 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001922 goto out_fail;
1923 }
1924
1925 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001926 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001927 * block sizes. We need to calculate the offset from buffer start.
1928 */
Mingming Cao617ba132006-10-11 01:20:53 -07001929 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001930 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
1931 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001932 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001933 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001934 }
1935
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001936 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001937 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001938 goto out_fail;
1939 }
1940 /*
1941 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07001942 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001943 */
Mingming Cao617ba132006-10-11 01:20:53 -07001944 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001945 sbi->s_es = es;
1946 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07001947 if (sb->s_magic != EXT4_SUPER_MAGIC)
1948 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001949
1950 /* Set defaults before we parse the mount options */
1951 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07001952 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001953 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07001954 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001955 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07001956 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001957 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04001958#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07001959 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001960 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001961#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001962#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07001963 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001964 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001965#endif
Mingming Cao617ba132006-10-11 01:20:53 -07001966 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
1967 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
1968 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
1969 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
1970 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
1971 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001972
Mingming Cao617ba132006-10-11 01:20:53 -07001973 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001974 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05001975 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07001976 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05001977 else
1978 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979
1980 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
1981 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
1982
1983 set_opt(sbi->s_mount_opt, RESERVATION);
Eric Sandeen571640c2008-05-26 12:29:46 -04001984 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001985
Mingming Cao1e2462f2007-07-18 09:00:55 -04001986 /*
1987 * turn on extents feature by default in ext4 filesystem
Eric Sandeene4079a12008-07-11 19:27:31 -04001988 * only if feature flag already set by mkfs or tune2fs.
1989 * Use -o noextents to turn it off
Mingming Cao1e2462f2007-07-18 09:00:55 -04001990 */
Eric Sandeene4079a12008-07-11 19:27:31 -04001991 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
1992 set_opt(sbi->s_mount_opt, EXTENTS);
1993 else
1994 ext4_warning(sb, __func__,
1995 "extents feature not enabled on this filesystem, "
1996 "use tune2fs.\n");
Mingming Cao1e2462f2007-07-18 09:00:55 -04001997
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001998 /*
1999 * enable delayed allocation by default
2000 * Use -o nodelalloc to turn it off
2001 */
2002 set_opt(sbi->s_mount_opt, DELALLOC);
2003
2004
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002005 if (!parse_options((char *) data, sb, &journal_inum, &journal_devnum,
2006 NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002007 goto failed_mount;
2008
2009 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002010 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002011
Mingming Cao617ba132006-10-11 01:20:53 -07002012 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2013 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2014 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2015 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002016 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002017 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002018 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002019
2020 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002021 * Check feature flags regardless of the revision level, since we
2022 * previously didn't change the revision level when setting the flags,
2023 * so there is a chance incompat flags are set on a rev 0 filesystem.
2024 */
Mingming Cao617ba132006-10-11 01:20:53 -07002025 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002026 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002027 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002028 "unsupported optional features (%x).\n",
2029 sb->s_id, le32_to_cpu(features));
2030 goto failed_mount;
2031 }
Mingming Cao617ba132006-10-11 01:20:53 -07002032 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002033 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002034 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002035 "unsupported optional features (%x).\n",
2036 sb->s_id, le32_to_cpu(features));
2037 goto failed_mount;
2038 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002039 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2040 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2041 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002042 /*
2043 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002044 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002045 */
2046 if (sizeof(root->i_blocks) < sizeof(u64) &&
2047 !(sb->s_flags & MS_RDONLY)) {
2048 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2049 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002050 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002051 goto failed_mount;
2052 }
2053 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002054 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2055
Mingming Cao617ba132006-10-11 01:20:53 -07002056 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2057 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002058 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002059 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002060 blocksize, sb->s_id);
2061 goto failed_mount;
2062 }
2063
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002064 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002065
2066 /* Validate the filesystem blocksize */
2067 if (!sb_set_blocksize(sb, blocksize)) {
2068 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2069 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002070 goto failed_mount;
2071 }
2072
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002073 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002074 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2075 offset = do_div(logical_sb_block, blocksize);
2076 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002077 if (!bh) {
2078 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002079 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002080 goto failed_mount;
2081 }
Mingming Cao617ba132006-10-11 01:20:53 -07002082 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002083 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002084 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002085 printk(KERN_ERR
2086 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002087 goto failed_mount;
2088 }
2089 }
2090
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002091 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2092 has_huge_files);
2093 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002094
Mingming Cao617ba132006-10-11 01:20:53 -07002095 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2096 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2097 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002098 } else {
2099 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2100 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002101 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002102 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002103 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002104 printk(KERN_ERR
2105 "EXT4-fs: unsupported inode size: %d\n",
2106 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002107 goto failed_mount;
2108 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002109 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2110 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002111 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002112 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2113 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002114 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002115 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002116 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002117 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002118 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002119 sbi->s_desc_size);
2120 goto failed_mount;
2121 }
2122 } else
2123 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002124 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002125 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002126 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002127 goto cantfind_ext4;
2128 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002129 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002130 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002131 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2132 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002133 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002134 sbi->s_sbh = bh;
2135 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002136 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2137 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002138 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002139 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2140 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002141 i = le32_to_cpu(es->s_flags);
2142 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2143 sbi->s_hash_unsigned = 3;
2144 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2145#ifdef __CHAR_UNSIGNED__
2146 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2147 sbi->s_hash_unsigned = 3;
2148#else
2149 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2150#endif
2151 sb->s_dirt = 1;
2152 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002153
2154 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002155 printk(KERN_ERR
2156 "EXT4-fs: #blocks per group too big: %lu\n",
2157 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002158 goto failed_mount;
2159 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002160 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002161 printk(KERN_ERR
2162 "EXT4-fs: #inodes per group too big: %lu\n",
2163 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002164 goto failed_mount;
2165 }
2166
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002167 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002168 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002169 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002170 " too large to mount safely\n", sb->s_id);
2171 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002172 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002173 "enabled\n");
2174 goto failed_mount;
2175 }
2176
Mingming Cao617ba132006-10-11 01:20:53 -07002177 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2178 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002179
2180 /* ensure blocks_count calculation below doesn't sign-extend */
2181 if (ext4_blocks_count(es) + EXT4_BLOCKS_PER_GROUP(sb) <
2182 le32_to_cpu(es->s_first_data_block) + 1) {
2183 printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu, "
2184 "first data block %u, blocks per group %lu\n",
2185 ext4_blocks_count(es),
2186 le32_to_cpu(es->s_first_data_block),
2187 EXT4_BLOCKS_PER_GROUP(sb));
2188 goto failed_mount;
2189 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002190 blocks_count = (ext4_blocks_count(es) -
2191 le32_to_cpu(es->s_first_data_block) +
2192 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2193 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
2194 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002195 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2196 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002197 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002198 GFP_KERNEL);
2199 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002200 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002201 goto failed_mount;
2202 }
2203
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002204#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002205 if (ext4_proc_root)
2206 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
2207
Theodore Ts'o240799c2008-10-09 23:53:47 -04002208 if (sbi->s_proc)
2209 proc_create_data("inode_readahead_blks", 0644, sbi->s_proc,
2210 &ext4_ui_proc_fops,
2211 &sbi->s_inode_readahead_blks);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002212#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002213
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002214 bgl_lock_init(&sbi->s_blockgroup_lock);
2215
2216 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002217 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002218 sbi->s_group_desc[i] = sb_bread(sb, block);
2219 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002220 printk(KERN_ERR "EXT4-fs: "
2221 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002222 db_count = i;
2223 goto failed_mount2;
2224 }
2225 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002226 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002227 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002228 goto failed_mount2;
2229 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002230 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2231 if (!ext4_fill_flex_info(sb)) {
2232 printk(KERN_ERR
2233 "EXT4-fs: unable to initialize "
2234 "flex_bg meta info!\n");
2235 goto failed_mount2;
2236 }
2237
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002238 sbi->s_gdb_count = db_count;
2239 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2240 spin_lock_init(&sbi->s_next_gen_lock);
2241
Peter Zijlstra833f4072007-10-16 23:25:45 -07002242 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2243 ext4_count_free_blocks(sb));
2244 if (!err) {
2245 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2246 ext4_count_free_inodes(sb));
2247 }
2248 if (!err) {
2249 err = percpu_counter_init(&sbi->s_dirs_counter,
2250 ext4_count_dirs(sb));
2251 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002252 if (!err) {
2253 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2254 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002255 if (err) {
2256 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2257 goto failed_mount3;
2258 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002259
Alex Tomasc9de5602008-01-29 00:19:52 -05002260 sbi->s_stripe = ext4_get_stripe_size(sbi);
2261
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002262 /*
2263 * set up enough so that it can read an inode
2264 */
Mingming Cao617ba132006-10-11 01:20:53 -07002265 sb->s_op = &ext4_sops;
2266 sb->s_export_op = &ext4_export_ops;
2267 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002268#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002269 sb->s_qcop = &ext4_qctl_operations;
2270 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002271#endif
2272 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2273
2274 sb->s_root = NULL;
2275
2276 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002277 EXT4_HAS_INCOMPAT_FEATURE(sb,
2278 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002279
2280 /*
2281 * The first inode we look at is the journal inode. Don't try
2282 * root first: it may be modified in the journal!
2283 */
2284 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002285 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2286 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002287 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002288 if (!(sb->s_flags & MS_RDONLY) &&
2289 EXT4_SB(sb)->s_journal->j_failed_commit) {
2290 printk(KERN_CRIT "EXT4-fs error (device %s): "
2291 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002292 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002293 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002294 if (test_opt(sb, ERRORS_RO)) {
2295 printk(KERN_CRIT
2296 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002297 sb->s_flags |= MS_RDONLY;
2298 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2299 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2300 }
2301 if (test_opt(sb, ERRORS_PANIC)) {
2302 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2303 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2304 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002305 goto failed_mount4;
2306 }
2307 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002308 } else if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07002309 if (ext4_create_journal(sb, es, journal_inum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002310 goto failed_mount3;
Frank Mayhar03901312009-01-07 00:06:22 -05002311 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2312 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2313 printk(KERN_ERR "EXT4-fs: required journal recovery "
2314 "suppressed and not mounted read-only\n");
2315 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002316 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002317 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2318 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2319 sbi->s_journal = NULL;
2320 needs_recovery = 0;
2321 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002322 }
2323
Jose R. Santoseb40a092007-07-18 08:37:25 -04002324 if (ext4_blocks_count(es) > 0xffffffffULL &&
2325 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2326 JBD2_FEATURE_INCOMPAT_64BIT)) {
2327 printk(KERN_ERR "ext4: Failed to set 64-bit journal feature\n");
2328 goto failed_mount4;
2329 }
2330
Girish Shilamkar818d2762008-01-28 23:58:27 -05002331 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2332 jbd2_journal_set_features(sbi->s_journal,
2333 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2334 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2335 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2336 jbd2_journal_set_features(sbi->s_journal,
2337 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2338 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2339 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2340 } else {
2341 jbd2_journal_clear_features(sbi->s_journal,
2342 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2343 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2344 }
2345
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002346 /* We have now updated the journal if required, so we can
2347 * validate the data journaling mode. */
2348 switch (test_opt(sb, DATA_FLAGS)) {
2349 case 0:
2350 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002351 * capabilities: ORDERED_DATA if the journal can
2352 * cope, else JOURNAL_DATA
2353 */
Mingming Caodab291a2006-10-11 01:21:01 -07002354 if (jbd2_journal_check_available_features
2355 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002356 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2357 else
2358 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2359 break;
2360
Mingming Cao617ba132006-10-11 01:20:53 -07002361 case EXT4_MOUNT_ORDERED_DATA:
2362 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002363 if (!jbd2_journal_check_available_features
2364 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002365 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002366 "requested data journaling mode\n");
2367 goto failed_mount4;
2368 }
2369 default:
2370 break;
2371 }
2372
Frank Mayhar03901312009-01-07 00:06:22 -05002373no_journal:
2374
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002375 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002376 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2377 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002378 "its supported only with writeback mode\n");
2379 clear_opt(sbi->s_mount_opt, NOBH);
2380 }
2381 }
2382 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002383 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002384 * so we can safely mount the rest of the filesystem now.
2385 */
2386
David Howells1d1fe1e2008-02-07 00:15:37 -08002387 root = ext4_iget(sb, EXT4_ROOT_INO);
2388 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002389 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002390 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002391 goto failed_mount4;
2392 }
2393 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002394 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002395 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002396 goto failed_mount4;
2397 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002398 sb->s_root = d_alloc_root(root);
2399 if (!sb->s_root) {
2400 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2401 iput(root);
2402 ret = -ENOMEM;
2403 goto failed_mount4;
2404 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002405
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002406 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002407
2408 /* determine the minimum size of new large inodes, if present */
2409 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2410 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2411 EXT4_GOOD_OLD_INODE_SIZE;
2412 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2413 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2414 if (sbi->s_want_extra_isize <
2415 le16_to_cpu(es->s_want_extra_isize))
2416 sbi->s_want_extra_isize =
2417 le16_to_cpu(es->s_want_extra_isize);
2418 if (sbi->s_want_extra_isize <
2419 le16_to_cpu(es->s_min_extra_isize))
2420 sbi->s_want_extra_isize =
2421 le16_to_cpu(es->s_min_extra_isize);
2422 }
2423 }
2424 /* Check if enough inode space is available */
2425 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2426 sbi->s_inode_size) {
2427 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2428 EXT4_GOOD_OLD_INODE_SIZE;
2429 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2430 "available.\n");
2431 }
2432
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002433 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2434 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2435 "requested data journaling mode\n");
2436 clear_opt(sbi->s_mount_opt, DELALLOC);
2437 } else if (test_opt(sb, DELALLOC))
2438 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2439
2440 ext4_ext_init(sb);
2441 err = ext4_mb_init(sb, needs_recovery);
2442 if (err) {
2443 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2444 err);
2445 goto failed_mount4;
2446 }
2447
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002448 /*
2449 * akpm: core read_super() calls in here with the superblock locked.
2450 * That deadlocks, because orphan cleanup needs to lock the superblock
2451 * in numerous places. Here we just pop the lock - it's relatively
2452 * harmless, because we are now ready to accept write_super() requests,
2453 * and aviro says that's the only reason for hanging onto the
2454 * superblock lock.
2455 */
Mingming Cao617ba132006-10-11 01:20:53 -07002456 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2457 ext4_orphan_cleanup(sb, es);
2458 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002459 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002460 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002461 ext4_mark_recovery_complete(sb, es);
2462 }
2463 if (EXT4_SB(sb)->s_journal) {
2464 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2465 descr = " journalled data mode";
2466 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2467 descr = " ordered data mode";
2468 else
2469 descr = " writeback data mode";
2470 } else
2471 descr = "out journal";
2472
2473 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2474 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475
2476 lock_kernel();
2477 return 0;
2478
Mingming Cao617ba132006-10-11 01:20:53 -07002479cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002480 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002481 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002482 sb->s_id);
2483 goto failed_mount;
2484
2485failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002486 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2487 if (sbi->s_journal) {
2488 jbd2_journal_destroy(sbi->s_journal);
2489 sbi->s_journal = NULL;
2490 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002491failed_mount3:
2492 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2493 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2494 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002495 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002496failed_mount2:
2497 for (i = 0; i < db_count; i++)
2498 brelse(sbi->s_group_desc[i]);
2499 kfree(sbi->s_group_desc);
2500failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002501 if (sbi->s_proc) {
2502 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002503 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002504 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505#ifdef CONFIG_QUOTA
2506 for (i = 0; i < MAXQUOTAS; i++)
2507 kfree(sbi->s_qf_names[i]);
2508#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002509 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002510 brelse(bh);
2511out_fail:
2512 sb->s_fs_info = NULL;
2513 kfree(sbi);
2514 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002515 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002516}
2517
2518/*
2519 * Setup any per-fs journal parameters now. We'll do this both on
2520 * initial mount, once the journal has been initialised but before we've
2521 * done any recovery; and again on any subsequent remount.
2522 */
Mingming Cao617ba132006-10-11 01:20:53 -07002523static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002524{
Mingming Cao617ba132006-10-11 01:20:53 -07002525 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002526
2527 if (sbi->s_commit_interval)
2528 journal->j_commit_interval = sbi->s_commit_interval;
Mingming Cao617ba132006-10-11 01:20:53 -07002529 /* We could also set up an ext4-specific default for the commit
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002530 * interval here, but for now we'll just fall back to the jbd
2531 * default. */
2532
2533 spin_lock(&journal->j_state_lock);
2534 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002535 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002536 else
Mingming Caodab291a2006-10-11 01:21:01 -07002537 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002538 if (test_opt(sb, DATA_ERR_ABORT))
2539 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2540 else
2541 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002542 spin_unlock(&journal->j_state_lock);
2543}
2544
Mingming Cao617ba132006-10-11 01:20:53 -07002545static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002546 unsigned int journal_inum)
2547{
2548 struct inode *journal_inode;
2549 journal_t *journal;
2550
Frank Mayhar03901312009-01-07 00:06:22 -05002551 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2552
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553 /* First, test for the existence of a valid inode on disk. Bad
2554 * things happen if we iget() an unused inode, as the subsequent
2555 * iput() will try to delete it. */
2556
David Howells1d1fe1e2008-02-07 00:15:37 -08002557 journal_inode = ext4_iget(sb, journal_inum);
2558 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002559 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002560 return NULL;
2561 }
2562 if (!journal_inode->i_nlink) {
2563 make_bad_inode(journal_inode);
2564 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002565 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002566 return NULL;
2567 }
2568
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002569 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002570 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002571 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002572 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002573 iput(journal_inode);
2574 return NULL;
2575 }
2576
Mingming Caodab291a2006-10-11 01:21:01 -07002577 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002578 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002579 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002580 iput(journal_inode);
2581 return NULL;
2582 }
2583 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002584 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002585 return journal;
2586}
2587
Mingming Cao617ba132006-10-11 01:20:53 -07002588static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002589 dev_t j_dev)
2590{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002591 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002592 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002593 ext4_fsblk_t start;
2594 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002595 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002596 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002597 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002598 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002599 struct block_device *bdev;
2600
Frank Mayhar03901312009-01-07 00:06:22 -05002601 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2602
Mingming Cao617ba132006-10-11 01:20:53 -07002603 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002604 if (bdev == NULL)
2605 return NULL;
2606
2607 if (bd_claim(bdev, sb)) {
2608 printk(KERN_ERR
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002609 "EXT4: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002610 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002611 return NULL;
2612 }
2613
2614 blocksize = sb->s_blocksize;
2615 hblock = bdev_hardsect_size(bdev);
2616 if (blocksize < hblock) {
2617 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002618 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002619 goto out_bdev;
2620 }
2621
Mingming Cao617ba132006-10-11 01:20:53 -07002622 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2623 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002624 set_blocksize(bdev, blocksize);
2625 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002626 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002627 "external journal\n");
2628 goto out_bdev;
2629 }
2630
Mingming Cao617ba132006-10-11 01:20:53 -07002631 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2632 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002633 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002634 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2635 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002636 "bad superblock\n");
2637 brelse(bh);
2638 goto out_bdev;
2639 }
2640
Mingming Cao617ba132006-10-11 01:20:53 -07002641 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2642 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002643 brelse(bh);
2644 goto out_bdev;
2645 }
2646
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002647 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002648 start = sb_block + 1;
2649 brelse(bh); /* we're done with the superblock */
2650
Mingming Caodab291a2006-10-11 01:21:01 -07002651 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002652 start, len, blocksize);
2653 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002654 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002655 goto out_bdev;
2656 }
2657 journal->j_private = sb;
2658 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2659 wait_on_buffer(journal->j_sb_buffer);
2660 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002661 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002662 goto out_journal;
2663 }
2664 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002665 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002666 "user (unsupported) - %d\n",
2667 be32_to_cpu(journal->j_superblock->s_nr_users));
2668 goto out_journal;
2669 }
Mingming Cao617ba132006-10-11 01:20:53 -07002670 EXT4_SB(sb)->journal_bdev = bdev;
2671 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002672 return journal;
2673out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07002674 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002675out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07002676 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002677 return NULL;
2678}
2679
Mingming Cao617ba132006-10-11 01:20:53 -07002680static int ext4_load_journal(struct super_block *sb,
2681 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002682 unsigned long journal_devnum)
2683{
2684 journal_t *journal;
2685 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
2686 dev_t journal_dev;
2687 int err = 0;
2688 int really_read_only;
2689
Frank Mayhar03901312009-01-07 00:06:22 -05002690 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2691
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692 if (journal_devnum &&
2693 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002694 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002695 "numbers have changed\n");
2696 journal_dev = new_decode_dev(journal_devnum);
2697 } else
2698 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
2699
2700 really_read_only = bdev_read_only(sb->s_bdev);
2701
2702 /*
2703 * Are we loading a blank journal or performing recovery after a
2704 * crash? For recovery, we need to check in advance whether we
2705 * can get read-write access to the device.
2706 */
2707
Mingming Cao617ba132006-10-11 01:20:53 -07002708 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002709 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002710 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002711 "required on readonly filesystem.\n");
2712 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07002713 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002714 "unavailable, cannot proceed.\n");
2715 return -EROFS;
2716 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002717 printk(KERN_INFO "EXT4-fs: write access will "
2718 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002719 }
2720 }
2721
2722 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07002723 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002724 "and inode journals!\n");
2725 return -EINVAL;
2726 }
2727
2728 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07002729 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002730 return -EINVAL;
2731 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002732 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002733 return -EINVAL;
2734 }
2735
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002736 if (journal->j_flags & JBD2_BARRIER)
2737 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
2738 else
2739 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
2740
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002741 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07002742 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002743 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002744 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002745 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002746 return err;
2747 }
2748 }
2749
Mingming Cao617ba132006-10-11 01:20:53 -07002750 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07002751 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002752 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07002753 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002754
2755 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002756 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002757 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002758 return err;
2759 }
2760
Mingming Cao617ba132006-10-11 01:20:53 -07002761 EXT4_SB(sb)->s_journal = journal;
2762 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002763
2764 if (journal_devnum &&
2765 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2766 es->s_journal_dev = cpu_to_le32(journal_devnum);
2767 sb->s_dirt = 1;
2768
2769 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07002770 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002771 }
2772
2773 return 0;
2774}
2775
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002776static int ext4_create_journal(struct super_block *sb,
2777 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778 unsigned int journal_inum)
2779{
2780 journal_t *journal;
Borislav Petkov6c675bd2007-07-15 23:41:45 -07002781 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002782
2783 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002784 printk(KERN_ERR "EXT4-fs: readonly filesystem when trying to "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002785 "create journal.\n");
2786 return -EROFS;
2787 }
2788
Borislav Petkov6c675bd2007-07-15 23:41:45 -07002789 journal = ext4_get_journal(sb, journal_inum);
2790 if (!journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002791 return -EINVAL;
2792
Mingming Cao617ba132006-10-11 01:20:53 -07002793 printk(KERN_INFO "EXT4-fs: creating new journal on inode %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002794 journal_inum);
2795
Borislav Petkov6c675bd2007-07-15 23:41:45 -07002796 err = jbd2_journal_create(journal);
2797 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002798 printk(KERN_ERR "EXT4-fs: error creating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002799 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002800 return -EIO;
2801 }
2802
Mingming Cao617ba132006-10-11 01:20:53 -07002803 EXT4_SB(sb)->s_journal = journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002804
Mingming Cao617ba132006-10-11 01:20:53 -07002805 ext4_update_dynamic_rev(sb);
2806 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
2807 EXT4_SET_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002808
2809 es->s_journal_inum = cpu_to_le32(journal_inum);
2810 sb->s_dirt = 1;
2811
2812 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07002813 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002814
2815 return 0;
2816}
2817
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002818static void ext4_commit_super(struct super_block *sb,
2819 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002820{
Mingming Cao617ba132006-10-11 01:20:53 -07002821 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002822
2823 if (!sbh)
2824 return;
Theodore Ts'o914258b2008-10-06 21:35:40 -04002825 if (buffer_write_io_error(sbh)) {
2826 /*
2827 * Oh, dear. A previous attempt to write the
2828 * superblock failed. This could happen because the
2829 * USB device was yanked out. Or it could happen to
2830 * be a transient write error and maybe the block will
2831 * be remapped. Nothing we can do but to retry the
2832 * write and hope for the best.
2833 */
2834 printk(KERN_ERR "ext4: previous I/O error to "
2835 "superblock detected for %s.\n", sb->s_id);
2836 clear_buffer_write_io_error(sbh);
2837 set_buffer_uptodate(sbh);
2838 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002839 es->s_wtime = cpu_to_le32(get_seconds());
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002840 ext4_free_blocks_count_set(es, ext4_count_free_blocks(sb));
Mingming Cao617ba132006-10-11 01:20:53 -07002841 es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002842 BUFFER_TRACE(sbh, "marking dirty");
2843 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002844 if (sync) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002845 sync_dirty_buffer(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002846 if (buffer_write_io_error(sbh)) {
2847 printk(KERN_ERR "ext4: I/O error while writing "
2848 "superblock for %s.\n", sb->s_id);
2849 clear_buffer_write_io_error(sbh);
2850 set_buffer_uptodate(sbh);
2851 }
2852 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002853}
2854
2855
2856/*
2857 * Have we just finished recovery? If so, and if we are mounting (or
2858 * remounting) the filesystem readonly, then we will end up with a
2859 * consistent fs on disk. Record that fact.
2860 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002861static void ext4_mark_recovery_complete(struct super_block *sb,
2862 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002863{
Mingming Cao617ba132006-10-11 01:20:53 -07002864 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002865
Frank Mayhar03901312009-01-07 00:06:22 -05002866 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2867 BUG_ON(journal != NULL);
2868 return;
2869 }
Mingming Caodab291a2006-10-11 01:21:01 -07002870 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002871 if (jbd2_journal_flush(journal) < 0)
2872 goto out;
2873
Jan Kara32c37732007-07-15 23:41:09 -07002874 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002875 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002876 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002877 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002878 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002879 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002880 }
Jan Kara32c37732007-07-15 23:41:09 -07002881 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002882
2883out:
Mingming Caodab291a2006-10-11 01:21:01 -07002884 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002885}
2886
2887/*
2888 * If we are mounting (or read-write remounting) a filesystem whose journal
2889 * has recorded an error from a previous lifetime, move that error to the
2890 * main filesystem now.
2891 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002892static void ext4_clear_journal_err(struct super_block *sb,
2893 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894{
2895 journal_t *journal;
2896 int j_errno;
2897 const char *errstr;
2898
Frank Mayhar03901312009-01-07 00:06:22 -05002899 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2900
Mingming Cao617ba132006-10-11 01:20:53 -07002901 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002902
2903 /*
2904 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07002905 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002906 */
2907
Mingming Caodab291a2006-10-11 01:21:01 -07002908 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002909 if (j_errno) {
2910 char nbuf[16];
2911
Mingming Cao617ba132006-10-11 01:20:53 -07002912 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04002913 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002914 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04002915 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916 "filesystem check.");
2917
Mingming Cao617ba132006-10-11 01:20:53 -07002918 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2919 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002920 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002921
Mingming Caodab291a2006-10-11 01:21:01 -07002922 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923 }
2924}
2925
2926/*
2927 * Force the running and committing transactions to commit,
2928 * and wait on the commit.
2929 */
Mingming Cao617ba132006-10-11 01:20:53 -07002930int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002931{
2932 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05002933 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002934
2935 if (sb->s_flags & MS_RDONLY)
2936 return 0;
2937
Mingming Cao617ba132006-10-11 01:20:53 -07002938 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05002939 if (journal) {
2940 sb->s_dirt = 0;
2941 ret = ext4_journal_force_commit(journal);
2942 }
2943
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002944 return ret;
2945}
2946
2947/*
Mingming Cao617ba132006-10-11 01:20:53 -07002948 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002949 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05002950 * point. (We can probably nuke this function altogether, and remove
2951 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002952 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002953static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002954{
Frank Mayhar03901312009-01-07 00:06:22 -05002955 if (EXT4_SB(sb)->s_journal) {
2956 if (mutex_trylock(&sb->s_lock) != 0)
2957 BUG();
2958 sb->s_dirt = 0;
2959 } else {
2960 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
2961 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002962}
2963
Mingming Cao617ba132006-10-11 01:20:53 -07002964static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002965{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05002966 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002967
Theodore Ts'oede86cc2008-10-05 20:50:06 -04002968 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002969 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05002970 if (EXT4_SB(sb)->s_journal) {
2971 if (wait)
2972 ret = ext4_force_commit(sb);
2973 else
2974 jbd2_journal_start_commit(EXT4_SB(sb)->s_journal, NULL);
2975 } else {
2976 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
2977 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05002978 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979}
2980
2981/*
2982 * LVM calls this function before a (read-only) snapshot is created. This
2983 * gives us a chance to flush the journal completely and mark the fs clean.
2984 */
Mingming Cao617ba132006-10-11 01:20:53 -07002985static void ext4_write_super_lockfs(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986{
2987 sb->s_dirt = 0;
2988
2989 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002990 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002991
Frank Mayhar03901312009-01-07 00:06:22 -05002992 if (journal) {
2993 /* Now we set up the journal barrier. */
2994 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002995
Frank Mayhar03901312009-01-07 00:06:22 -05002996 /*
2997 * We don't want to clear needs_recovery flag when we
2998 * failed to flush the journal.
2999 */
3000 if (jbd2_journal_flush(journal) < 0)
3001 return;
3002 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003003
3004 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003005 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3006 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003007 }
3008}
3009
3010/*
3011 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3012 * flag here, even though the filesystem is not technically dirty yet.
3013 */
Mingming Cao617ba132006-10-11 01:20:53 -07003014static void ext4_unlockfs(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003015{
Frank Mayhar03901312009-01-07 00:06:22 -05003016 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003017 lock_super(sb);
3018 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003019 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3020 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003021 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003022 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003023 }
3024}
3025
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003026static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003027{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003028 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003029 struct ext4_sb_info *sbi = EXT4_SB(sb);
3030 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003031 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003032 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003033 ext4_group_t g;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003034 int err;
3035#ifdef CONFIG_QUOTA
3036 int i;
3037#endif
3038
3039 /* Store the original options */
3040 old_sb_flags = sb->s_flags;
3041 old_opts.s_mount_opt = sbi->s_mount_opt;
3042 old_opts.s_resuid = sbi->s_resuid;
3043 old_opts.s_resgid = sbi->s_resgid;
3044 old_opts.s_commit_interval = sbi->s_commit_interval;
3045#ifdef CONFIG_QUOTA
3046 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3047 for (i = 0; i < MAXQUOTAS; i++)
3048 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3049#endif
3050
3051 /*
3052 * Allow the "check" option to be passed as a remount option.
3053 */
3054 if (!parse_options(data, sb, NULL, NULL, &n_blocks_count, 1)) {
3055 err = -EINVAL;
3056 goto restore_opts;
3057 }
3058
Mingming Cao617ba132006-10-11 01:20:53 -07003059 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003060 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003061
3062 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003063 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003064
3065 es = sbi->s_es;
3066
Frank Mayhar03901312009-01-07 00:06:22 -05003067 if (sbi->s_journal)
3068 ext4_init_journal_params(sb, sbi->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003069
3070 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003071 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003072 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003073 err = -EROFS;
3074 goto restore_opts;
3075 }
3076
3077 if (*flags & MS_RDONLY) {
3078 /*
3079 * First of all, the unconditional stuff we have to do
3080 * to disable replay of the journal when we next remount
3081 */
3082 sb->s_flags |= MS_RDONLY;
3083
3084 /*
3085 * OK, test if we are remounting a valid rw partition
3086 * readonly, and if so set the rdonly flag and then
3087 * mark the partition as valid again.
3088 */
Mingming Cao617ba132006-10-11 01:20:53 -07003089 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3090 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003091 es->s_state = cpu_to_le16(sbi->s_mount_state);
3092
Jan Kara32c37732007-07-15 23:41:09 -07003093 /*
3094 * We have to unlock super so that we can wait for
3095 * transactions.
3096 */
Frank Mayhar03901312009-01-07 00:06:22 -05003097 if (sbi->s_journal) {
3098 unlock_super(sb);
3099 ext4_mark_recovery_complete(sb, es);
3100 lock_super(sb);
3101 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003102 } else {
3103 __le32 ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003104 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3105 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3106 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003107 "remount RDWR because of unsupported "
3108 "optional features (%x).\n",
3109 sb->s_id, le32_to_cpu(ret));
3110 err = -EROFS;
3111 goto restore_opts;
3112 }
Eric Sandeenead65962007-02-10 01:46:08 -08003113
3114 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003115 * Make sure the group descriptor checksums
3116 * are sane. If they aren't, refuse to
3117 * remount r/w.
3118 */
3119 for (g = 0; g < sbi->s_groups_count; g++) {
3120 struct ext4_group_desc *gdp =
3121 ext4_get_group_desc(sb, g, NULL);
3122
3123 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3124 printk(KERN_ERR
3125 "EXT4-fs: ext4_remount: "
3126 "Checksum for group %lu failed (%u!=%u)\n",
3127 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3128 le16_to_cpu(gdp->bg_checksum));
3129 err = -EINVAL;
3130 goto restore_opts;
3131 }
3132 }
3133
3134 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003135 * If we have an unprocessed orphan list hanging
3136 * around from a previously readonly bdev mount,
3137 * require a full umount/remount for now.
3138 */
3139 if (es->s_last_orphan) {
3140 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3141 "remount RDWR because of unprocessed "
3142 "orphan inode list. Please "
3143 "umount/remount instead.\n",
3144 sb->s_id);
3145 err = -EINVAL;
3146 goto restore_opts;
3147 }
3148
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003149 /*
3150 * Mounting a RDONLY partition read-write, so reread
3151 * and store the current valid flag. (It may have
3152 * been changed by e2fsck since we originally mounted
3153 * the partition.)
3154 */
Frank Mayhar03901312009-01-07 00:06:22 -05003155 if (sbi->s_journal)
3156 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003157 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003158 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003159 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003160 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003161 sb->s_flags &= ~MS_RDONLY;
3162 }
3163 }
Frank Mayhar03901312009-01-07 00:06:22 -05003164 if (sbi->s_journal == NULL)
3165 ext4_commit_super(sb, es, 1);
3166
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167#ifdef CONFIG_QUOTA
3168 /* Release old quota file names */
3169 for (i = 0; i < MAXQUOTAS; i++)
3170 if (old_opts.s_qf_names[i] &&
3171 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3172 kfree(old_opts.s_qf_names[i]);
3173#endif
3174 return 0;
3175restore_opts:
3176 sb->s_flags = old_sb_flags;
3177 sbi->s_mount_opt = old_opts.s_mount_opt;
3178 sbi->s_resuid = old_opts.s_resuid;
3179 sbi->s_resgid = old_opts.s_resgid;
3180 sbi->s_commit_interval = old_opts.s_commit_interval;
3181#ifdef CONFIG_QUOTA
3182 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3183 for (i = 0; i < MAXQUOTAS; i++) {
3184 if (sbi->s_qf_names[i] &&
3185 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3186 kfree(sbi->s_qf_names[i]);
3187 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3188 }
3189#endif
3190 return err;
3191}
3192
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003193static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003194{
3195 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003196 struct ext4_sb_info *sbi = EXT4_SB(sb);
3197 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003198 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003199
Badari Pulavarty5e700302007-07-15 23:42:00 -07003200 if (test_opt(sb, MINIX_DF)) {
3201 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003202 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003203 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003204 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003205 smp_rmb();
3206
3207 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003208 * Compute the overhead (FS structures). This is constant
3209 * for a given filesystem unless the number of block groups
3210 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003211 */
3212
3213 /*
3214 * All of the blocks before first_data_block are
3215 * overhead
3216 */
3217 overhead = le32_to_cpu(es->s_first_data_block);
3218
3219 /*
3220 * Add the overhead attributed to the superblock and
3221 * block group descriptors. If the sparse superblocks
3222 * feature is turned on, then not all groups have this.
3223 */
3224 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003225 overhead += ext4_bg_has_super(sb, i) +
3226 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003227 cond_resched();
3228 }
3229
3230 /*
3231 * Every block group has an inode bitmap, a block
3232 * bitmap, and an inode table.
3233 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003234 overhead += ngroups * (2 + sbi->s_itb_per_group);
3235 sbi->s_overhead_last = overhead;
3236 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003237 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003238 }
3239
Mingming Cao617ba132006-10-11 01:20:53 -07003240 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003241 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003242 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003243 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3244 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003245 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003246 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3247 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003248 buf->f_bavail = 0;
3249 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003250 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003251 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003252 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003253 fsid = le64_to_cpup((void *)es->s_uuid) ^
3254 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3255 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3256 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003257 return 0;
3258}
3259
3260/* Helper function for writing quotas on sync - we need to start transaction before quota file
3261 * is locked for write. Otherwise the are possible deadlocks:
3262 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003263 * ext4_create() quota_sync()
Mingming Caodab291a2006-10-11 01:21:01 -07003264 * jbd2_journal_start() write_dquot()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003265 * DQUOT_INIT() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003266 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003267 *
3268 */
3269
3270#ifdef CONFIG_QUOTA
3271
3272static inline struct inode *dquot_to_inode(struct dquot *dquot)
3273{
3274 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3275}
3276
Mingming Cao617ba132006-10-11 01:20:53 -07003277static int ext4_dquot_initialize(struct inode *inode, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003278{
3279 handle_t *handle;
3280 int ret, err;
3281
3282 /* We may create quota structure so we need to reserve enough blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003283 handle = ext4_journal_start(inode, 2*EXT4_QUOTA_INIT_BLOCKS(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284 if (IS_ERR(handle))
3285 return PTR_ERR(handle);
3286 ret = dquot_initialize(inode, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003287 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003288 if (!ret)
3289 ret = err;
3290 return ret;
3291}
3292
Mingming Cao617ba132006-10-11 01:20:53 -07003293static int ext4_dquot_drop(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003294{
3295 handle_t *handle;
3296 int ret, err;
3297
3298 /* We may delete quota structure so we need to reserve enough blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003299 handle = ext4_journal_start(inode, 2*EXT4_QUOTA_DEL_BLOCKS(inode->i_sb));
Jan Kara2887df12008-04-29 22:02:07 -04003300 if (IS_ERR(handle)) {
3301 /*
3302 * We call dquot_drop() anyway to at least release references
3303 * to quota structures so that umount does not hang.
3304 */
3305 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003306 return PTR_ERR(handle);
Jan Kara2887df12008-04-29 22:02:07 -04003307 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 ret = dquot_drop(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003309 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003310 if (!ret)
3311 ret = err;
3312 return ret;
3313}
3314
Mingming Cao617ba132006-10-11 01:20:53 -07003315static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003316{
3317 int ret, err;
3318 handle_t *handle;
3319 struct inode *inode;
3320
3321 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003322 handle = ext4_journal_start(inode,
3323 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003324 if (IS_ERR(handle))
3325 return PTR_ERR(handle);
3326 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003327 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003328 if (!ret)
3329 ret = err;
3330 return ret;
3331}
3332
Mingming Cao617ba132006-10-11 01:20:53 -07003333static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334{
3335 int ret, err;
3336 handle_t *handle;
3337
Mingming Cao617ba132006-10-11 01:20:53 -07003338 handle = ext4_journal_start(dquot_to_inode(dquot),
3339 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003340 if (IS_ERR(handle))
3341 return PTR_ERR(handle);
3342 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003343 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003344 if (!ret)
3345 ret = err;
3346 return ret;
3347}
3348
Mingming Cao617ba132006-10-11 01:20:53 -07003349static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003350{
3351 int ret, err;
3352 handle_t *handle;
3353
Mingming Cao617ba132006-10-11 01:20:53 -07003354 handle = ext4_journal_start(dquot_to_inode(dquot),
3355 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003356 if (IS_ERR(handle)) {
3357 /* Release dquot anyway to avoid endless cycle in dqput() */
3358 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003359 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003360 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003361 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003362 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003363 if (!ret)
3364 ret = err;
3365 return ret;
3366}
3367
Mingming Cao617ba132006-10-11 01:20:53 -07003368static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003369{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003370 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003371 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3372 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003373 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003374 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003375 } else {
3376 return dquot_mark_dquot_dirty(dquot);
3377 }
3378}
3379
Mingming Cao617ba132006-10-11 01:20:53 -07003380static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381{
3382 int ret, err;
3383 handle_t *handle;
3384
3385 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003386 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003387 if (IS_ERR(handle))
3388 return PTR_ERR(handle);
3389 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003390 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003391 if (!ret)
3392 ret = err;
3393 return ret;
3394}
3395
3396/*
3397 * Turn on quotas during mount time - we need to find
3398 * the quota file and such...
3399 */
Mingming Cao617ba132006-10-11 01:20:53 -07003400static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401{
Mingming Cao617ba132006-10-11 01:20:53 -07003402 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3403 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003404}
3405
3406/*
3407 * Standard function to be called on quota_on
3408 */
Mingming Cao617ba132006-10-11 01:20:53 -07003409static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003410 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003411{
3412 int err;
Al Viro82646132008-08-02 00:57:06 -04003413 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003414
3415 if (!test_opt(sb, QUOTA))
3416 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003417 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003418 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003419 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003420
Al Viro82646132008-08-02 00:57:06 -04003421 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003422 if (err)
3423 return err;
Jan Kara06235432008-05-13 19:11:51 -04003424
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003425 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003426 if (path.mnt->mnt_sb != sb) {
3427 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003428 return -EXDEV;
3429 }
Jan Kara06235432008-05-13 19:11:51 -04003430 /* Journaling quota? */
3431 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003432 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003433 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003434 printk(KERN_WARNING
3435 "EXT4-fs: Quota file not on filesystem root. "
3436 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003437 }
Jan Kara06235432008-05-13 19:11:51 -04003438
3439 /*
3440 * When we journal data on quota file, we have to flush journal to see
3441 * all updates to the file when we bypass pagecache...
3442 */
Frank Mayhar03901312009-01-07 00:06:22 -05003443 if (EXT4_SB(sb)->s_journal &&
3444 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003445 /*
3446 * We don't need to lock updates but journal_flush() could
3447 * otherwise be livelocked...
3448 */
3449 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003450 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003451 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003452 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003453 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003454 return err;
3455 }
Jan Kara06235432008-05-13 19:11:51 -04003456 }
3457
Al Viro82646132008-08-02 00:57:06 -04003458 err = vfs_quota_on_path(sb, type, format_id, &path);
3459 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003460 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003461}
3462
3463/* Read data from quotafile - avoid pagecache and such because we cannot afford
3464 * acquiring the locks... As quota files are never truncated and quota code
3465 * itself serializes the operations (and noone else should touch the files)
3466 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003467static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003468 size_t len, loff_t off)
3469{
3470 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003471 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 int err = 0;
3473 int offset = off & (sb->s_blocksize - 1);
3474 int tocopy;
3475 size_t toread;
3476 struct buffer_head *bh;
3477 loff_t i_size = i_size_read(inode);
3478
3479 if (off > i_size)
3480 return 0;
3481 if (off+len > i_size)
3482 len = i_size-off;
3483 toread = len;
3484 while (toread > 0) {
3485 tocopy = sb->s_blocksize - offset < toread ?
3486 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003487 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003488 if (err)
3489 return err;
3490 if (!bh) /* A hole? */
3491 memset(data, 0, tocopy);
3492 else
3493 memcpy(data, bh->b_data+offset, tocopy);
3494 brelse(bh);
3495 offset = 0;
3496 toread -= tocopy;
3497 data += tocopy;
3498 blk++;
3499 }
3500 return len;
3501}
3502
3503/* Write to quotafile (we know the transaction is already started and has
3504 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003505static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003506 const char *data, size_t len, loff_t off)
3507{
3508 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003509 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003510 int err = 0;
3511 int offset = off & (sb->s_blocksize - 1);
3512 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003513 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003514 size_t towrite = len;
3515 struct buffer_head *bh;
3516 handle_t *handle = journal_current_handle();
3517
Frank Mayhar03901312009-01-07 00:06:22 -05003518 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003519 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003520 " cancelled because transaction is not started.\n",
3521 (unsigned long long)off, (unsigned long long)len);
3522 return -EIO;
3523 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003524 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3525 while (towrite > 0) {
3526 tocopy = sb->s_blocksize - offset < towrite ?
3527 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003528 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003529 if (!bh)
3530 goto out;
3531 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003532 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003533 if (err) {
3534 brelse(bh);
3535 goto out;
3536 }
3537 }
3538 lock_buffer(bh);
3539 memcpy(bh->b_data+offset, data, tocopy);
3540 flush_dcache_page(bh->b_page);
3541 unlock_buffer(bh);
3542 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003543 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003544 else {
3545 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003546 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003547 mark_buffer_dirty(bh);
3548 }
3549 brelse(bh);
3550 if (err)
3551 goto out;
3552 offset = 0;
3553 towrite -= tocopy;
3554 data += tocopy;
3555 blk++;
3556 }
3557out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003558 if (len == towrite) {
3559 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003561 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003562 if (inode->i_size < off+len-towrite) {
3563 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003564 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003565 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003566 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003567 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003568 mutex_unlock(&inode->i_mutex);
3569 return len - towrite;
3570}
3571
3572#endif
3573
Mingming Cao617ba132006-10-11 01:20:53 -07003574static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003575 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3576{
Mingming Cao617ba132006-10-11 01:20:53 -07003577 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003578}
3579
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003580#ifdef CONFIG_PROC_FS
3581static int ext4_ui_proc_show(struct seq_file *m, void *v)
3582{
3583 unsigned int *p = m->private;
3584
3585 seq_printf(m, "%u\n", *p);
3586 return 0;
3587}
3588
3589static int ext4_ui_proc_open(struct inode *inode, struct file *file)
3590{
3591 return single_open(file, ext4_ui_proc_show, PDE(inode)->data);
3592}
3593
3594static ssize_t ext4_ui_proc_write(struct file *file, const char __user *buf,
3595 size_t cnt, loff_t *ppos)
3596{
Roel Kluin23475e22008-11-26 02:23:19 -05003597 unsigned long *p = PDE(file->f_path.dentry->d_inode)->data;
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003598 char str[32];
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003599
3600 if (cnt >= sizeof(str))
3601 return -EINVAL;
3602 if (copy_from_user(str, buf, cnt))
3603 return -EFAULT;
Roel Kluin23475e22008-11-26 02:23:19 -05003604
3605 *p = simple_strtoul(str, NULL, 0);
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003606 return cnt;
3607}
3608
3609const struct file_operations ext4_ui_proc_fops = {
3610 .owner = THIS_MODULE,
3611 .open = ext4_ui_proc_open,
3612 .read = seq_read,
3613 .llseek = seq_lseek,
3614 .release = single_release,
3615 .write = ext4_ui_proc_write,
3616};
3617#endif
3618
Theodore Ts'o03010a32008-10-10 20:02:48 -04003619static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003620 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003621 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003622 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003623 .kill_sb = kill_block_super,
3624 .fs_flags = FS_REQUIRES_DEV,
3625};
3626
Theodore Ts'o03010a32008-10-10 20:02:48 -04003627#ifdef CONFIG_EXT4DEV_COMPAT
3628static int ext4dev_get_sb(struct file_system_type *fs_type,
3629 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3630{
3631 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3632 "to mount using ext4\n");
3633 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3634 "will go away by 2.6.31\n");
3635 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3636}
3637
3638static struct file_system_type ext4dev_fs_type = {
3639 .owner = THIS_MODULE,
3640 .name = "ext4dev",
3641 .get_sb = ext4dev_get_sb,
3642 .kill_sb = kill_block_super,
3643 .fs_flags = FS_REQUIRES_DEV,
3644};
3645MODULE_ALIAS("ext4dev");
3646#endif
3647
Mingming Cao617ba132006-10-11 01:20:53 -07003648static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003649{
Alex Tomasc9de5602008-01-29 00:19:52 -05003650 int err;
3651
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003652 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003653 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003654 if (err)
3655 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003656
3657 err = init_ext4_xattr();
3658 if (err)
3659 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003660 err = init_inodecache();
3661 if (err)
3662 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003663 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003664 if (err)
3665 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003666#ifdef CONFIG_EXT4DEV_COMPAT
3667 err = register_filesystem(&ext4dev_fs_type);
3668 if (err) {
3669 unregister_filesystem(&ext4_fs_type);
3670 goto out;
3671 }
3672#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003673 return 0;
3674out:
3675 destroy_inodecache();
3676out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003677 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003678out2:
3679 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003680 return err;
3681}
3682
Mingming Cao617ba132006-10-11 01:20:53 -07003683static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003684{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003685 unregister_filesystem(&ext4_fs_type);
3686#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003687 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003688#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003689 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003690 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003691 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003692 remove_proc_entry("fs/ext4", NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003693}
3694
3695MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Mingming Cao617ba132006-10-11 01:20:53 -07003696MODULE_DESCRIPTION("Fourth Extended Filesystem with extents");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003697MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003698module_init(init_ext4_fs)
3699module_exit(exit_ext4_fs)