blob: 8a0ae883f567f7b86607d95377560faeb2fe615d [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;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700139 if (is_journal_aborted(journal)) {
Harvey Harrison46e665e2008-04-17 10:38:59 -0400140 ext4_abort(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700141 "Detected aborted journal");
142 return ERR_PTR(-EROFS);
143 }
144
Mingming Caodab291a2006-10-11 01:21:01 -0700145 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700146}
147
148/*
149 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700150 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700151 * that sync() will call the filesystem's write_super callback if
152 * appropriate.
153 */
Mingming Cao617ba132006-10-11 01:20:53 -0700154int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700155{
156 struct super_block *sb;
157 int err;
158 int rc;
159
160 sb = handle->h_transaction->t_journal->j_private;
161 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700162 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700163
164 if (!err)
165 err = rc;
166 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700167 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700168 return err;
169}
170
Mingming Cao617ba132006-10-11 01:20:53 -0700171void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700172 struct buffer_head *bh, handle_t *handle, int err)
173{
174 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700175 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700176
177 if (bh)
178 BUFFER_TRACE(bh, "abort");
179
180 if (!handle->h_err)
181 handle->h_err = err;
182
183 if (is_handle_aborted(handle))
184 return;
185
186 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
187 caller, errstr, err_fn);
188
Mingming Caodab291a2006-10-11 01:21:01 -0700189 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700190}
191
192/* Deal with the reporting of failure conditions on a filesystem such as
193 * inconsistencies detected or read IO failures.
194 *
195 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700196 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700197 * write ordering constraints on the superblock which prevent us from
198 * writing it out straight away; and given that the journal is about to
199 * be aborted, we can't rely on the current, or future, transactions to
200 * write out the superblock safely.
201 *
Mingming Caodab291a2006-10-11 01:21:01 -0700202 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700203 * the journal instead. On recovery, the journal will compain about
204 * that error until we've noted it down and cleared it.
205 */
206
Mingming Cao617ba132006-10-11 01:20:53 -0700207static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700208{
Mingming Cao617ba132006-10-11 01:20:53 -0700209 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210
Mingming Cao617ba132006-10-11 01:20:53 -0700211 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
212 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700213
214 if (sb->s_flags & MS_RDONLY)
215 return;
216
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400217 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700218 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219
Mingming Cao617ba132006-10-11 01:20:53 -0700220 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700221 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700222 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700223 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400224 if (test_opt(sb, ERRORS_RO)) {
225 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700226 sb->s_flags |= MS_RDONLY;
227 }
Mingming Cao617ba132006-10-11 01:20:53 -0700228 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700230 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231 sb->s_id);
232}
233
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400234void ext4_error(struct super_block *sb, const char *function,
235 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236{
237 va_list args;
238
239 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400240 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241 vprintk(fmt, args);
242 printk("\n");
243 va_end(args);
244
Mingming Cao617ba132006-10-11 01:20:53 -0700245 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700246}
247
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400248static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700249 char nbuf[16])
250{
251 char *errstr = NULL;
252
253 switch (errno) {
254 case -EIO:
255 errstr = "IO failure";
256 break;
257 case -ENOMEM:
258 errstr = "Out of memory";
259 break;
260 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700261 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700262 errstr = "Journal has aborted";
263 else
264 errstr = "Readonly filesystem";
265 break;
266 default:
267 /* If the caller passed in an extra buffer for unknown
268 * errors, textualise them now. Else we just return
269 * NULL. */
270 if (nbuf) {
271 /* Check for truncated error codes... */
272 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
273 errstr = nbuf;
274 }
275 break;
276 }
277
278 return errstr;
279}
280
Mingming Cao617ba132006-10-11 01:20:53 -0700281/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700282 * automatically and invokes the appropriate error response. */
283
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400284void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700285{
286 char nbuf[16];
287 const char *errstr;
288
289 /* Special case: if the error is EROFS, and we're not already
290 * inside a transaction, then there's really no point in logging
291 * an error. */
292 if (errno == -EROFS && journal_current_handle() == NULL &&
293 (sb->s_flags & MS_RDONLY))
294 return;
295
Mingming Cao617ba132006-10-11 01:20:53 -0700296 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400297 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
298 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700299
Mingming Cao617ba132006-10-11 01:20:53 -0700300 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301}
302
303/*
Mingming Cao617ba132006-10-11 01:20:53 -0700304 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700305 * abort function may be used to deal with unrecoverable failures such
306 * as journal IO errors or ENOMEM at a critical moment in log management.
307 *
308 * We unconditionally force the filesystem into an ABORT|READONLY state,
309 * unless the error response on the fs has been set to panic in which
310 * case we take the easy way out and panic immediately.
311 */
312
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400313void ext4_abort(struct super_block *sb, const char *function,
314 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315{
316 va_list args;
317
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400318 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319
320 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400321 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700322 vprintk(fmt, args);
323 printk("\n");
324 va_end(args);
325
326 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700327 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700328
329 if (sb->s_flags & MS_RDONLY)
330 return;
331
332 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700333 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700334 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700335 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400336 if (EXT4_SB(sb)->s_journal)
337 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700338}
339
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400340void ext4_warning(struct super_block *sb, const char *function,
341 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700342{
343 va_list args;
344
345 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700346 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700347 sb->s_id, function);
348 vprintk(fmt, args);
349 printk("\n");
350 va_end(args);
351}
352
Mingming Cao617ba132006-10-11 01:20:53 -0700353void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700354{
Mingming Cao617ba132006-10-11 01:20:53 -0700355 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700356
Mingming Cao617ba132006-10-11 01:20:53 -0700357 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700358 return;
359
Harvey Harrison46e665e2008-04-17 10:38:59 -0400360 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700361 "updating to rev %d because of new feature flag, "
362 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700363 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700364
Mingming Cao617ba132006-10-11 01:20:53 -0700365 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
366 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
367 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700368 /* leave es->s_feature_*compat flags alone */
369 /* es->s_uuid will be set by e2fsck if empty */
370
371 /*
372 * The rest of the superblock fields should be zero, and if not it
373 * means they are likely already in use, so leave them alone. We
374 * can leave it up to e2fsck to clean up any inconsistencies there.
375 */
376}
377
378/*
379 * Open the external journal device
380 */
Mingming Cao617ba132006-10-11 01:20:53 -0700381static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700382{
383 struct block_device *bdev;
384 char b[BDEVNAME_SIZE];
385
386 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
387 if (IS_ERR(bdev))
388 goto fail;
389 return bdev;
390
391fail:
Mingming Cao617ba132006-10-11 01:20:53 -0700392 printk(KERN_ERR "EXT4: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700393 __bdevname(dev, b), PTR_ERR(bdev));
394 return NULL;
395}
396
397/*
398 * Release the journal device
399 */
Mingming Cao617ba132006-10-11 01:20:53 -0700400static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401{
402 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500403 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700404}
405
Mingming Cao617ba132006-10-11 01:20:53 -0700406static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700407{
408 struct block_device *bdev;
409 int ret = -ENODEV;
410
411 bdev = sbi->journal_bdev;
412 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700413 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700414 sbi->journal_bdev = NULL;
415 }
416 return ret;
417}
418
419static inline struct inode *orphan_list_entry(struct list_head *l)
420{
Mingming Cao617ba132006-10-11 01:20:53 -0700421 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422}
423
Mingming Cao617ba132006-10-11 01:20:53 -0700424static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700425{
426 struct list_head *l;
427
428 printk(KERN_ERR "sb orphan head is %d\n",
429 le32_to_cpu(sbi->s_es->s_last_orphan));
430
431 printk(KERN_ERR "sb_info orphan list:\n");
432 list_for_each(l, &sbi->s_orphan) {
433 struct inode *inode = orphan_list_entry(l);
434 printk(KERN_ERR " "
435 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
436 inode->i_sb->s_id, inode->i_ino, inode,
437 inode->i_mode, inode->i_nlink,
438 NEXT_ORPHAN(inode));
439 }
440}
441
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400442static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700443{
Mingming Cao617ba132006-10-11 01:20:53 -0700444 struct ext4_sb_info *sbi = EXT4_SB(sb);
445 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400446 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700447
Alex Tomasc9de5602008-01-29 00:19:52 -0500448 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700449 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700450 ext4_xattr_put_super(sb);
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400451 err = jbd2_journal_destroy(sbi->s_journal);
Jan Kara47b4a502008-07-11 19:27:31 -0400452 sbi->s_journal = NULL;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400453 if (err < 0)
454 ext4_abort(sb, __func__, "Couldn't clean up the journal");
455
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700456 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700457 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700458 es->s_state = cpu_to_le16(sbi->s_mount_state);
Mingming Cao617ba132006-10-11 01:20:53 -0700459 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700460 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400461 if (sbi->s_proc) {
462 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400463 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400464 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700465
466 for (i = 0; i < sbi->s_gdb_count; i++)
467 brelse(sbi->s_group_desc[i]);
468 kfree(sbi->s_group_desc);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400469 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470 percpu_counter_destroy(&sbi->s_freeblocks_counter);
471 percpu_counter_destroy(&sbi->s_freeinodes_counter);
472 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400473 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474 brelse(sbi->s_sbh);
475#ifdef CONFIG_QUOTA
476 for (i = 0; i < MAXQUOTAS; i++)
477 kfree(sbi->s_qf_names[i]);
478#endif
479
480 /* Debugging code just in case the in-memory inode orphan list
481 * isn't empty. The on-disk one can be non-empty if we've
482 * detected an error and taken the fs readonly, but the
483 * in-memory list had better be clean by this point. */
484 if (!list_empty(&sbi->s_orphan))
485 dump_orphan_list(sb, sbi);
486 J_ASSERT(list_empty(&sbi->s_orphan));
487
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700488 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700489 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
490 /*
491 * Invalidate the journal device's buffers. We don't want them
492 * floating about in memory - the physical journal device may
493 * hotswapped, and it breaks the `ro-after' testing code.
494 */
495 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700496 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700497 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700498 }
499 sb->s_fs_info = NULL;
500 kfree(sbi);
501 return;
502}
503
Christoph Lametere18b8902006-12-06 20:33:20 -0800504static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700505
506/*
507 * Called inside transaction, so use GFP_NOFS
508 */
Mingming Cao617ba132006-10-11 01:20:53 -0700509static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700510{
Mingming Cao617ba132006-10-11 01:20:53 -0700511 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700512
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800513 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700514 if (!ei)
515 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400516#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700517 ei->i_acl = EXT4_ACL_NOT_CACHED;
518 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400521 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700522 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500523 INIT_LIST_HEAD(&ei->i_prealloc_list);
524 spin_lock_init(&ei->i_prealloc_lock);
Jan Kara678aaf42008-07-11 19:27:31 -0400525 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400526 ei->i_reserved_data_blocks = 0;
527 ei->i_reserved_meta_blocks = 0;
528 ei->i_allocated_meta_blocks = 0;
529 ei->i_delalloc_reserved_flag = 0;
530 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700531 return &ei->vfs_inode;
532}
533
Mingming Cao617ba132006-10-11 01:20:53 -0700534static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700535{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700536 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
537 printk("EXT4 Inode %p: orphan list check failed!\n",
538 EXT4_I(inode));
539 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
540 EXT4_I(inode), sizeof(struct ext4_inode_info),
541 true);
542 dump_stack();
543 }
Mingming Cao617ba132006-10-11 01:20:53 -0700544 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700545}
546
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700547static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700548{
Mingming Cao617ba132006-10-11 01:20:53 -0700549 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700550
Christoph Lametera35afb82007-05-16 22:10:57 -0700551 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400552#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700553 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500555 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700556 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700557}
558
559static int init_inodecache(void)
560{
Mingming Cao617ba132006-10-11 01:20:53 -0700561 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
562 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700563 0, (SLAB_RECLAIM_ACCOUNT|
564 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900565 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700566 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700567 return -ENOMEM;
568 return 0;
569}
570
571static void destroy_inodecache(void)
572{
Mingming Cao617ba132006-10-11 01:20:53 -0700573 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700574}
575
Mingming Cao617ba132006-10-11 01:20:53 -0700576static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700577{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400578#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700579 if (EXT4_I(inode)->i_acl &&
580 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
581 posix_acl_release(EXT4_I(inode)->i_acl);
582 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700583 }
Mingming Cao617ba132006-10-11 01:20:53 -0700584 if (EXT4_I(inode)->i_default_acl &&
585 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
586 posix_acl_release(EXT4_I(inode)->i_default_acl);
587 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 }
589#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400590 ext4_discard_preallocations(inode);
Jan Kara678aaf42008-07-11 19:27:31 -0400591 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
592 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700593}
594
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400595static inline void ext4_show_quota_options(struct seq_file *seq,
596 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597{
598#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700599 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700600
601 if (sbi->s_jquota_fmt)
602 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400603 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700604
605 if (sbi->s_qf_names[USRQUOTA])
606 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
607
608 if (sbi->s_qf_names[GRPQUOTA])
609 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
610
Mingming Cao617ba132006-10-11 01:20:53 -0700611 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700612 seq_puts(seq, ",usrquota");
613
Mingming Cao617ba132006-10-11 01:20:53 -0700614 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700615 seq_puts(seq, ",grpquota");
616#endif
617}
618
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700619/*
620 * Show an option if
621 * - it's set to a non-default value OR
622 * - if the per-sb default is different from the global default
623 */
Mingming Cao617ba132006-10-11 01:20:53 -0700624static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700625{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500626 int def_errors;
627 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700628 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700629 struct ext4_sb_info *sbi = EXT4_SB(sb);
630 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700631
632 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500633 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700634
635 if (sbi->s_sb_block != 1)
636 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
637 if (test_opt(sb, MINIX_DF))
638 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500639 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700640 seq_puts(seq, ",grpid");
641 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
642 seq_puts(seq, ",nogrpid");
643 if (sbi->s_resuid != EXT4_DEF_RESUID ||
644 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
645 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
646 }
647 if (sbi->s_resgid != EXT4_DEF_RESGID ||
648 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
649 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
650 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500651 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700652 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500653 def_errors == EXT4_ERRORS_CONTINUE) {
654 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700655 }
656 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500657 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500658 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500659 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700660 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500661 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700662 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500663 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700664 seq_puts(seq, ",debug");
665 if (test_opt(sb, OLDALLOC))
666 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400667#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500668 if (test_opt(sb, XATTR_USER) &&
669 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700670 seq_puts(seq, ",user_xattr");
671 if (!test_opt(sb, XATTR_USER) &&
672 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
673 seq_puts(seq, ",nouser_xattr");
674 }
675#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400676#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500677 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700678 seq_puts(seq, ",acl");
679 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
680 seq_puts(seq, ",noacl");
681#endif
682 if (!test_opt(sb, RESERVATION))
683 seq_puts(seq, ",noreservation");
684 if (sbi->s_commit_interval) {
685 seq_printf(seq, ",commit=%u",
686 (unsigned) (sbi->s_commit_interval / HZ));
687 }
Eric Sandeen571640c2008-05-26 12:29:46 -0400688 /*
689 * We're changing the default of barrier mount option, so
690 * let's always display its mount state so it's clear what its
691 * status is.
692 */
693 seq_puts(seq, ",barrier=");
694 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400695 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
696 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700697 if (test_opt(sb, NOBH))
698 seq_puts(seq, ",nobh");
699 if (!test_opt(sb, EXTENTS))
700 seq_puts(seq, ",noextents");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500701 if (test_opt(sb, I_VERSION))
702 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400703 if (!test_opt(sb, DELALLOC))
704 seq_puts(seq, ",nodelalloc");
705
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500707 if (sbi->s_stripe)
708 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500709 /*
710 * journal mode get enabled in different ways
711 * So just print the value even if we didn't specify it
712 */
Mingming Cao617ba132006-10-11 01:20:53 -0700713 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700715 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700716 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700717 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700718 seq_puts(seq, ",data=writeback");
719
Theodore Ts'o240799c2008-10-09 23:53:47 -0400720 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
721 seq_printf(seq, ",inode_readahead_blks=%u",
722 sbi->s_inode_readahead_blks);
723
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400724 if (test_opt(sb, DATA_ERR_ABORT))
725 seq_puts(seq, ",data_err=abort");
726
Mingming Cao617ba132006-10-11 01:20:53 -0700727 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728 return 0;
729}
730
731
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700732static struct inode *ext4_nfs_get_inode(struct super_block *sb,
733 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700736
Mingming Cao617ba132006-10-11 01:20:53 -0700737 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700739 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700740 return ERR_PTR(-ESTALE);
741
742 /* iget isn't really right if the inode is currently unallocated!!
743 *
Mingming Cao617ba132006-10-11 01:20:53 -0700744 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700745 * deleted, so we should be safe.
746 *
747 * Currently we don't know the generation for parent directory, so
748 * a generation of 0 means "accept any"
749 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800750 inode = ext4_iget(sb, ino);
751 if (IS_ERR(inode))
752 return ERR_CAST(inode);
753 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700754 iput(inode);
755 return ERR_PTR(-ESTALE);
756 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700757
758 return inode;
759}
760
761static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
762 int fh_len, int fh_type)
763{
764 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
765 ext4_nfs_get_inode);
766}
767
768static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
769 int fh_len, int fh_type)
770{
771 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
772 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700773}
774
775#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400776#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400777#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700778
Mingming Cao617ba132006-10-11 01:20:53 -0700779static int ext4_dquot_initialize(struct inode *inode, int type);
780static int ext4_dquot_drop(struct inode *inode);
781static int ext4_write_dquot(struct dquot *dquot);
782static int ext4_acquire_dquot(struct dquot *dquot);
783static int ext4_release_dquot(struct dquot *dquot);
784static int ext4_mark_dquot_dirty(struct dquot *dquot);
785static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700786static int ext4_quota_on(struct super_block *sb, int type, int format_id,
787 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700788static int ext4_quota_on_mount(struct super_block *sb, int type);
789static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700790 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700791static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700792 const char *data, size_t len, loff_t off);
793
Mingming Cao617ba132006-10-11 01:20:53 -0700794static struct dquot_operations ext4_quota_operations = {
795 .initialize = ext4_dquot_initialize,
796 .drop = ext4_dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700797 .alloc_space = dquot_alloc_space,
798 .alloc_inode = dquot_alloc_inode,
799 .free_space = dquot_free_space,
800 .free_inode = dquot_free_inode,
801 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700802 .write_dquot = ext4_write_dquot,
803 .acquire_dquot = ext4_acquire_dquot,
804 .release_dquot = ext4_release_dquot,
805 .mark_dirty = ext4_mark_dquot_dirty,
806 .write_info = ext4_write_info
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700807};
808
Mingming Cao617ba132006-10-11 01:20:53 -0700809static struct quotactl_ops ext4_qctl_operations = {
810 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700811 .quota_off = vfs_quota_off,
812 .quota_sync = vfs_quota_sync,
813 .get_info = vfs_get_dqinfo,
814 .set_info = vfs_set_dqinfo,
815 .get_dqblk = vfs_get_dqblk,
816 .set_dqblk = vfs_set_dqblk
817};
818#endif
819
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800820static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700821 .alloc_inode = ext4_alloc_inode,
822 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700823 .write_inode = ext4_write_inode,
824 .dirty_inode = ext4_dirty_inode,
825 .delete_inode = ext4_delete_inode,
826 .put_super = ext4_put_super,
827 .write_super = ext4_write_super,
828 .sync_fs = ext4_sync_fs,
829 .write_super_lockfs = ext4_write_super_lockfs,
830 .unlockfs = ext4_unlockfs,
831 .statfs = ext4_statfs,
832 .remount_fs = ext4_remount,
833 .clear_inode = ext4_clear_inode,
834 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700835#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -0700836 .quota_read = ext4_quota_read,
837 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700838#endif
839};
840
Christoph Hellwig39655162007-10-21 16:42:17 -0700841static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700842 .fh_to_dentry = ext4_fh_to_dentry,
843 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -0700844 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700845};
846
847enum {
848 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
849 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -0400850 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700851 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
852 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
853 Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -0500854 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700855 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400856 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700857 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
858 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
859 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500860 Opt_grpquota, Opt_extents, Opt_noextents, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -0400861 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'o240799c2008-10-09 23:53:47 -0400862 Opt_inode_readahead_blks
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863};
864
Steven Whitehousea447c092008-10-13 10:46:57 +0100865static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866 {Opt_bsd_df, "bsddf"},
867 {Opt_minix_df, "minixdf"},
868 {Opt_grpid, "grpid"},
869 {Opt_grpid, "bsdgroups"},
870 {Opt_nogrpid, "nogrpid"},
871 {Opt_nogrpid, "sysvgroups"},
872 {Opt_resgid, "resgid=%u"},
873 {Opt_resuid, "resuid=%u"},
874 {Opt_sb, "sb=%u"},
875 {Opt_err_cont, "errors=continue"},
876 {Opt_err_panic, "errors=panic"},
877 {Opt_err_ro, "errors=remount-ro"},
878 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879 {Opt_debug, "debug"},
880 {Opt_oldalloc, "oldalloc"},
881 {Opt_orlov, "orlov"},
882 {Opt_user_xattr, "user_xattr"},
883 {Opt_nouser_xattr, "nouser_xattr"},
884 {Opt_acl, "acl"},
885 {Opt_noacl, "noacl"},
886 {Opt_reservation, "reservation"},
887 {Opt_noreservation, "noreservation"},
888 {Opt_noload, "noload"},
889 {Opt_nobh, "nobh"},
890 {Opt_bh, "bh"},
891 {Opt_commit, "commit=%u"},
892 {Opt_journal_update, "journal=update"},
893 {Opt_journal_inum, "journal=%u"},
894 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -0500895 {Opt_journal_checksum, "journal_checksum"},
896 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700897 {Opt_abort, "abort"},
898 {Opt_data_journal, "data=journal"},
899 {Opt_data_ordered, "data=ordered"},
900 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400901 {Opt_data_err_abort, "data_err=abort"},
902 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700903 {Opt_offusrjquota, "usrjquota="},
904 {Opt_usrjquota, "usrjquota=%s"},
905 {Opt_offgrpjquota, "grpjquota="},
906 {Opt_grpjquota, "grpjquota=%s"},
907 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
908 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
909 {Opt_grpquota, "grpquota"},
910 {Opt_noquota, "noquota"},
911 {Opt_quota, "quota"},
912 {Opt_usrquota, "usrquota"},
913 {Opt_barrier, "barrier=%u"},
Alex Tomasa86c6182006-10-11 01:21:03 -0700914 {Opt_extents, "extents"},
Mingming Cao1e2462f2007-07-18 09:00:55 -0400915 {Opt_noextents, "noextents"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500916 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -0500917 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700918 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -0400919 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400920 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -0400921 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -0400922 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700923};
924
Mingming Cao617ba132006-10-11 01:20:53 -0700925static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700926{
Mingming Cao617ba132006-10-11 01:20:53 -0700927 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700928 char *options = (char *) *data;
929
930 if (!options || strncmp(options, "sb=", 3) != 0)
931 return 1; /* Default location */
932 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -0700933 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700934 sb_block = simple_strtoul(options, &options, 0);
935 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -0400936 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700937 (char *) *data);
938 return 1;
939 }
940 if (*options == ',')
941 options++;
942 *data = (void *) options;
943 return sb_block;
944}
945
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400946static int parse_options(char *options, struct super_block *sb,
947 unsigned int *inum, unsigned long *journal_devnum,
948 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700949{
Mingming Cao617ba132006-10-11 01:20:53 -0700950 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400951 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952 substring_t args[MAX_OPT_ARGS];
953 int data_opt = 0;
954 int option;
955#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -0400956 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700957 char *qname;
958#endif
Aneesh Kumar K.Vc07651b2008-07-11 19:27:31 -0400959 ext4_fsblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700960
961 if (!options)
962 return 1;
963
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400964 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700965 int token;
966 if (!*p)
967 continue;
968
969 token = match_token(p, tokens, args);
970 switch (token) {
971 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400972 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700973 break;
974 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400975 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976 break;
977 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400978 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700979 break;
980 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400981 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982 break;
983 case Opt_resuid:
984 if (match_int(&args[0], &option))
985 return 0;
986 sbi->s_resuid = option;
987 break;
988 case Opt_resgid:
989 if (match_int(&args[0], &option))
990 return 0;
991 sbi->s_resgid = option;
992 break;
993 case Opt_sb:
994 /* handled by get_sb_block() instead of here */
995 /* *sb_block = match_int(&args[0]); */
996 break;
997 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400998 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
999 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1000 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001001 break;
1002 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001003 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1004 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1005 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006 break;
1007 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001008 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1009 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1010 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011 break;
1012 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001013 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001015 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001016 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017 break;
1018 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001019 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020 break;
1021 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001022 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001023 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001024#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001026 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001027 break;
1028 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001029 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001030 break;
1031#else
1032 case Opt_user_xattr:
1033 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001034 printk(KERN_ERR "EXT4 (no)user_xattr options "
1035 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001036 break;
1037#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001038#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001039 case Opt_acl:
1040 set_opt(sbi->s_mount_opt, POSIX_ACL);
1041 break;
1042 case Opt_noacl:
1043 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1044 break;
1045#else
1046 case Opt_acl:
1047 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001048 printk(KERN_ERR "EXT4 (no)acl options "
1049 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001050 break;
1051#endif
1052 case Opt_reservation:
1053 set_opt(sbi->s_mount_opt, RESERVATION);
1054 break;
1055 case Opt_noreservation:
1056 clear_opt(sbi->s_mount_opt, RESERVATION);
1057 break;
1058 case Opt_journal_update:
1059 /* @@@ FIXME */
1060 /* Eventually we will want to be able to create
1061 a journal file here. For now, only allow the
1062 user to specify an existing inode to be the
1063 journal file. */
1064 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001065 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001066 "journal on remount\n");
1067 return 0;
1068 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001069 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001070 break;
1071 case Opt_journal_inum:
1072 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001073 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 "journal on remount\n");
1075 return 0;
1076 }
1077 if (match_int(&args[0], &option))
1078 return 0;
1079 *inum = option;
1080 break;
1081 case Opt_journal_dev:
1082 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001083 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 "journal on remount\n");
1085 return 0;
1086 }
1087 if (match_int(&args[0], &option))
1088 return 0;
1089 *journal_devnum = option;
1090 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001091 case Opt_journal_checksum:
1092 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1093 break;
1094 case Opt_journal_async_commit:
1095 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1096 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1097 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001098 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001099 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001100 break;
1101 case Opt_commit:
1102 if (match_int(&args[0], &option))
1103 return 0;
1104 if (option < 0)
1105 return 0;
1106 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001107 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001108 sbi->s_commit_interval = HZ * option;
1109 break;
1110 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001111 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001112 goto datacheck;
1113 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001114 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001115 goto datacheck;
1116 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001117 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001118 datacheck:
1119 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001120 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001121 != data_opt) {
1122 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001123 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001124 "mode on remount\n");
1125 return 0;
1126 }
1127 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001128 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129 sbi->s_mount_opt |= data_opt;
1130 }
1131 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001132 case Opt_data_err_abort:
1133 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1134 break;
1135 case Opt_data_err_ignore:
1136 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1137 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138#ifdef CONFIG_QUOTA
1139 case Opt_usrjquota:
1140 qtype = USRQUOTA;
1141 goto set_qf_name;
1142 case Opt_grpjquota:
1143 qtype = GRPQUOTA;
1144set_qf_name:
Jan Karadfc5d032008-05-13 19:11:51 -04001145 if ((sb_any_quota_enabled(sb) ||
1146 sb_any_quota_suspended(sb)) &&
1147 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001148 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001149 "EXT4-fs: Cannot change journaled "
1150 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151 return 0;
1152 }
1153 qname = match_strdup(&args[0]);
1154 if (!qname) {
1155 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001156 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001157 "storing quotafile name.\n");
1158 return 0;
1159 }
1160 if (sbi->s_qf_names[qtype] &&
1161 strcmp(sbi->s_qf_names[qtype], qname)) {
1162 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001163 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001164 "specified.\n", QTYPE2NAME(qtype));
1165 kfree(qname);
1166 return 0;
1167 }
1168 sbi->s_qf_names[qtype] = qname;
1169 if (strchr(sbi->s_qf_names[qtype], '/')) {
1170 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001171 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 "filesystem root.\n");
1173 kfree(sbi->s_qf_names[qtype]);
1174 sbi->s_qf_names[qtype] = NULL;
1175 return 0;
1176 }
1177 set_opt(sbi->s_mount_opt, QUOTA);
1178 break;
1179 case Opt_offusrjquota:
1180 qtype = USRQUOTA;
1181 goto clear_qf_name;
1182 case Opt_offgrpjquota:
1183 qtype = GRPQUOTA;
1184clear_qf_name:
Jan Karadfc5d032008-05-13 19:11:51 -04001185 if ((sb_any_quota_enabled(sb) ||
1186 sb_any_quota_suspended(sb)) &&
1187 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001188 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001189 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001190 "quota turned on.\n");
1191 return 0;
1192 }
1193 /*
1194 * The space will be released later when all options
1195 * are confirmed to be correct
1196 */
1197 sbi->s_qf_names[qtype] = NULL;
1198 break;
1199 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001200 qfmt = QFMT_VFS_OLD;
1201 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001203 qfmt = QFMT_VFS_V0;
1204set_qf_format:
1205 if ((sb_any_quota_enabled(sb) ||
1206 sb_any_quota_suspended(sb)) &&
1207 sbi->s_jquota_fmt != qfmt) {
1208 printk(KERN_ERR "EXT4-fs: Cannot change "
1209 "journaled quota options when "
1210 "quota turned on.\n");
1211 return 0;
1212 }
1213 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001214 break;
1215 case Opt_quota:
1216 case Opt_usrquota:
1217 set_opt(sbi->s_mount_opt, QUOTA);
1218 set_opt(sbi->s_mount_opt, USRQUOTA);
1219 break;
1220 case Opt_grpquota:
1221 set_opt(sbi->s_mount_opt, QUOTA);
1222 set_opt(sbi->s_mount_opt, GRPQUOTA);
1223 break;
1224 case Opt_noquota:
1225 if (sb_any_quota_enabled(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001226 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001227 "options when quota turned on.\n");
1228 return 0;
1229 }
1230 clear_opt(sbi->s_mount_opt, QUOTA);
1231 clear_opt(sbi->s_mount_opt, USRQUOTA);
1232 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1233 break;
1234#else
1235 case Opt_quota:
1236 case Opt_usrquota:
1237 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001238 printk(KERN_ERR
1239 "EXT4-fs: quota options not supported.\n");
1240 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 case Opt_usrjquota:
1242 case Opt_grpjquota:
1243 case Opt_offusrjquota:
1244 case Opt_offgrpjquota:
1245 case Opt_jqfmt_vfsold:
1246 case Opt_jqfmt_vfsv0:
1247 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001248 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001249 "supported.\n");
1250 break;
1251 case Opt_noquota:
1252 break;
1253#endif
1254 case Opt_abort:
1255 set_opt(sbi->s_mount_opt, ABORT);
1256 break;
1257 case Opt_barrier:
1258 if (match_int(&args[0], &option))
1259 return 0;
1260 if (option)
1261 set_opt(sbi->s_mount_opt, BARRIER);
1262 else
1263 clear_opt(sbi->s_mount_opt, BARRIER);
1264 break;
1265 case Opt_ignore:
1266 break;
1267 case Opt_resize:
1268 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001269 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001270 "for remount\n");
1271 return 0;
1272 }
1273 if (match_int(&args[0], &option) != 0)
1274 return 0;
1275 *n_blocks_count = option;
1276 break;
1277 case Opt_nobh:
1278 set_opt(sbi->s_mount_opt, NOBH);
1279 break;
1280 case Opt_bh:
1281 clear_opt(sbi->s_mount_opt, NOBH);
1282 break;
Alex Tomasa86c6182006-10-11 01:21:03 -07001283 case Opt_extents:
Eric Sandeene4079a12008-07-11 19:27:31 -04001284 if (!EXT4_HAS_INCOMPAT_FEATURE(sb,
1285 EXT4_FEATURE_INCOMPAT_EXTENTS)) {
1286 ext4_warning(sb, __func__,
1287 "extents feature not enabled "
1288 "on this filesystem, use tune2fs\n");
1289 return 0;
1290 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001291 set_opt(sbi->s_mount_opt, EXTENTS);
Alex Tomasa86c6182006-10-11 01:21:03 -07001292 break;
Mingming Cao1e2462f2007-07-18 09:00:55 -04001293 case Opt_noextents:
Aneesh Kumar K.Vc07651b2008-07-11 19:27:31 -04001294 /*
1295 * When e2fsprogs support resizing an already existing
1296 * ext3 file system to greater than 2**32 we need to
1297 * add support to block allocator to handle growing
1298 * already existing block mapped inode so that blocks
1299 * allocated for them fall within 2**32
1300 */
1301 last_block = ext4_blocks_count(sbi->s_es) - 1;
1302 if (last_block > 0xffffffffULL) {
1303 printk(KERN_ERR "EXT4-fs: Filesystem too "
1304 "large to mount with "
1305 "-o noextents options\n");
1306 return 0;
1307 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001308 clear_opt(sbi->s_mount_opt, EXTENTS);
Mingming Cao1e2462f2007-07-18 09:00:55 -04001309 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001310 case Opt_i_version:
1311 set_opt(sbi->s_mount_opt, I_VERSION);
1312 sb->s_flags |= MS_I_VERSION;
1313 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001314 case Opt_nodelalloc:
1315 clear_opt(sbi->s_mount_opt, DELALLOC);
1316 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001317 case Opt_stripe:
1318 if (match_int(&args[0], &option))
1319 return 0;
1320 if (option < 0)
1321 return 0;
1322 sbi->s_stripe = option;
1323 break;
Alex Tomas64769242008-07-11 19:27:31 -04001324 case Opt_delalloc:
1325 set_opt(sbi->s_mount_opt, DELALLOC);
1326 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001327 case Opt_inode_readahead_blks:
1328 if (match_int(&args[0], &option))
1329 return 0;
1330 if (option < 0 || option > (1 << 30))
1331 return 0;
1332 sbi->s_inode_readahead_blks = option;
1333 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001334 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001335 printk(KERN_ERR
1336 "EXT4-fs: Unrecognized mount option \"%s\" "
1337 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001338 return 0;
1339 }
1340 }
1341#ifdef CONFIG_QUOTA
1342 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001343 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001344 sbi->s_qf_names[USRQUOTA])
1345 clear_opt(sbi->s_mount_opt, USRQUOTA);
1346
Mingming Cao617ba132006-10-11 01:20:53 -07001347 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001348 sbi->s_qf_names[GRPQUOTA])
1349 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1350
1351 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001352 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001353 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001354 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1355 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001356 "format mixing.\n");
1357 return 0;
1358 }
1359
1360 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001361 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001362 "not specified.\n");
1363 return 0;
1364 }
1365 } else {
1366 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001367 printk(KERN_ERR "EXT4-fs: journaled quota format "
1368 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001369 "enabled.\n");
1370 return 0;
1371 }
1372 }
1373#endif
1374 return 1;
1375}
1376
Mingming Cao617ba132006-10-11 01:20:53 -07001377static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001378 int read_only)
1379{
Mingming Cao617ba132006-10-11 01:20:53 -07001380 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001381 int res = 0;
1382
Mingming Cao617ba132006-10-11 01:20:53 -07001383 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001384 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1385 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001386 res = MS_RDONLY;
1387 }
1388 if (read_only)
1389 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001390 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001391 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1392 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001393 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001394 printk(KERN_WARNING
1395 "EXT4-fs warning: mounting fs with errors, "
1396 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001397 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1398 le16_to_cpu(es->s_mnt_count) >=
1399 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001400 printk(KERN_WARNING
1401 "EXT4-fs warning: maximal mount count reached, "
1402 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001403 else if (le32_to_cpu(es->s_checkinterval) &&
1404 (le32_to_cpu(es->s_lastcheck) +
1405 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001406 printk(KERN_WARNING
1407 "EXT4-fs warning: checktime reached, "
1408 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001409#if 0
1410 /* @@@ We _will_ want to clear the valid bit if we find
Andrew Morton63f57932006-10-11 01:21:24 -07001411 * inconsistencies, to force a fsck at reboot. But for
1412 * a plain journaled filesystem we can keep it set as
1413 * valid forever! :)
1414 */
Marcin Slusarz216c34b2008-04-17 10:38:59 -04001415 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001416#endif
1417 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001418 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001419 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001421 ext4_update_dynamic_rev(sb);
1422 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001423
Mingming Cao617ba132006-10-11 01:20:53 -07001424 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001425 if (test_opt(sb, DEBUG))
Mingming Cao617ba132006-10-11 01:20:53 -07001426 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%lu, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1428 sb->s_blocksize,
1429 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001430 EXT4_BLOCKS_PER_GROUP(sb),
1431 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001432 sbi->s_mount_opt);
1433
Theodore Ts'o05496762008-09-16 14:36:17 -04001434 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1435 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1436 "external", EXT4_SB(sb)->s_journal->j_devname);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001437 return res;
1438}
1439
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001440static int ext4_fill_flex_info(struct super_block *sb)
1441{
1442 struct ext4_sb_info *sbi = EXT4_SB(sb);
1443 struct ext4_group_desc *gdp = NULL;
1444 struct buffer_head *bh;
1445 ext4_group_t flex_group_count;
1446 ext4_group_t flex_group;
1447 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001448 int i;
1449
1450 if (!sbi->s_es->s_log_groups_per_flex) {
1451 sbi->s_log_groups_per_flex = 0;
1452 return 1;
1453 }
1454
1455 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1456 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1457
Frederic Bohec62a11f2008-09-08 10:20:24 -04001458 /* We allocate both existing and potentially added groups */
1459 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001460 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1461 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001462 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001463 sizeof(struct flex_groups), GFP_KERNEL);
1464 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001465 printk(KERN_ERR "EXT4-fs: not enough memory for "
1466 "%lu flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001467 goto failed;
1468 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001469
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001470 for (i = 0; i < sbi->s_groups_count; i++) {
1471 gdp = ext4_get_group_desc(sb, i, &bh);
1472
1473 flex_group = ext4_flex_group(sbi, i);
1474 sbi->s_flex_groups[flex_group].free_inodes +=
1475 le16_to_cpu(gdp->bg_free_inodes_count);
1476 sbi->s_flex_groups[flex_group].free_blocks +=
1477 le16_to_cpu(gdp->bg_free_blocks_count);
1478 }
1479
1480 return 1;
1481failed:
1482 return 0;
1483}
1484
Andreas Dilger717d50e2007-10-16 18:38:25 -04001485__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1486 struct ext4_group_desc *gdp)
1487{
1488 __u16 crc = 0;
1489
1490 if (sbi->s_es->s_feature_ro_compat &
1491 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1492 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1493 __le32 le_group = cpu_to_le32(block_group);
1494
1495 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1496 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1497 crc = crc16(crc, (__u8 *)gdp, offset);
1498 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1499 /* for checksum of struct ext4_group_desc do the rest...*/
1500 if ((sbi->s_es->s_feature_incompat &
1501 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1502 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1503 crc = crc16(crc, (__u8 *)gdp + offset,
1504 le16_to_cpu(sbi->s_es->s_desc_size) -
1505 offset);
1506 }
1507
1508 return cpu_to_le16(crc);
1509}
1510
1511int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1512 struct ext4_group_desc *gdp)
1513{
1514 if ((sbi->s_es->s_feature_ro_compat &
1515 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1516 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1517 return 0;
1518
1519 return 1;
1520}
1521
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001522/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001523static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001524{
Mingming Cao617ba132006-10-11 01:20:53 -07001525 struct ext4_sb_info *sbi = EXT4_SB(sb);
1526 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1527 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001528 ext4_fsblk_t block_bitmap;
1529 ext4_fsblk_t inode_bitmap;
1530 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001531 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001532 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001533
Jose R. Santosce421582007-10-16 18:38:25 -04001534 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1535 flexbg_flag = 1;
1536
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001537 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001538
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001539 for (i = 0; i < sbi->s_groups_count; i++) {
1540 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1541
Jose R. Santosce421582007-10-16 18:38:25 -04001542 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001543 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001544 else
1545 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001546 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001547
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001548 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001549 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001550 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1551 "Block bitmap for group %lu not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001552 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001553 return 0;
1554 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001555 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001556 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001557 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1558 "Inode bitmap for group %lu not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001559 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001560 return 0;
1561 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001562 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001563 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001564 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001565 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1566 "Inode table for group %lu not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001567 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001568 return 0;
1569 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001570 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001571 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001572 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
1573 "Checksum for group %lu failed (%u!=%u)\n",
1574 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1575 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001576 if (!(sb->s_flags & MS_RDONLY)) {
1577 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001578 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001579 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001580 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001581 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001582 if (!flexbg_flag)
1583 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001584 }
1585
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001586 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001587 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001588 return 1;
1589}
1590
Mingming Cao617ba132006-10-11 01:20:53 -07001591/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001592 * the superblock) which were deleted from all directories, but held open by
1593 * a process at the time of a crash. We walk the list and try to delete these
1594 * inodes at recovery time (only with a read-write filesystem).
1595 *
1596 * In order to keep the orphan inode chain consistent during traversal (in
1597 * case of crash during recovery), we link each inode into the superblock
1598 * orphan list_head and handle it the same way as an inode deletion during
1599 * normal operation (which journals the operations for us).
1600 *
1601 * We only do an iget() and an iput() on each inode, which is very safe if we
1602 * accidentally point at an in-use or already deleted inode. The worst that
1603 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001604 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001605 * e2fsck was run on this filesystem, and it must have already done the orphan
1606 * inode cleanup for us, so we can safely abort without any further action.
1607 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001608static void ext4_orphan_cleanup(struct super_block *sb,
1609 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001610{
1611 unsigned int s_flags = sb->s_flags;
1612 int nr_orphans = 0, nr_truncates = 0;
1613#ifdef CONFIG_QUOTA
1614 int i;
1615#endif
1616 if (!es->s_last_orphan) {
1617 jbd_debug(4, "no orphan inodes to clean up\n");
1618 return;
1619 }
1620
Eric Sandeena8f48a92006-12-06 20:40:13 -08001621 if (bdev_read_only(sb->s_bdev)) {
1622 printk(KERN_ERR "EXT4-fs: write access "
1623 "unavailable, skipping orphan cleanup.\n");
1624 return;
1625 }
1626
Mingming Cao617ba132006-10-11 01:20:53 -07001627 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001628 if (es->s_last_orphan)
1629 jbd_debug(1, "Errors on filesystem, "
1630 "clearing orphan list.\n");
1631 es->s_last_orphan = 0;
1632 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1633 return;
1634 }
1635
1636 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001637 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001638 sb->s_id);
1639 sb->s_flags &= ~MS_RDONLY;
1640 }
1641#ifdef CONFIG_QUOTA
1642 /* Needed for iput() to work correctly and not trash data */
1643 sb->s_flags |= MS_ACTIVE;
1644 /* Turn on quotas so that they are updated correctly */
1645 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001646 if (EXT4_SB(sb)->s_qf_names[i]) {
1647 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001648 if (ret < 0)
1649 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001650 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001651 "quota: error %d\n", ret);
1652 }
1653 }
1654#endif
1655
1656 while (es->s_last_orphan) {
1657 struct inode *inode;
1658
Josef Bacik97bd42b2008-04-29 22:04:56 -04001659 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1660 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001661 es->s_last_orphan = 0;
1662 break;
1663 }
1664
Mingming Cao617ba132006-10-11 01:20:53 -07001665 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001666 DQUOT_INIT(inode);
1667 if (inode->i_nlink) {
1668 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001669 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001670 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001671 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001672 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001673 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001674 nr_truncates++;
1675 } else {
1676 printk(KERN_DEBUG
1677 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001678 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001679 jbd_debug(2, "deleting unreferenced inode %lu\n",
1680 inode->i_ino);
1681 nr_orphans++;
1682 }
1683 iput(inode); /* The delete magic happens here! */
1684 }
1685
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001686#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001687
1688 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001689 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001690 sb->s_id, PLURAL(nr_orphans));
1691 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001692 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001693 sb->s_id, PLURAL(nr_truncates));
1694#ifdef CONFIG_QUOTA
1695 /* Turn quotas off */
1696 for (i = 0; i < MAXQUOTAS; i++) {
1697 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001698 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001699 }
1700#endif
1701 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1702}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001703/*
1704 * Maximal extent format file size.
1705 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1706 * extent format containers, within a sector_t, and within i_blocks
1707 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1708 * so that won't be a limiting factor.
1709 *
1710 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1711 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001712static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001713{
1714 loff_t res;
1715 loff_t upper_limit = MAX_LFS_FILESIZE;
1716
1717 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001718 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001719 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001720 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001721 * i_block represent total blocks in 512 bytes
1722 * 32 == size of vfs inode i_blocks * 8
1723 */
1724 upper_limit = (1LL << 32) - 1;
1725
1726 /* total blocks in file system block size */
1727 upper_limit >>= (blkbits - 9);
1728 upper_limit <<= blkbits;
1729 }
1730
1731 /* 32-bit extent-start container, ee_block */
1732 res = 1LL << 32;
1733 res <<= blkbits;
1734 res -= 1;
1735
1736 /* Sanity check against vm- & vfs- imposed limits */
1737 if (res > upper_limit)
1738 res = upper_limit;
1739
1740 return res;
1741}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001742
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001743/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001744 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001745 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1746 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001747 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001748static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001749{
Mingming Cao617ba132006-10-11 01:20:53 -07001750 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001751 int meta_blocks;
1752 loff_t upper_limit;
1753 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001754 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001755 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001756 * does not exceed 2^48 -1
1757 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1758 * total number of 512 bytes blocks of the file
1759 */
1760
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001761 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001762 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001763 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001764 * implies the inode i_block represent total blocks in
1765 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001766 */
1767 upper_limit = (1LL << 32) - 1;
1768
1769 /* total blocks in file system block size */
1770 upper_limit >>= (bits - 9);
1771
1772 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001773 /*
1774 * We use 48 bit ext4_inode i_blocks
1775 * With EXT4_HUGE_FILE_FL set the i_blocks
1776 * represent total number of blocks in
1777 * file system block size
1778 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001779 upper_limit = (1LL << 48) - 1;
1780
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001781 }
1782
1783 /* indirect blocks */
1784 meta_blocks = 1;
1785 /* double indirect blocks */
1786 meta_blocks += 1 + (1LL << (bits-2));
1787 /* tripple indirect blocks */
1788 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1789
1790 upper_limit -= meta_blocks;
1791 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001792
1793 res += 1LL << (bits-2);
1794 res += 1LL << (2*(bits-2));
1795 res += 1LL << (3*(bits-2));
1796 res <<= bits;
1797 if (res > upper_limit)
1798 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001799
1800 if (res > MAX_LFS_FILESIZE)
1801 res = MAX_LFS_FILESIZE;
1802
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001803 return res;
1804}
1805
Mingming Cao617ba132006-10-11 01:20:53 -07001806static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001807 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001808{
Mingming Cao617ba132006-10-11 01:20:53 -07001809 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001810 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001811 int has_super = 0;
1812
1813 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1814
Mingming Cao617ba132006-10-11 01:20:53 -07001815 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001816 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001817 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001818 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001819 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001820 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001821 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001822}
1823
Alex Tomasc9de5602008-01-29 00:19:52 -05001824/**
1825 * ext4_get_stripe_size: Get the stripe size.
1826 * @sbi: In memory super block info
1827 *
1828 * If we have specified it via mount option, then
1829 * use the mount option value. If the value specified at mount time is
1830 * greater than the blocks per group use the super block value.
1831 * If the super block value is greater than blocks per group return 0.
1832 * Allocator needs it be less than blocks per group.
1833 *
1834 */
1835static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1836{
1837 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
1838 unsigned long stripe_width =
1839 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
1840
1841 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
1842 return sbi->s_stripe;
1843
1844 if (stripe_width <= sbi->s_blocks_per_group)
1845 return stripe_width;
1846
1847 if (stride <= sbi->s_blocks_per_group)
1848 return stride;
1849
1850 return 0;
1851}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001852
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001853static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04001854 __releases(kernel_lock)
1855 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001856
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001857{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001858 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07001859 struct ext4_super_block *es = NULL;
1860 struct ext4_sb_info *sbi;
1861 ext4_fsblk_t block;
1862 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001863 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001864 unsigned long offset = 0;
1865 unsigned int journal_inum = 0;
1866 unsigned long journal_devnum = 0;
1867 unsigned long def_mount_opts;
1868 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04001869 char *cp;
David Howells1d1fe1e2008-02-07 00:15:37 -08001870 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001871 int blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001872 int db_count;
1873 int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001874 int needs_recovery, has_huge_files;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001875 __le32 features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001876 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07001877 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001878
1879 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
1880 if (!sbi)
1881 return -ENOMEM;
1882 sb->s_fs_info = sbi;
1883 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07001884 sbi->s_resuid = EXT4_DEF_RESUID;
1885 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001886 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07001887 sbi->s_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001888
1889 unlock_kernel();
1890
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04001891 /* Cleanup superblock name */
1892 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
1893 *cp = '!';
1894
Mingming Cao617ba132006-10-11 01:20:53 -07001895 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001896 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07001897 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001898 goto out_fail;
1899 }
1900
1901 /*
Mingming Cao617ba132006-10-11 01:20:53 -07001902 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001903 * block sizes. We need to calculate the offset from buffer start.
1904 */
Mingming Cao617ba132006-10-11 01:20:53 -07001905 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001906 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
1907 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001908 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001909 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001910 }
1911
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001912 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001913 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001914 goto out_fail;
1915 }
1916 /*
1917 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07001918 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001919 */
Mingming Cao617ba132006-10-11 01:20:53 -07001920 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001921 sbi->s_es = es;
1922 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07001923 if (sb->s_magic != EXT4_SUPER_MAGIC)
1924 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001925
1926 /* Set defaults before we parse the mount options */
1927 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07001928 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001929 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07001930 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001931 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07001932 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001933 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04001934#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07001935 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001936 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001937#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001938#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07001939 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001940 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001941#endif
Mingming Cao617ba132006-10-11 01:20:53 -07001942 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
1943 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
1944 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
1945 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
1946 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
1947 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001948
Mingming Cao617ba132006-10-11 01:20:53 -07001949 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001950 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05001951 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07001952 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05001953 else
1954 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001955
1956 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
1957 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
1958
1959 set_opt(sbi->s_mount_opt, RESERVATION);
Eric Sandeen571640c2008-05-26 12:29:46 -04001960 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001961
Mingming Cao1e2462f2007-07-18 09:00:55 -04001962 /*
1963 * turn on extents feature by default in ext4 filesystem
Eric Sandeene4079a12008-07-11 19:27:31 -04001964 * only if feature flag already set by mkfs or tune2fs.
1965 * Use -o noextents to turn it off
Mingming Cao1e2462f2007-07-18 09:00:55 -04001966 */
Eric Sandeene4079a12008-07-11 19:27:31 -04001967 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
1968 set_opt(sbi->s_mount_opt, EXTENTS);
1969 else
1970 ext4_warning(sb, __func__,
1971 "extents feature not enabled on this filesystem, "
1972 "use tune2fs.\n");
Mingming Cao1e2462f2007-07-18 09:00:55 -04001973
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001974 /*
1975 * enable delayed allocation by default
1976 * Use -o nodelalloc to turn it off
1977 */
1978 set_opt(sbi->s_mount_opt, DELALLOC);
1979
1980
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001981 if (!parse_options((char *) data, sb, &journal_inum, &journal_devnum,
1982 NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983 goto failed_mount;
1984
1985 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07001986 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001987
Mingming Cao617ba132006-10-11 01:20:53 -07001988 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
1989 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
1990 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
1991 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001992 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07001993 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001994 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05001995
1996 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001997 * Check feature flags regardless of the revision level, since we
1998 * previously didn't change the revision level when setting the flags,
1999 * so there is a chance incompat flags are set on a rev 0 filesystem.
2000 */
Mingming Cao617ba132006-10-11 01:20:53 -07002001 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002002 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002003 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002004 "unsupported optional features (%x).\n",
2005 sb->s_id, le32_to_cpu(features));
2006 goto failed_mount;
2007 }
Mingming Cao617ba132006-10-11 01:20:53 -07002008 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002009 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002010 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002011 "unsupported optional features (%x).\n",
2012 sb->s_id, le32_to_cpu(features));
2013 goto failed_mount;
2014 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002015 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2016 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2017 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002018 /*
2019 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002020 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002021 */
2022 if (sizeof(root->i_blocks) < sizeof(u64) &&
2023 !(sb->s_flags & MS_RDONLY)) {
2024 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2025 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002026 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002027 goto failed_mount;
2028 }
2029 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002030 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2031
Mingming Cao617ba132006-10-11 01:20:53 -07002032 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2033 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002034 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002035 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002036 blocksize, sb->s_id);
2037 goto failed_mount;
2038 }
2039
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002040 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002041
2042 /* Validate the filesystem blocksize */
2043 if (!sb_set_blocksize(sb, blocksize)) {
2044 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2045 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002046 goto failed_mount;
2047 }
2048
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002049 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002050 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2051 offset = do_div(logical_sb_block, blocksize);
2052 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002053 if (!bh) {
2054 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002055 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002056 goto failed_mount;
2057 }
Mingming Cao617ba132006-10-11 01:20:53 -07002058 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002059 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002060 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002061 printk(KERN_ERR
2062 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002063 goto failed_mount;
2064 }
2065 }
2066
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002067 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2068 has_huge_files);
2069 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002070
Mingming Cao617ba132006-10-11 01:20:53 -07002071 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2072 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2073 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002074 } else {
2075 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2076 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002077 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002078 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002079 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002080 printk(KERN_ERR
2081 "EXT4-fs: unsupported inode size: %d\n",
2082 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002083 goto failed_mount;
2084 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002085 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2086 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002087 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002088 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2089 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002090 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002091 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002092 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002093 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002094 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002095 sbi->s_desc_size);
2096 goto failed_mount;
2097 }
2098 } else
2099 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002100 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002101 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002102 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002103 goto cantfind_ext4;
2104 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002105 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002106 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002107 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2108 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002109 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002110 sbi->s_sbh = bh;
2111 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002112 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2113 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002114 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002115 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2116 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002117 i = le32_to_cpu(es->s_flags);
2118 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2119 sbi->s_hash_unsigned = 3;
2120 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2121#ifdef __CHAR_UNSIGNED__
2122 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2123 sbi->s_hash_unsigned = 3;
2124#else
2125 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2126#endif
2127 sb->s_dirt = 1;
2128 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002129
2130 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002131 printk(KERN_ERR
2132 "EXT4-fs: #blocks per group too big: %lu\n",
2133 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002134 goto failed_mount;
2135 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002136 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002137 printk(KERN_ERR
2138 "EXT4-fs: #inodes per group too big: %lu\n",
2139 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002140 goto failed_mount;
2141 }
2142
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002143 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002144 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002145 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002146 " too large to mount safely\n", sb->s_id);
2147 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002148 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002149 "enabled\n");
2150 goto failed_mount;
2151 }
2152
Mingming Cao617ba132006-10-11 01:20:53 -07002153 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2154 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002155
2156 /* ensure blocks_count calculation below doesn't sign-extend */
2157 if (ext4_blocks_count(es) + EXT4_BLOCKS_PER_GROUP(sb) <
2158 le32_to_cpu(es->s_first_data_block) + 1) {
2159 printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu, "
2160 "first data block %u, blocks per group %lu\n",
2161 ext4_blocks_count(es),
2162 le32_to_cpu(es->s_first_data_block),
2163 EXT4_BLOCKS_PER_GROUP(sb));
2164 goto failed_mount;
2165 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002166 blocks_count = (ext4_blocks_count(es) -
2167 le32_to_cpu(es->s_first_data_block) +
2168 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2169 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
2170 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002171 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2172 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002173 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002174 GFP_KERNEL);
2175 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002176 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002177 goto failed_mount;
2178 }
2179
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002180#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002181 if (ext4_proc_root)
2182 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
2183
Theodore Ts'o240799c2008-10-09 23:53:47 -04002184 if (sbi->s_proc)
2185 proc_create_data("inode_readahead_blks", 0644, sbi->s_proc,
2186 &ext4_ui_proc_fops,
2187 &sbi->s_inode_readahead_blks);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002188#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002189
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002190 bgl_lock_init(&sbi->s_blockgroup_lock);
2191
2192 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002193 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002194 sbi->s_group_desc[i] = sb_bread(sb, block);
2195 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002196 printk(KERN_ERR "EXT4-fs: "
2197 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002198 db_count = i;
2199 goto failed_mount2;
2200 }
2201 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002202 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002203 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002204 goto failed_mount2;
2205 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002206 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2207 if (!ext4_fill_flex_info(sb)) {
2208 printk(KERN_ERR
2209 "EXT4-fs: unable to initialize "
2210 "flex_bg meta info!\n");
2211 goto failed_mount2;
2212 }
2213
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002214 sbi->s_gdb_count = db_count;
2215 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2216 spin_lock_init(&sbi->s_next_gen_lock);
2217
Peter Zijlstra833f4072007-10-16 23:25:45 -07002218 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2219 ext4_count_free_blocks(sb));
2220 if (!err) {
2221 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2222 ext4_count_free_inodes(sb));
2223 }
2224 if (!err) {
2225 err = percpu_counter_init(&sbi->s_dirs_counter,
2226 ext4_count_dirs(sb));
2227 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002228 if (!err) {
2229 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2230 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002231 if (err) {
2232 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2233 goto failed_mount3;
2234 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002235
Alex Tomasc9de5602008-01-29 00:19:52 -05002236 sbi->s_stripe = ext4_get_stripe_size(sbi);
2237
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002238 /*
2239 * set up enough so that it can read an inode
2240 */
Mingming Cao617ba132006-10-11 01:20:53 -07002241 sb->s_op = &ext4_sops;
2242 sb->s_export_op = &ext4_export_ops;
2243 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002244#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002245 sb->s_qcop = &ext4_qctl_operations;
2246 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002247#endif
2248 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2249
2250 sb->s_root = NULL;
2251
2252 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002253 EXT4_HAS_INCOMPAT_FEATURE(sb,
2254 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002255
2256 /*
2257 * The first inode we look at is the journal inode. Don't try
2258 * root first: it may be modified in the journal!
2259 */
2260 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002261 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2262 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002263 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002264 if (!(sb->s_flags & MS_RDONLY) &&
2265 EXT4_SB(sb)->s_journal->j_failed_commit) {
2266 printk(KERN_CRIT "EXT4-fs error (device %s): "
2267 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002268 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002269 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002270 if (test_opt(sb, ERRORS_RO)) {
2271 printk(KERN_CRIT
2272 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002273 sb->s_flags |= MS_RDONLY;
2274 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2275 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2276 }
2277 if (test_opt(sb, ERRORS_PANIC)) {
2278 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2279 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2280 ext4_commit_super(sb, es, 1);
2281 printk(KERN_CRIT
2282 "EXT4-fs (device %s): mount failed\n",
2283 sb->s_id);
2284 goto failed_mount4;
2285 }
2286 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002287 } else if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07002288 if (ext4_create_journal(sb, es, journal_inum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002289 goto failed_mount3;
2290 } else {
2291 if (!silent)
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002292 printk(KERN_ERR
2293 "ext4: No journal on filesystem on %s\n",
2294 sb->s_id);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002295 goto failed_mount3;
2296 }
2297
Jose R. Santoseb40a092007-07-18 08:37:25 -04002298 if (ext4_blocks_count(es) > 0xffffffffULL &&
2299 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2300 JBD2_FEATURE_INCOMPAT_64BIT)) {
2301 printk(KERN_ERR "ext4: Failed to set 64-bit journal feature\n");
2302 goto failed_mount4;
2303 }
2304
Girish Shilamkar818d2762008-01-28 23:58:27 -05002305 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2306 jbd2_journal_set_features(sbi->s_journal,
2307 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2308 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2309 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2310 jbd2_journal_set_features(sbi->s_journal,
2311 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2312 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2313 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2314 } else {
2315 jbd2_journal_clear_features(sbi->s_journal,
2316 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2317 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2318 }
2319
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002320 /* We have now updated the journal if required, so we can
2321 * validate the data journaling mode. */
2322 switch (test_opt(sb, DATA_FLAGS)) {
2323 case 0:
2324 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002325 * capabilities: ORDERED_DATA if the journal can
2326 * cope, else JOURNAL_DATA
2327 */
Mingming Caodab291a2006-10-11 01:21:01 -07002328 if (jbd2_journal_check_available_features
2329 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002330 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2331 else
2332 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2333 break;
2334
Mingming Cao617ba132006-10-11 01:20:53 -07002335 case EXT4_MOUNT_ORDERED_DATA:
2336 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002337 if (!jbd2_journal_check_available_features
2338 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002339 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002340 "requested data journaling mode\n");
2341 goto failed_mount4;
2342 }
2343 default:
2344 break;
2345 }
2346
2347 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002348 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2349 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002350 "its supported only with writeback mode\n");
2351 clear_opt(sbi->s_mount_opt, NOBH);
2352 }
2353 }
2354 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002355 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002356 * so we can safely mount the rest of the filesystem now.
2357 */
2358
David Howells1d1fe1e2008-02-07 00:15:37 -08002359 root = ext4_iget(sb, EXT4_ROOT_INO);
2360 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002361 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002362 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002363 goto failed_mount4;
2364 }
2365 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002366 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002367 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002368 goto failed_mount4;
2369 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002370 sb->s_root = d_alloc_root(root);
2371 if (!sb->s_root) {
2372 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2373 iput(root);
2374 ret = -ENOMEM;
2375 goto failed_mount4;
2376 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002377
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002378 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002379
2380 /* determine the minimum size of new large inodes, if present */
2381 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2382 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2383 EXT4_GOOD_OLD_INODE_SIZE;
2384 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2385 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2386 if (sbi->s_want_extra_isize <
2387 le16_to_cpu(es->s_want_extra_isize))
2388 sbi->s_want_extra_isize =
2389 le16_to_cpu(es->s_want_extra_isize);
2390 if (sbi->s_want_extra_isize <
2391 le16_to_cpu(es->s_min_extra_isize))
2392 sbi->s_want_extra_isize =
2393 le16_to_cpu(es->s_min_extra_isize);
2394 }
2395 }
2396 /* Check if enough inode space is available */
2397 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2398 sbi->s_inode_size) {
2399 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2400 EXT4_GOOD_OLD_INODE_SIZE;
2401 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2402 "available.\n");
2403 }
2404
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002405 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2406 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2407 "requested data journaling mode\n");
2408 clear_opt(sbi->s_mount_opt, DELALLOC);
2409 } else if (test_opt(sb, DELALLOC))
2410 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2411
2412 ext4_ext_init(sb);
2413 err = ext4_mb_init(sb, needs_recovery);
2414 if (err) {
2415 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2416 err);
2417 goto failed_mount4;
2418 }
2419
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002420 /*
2421 * akpm: core read_super() calls in here with the superblock locked.
2422 * That deadlocks, because orphan cleanup needs to lock the superblock
2423 * in numerous places. Here we just pop the lock - it's relatively
2424 * harmless, because we are now ready to accept write_super() requests,
2425 * and aviro says that's the only reason for hanging onto the
2426 * superblock lock.
2427 */
Mingming Cao617ba132006-10-11 01:20:53 -07002428 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2429 ext4_orphan_cleanup(sb, es);
2430 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002431 if (needs_recovery)
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002432 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Mingming Cao617ba132006-10-11 01:20:53 -07002433 ext4_mark_recovery_complete(sb, es);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002434 printk(KERN_INFO "EXT4-fs: mounted filesystem with %s data mode.\n",
2435 test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA ? "journal":
2436 test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA ? "ordered":
2437 "writeback");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002438
2439 lock_kernel();
2440 return 0;
2441
Mingming Cao617ba132006-10-11 01:20:53 -07002442cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002443 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002444 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002445 sb->s_id);
2446 goto failed_mount;
2447
2448failed_mount4:
Mingming Caodab291a2006-10-11 01:21:01 -07002449 jbd2_journal_destroy(sbi->s_journal);
Jan Kara47b4a502008-07-11 19:27:31 -04002450 sbi->s_journal = NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451failed_mount3:
2452 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2453 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2454 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002455 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002456failed_mount2:
2457 for (i = 0; i < db_count; i++)
2458 brelse(sbi->s_group_desc[i]);
2459 kfree(sbi->s_group_desc);
2460failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002461 if (sbi->s_proc) {
2462 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002463 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002464 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002465#ifdef CONFIG_QUOTA
2466 for (i = 0; i < MAXQUOTAS; i++)
2467 kfree(sbi->s_qf_names[i]);
2468#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002469 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002470 brelse(bh);
2471out_fail:
2472 sb->s_fs_info = NULL;
2473 kfree(sbi);
2474 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002475 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002476}
2477
2478/*
2479 * Setup any per-fs journal parameters now. We'll do this both on
2480 * initial mount, once the journal has been initialised but before we've
2481 * done any recovery; and again on any subsequent remount.
2482 */
Mingming Cao617ba132006-10-11 01:20:53 -07002483static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002484{
Mingming Cao617ba132006-10-11 01:20:53 -07002485 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002486
2487 if (sbi->s_commit_interval)
2488 journal->j_commit_interval = sbi->s_commit_interval;
Mingming Cao617ba132006-10-11 01:20:53 -07002489 /* We could also set up an ext4-specific default for the commit
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002490 * interval here, but for now we'll just fall back to the jbd
2491 * default. */
2492
2493 spin_lock(&journal->j_state_lock);
2494 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002495 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002496 else
Mingming Caodab291a2006-10-11 01:21:01 -07002497 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002498 if (test_opt(sb, DATA_ERR_ABORT))
2499 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2500 else
2501 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002502 spin_unlock(&journal->j_state_lock);
2503}
2504
Mingming Cao617ba132006-10-11 01:20:53 -07002505static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002506 unsigned int journal_inum)
2507{
2508 struct inode *journal_inode;
2509 journal_t *journal;
2510
2511 /* First, test for the existence of a valid inode on disk. Bad
2512 * things happen if we iget() an unused inode, as the subsequent
2513 * iput() will try to delete it. */
2514
David Howells1d1fe1e2008-02-07 00:15:37 -08002515 journal_inode = ext4_iget(sb, journal_inum);
2516 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002517 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002518 return NULL;
2519 }
2520 if (!journal_inode->i_nlink) {
2521 make_bad_inode(journal_inode);
2522 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002523 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002524 return NULL;
2525 }
2526
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002527 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002528 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002529 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002530 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002531 iput(journal_inode);
2532 return NULL;
2533 }
2534
Mingming Caodab291a2006-10-11 01:21:01 -07002535 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002536 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002537 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002538 iput(journal_inode);
2539 return NULL;
2540 }
2541 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002542 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002543 return journal;
2544}
2545
Mingming Cao617ba132006-10-11 01:20:53 -07002546static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002547 dev_t j_dev)
2548{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002549 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002550 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002551 ext4_fsblk_t start;
2552 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002554 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002555 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002556 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002557 struct block_device *bdev;
2558
Mingming Cao617ba132006-10-11 01:20:53 -07002559 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002560 if (bdev == NULL)
2561 return NULL;
2562
2563 if (bd_claim(bdev, sb)) {
2564 printk(KERN_ERR
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002565 "EXT4: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002566 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002567 return NULL;
2568 }
2569
2570 blocksize = sb->s_blocksize;
2571 hblock = bdev_hardsect_size(bdev);
2572 if (blocksize < hblock) {
2573 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002574 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002575 goto out_bdev;
2576 }
2577
Mingming Cao617ba132006-10-11 01:20:53 -07002578 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2579 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002580 set_blocksize(bdev, blocksize);
2581 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002582 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002583 "external journal\n");
2584 goto out_bdev;
2585 }
2586
Mingming Cao617ba132006-10-11 01:20:53 -07002587 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2588 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002589 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002590 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2591 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002592 "bad superblock\n");
2593 brelse(bh);
2594 goto out_bdev;
2595 }
2596
Mingming Cao617ba132006-10-11 01:20:53 -07002597 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2598 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002599 brelse(bh);
2600 goto out_bdev;
2601 }
2602
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002603 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002604 start = sb_block + 1;
2605 brelse(bh); /* we're done with the superblock */
2606
Mingming Caodab291a2006-10-11 01:21:01 -07002607 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002608 start, len, blocksize);
2609 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002610 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002611 goto out_bdev;
2612 }
2613 journal->j_private = sb;
2614 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2615 wait_on_buffer(journal->j_sb_buffer);
2616 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002617 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002618 goto out_journal;
2619 }
2620 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002621 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002622 "user (unsupported) - %d\n",
2623 be32_to_cpu(journal->j_superblock->s_nr_users));
2624 goto out_journal;
2625 }
Mingming Cao617ba132006-10-11 01:20:53 -07002626 EXT4_SB(sb)->journal_bdev = bdev;
2627 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002628 return journal;
2629out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07002630 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002631out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07002632 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002633 return NULL;
2634}
2635
Mingming Cao617ba132006-10-11 01:20:53 -07002636static int ext4_load_journal(struct super_block *sb,
2637 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002638 unsigned long journal_devnum)
2639{
2640 journal_t *journal;
2641 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
2642 dev_t journal_dev;
2643 int err = 0;
2644 int really_read_only;
2645
2646 if (journal_devnum &&
2647 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002648 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002649 "numbers have changed\n");
2650 journal_dev = new_decode_dev(journal_devnum);
2651 } else
2652 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
2653
2654 really_read_only = bdev_read_only(sb->s_bdev);
2655
2656 /*
2657 * Are we loading a blank journal or performing recovery after a
2658 * crash? For recovery, we need to check in advance whether we
2659 * can get read-write access to the device.
2660 */
2661
Mingming Cao617ba132006-10-11 01:20:53 -07002662 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002663 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002664 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002665 "required on readonly filesystem.\n");
2666 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07002667 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002668 "unavailable, cannot proceed.\n");
2669 return -EROFS;
2670 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002671 printk(KERN_INFO "EXT4-fs: write access will "
2672 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002673 }
2674 }
2675
2676 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07002677 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002678 "and inode journals!\n");
2679 return -EINVAL;
2680 }
2681
2682 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07002683 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002684 return -EINVAL;
2685 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002686 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002687 return -EINVAL;
2688 }
2689
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002690 if (journal->j_flags & JBD2_BARRIER)
2691 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
2692 else
2693 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
2694
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002695 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07002696 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002697 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002698 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002699 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002700 return err;
2701 }
2702 }
2703
Mingming Cao617ba132006-10-11 01:20:53 -07002704 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07002705 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002706 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07002707 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708
2709 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002710 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002711 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002712 return err;
2713 }
2714
Mingming Cao617ba132006-10-11 01:20:53 -07002715 EXT4_SB(sb)->s_journal = journal;
2716 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002717
2718 if (journal_devnum &&
2719 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2720 es->s_journal_dev = cpu_to_le32(journal_devnum);
2721 sb->s_dirt = 1;
2722
2723 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07002724 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002725 }
2726
2727 return 0;
2728}
2729
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002730static int ext4_create_journal(struct super_block *sb,
2731 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002732 unsigned int journal_inum)
2733{
2734 journal_t *journal;
Borislav Petkov6c675bd2007-07-15 23:41:45 -07002735 int err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002736
2737 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002738 printk(KERN_ERR "EXT4-fs: readonly filesystem when trying to "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002739 "create journal.\n");
2740 return -EROFS;
2741 }
2742
Borislav Petkov6c675bd2007-07-15 23:41:45 -07002743 journal = ext4_get_journal(sb, journal_inum);
2744 if (!journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002745 return -EINVAL;
2746
Mingming Cao617ba132006-10-11 01:20:53 -07002747 printk(KERN_INFO "EXT4-fs: creating new journal on inode %u\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002748 journal_inum);
2749
Borislav Petkov6c675bd2007-07-15 23:41:45 -07002750 err = jbd2_journal_create(journal);
2751 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002752 printk(KERN_ERR "EXT4-fs: error creating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002753 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002754 return -EIO;
2755 }
2756
Mingming Cao617ba132006-10-11 01:20:53 -07002757 EXT4_SB(sb)->s_journal = journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002758
Mingming Cao617ba132006-10-11 01:20:53 -07002759 ext4_update_dynamic_rev(sb);
2760 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
2761 EXT4_SET_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002762
2763 es->s_journal_inum = cpu_to_le32(journal_inum);
2764 sb->s_dirt = 1;
2765
2766 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07002767 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002768
2769 return 0;
2770}
2771
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002772static void ext4_commit_super(struct super_block *sb,
2773 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002774{
Mingming Cao617ba132006-10-11 01:20:53 -07002775 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002776
2777 if (!sbh)
2778 return;
Theodore Ts'o914258b2008-10-06 21:35:40 -04002779 if (buffer_write_io_error(sbh)) {
2780 /*
2781 * Oh, dear. A previous attempt to write the
2782 * superblock failed. This could happen because the
2783 * USB device was yanked out. Or it could happen to
2784 * be a transient write error and maybe the block will
2785 * be remapped. Nothing we can do but to retry the
2786 * write and hope for the best.
2787 */
2788 printk(KERN_ERR "ext4: previous I/O error to "
2789 "superblock detected for %s.\n", sb->s_id);
2790 clear_buffer_write_io_error(sbh);
2791 set_buffer_uptodate(sbh);
2792 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002793 es->s_wtime = cpu_to_le32(get_seconds());
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002794 ext4_free_blocks_count_set(es, ext4_count_free_blocks(sb));
Mingming Cao617ba132006-10-11 01:20:53 -07002795 es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002796 BUFFER_TRACE(sbh, "marking dirty");
2797 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002798 if (sync) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002799 sync_dirty_buffer(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002800 if (buffer_write_io_error(sbh)) {
2801 printk(KERN_ERR "ext4: I/O error while writing "
2802 "superblock for %s.\n", sb->s_id);
2803 clear_buffer_write_io_error(sbh);
2804 set_buffer_uptodate(sbh);
2805 }
2806 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002807}
2808
2809
2810/*
2811 * Have we just finished recovery? If so, and if we are mounting (or
2812 * remounting) the filesystem readonly, then we will end up with a
2813 * consistent fs on disk. Record that fact.
2814 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002815static void ext4_mark_recovery_complete(struct super_block *sb,
2816 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002817{
Mingming Cao617ba132006-10-11 01:20:53 -07002818 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002819
Mingming Caodab291a2006-10-11 01:21:01 -07002820 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002821 if (jbd2_journal_flush(journal) < 0)
2822 goto out;
2823
Jan Kara32c37732007-07-15 23:41:09 -07002824 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002825 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002826 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002827 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002828 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002829 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002830 }
Jan Kara32c37732007-07-15 23:41:09 -07002831 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002832
2833out:
Mingming Caodab291a2006-10-11 01:21:01 -07002834 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002835}
2836
2837/*
2838 * If we are mounting (or read-write remounting) a filesystem whose journal
2839 * has recorded an error from a previous lifetime, move that error to the
2840 * main filesystem now.
2841 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002842static void ext4_clear_journal_err(struct super_block *sb,
2843 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002844{
2845 journal_t *journal;
2846 int j_errno;
2847 const char *errstr;
2848
Mingming Cao617ba132006-10-11 01:20:53 -07002849 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002850
2851 /*
2852 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07002853 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002854 */
2855
Mingming Caodab291a2006-10-11 01:21:01 -07002856 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002857 if (j_errno) {
2858 char nbuf[16];
2859
Mingming Cao617ba132006-10-11 01:20:53 -07002860 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04002861 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002862 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04002863 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002864 "filesystem check.");
2865
Mingming Cao617ba132006-10-11 01:20:53 -07002866 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2867 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002868 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002869
Mingming Caodab291a2006-10-11 01:21:01 -07002870 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002871 }
2872}
2873
2874/*
2875 * Force the running and committing transactions to commit,
2876 * and wait on the commit.
2877 */
Mingming Cao617ba132006-10-11 01:20:53 -07002878int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002879{
2880 journal_t *journal;
2881 int ret;
2882
2883 if (sb->s_flags & MS_RDONLY)
2884 return 0;
2885
Mingming Cao617ba132006-10-11 01:20:53 -07002886 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002887 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002888 ret = ext4_journal_force_commit(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002889 return ret;
2890}
2891
2892/*
Mingming Cao617ba132006-10-11 01:20:53 -07002893 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05002895 * point. (We can probably nuke this function altogether, and remove
2896 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002897 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002898static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002899{
2900 if (mutex_trylock(&sb->s_lock) != 0)
2901 BUG();
2902 sb->s_dirt = 0;
2903}
2904
Mingming Cao617ba132006-10-11 01:20:53 -07002905static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002906{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05002907 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002908
Theodore Ts'oede86cc2008-10-05 20:50:06 -04002909 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002910 sb->s_dirt = 0;
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05002911 if (wait)
2912 ret = ext4_force_commit(sb);
2913 else
2914 jbd2_journal_start_commit(EXT4_SB(sb)->s_journal, NULL);
2915 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916}
2917
2918/*
2919 * LVM calls this function before a (read-only) snapshot is created. This
2920 * gives us a chance to flush the journal completely and mark the fs clean.
2921 */
Mingming Cao617ba132006-10-11 01:20:53 -07002922static void ext4_write_super_lockfs(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923{
2924 sb->s_dirt = 0;
2925
2926 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002927 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002928
2929 /* Now we set up the journal barrier. */
Mingming Caodab291a2006-10-11 01:21:01 -07002930 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002931
2932 /*
2933 * We don't want to clear needs_recovery flag when we failed
2934 * to flush the journal.
2935 */
2936 if (jbd2_journal_flush(journal) < 0)
2937 return;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002938
2939 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07002940 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
2941 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002942 }
2943}
2944
2945/*
2946 * Called by LVM after the snapshot is done. We need to reset the RECOVER
2947 * flag here, even though the filesystem is not technically dirty yet.
2948 */
Mingming Cao617ba132006-10-11 01:20:53 -07002949static void ext4_unlockfs(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002950{
2951 if (!(sb->s_flags & MS_RDONLY)) {
2952 lock_super(sb);
2953 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07002954 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
2955 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002956 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07002957 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002958 }
2959}
2960
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002961static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002962{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002963 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07002964 struct ext4_sb_info *sbi = EXT4_SB(sb);
2965 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002966 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07002967 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04002968 ext4_group_t g;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002969 int err;
2970#ifdef CONFIG_QUOTA
2971 int i;
2972#endif
2973
2974 /* Store the original options */
2975 old_sb_flags = sb->s_flags;
2976 old_opts.s_mount_opt = sbi->s_mount_opt;
2977 old_opts.s_resuid = sbi->s_resuid;
2978 old_opts.s_resgid = sbi->s_resgid;
2979 old_opts.s_commit_interval = sbi->s_commit_interval;
2980#ifdef CONFIG_QUOTA
2981 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
2982 for (i = 0; i < MAXQUOTAS; i++)
2983 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
2984#endif
2985
2986 /*
2987 * Allow the "check" option to be passed as a remount option.
2988 */
2989 if (!parse_options(data, sb, NULL, NULL, &n_blocks_count, 1)) {
2990 err = -EINVAL;
2991 goto restore_opts;
2992 }
2993
Mingming Cao617ba132006-10-11 01:20:53 -07002994 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04002995 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002996
2997 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002998 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002999
3000 es = sbi->s_es;
3001
Mingming Cao617ba132006-10-11 01:20:53 -07003002 ext4_init_journal_params(sb, sbi->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003003
3004 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003005 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003006 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003007 err = -EROFS;
3008 goto restore_opts;
3009 }
3010
3011 if (*flags & MS_RDONLY) {
3012 /*
3013 * First of all, the unconditional stuff we have to do
3014 * to disable replay of the journal when we next remount
3015 */
3016 sb->s_flags |= MS_RDONLY;
3017
3018 /*
3019 * OK, test if we are remounting a valid rw partition
3020 * readonly, and if so set the rdonly flag and then
3021 * mark the partition as valid again.
3022 */
Mingming Cao617ba132006-10-11 01:20:53 -07003023 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3024 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003025 es->s_state = cpu_to_le16(sbi->s_mount_state);
3026
Jan Kara32c37732007-07-15 23:41:09 -07003027 /*
3028 * We have to unlock super so that we can wait for
3029 * transactions.
3030 */
3031 unlock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07003032 ext4_mark_recovery_complete(sb, es);
Jan Kara32c37732007-07-15 23:41:09 -07003033 lock_super(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003034 } else {
3035 __le32 ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003036 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3037 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3038 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003039 "remount RDWR because of unsupported "
3040 "optional features (%x).\n",
3041 sb->s_id, le32_to_cpu(ret));
3042 err = -EROFS;
3043 goto restore_opts;
3044 }
Eric Sandeenead65962007-02-10 01:46:08 -08003045
3046 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003047 * Make sure the group descriptor checksums
3048 * are sane. If they aren't, refuse to
3049 * remount r/w.
3050 */
3051 for (g = 0; g < sbi->s_groups_count; g++) {
3052 struct ext4_group_desc *gdp =
3053 ext4_get_group_desc(sb, g, NULL);
3054
3055 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3056 printk(KERN_ERR
3057 "EXT4-fs: ext4_remount: "
3058 "Checksum for group %lu failed (%u!=%u)\n",
3059 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3060 le16_to_cpu(gdp->bg_checksum));
3061 err = -EINVAL;
3062 goto restore_opts;
3063 }
3064 }
3065
3066 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003067 * If we have an unprocessed orphan list hanging
3068 * around from a previously readonly bdev mount,
3069 * require a full umount/remount for now.
3070 */
3071 if (es->s_last_orphan) {
3072 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3073 "remount RDWR because of unprocessed "
3074 "orphan inode list. Please "
3075 "umount/remount instead.\n",
3076 sb->s_id);
3077 err = -EINVAL;
3078 goto restore_opts;
3079 }
3080
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003081 /*
3082 * Mounting a RDONLY partition read-write, so reread
3083 * and store the current valid flag. (It may have
3084 * been changed by e2fsck since we originally mounted
3085 * the partition.)
3086 */
Mingming Cao617ba132006-10-11 01:20:53 -07003087 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003088 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003089 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003090 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003091 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003092 sb->s_flags &= ~MS_RDONLY;
3093 }
3094 }
3095#ifdef CONFIG_QUOTA
3096 /* Release old quota file names */
3097 for (i = 0; i < MAXQUOTAS; i++)
3098 if (old_opts.s_qf_names[i] &&
3099 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3100 kfree(old_opts.s_qf_names[i]);
3101#endif
3102 return 0;
3103restore_opts:
3104 sb->s_flags = old_sb_flags;
3105 sbi->s_mount_opt = old_opts.s_mount_opt;
3106 sbi->s_resuid = old_opts.s_resuid;
3107 sbi->s_resgid = old_opts.s_resgid;
3108 sbi->s_commit_interval = old_opts.s_commit_interval;
3109#ifdef CONFIG_QUOTA
3110 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3111 for (i = 0; i < MAXQUOTAS; i++) {
3112 if (sbi->s_qf_names[i] &&
3113 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3114 kfree(sbi->s_qf_names[i]);
3115 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3116 }
3117#endif
3118 return err;
3119}
3120
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003121static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003122{
3123 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003124 struct ext4_sb_info *sbi = EXT4_SB(sb);
3125 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003126 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003127
Badari Pulavarty5e700302007-07-15 23:42:00 -07003128 if (test_opt(sb, MINIX_DF)) {
3129 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003130 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003131 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003132 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003133 smp_rmb();
3134
3135 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003136 * Compute the overhead (FS structures). This is constant
3137 * for a given filesystem unless the number of block groups
3138 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003139 */
3140
3141 /*
3142 * All of the blocks before first_data_block are
3143 * overhead
3144 */
3145 overhead = le32_to_cpu(es->s_first_data_block);
3146
3147 /*
3148 * Add the overhead attributed to the superblock and
3149 * block group descriptors. If the sparse superblocks
3150 * feature is turned on, then not all groups have this.
3151 */
3152 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003153 overhead += ext4_bg_has_super(sb, i) +
3154 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003155 cond_resched();
3156 }
3157
3158 /*
3159 * Every block group has an inode bitmap, a block
3160 * bitmap, and an inode table.
3161 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003162 overhead += ngroups * (2 + sbi->s_itb_per_group);
3163 sbi->s_overhead_last = overhead;
3164 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003165 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003166 }
3167
Mingming Cao617ba132006-10-11 01:20:53 -07003168 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003169 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003170 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003171 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3172 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003173 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003174 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3175 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003176 buf->f_bavail = 0;
3177 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003178 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003179 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003180 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003181 fsid = le64_to_cpup((void *)es->s_uuid) ^
3182 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3183 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3184 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003185 return 0;
3186}
3187
3188/* Helper function for writing quotas on sync - we need to start transaction before quota file
3189 * is locked for write. Otherwise the are possible deadlocks:
3190 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003191 * ext4_create() quota_sync()
Mingming Caodab291a2006-10-11 01:21:01 -07003192 * jbd2_journal_start() write_dquot()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193 * DQUOT_INIT() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003194 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003195 *
3196 */
3197
3198#ifdef CONFIG_QUOTA
3199
3200static inline struct inode *dquot_to_inode(struct dquot *dquot)
3201{
3202 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3203}
3204
Mingming Cao617ba132006-10-11 01:20:53 -07003205static int ext4_dquot_initialize(struct inode *inode, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003206{
3207 handle_t *handle;
3208 int ret, err;
3209
3210 /* We may create quota structure so we need to reserve enough blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003211 handle = ext4_journal_start(inode, 2*EXT4_QUOTA_INIT_BLOCKS(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003212 if (IS_ERR(handle))
3213 return PTR_ERR(handle);
3214 ret = dquot_initialize(inode, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003215 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003216 if (!ret)
3217 ret = err;
3218 return ret;
3219}
3220
Mingming Cao617ba132006-10-11 01:20:53 -07003221static int ext4_dquot_drop(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003222{
3223 handle_t *handle;
3224 int ret, err;
3225
3226 /* We may delete quota structure so we need to reserve enough blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003227 handle = ext4_journal_start(inode, 2*EXT4_QUOTA_DEL_BLOCKS(inode->i_sb));
Jan Kara2887df12008-04-29 22:02:07 -04003228 if (IS_ERR(handle)) {
3229 /*
3230 * We call dquot_drop() anyway to at least release references
3231 * to quota structures so that umount does not hang.
3232 */
3233 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003234 return PTR_ERR(handle);
Jan Kara2887df12008-04-29 22:02:07 -04003235 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003236 ret = dquot_drop(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003237 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003238 if (!ret)
3239 ret = err;
3240 return ret;
3241}
3242
Mingming Cao617ba132006-10-11 01:20:53 -07003243static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003244{
3245 int ret, err;
3246 handle_t *handle;
3247 struct inode *inode;
3248
3249 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003250 handle = ext4_journal_start(inode,
3251 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003252 if (IS_ERR(handle))
3253 return PTR_ERR(handle);
3254 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003255 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003256 if (!ret)
3257 ret = err;
3258 return ret;
3259}
3260
Mingming Cao617ba132006-10-11 01:20:53 -07003261static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003262{
3263 int ret, err;
3264 handle_t *handle;
3265
Mingming Cao617ba132006-10-11 01:20:53 -07003266 handle = ext4_journal_start(dquot_to_inode(dquot),
3267 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003268 if (IS_ERR(handle))
3269 return PTR_ERR(handle);
3270 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003271 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003272 if (!ret)
3273 ret = err;
3274 return ret;
3275}
3276
Mingming Cao617ba132006-10-11 01:20:53 -07003277static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003278{
3279 int ret, err;
3280 handle_t *handle;
3281
Mingming Cao617ba132006-10-11 01:20:53 -07003282 handle = ext4_journal_start(dquot_to_inode(dquot),
3283 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003284 if (IS_ERR(handle)) {
3285 /* Release dquot anyway to avoid endless cycle in dqput() */
3286 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003288 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003290 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291 if (!ret)
3292 ret = err;
3293 return ret;
3294}
3295
Mingming Cao617ba132006-10-11 01:20:53 -07003296static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003298 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003299 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3300 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003302 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003303 } else {
3304 return dquot_mark_dquot_dirty(dquot);
3305 }
3306}
3307
Mingming Cao617ba132006-10-11 01:20:53 -07003308static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003309{
3310 int ret, err;
3311 handle_t *handle;
3312
3313 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003314 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003315 if (IS_ERR(handle))
3316 return PTR_ERR(handle);
3317 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003318 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003319 if (!ret)
3320 ret = err;
3321 return ret;
3322}
3323
3324/*
3325 * Turn on quotas during mount time - we need to find
3326 * the quota file and such...
3327 */
Mingming Cao617ba132006-10-11 01:20:53 -07003328static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003329{
Mingming Cao617ba132006-10-11 01:20:53 -07003330 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3331 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003332}
3333
3334/*
3335 * Standard function to be called on quota_on
3336 */
Mingming Cao617ba132006-10-11 01:20:53 -07003337static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003338 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003339{
3340 int err;
Al Viro82646132008-08-02 00:57:06 -04003341 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003342
3343 if (!test_opt(sb, QUOTA))
3344 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003345 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003346 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003347 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003348
Al Viro82646132008-08-02 00:57:06 -04003349 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003350 if (err)
3351 return err;
Jan Kara06235432008-05-13 19:11:51 -04003352
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003353 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003354 if (path.mnt->mnt_sb != sb) {
3355 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003356 return -EXDEV;
3357 }
Jan Kara06235432008-05-13 19:11:51 -04003358 /* Journaling quota? */
3359 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003360 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003361 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003362 printk(KERN_WARNING
3363 "EXT4-fs: Quota file not on filesystem root. "
3364 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003365 }
Jan Kara06235432008-05-13 19:11:51 -04003366
3367 /*
3368 * When we journal data on quota file, we have to flush journal to see
3369 * all updates to the file when we bypass pagecache...
3370 */
Al Viro82646132008-08-02 00:57:06 -04003371 if (ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003372 /*
3373 * We don't need to lock updates but journal_flush() could
3374 * otherwise be livelocked...
3375 */
3376 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003377 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003378 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003379 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003380 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003381 return err;
3382 }
Jan Kara06235432008-05-13 19:11:51 -04003383 }
3384
Al Viro82646132008-08-02 00:57:06 -04003385 err = vfs_quota_on_path(sb, type, format_id, &path);
3386 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003387 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003388}
3389
3390/* Read data from quotafile - avoid pagecache and such because we cannot afford
3391 * acquiring the locks... As quota files are never truncated and quota code
3392 * itself serializes the operations (and noone else should touch the files)
3393 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003394static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003395 size_t len, loff_t off)
3396{
3397 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003398 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003399 int err = 0;
3400 int offset = off & (sb->s_blocksize - 1);
3401 int tocopy;
3402 size_t toread;
3403 struct buffer_head *bh;
3404 loff_t i_size = i_size_read(inode);
3405
3406 if (off > i_size)
3407 return 0;
3408 if (off+len > i_size)
3409 len = i_size-off;
3410 toread = len;
3411 while (toread > 0) {
3412 tocopy = sb->s_blocksize - offset < toread ?
3413 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003414 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003415 if (err)
3416 return err;
3417 if (!bh) /* A hole? */
3418 memset(data, 0, tocopy);
3419 else
3420 memcpy(data, bh->b_data+offset, tocopy);
3421 brelse(bh);
3422 offset = 0;
3423 toread -= tocopy;
3424 data += tocopy;
3425 blk++;
3426 }
3427 return len;
3428}
3429
3430/* Write to quotafile (we know the transaction is already started and has
3431 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003432static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003433 const char *data, size_t len, loff_t off)
3434{
3435 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003436 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003437 int err = 0;
3438 int offset = off & (sb->s_blocksize - 1);
3439 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003440 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003441 size_t towrite = len;
3442 struct buffer_head *bh;
3443 handle_t *handle = journal_current_handle();
3444
Jan Kara9c3013e2007-09-11 15:23:29 -07003445 if (!handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003446 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003447 " cancelled because transaction is not started.\n",
3448 (unsigned long long)off, (unsigned long long)len);
3449 return -EIO;
3450 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003451 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3452 while (towrite > 0) {
3453 tocopy = sb->s_blocksize - offset < towrite ?
3454 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003455 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003456 if (!bh)
3457 goto out;
3458 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003459 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003460 if (err) {
3461 brelse(bh);
3462 goto out;
3463 }
3464 }
3465 lock_buffer(bh);
3466 memcpy(bh->b_data+offset, data, tocopy);
3467 flush_dcache_page(bh->b_page);
3468 unlock_buffer(bh);
3469 if (journal_quota)
Mingming Cao617ba132006-10-11 01:20:53 -07003470 err = ext4_journal_dirty_metadata(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003471 else {
3472 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003473 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003474 mark_buffer_dirty(bh);
3475 }
3476 brelse(bh);
3477 if (err)
3478 goto out;
3479 offset = 0;
3480 towrite -= tocopy;
3481 data += tocopy;
3482 blk++;
3483 }
3484out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003485 if (len == towrite) {
3486 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003487 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003488 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003489 if (inode->i_size < off+len-towrite) {
3490 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003491 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003492 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003493 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003494 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003495 mutex_unlock(&inode->i_mutex);
3496 return len - towrite;
3497}
3498
3499#endif
3500
Mingming Cao617ba132006-10-11 01:20:53 -07003501static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003502 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3503{
Mingming Cao617ba132006-10-11 01:20:53 -07003504 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003505}
3506
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003507#ifdef CONFIG_PROC_FS
3508static int ext4_ui_proc_show(struct seq_file *m, void *v)
3509{
3510 unsigned int *p = m->private;
3511
3512 seq_printf(m, "%u\n", *p);
3513 return 0;
3514}
3515
3516static int ext4_ui_proc_open(struct inode *inode, struct file *file)
3517{
3518 return single_open(file, ext4_ui_proc_show, PDE(inode)->data);
3519}
3520
3521static ssize_t ext4_ui_proc_write(struct file *file, const char __user *buf,
3522 size_t cnt, loff_t *ppos)
3523{
Roel Kluin23475e22008-11-26 02:23:19 -05003524 unsigned long *p = PDE(file->f_path.dentry->d_inode)->data;
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003525 char str[32];
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003526
3527 if (cnt >= sizeof(str))
3528 return -EINVAL;
3529 if (copy_from_user(str, buf, cnt))
3530 return -EFAULT;
Roel Kluin23475e22008-11-26 02:23:19 -05003531
3532 *p = simple_strtoul(str, NULL, 0);
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003533 return cnt;
3534}
3535
3536const struct file_operations ext4_ui_proc_fops = {
3537 .owner = THIS_MODULE,
3538 .open = ext4_ui_proc_open,
3539 .read = seq_read,
3540 .llseek = seq_lseek,
3541 .release = single_release,
3542 .write = ext4_ui_proc_write,
3543};
3544#endif
3545
Theodore Ts'o03010a32008-10-10 20:02:48 -04003546static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003547 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003548 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003549 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003550 .kill_sb = kill_block_super,
3551 .fs_flags = FS_REQUIRES_DEV,
3552};
3553
Theodore Ts'o03010a32008-10-10 20:02:48 -04003554#ifdef CONFIG_EXT4DEV_COMPAT
3555static int ext4dev_get_sb(struct file_system_type *fs_type,
3556 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3557{
3558 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3559 "to mount using ext4\n");
3560 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3561 "will go away by 2.6.31\n");
3562 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3563}
3564
3565static struct file_system_type ext4dev_fs_type = {
3566 .owner = THIS_MODULE,
3567 .name = "ext4dev",
3568 .get_sb = ext4dev_get_sb,
3569 .kill_sb = kill_block_super,
3570 .fs_flags = FS_REQUIRES_DEV,
3571};
3572MODULE_ALIAS("ext4dev");
3573#endif
3574
Mingming Cao617ba132006-10-11 01:20:53 -07003575static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003576{
Alex Tomasc9de5602008-01-29 00:19:52 -05003577 int err;
3578
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003579 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003580 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003581 if (err)
3582 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003583
3584 err = init_ext4_xattr();
3585 if (err)
3586 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003587 err = init_inodecache();
3588 if (err)
3589 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003590 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003591 if (err)
3592 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003593#ifdef CONFIG_EXT4DEV_COMPAT
3594 err = register_filesystem(&ext4dev_fs_type);
3595 if (err) {
3596 unregister_filesystem(&ext4_fs_type);
3597 goto out;
3598 }
3599#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003600 return 0;
3601out:
3602 destroy_inodecache();
3603out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003604 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003605out2:
3606 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003607 return err;
3608}
3609
Mingming Cao617ba132006-10-11 01:20:53 -07003610static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003611{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003612 unregister_filesystem(&ext4_fs_type);
3613#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003614 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003615#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003616 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003617 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003618 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003619 remove_proc_entry("fs/ext4", NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003620}
3621
3622MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Mingming Cao617ba132006-10-11 01:20:53 -07003623MODULE_DESCRIPTION("Fourth Extended Filesystem with extents");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003624MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003625module_init(init_ext4_fs)
3626module_exit(exit_ext4_fs)