blob: 5a18e9ec7cf9cfda69be0be4ae74a2a2ee73b9ed [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -040023#include <linux/vmalloc.h>
Mingming Caodab291a2006-10-11 01:21:01 -070024#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/blkdev.h>
28#include <linux/parser.h>
29#include <linux/smp_lock.h>
30#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070031#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/vfs.h>
33#include <linux/random.h>
34#include <linux/mount.h>
35#include <linux/namei.h>
36#include <linux/quotaops.h>
37#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040038#include <linux/proc_fs.h>
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040039#include <linux/ctype.h>
Vignesh Babu13305932007-07-18 09:11:02 -040040#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040041#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070042#include <asm/uaccess.h>
43
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4.h"
45#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070046#include "xattr.h"
47#include "acl.h"
Theodore Ts'o3661d282009-09-14 22:59:50 -040048#include "mballoc.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Theodore Ts'o9bffad12009-06-17 11:48:11 -040050#define CREATE_TRACE_POINTS
51#include <trace/events/ext4.h>
52
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040053struct proc_dir_entry *ext4_proc_root;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040054static struct kset *ext4_kset;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040055
Mingming Cao617ba132006-10-11 01:20:53 -070056static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070057 unsigned long journal_devnum);
Theodore Ts'oe2d67052009-05-01 00:33:44 -040058static int ext4_commit_super(struct super_block *sb, int sync);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040059static void ext4_mark_recovery_complete(struct super_block *sb,
60 struct ext4_super_block *es);
61static void ext4_clear_journal_err(struct super_block *sb,
62 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070063static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040064static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070065 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040066static int ext4_remount(struct super_block *sb, int *flags, char *data);
67static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080068static int ext4_unfreeze(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040069static void ext4_write_super(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080070static int ext4_freeze(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070071
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070072
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070073ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
74 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070075{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040076 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070077 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040078 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070079}
80
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070081ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
82 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070083{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040084 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070085 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040086 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070087}
88
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070089ext4_fsblk_t ext4_inode_table(struct super_block *sb,
90 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070091{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040092 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070093 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040094 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070095}
96
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050097__u32 ext4_free_blks_count(struct super_block *sb,
98 struct ext4_group_desc *bg)
99{
100 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
101 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400102 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500103}
104
105__u32 ext4_free_inodes_count(struct super_block *sb,
106 struct ext4_group_desc *bg)
107{
108 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
109 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400110 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500111}
112
113__u32 ext4_used_dirs_count(struct super_block *sb,
114 struct ext4_group_desc *bg)
115{
116 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
117 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400118 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500119}
120
121__u32 ext4_itable_unused_count(struct super_block *sb,
122 struct ext4_group_desc *bg)
123{
124 return le16_to_cpu(bg->bg_itable_unused_lo) |
125 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400126 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500127}
128
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700129void ext4_block_bitmap_set(struct super_block *sb,
130 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700131{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400132 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700133 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
134 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700135}
136
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700137void ext4_inode_bitmap_set(struct super_block *sb,
138 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700139{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400140 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700141 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
142 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700143}
144
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700145void ext4_inode_table_set(struct super_block *sb,
146 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700147{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400148 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700149 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
150 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700151}
152
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500153void ext4_free_blks_set(struct super_block *sb,
154 struct ext4_group_desc *bg, __u32 count)
155{
156 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
157 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
158 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
159}
160
161void ext4_free_inodes_set(struct super_block *sb,
162 struct ext4_group_desc *bg, __u32 count)
163{
164 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
165 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
166 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
167}
168
169void ext4_used_dirs_set(struct super_block *sb,
170 struct ext4_group_desc *bg, __u32 count)
171{
172 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
173 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
174 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
175}
176
177void ext4_itable_unused_set(struct super_block *sb,
178 struct ext4_group_desc *bg, __u32 count)
179{
180 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
181 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
182 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
183}
184
Curt Wohlgemuthd3d1faf2009-09-29 11:01:03 -0400185
186/* Just increment the non-pointer handle value */
187static handle_t *ext4_get_nojournal(void)
188{
189 handle_t *handle = current->journal_info;
190 unsigned long ref_cnt = (unsigned long)handle;
191
192 BUG_ON(ref_cnt >= EXT4_NOJOURNAL_MAX_REF_COUNT);
193
194 ref_cnt++;
195 handle = (handle_t *)ref_cnt;
196
197 current->journal_info = handle;
198 return handle;
199}
200
201
202/* Decrement the non-pointer handle value */
203static void ext4_put_nojournal(handle_t *handle)
204{
205 unsigned long ref_cnt = (unsigned long)handle;
206
207 BUG_ON(ref_cnt == 0);
208
209 ref_cnt--;
210 handle = (handle_t *)ref_cnt;
211
212 current->journal_info = handle;
213}
214
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700215/*
Mingming Caodab291a2006-10-11 01:21:01 -0700216 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700217 *
218 * The only special thing we need to do here is to make sure that all
219 * journal_end calls result in the superblock being marked dirty, so
220 * that sync() will call the filesystem's write_super callback if
221 * appropriate.
222 */
Mingming Cao617ba132006-10-11 01:20:53 -0700223handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700224{
225 journal_t *journal;
226
227 if (sb->s_flags & MS_RDONLY)
228 return ERR_PTR(-EROFS);
229
230 /* Special case here: if the journal has aborted behind our
231 * backs (eg. EIO in the commit thread), then we still need to
232 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700233 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500234 if (journal) {
235 if (is_journal_aborted(journal)) {
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400236 ext4_abort(sb, __func__, "Detected aborted journal");
Frank Mayhar03901312009-01-07 00:06:22 -0500237 return ERR_PTR(-EROFS);
238 }
239 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700240 }
Curt Wohlgemuthd3d1faf2009-09-29 11:01:03 -0400241 return ext4_get_nojournal();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700242}
243
244/*
245 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700246 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700247 * that sync() will call the filesystem's write_super callback if
248 * appropriate.
249 */
Mingming Cao617ba132006-10-11 01:20:53 -0700250int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700251{
252 struct super_block *sb;
253 int err;
254 int rc;
255
Frank Mayhar03901312009-01-07 00:06:22 -0500256 if (!ext4_handle_valid(handle)) {
Curt Wohlgemuthd3d1faf2009-09-29 11:01:03 -0400257 ext4_put_nojournal(handle);
Frank Mayhar03901312009-01-07 00:06:22 -0500258 return 0;
259 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700260 sb = handle->h_transaction->t_journal->j_private;
261 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700262 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700263
264 if (!err)
265 err = rc;
266 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700267 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268 return err;
269}
270
Mingming Cao617ba132006-10-11 01:20:53 -0700271void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700272 struct buffer_head *bh, handle_t *handle, int err)
273{
274 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700275 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700276
Frank Mayhar03901312009-01-07 00:06:22 -0500277 BUG_ON(!ext4_handle_valid(handle));
278
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700279 if (bh)
280 BUFFER_TRACE(bh, "abort");
281
282 if (!handle->h_err)
283 handle->h_err = err;
284
285 if (is_handle_aborted(handle))
286 return;
287
288 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
289 caller, errstr, err_fn);
290
Mingming Caodab291a2006-10-11 01:21:01 -0700291 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700292}
293
294/* Deal with the reporting of failure conditions on a filesystem such as
295 * inconsistencies detected or read IO failures.
296 *
297 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700298 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700299 * write ordering constraints on the superblock which prevent us from
300 * writing it out straight away; and given that the journal is about to
301 * be aborted, we can't rely on the current, or future, transactions to
302 * write out the superblock safely.
303 *
Mingming Caodab291a2006-10-11 01:21:01 -0700304 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700305 * the journal instead. On recovery, the journal will compain about
306 * that error until we've noted it down and cleared it.
307 */
308
Mingming Cao617ba132006-10-11 01:20:53 -0700309static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700310{
Mingming Cao617ba132006-10-11 01:20:53 -0700311 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700312
Mingming Cao617ba132006-10-11 01:20:53 -0700313 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
314 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700315
316 if (sb->s_flags & MS_RDONLY)
317 return;
318
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400319 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700320 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321
Theodore Ts'o4ab2f152009-06-13 10:09:36 -0400322 EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700323 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700324 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700325 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400326 if (test_opt(sb, ERRORS_RO)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -0400327 ext4_msg(sb, KERN_CRIT, "Remounting filesystem read-only");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700328 sb->s_flags |= MS_RDONLY;
329 }
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400330 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700331 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700332 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700333 sb->s_id);
334}
335
Eric Sandeen12062dd2010-02-15 14:19:27 -0500336void __ext4_error(struct super_block *sb, const char *function,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400337 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700338{
339 va_list args;
340
341 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400342 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700343 vprintk(fmt, args);
344 printk("\n");
345 va_end(args);
346
Mingming Cao617ba132006-10-11 01:20:53 -0700347 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700348}
349
Frank Mayhar273df552010-03-02 11:46:09 -0500350void ext4_error_inode(const char *function, struct inode *inode,
351 const char *fmt, ...)
352{
353 va_list args;
354
355 va_start(args, fmt);
356 printk(KERN_CRIT "EXT4-fs error (device %s): %s: inode #%lu: (comm %s) ",
357 inode->i_sb->s_id, function, inode->i_ino, current->comm);
358 vprintk(fmt, args);
359 printk("\n");
360 va_end(args);
361
362 ext4_handle_error(inode->i_sb);
363}
364
365void ext4_error_file(const char *function, struct file *file,
366 const char *fmt, ...)
367{
368 va_list args;
369 struct inode *inode = file->f_dentry->d_inode;
370 char pathname[80], *path;
371
372 va_start(args, fmt);
373 path = d_path(&(file->f_path), pathname, sizeof(pathname));
374 if (!path)
375 path = "(unknown)";
376 printk(KERN_CRIT
377 "EXT4-fs error (device %s): %s: inode #%lu (comm %s path %s): ",
378 inode->i_sb->s_id, function, inode->i_ino, current->comm, path);
379 vprintk(fmt, args);
380 printk("\n");
381 va_end(args);
382
383 ext4_handle_error(inode->i_sb);
384}
385
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400386static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700387 char nbuf[16])
388{
389 char *errstr = NULL;
390
391 switch (errno) {
392 case -EIO:
393 errstr = "IO failure";
394 break;
395 case -ENOMEM:
396 errstr = "Out of memory";
397 break;
398 case -EROFS:
Theodore Ts'o78f1ddb2009-07-27 23:09:47 -0400399 if (!sb || (EXT4_SB(sb)->s_journal &&
400 EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401 errstr = "Journal has aborted";
402 else
403 errstr = "Readonly filesystem";
404 break;
405 default:
406 /* If the caller passed in an extra buffer for unknown
407 * errors, textualise them now. Else we just return
408 * NULL. */
409 if (nbuf) {
410 /* Check for truncated error codes... */
411 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
412 errstr = nbuf;
413 }
414 break;
415 }
416
417 return errstr;
418}
419
Mingming Cao617ba132006-10-11 01:20:53 -0700420/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700421 * automatically and invokes the appropriate error response. */
422
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400423void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700424{
425 char nbuf[16];
426 const char *errstr;
427
428 /* Special case: if the error is EROFS, and we're not already
429 * inside a transaction, then there's really no point in logging
430 * an error. */
431 if (errno == -EROFS && journal_current_handle() == NULL &&
432 (sb->s_flags & MS_RDONLY))
433 return;
434
Mingming Cao617ba132006-10-11 01:20:53 -0700435 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400436 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
437 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700438
Mingming Cao617ba132006-10-11 01:20:53 -0700439 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700440}
441
442/*
Mingming Cao617ba132006-10-11 01:20:53 -0700443 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700444 * abort function may be used to deal with unrecoverable failures such
445 * as journal IO errors or ENOMEM at a critical moment in log management.
446 *
447 * We unconditionally force the filesystem into an ABORT|READONLY state,
448 * unless the error response on the fs has been set to panic in which
449 * case we take the easy way out and panic immediately.
450 */
451
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400452void ext4_abort(struct super_block *sb, const char *function,
453 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700454{
455 va_list args;
456
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700457 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400458 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700459 vprintk(fmt, args);
460 printk("\n");
461 va_end(args);
462
463 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700464 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700465
466 if (sb->s_flags & MS_RDONLY)
467 return;
468
Eric Sandeenb31e1552009-06-04 17:36:36 -0400469 ext4_msg(sb, KERN_CRIT, "Remounting filesystem read-only");
Mingming Cao617ba132006-10-11 01:20:53 -0700470 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700471 sb->s_flags |= MS_RDONLY;
Theodore Ts'o4ab2f152009-06-13 10:09:36 -0400472 EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400473 if (EXT4_SB(sb)->s_journal)
474 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700475}
476
Eric Sandeenb31e1552009-06-04 17:36:36 -0400477void ext4_msg (struct super_block * sb, const char *prefix,
478 const char *fmt, ...)
479{
480 va_list args;
481
482 va_start(args, fmt);
483 printk("%sEXT4-fs (%s): ", prefix, sb->s_id);
484 vprintk(fmt, args);
485 printk("\n");
486 va_end(args);
487}
488
Eric Sandeen12062dd2010-02-15 14:19:27 -0500489void __ext4_warning(struct super_block *sb, const char *function,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400490 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700491{
492 va_list args;
493
494 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700495 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700496 sb->s_id, function);
497 vprintk(fmt, args);
498 printk("\n");
499 va_end(args);
500}
501
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500502void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400503 const char *function, const char *fmt, ...)
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500504__releases(bitlock)
505__acquires(bitlock)
506{
507 va_list args;
508 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
509
510 va_start(args, fmt);
511 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
512 vprintk(fmt, args);
513 printk("\n");
514 va_end(args);
515
516 if (test_opt(sb, ERRORS_CONT)) {
517 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
518 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400519 ext4_commit_super(sb, 0);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500520 return;
521 }
522 ext4_unlock_group(sb, grp);
523 ext4_handle_error(sb);
524 /*
525 * We only get here in the ERRORS_RO case; relocking the group
526 * may be dangerous, but nothing bad will happen since the
527 * filesystem will have already been marked read/only and the
528 * journal has been aborted. We return 1 as a hint to callers
529 * who might what to use the return value from
530 * ext4_grp_locked_error() to distinguish beween the
531 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
532 * aggressively from the ext4 function in question, with a
533 * more appropriate error code.
534 */
535 ext4_lock_group(sb, grp);
536 return;
537}
538
Mingming Cao617ba132006-10-11 01:20:53 -0700539void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700540{
Mingming Cao617ba132006-10-11 01:20:53 -0700541 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700542
Mingming Cao617ba132006-10-11 01:20:53 -0700543 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700544 return;
545
Eric Sandeen12062dd2010-02-15 14:19:27 -0500546 ext4_warning(sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700547 "updating to rev %d because of new feature flag, "
548 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700549 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700550
Mingming Cao617ba132006-10-11 01:20:53 -0700551 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
552 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
553 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554 /* leave es->s_feature_*compat flags alone */
555 /* es->s_uuid will be set by e2fsck if empty */
556
557 /*
558 * The rest of the superblock fields should be zero, and if not it
559 * means they are likely already in use, so leave them alone. We
560 * can leave it up to e2fsck to clean up any inconsistencies there.
561 */
562}
563
564/*
565 * Open the external journal device
566 */
Eric Sandeenb31e1552009-06-04 17:36:36 -0400567static struct block_device *ext4_blkdev_get(dev_t dev, struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700568{
569 struct block_device *bdev;
570 char b[BDEVNAME_SIZE];
571
572 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
573 if (IS_ERR(bdev))
574 goto fail;
575 return bdev;
576
577fail:
Eric Sandeenb31e1552009-06-04 17:36:36 -0400578 ext4_msg(sb, KERN_ERR, "failed to open journal device %s: %ld",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700579 __bdevname(dev, b), PTR_ERR(bdev));
580 return NULL;
581}
582
583/*
584 * Release the journal device
585 */
Mingming Cao617ba132006-10-11 01:20:53 -0700586static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700587{
588 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500589 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590}
591
Mingming Cao617ba132006-10-11 01:20:53 -0700592static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700593{
594 struct block_device *bdev;
595 int ret = -ENODEV;
596
597 bdev = sbi->journal_bdev;
598 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700599 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700600 sbi->journal_bdev = NULL;
601 }
602 return ret;
603}
604
605static inline struct inode *orphan_list_entry(struct list_head *l)
606{
Mingming Cao617ba132006-10-11 01:20:53 -0700607 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700608}
609
Mingming Cao617ba132006-10-11 01:20:53 -0700610static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700611{
612 struct list_head *l;
613
Eric Sandeenb31e1552009-06-04 17:36:36 -0400614 ext4_msg(sb, KERN_ERR, "sb orphan head is %d",
615 le32_to_cpu(sbi->s_es->s_last_orphan));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616
617 printk(KERN_ERR "sb_info orphan list:\n");
618 list_for_each(l, &sbi->s_orphan) {
619 struct inode *inode = orphan_list_entry(l);
620 printk(KERN_ERR " "
621 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
622 inode->i_sb->s_id, inode->i_ino, inode,
623 inode->i_mode, inode->i_nlink,
624 NEXT_ORPHAN(inode));
625 }
626}
627
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400628static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700629{
Mingming Cao617ba132006-10-11 01:20:53 -0700630 struct ext4_sb_info *sbi = EXT4_SB(sb);
631 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400632 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700633
Mingming Cao4c0425f2009-09-28 15:48:41 -0400634 flush_workqueue(sbi->dio_unwritten_wq);
635 destroy_workqueue(sbi->dio_unwritten_wq);
636
Al Viroa9e220f2009-05-05 22:10:44 -0400637 lock_super(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200638 lock_kernel();
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200639 if (sb->s_dirt)
Christoph Hellwigebc1ac12009-05-11 23:35:03 +0200640 ext4_commit_super(sb, 1);
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200641
Frank Mayhar03901312009-01-07 00:06:22 -0500642 if (sbi->s_journal) {
643 err = jbd2_journal_destroy(sbi->s_journal);
644 sbi->s_journal = NULL;
645 if (err < 0)
646 ext4_abort(sb, __func__,
647 "Couldn't clean up the journal");
648 }
Josef Bacikd4edac32009-12-08 21:48:58 -0500649
650 ext4_release_system_zone(sb);
651 ext4_mb_release(sb);
652 ext4_ext_release(sb);
653 ext4_xattr_put_super(sb);
654
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700655 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700656 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700657 es->s_state = cpu_to_le16(sbi->s_mount_state);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400658 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700659 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400660 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400661 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400662 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400663 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700664
665 for (i = 0; i < sbi->s_gdb_count; i++)
666 brelse(sbi->s_group_desc[i]);
667 kfree(sbi->s_group_desc);
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -0400668 if (is_vmalloc_addr(sbi->s_flex_groups))
669 vfree(sbi->s_flex_groups);
670 else
671 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672 percpu_counter_destroy(&sbi->s_freeblocks_counter);
673 percpu_counter_destroy(&sbi->s_freeinodes_counter);
674 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400675 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700676 brelse(sbi->s_sbh);
677#ifdef CONFIG_QUOTA
678 for (i = 0; i < MAXQUOTAS; i++)
679 kfree(sbi->s_qf_names[i]);
680#endif
681
682 /* Debugging code just in case the in-memory inode orphan list
683 * isn't empty. The on-disk one can be non-empty if we've
684 * detected an error and taken the fs readonly, but the
685 * in-memory list had better be clean by this point. */
686 if (!list_empty(&sbi->s_orphan))
687 dump_orphan_list(sb, sbi);
688 J_ASSERT(list_empty(&sbi->s_orphan));
689
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700690 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
692 /*
693 * Invalidate the journal device's buffers. We don't want them
694 * floating about in memory - the physical journal device may
695 * hotswapped, and it breaks the `ro-after' testing code.
696 */
697 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700698 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700699 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700700 }
701 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400702 /*
703 * Now that we are completely done shutting down the
704 * superblock, we need to actually destroy the kobject.
705 */
706 unlock_kernel();
707 unlock_super(sb);
708 kobject_put(&sbi->s_kobj);
709 wait_for_completion(&sbi->s_kobj_unregister);
Pekka Enberg705895b2009-02-15 18:07:52 -0500710 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700711 kfree(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700712}
713
Christoph Lametere18b8902006-12-06 20:33:20 -0800714static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700715
716/*
717 * Called inside transaction, so use GFP_NOFS
718 */
Mingming Cao617ba132006-10-11 01:20:53 -0700719static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700720{
Mingming Cao617ba132006-10-11 01:20:53 -0700721 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700722
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800723 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 if (!ei)
725 return NULL;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400726
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700727 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400728 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700729 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500730 INIT_LIST_HEAD(&ei->i_prealloc_list);
731 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500732 /*
733 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
734 * therefore it can be null here. Don't check it, just initialize
735 * jinode.
736 */
Jan Kara678aaf42008-07-11 19:27:31 -0400737 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400738 ei->i_reserved_data_blocks = 0;
739 ei->i_reserved_meta_blocks = 0;
740 ei->i_allocated_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500741 ei->i_da_metadata_calc_len = 0;
Mingming Caod2a17632008-07-14 17:52:37 -0400742 ei->i_delalloc_reserved_flag = 0;
743 spin_lock_init(&(ei->i_block_reservation_lock));
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300744#ifdef CONFIG_QUOTA
745 ei->i_reserved_quota = 0;
746#endif
Jiaying Zhangc7064ef2010-03-02 13:28:44 -0500747 INIT_LIST_HEAD(&ei->i_completed_io_list);
Jiaying Zhang744692d2010-03-04 16:14:02 -0500748 spin_lock_init(&ei->i_completed_io_lock);
Mingming Cao8d5d02e2009-09-28 15:48:29 -0400749 ei->cur_aio_dio = NULL;
Jan Karab436b9b2009-12-08 23:51:10 -0500750 ei->i_sync_tid = 0;
751 ei->i_datasync_tid = 0;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400752
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 return &ei->vfs_inode;
754}
755
Mingming Cao617ba132006-10-11 01:20:53 -0700756static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700757{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700758 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -0400759 ext4_msg(inode->i_sb, KERN_ERR,
760 "Inode %lu (%p): orphan list check failed!",
761 inode->i_ino, EXT4_I(inode));
Vasily Averin9f7dd932007-07-15 23:40:45 -0700762 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
763 EXT4_I(inode), sizeof(struct ext4_inode_info),
764 true);
765 dump_stack();
766 }
Mingming Cao617ba132006-10-11 01:20:53 -0700767 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700768}
769
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700770static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700771{
Mingming Cao617ba132006-10-11 01:20:53 -0700772 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700773
Christoph Lametera35afb82007-05-16 22:10:57 -0700774 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400775#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700776 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700777#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500778 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700779 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700780}
781
782static int init_inodecache(void)
783{
Mingming Cao617ba132006-10-11 01:20:53 -0700784 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
785 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700786 0, (SLAB_RECLAIM_ACCOUNT|
787 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900788 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700789 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700790 return -ENOMEM;
791 return 0;
792}
793
794static void destroy_inodecache(void)
795{
Mingming Cao617ba132006-10-11 01:20:53 -0700796 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700797}
798
Mingming Cao617ba132006-10-11 01:20:53 -0700799static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700800{
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400801 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500802 if (EXT4_JOURNAL(inode))
803 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400804 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700805}
806
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400807static inline void ext4_show_quota_options(struct seq_file *seq,
808 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700809{
810#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700811 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700812
Jan Kara5a20bdf2009-11-30 23:58:32 +0100813 if (sbi->s_jquota_fmt) {
814 char *fmtname = "";
815
816 switch (sbi->s_jquota_fmt) {
817 case QFMT_VFS_OLD:
818 fmtname = "vfsold";
819 break;
820 case QFMT_VFS_V0:
821 fmtname = "vfsv0";
822 break;
823 case QFMT_VFS_V1:
824 fmtname = "vfsv1";
825 break;
826 }
827 seq_printf(seq, ",jqfmt=%s", fmtname);
828 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700829
830 if (sbi->s_qf_names[USRQUOTA])
831 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
832
833 if (sbi->s_qf_names[GRPQUOTA])
834 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
835
Dmitry Monakhov482a7422010-02-24 11:35:32 -0500836 if (test_opt(sb, USRQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700837 seq_puts(seq, ",usrquota");
838
Dmitry Monakhov482a7422010-02-24 11:35:32 -0500839 if (test_opt(sb, GRPQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700840 seq_puts(seq, ",grpquota");
841#endif
842}
843
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700844/*
845 * Show an option if
846 * - it's set to a non-default value OR
847 * - if the per-sb default is different from the global default
848 */
Mingming Cao617ba132006-10-11 01:20:53 -0700849static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500851 int def_errors;
852 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700853 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700854 struct ext4_sb_info *sbi = EXT4_SB(sb);
855 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700856
857 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500858 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700859
860 if (sbi->s_sb_block != 1)
861 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
862 if (test_opt(sb, MINIX_DF))
863 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500864 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700865 seq_puts(seq, ",grpid");
866 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
867 seq_puts(seq, ",nogrpid");
868 if (sbi->s_resuid != EXT4_DEF_RESUID ||
869 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
870 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
871 }
872 if (sbi->s_resgid != EXT4_DEF_RESGID ||
873 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
874 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
875 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500876 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700877 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500878 def_errors == EXT4_ERRORS_CONTINUE) {
879 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700880 }
881 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500882 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500883 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500884 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700885 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500886 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700887 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500888 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700889 seq_puts(seq, ",debug");
890 if (test_opt(sb, OLDALLOC))
891 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400892#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500893 if (test_opt(sb, XATTR_USER) &&
894 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700895 seq_puts(seq, ",user_xattr");
896 if (!test_opt(sb, XATTR_USER) &&
897 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
898 seq_puts(seq, ",nouser_xattr");
899 }
900#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400901#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500902 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700903 seq_puts(seq, ",acl");
904 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
905 seq_puts(seq, ",noacl");
906#endif
Theodore Ts'o30773842009-01-03 20:27:38 -0500907 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700908 seq_printf(seq, ",commit=%u",
909 (unsigned) (sbi->s_commit_interval / HZ));
910 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500911 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
912 seq_printf(seq, ",min_batch_time=%u",
913 (unsigned) sbi->s_min_batch_time);
914 }
915 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
916 seq_printf(seq, ",max_batch_time=%u",
917 (unsigned) sbi->s_min_batch_time);
918 }
919
Eric Sandeen571640c2008-05-26 12:29:46 -0400920 /*
921 * We're changing the default of barrier mount option, so
922 * let's always display its mount state so it's clear what its
923 * status is.
924 */
925 seq_puts(seq, ",barrier=");
926 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400927 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
928 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700929 if (test_opt(sb, NOBH))
930 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500931 if (test_opt(sb, I_VERSION))
932 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400933 if (!test_opt(sb, DELALLOC))
934 seq_puts(seq, ",nodelalloc");
935
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700936
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500937 if (sbi->s_stripe)
938 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500939 /*
940 * journal mode get enabled in different ways
941 * So just print the value even if we didn't specify it
942 */
Mingming Cao617ba132006-10-11 01:20:53 -0700943 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700944 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700945 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700946 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700947 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700948 seq_puts(seq, ",data=writeback");
949
Theodore Ts'o240799c2008-10-09 23:53:47 -0400950 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
951 seq_printf(seq, ",inode_readahead_blks=%u",
952 sbi->s_inode_readahead_blks);
953
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400954 if (test_opt(sb, DATA_ERR_ABORT))
955 seq_puts(seq, ",data_err=abort");
956
Theodore Ts'oafd46722009-03-16 23:12:23 -0400957 if (test_opt(sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o06705bf2009-03-28 10:59:57 -0400958 seq_puts(seq, ",noauto_da_alloc");
Theodore Ts'oafd46722009-03-16 23:12:23 -0400959
Eric Sandeen5328e632009-11-19 14:25:42 -0500960 if (test_opt(sb, DISCARD))
961 seq_puts(seq, ",discard");
962
Eric Sandeene3bb52a2009-11-19 14:28:50 -0500963 if (test_opt(sb, NOLOAD))
964 seq_puts(seq, ",norecovery");
965
Jiaying Zhang744692d2010-03-04 16:14:02 -0500966 if (test_opt(sb, DIOREAD_NOLOCK))
967 seq_puts(seq, ",dioread_nolock");
968
Mingming Cao617ba132006-10-11 01:20:53 -0700969 ext4_show_quota_options(seq, sb);
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400970
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700971 return 0;
972}
973
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700974static struct inode *ext4_nfs_get_inode(struct super_block *sb,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400975 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700976{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700977 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978
Mingming Cao617ba132006-10-11 01:20:53 -0700979 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700980 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700981 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982 return ERR_PTR(-ESTALE);
983
984 /* iget isn't really right if the inode is currently unallocated!!
985 *
Mingming Cao617ba132006-10-11 01:20:53 -0700986 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700987 * deleted, so we should be safe.
988 *
989 * Currently we don't know the generation for parent directory, so
990 * a generation of 0 means "accept any"
991 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800992 inode = ext4_iget(sb, ino);
993 if (IS_ERR(inode))
994 return ERR_CAST(inode);
995 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700996 iput(inode);
997 return ERR_PTR(-ESTALE);
998 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700999
1000 return inode;
1001}
1002
1003static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001004 int fh_len, int fh_type)
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001005{
1006 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
1007 ext4_nfs_get_inode);
1008}
1009
1010static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001011 int fh_len, int fh_type)
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001012{
1013 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
1014 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001015}
1016
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001017/*
1018 * Try to release metadata pages (indirect blocks, directories) which are
1019 * mapped via the block device. Since these pages could have journal heads
1020 * which would prevent try_to_free_buffers() from freeing them, we must use
1021 * jbd2 layer's try_to_free_buffers() function to release them.
1022 */
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001023static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
1024 gfp_t wait)
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001025{
1026 journal_t *journal = EXT4_SB(sb)->s_journal;
1027
1028 WARN_ON(PageChecked(page));
1029 if (!page_has_buffers(page))
1030 return 0;
1031 if (journal)
1032 return jbd2_journal_try_to_free_buffers(journal, page,
1033 wait & ~__GFP_WAIT);
1034 return try_to_free_buffers(page);
1035}
1036
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001037#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001038#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001039#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001040
Mingming Cao617ba132006-10-11 01:20:53 -07001041static int ext4_write_dquot(struct dquot *dquot);
1042static int ext4_acquire_dquot(struct dquot *dquot);
1043static int ext4_release_dquot(struct dquot *dquot);
1044static int ext4_mark_dquot_dirty(struct dquot *dquot);
1045static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -07001046static int ext4_quota_on(struct super_block *sb, int type, int format_id,
1047 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -07001048static int ext4_quota_on_mount(struct super_block *sb, int type);
1049static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001050 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -07001051static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 const char *data, size_t len, loff_t off);
1053
Alexey Dobriyan61e225d2009-09-21 17:01:08 -07001054static const struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +01001055 .initialize = dquot_initialize,
1056 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +01001058 .reserve_space = dquot_reserve_space,
1059 .claim_space = dquot_claim_space,
1060 .release_rsv = dquot_release_reserved_space,
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001061#ifdef CONFIG_QUOTA
Mingming Cao60e58e02009-01-22 18:13:05 +01001062 .get_reserved_space = ext4_get_reserved_space,
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001063#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001064 .alloc_inode = dquot_alloc_inode,
1065 .free_space = dquot_free_space,
1066 .free_inode = dquot_free_inode,
1067 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -07001068 .write_dquot = ext4_write_dquot,
1069 .acquire_dquot = ext4_acquire_dquot,
1070 .release_dquot = ext4_release_dquot,
1071 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +01001072 .write_info = ext4_write_info,
1073 .alloc_dquot = dquot_alloc,
1074 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001075};
1076
Alexey Dobriyan0d54b212009-09-21 17:01:09 -07001077static const struct quotactl_ops ext4_qctl_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07001078 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079 .quota_off = vfs_quota_off,
1080 .quota_sync = vfs_quota_sync,
1081 .get_info = vfs_get_dqinfo,
1082 .set_info = vfs_set_dqinfo,
1083 .get_dqblk = vfs_get_dqblk,
1084 .set_dqblk = vfs_set_dqblk
1085};
1086#endif
1087
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -08001088static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -07001089 .alloc_inode = ext4_alloc_inode,
1090 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -07001091 .write_inode = ext4_write_inode,
1092 .dirty_inode = ext4_dirty_inode,
1093 .delete_inode = ext4_delete_inode,
1094 .put_super = ext4_put_super,
Mingming Cao617ba132006-10-11 01:20:53 -07001095 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001096 .freeze_fs = ext4_freeze,
1097 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -07001098 .statfs = ext4_statfs,
1099 .remount_fs = ext4_remount,
1100 .clear_inode = ext4_clear_inode,
1101 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001102#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001103 .quota_read = ext4_quota_read,
1104 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001105#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001106 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107};
1108
Theodore Ts'o9ca92382009-05-01 12:52:25 -04001109static const struct super_operations ext4_nojournal_sops = {
1110 .alloc_inode = ext4_alloc_inode,
1111 .destroy_inode = ext4_destroy_inode,
1112 .write_inode = ext4_write_inode,
1113 .dirty_inode = ext4_dirty_inode,
1114 .delete_inode = ext4_delete_inode,
1115 .write_super = ext4_write_super,
1116 .put_super = ext4_put_super,
1117 .statfs = ext4_statfs,
1118 .remount_fs = ext4_remount,
1119 .clear_inode = ext4_clear_inode,
1120 .show_options = ext4_show_options,
1121#ifdef CONFIG_QUOTA
1122 .quota_read = ext4_quota_read,
1123 .quota_write = ext4_quota_write,
1124#endif
1125 .bdev_try_to_free_page = bdev_try_to_free_page,
1126};
1127
Christoph Hellwig39655162007-10-21 16:42:17 -07001128static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001129 .fh_to_dentry = ext4_fh_to_dentry,
1130 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001131 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132};
1133
1134enum {
1135 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1136 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001137 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001139 Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001140 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001141 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001142 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Theodore Ts'o296c3552009-09-30 00:32:42 -04001144 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
Jan Kara5a20bdf2009-11-30 23:58:32 +01001146 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
1147 Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
1148 Opt_resize, Opt_usrquota, Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001149 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001150 Opt_block_validity, Opt_noblock_validity,
Eric Sandeen5328e632009-11-19 14:25:42 -05001151 Opt_inode_readahead_blks, Opt_journal_ioprio,
Jiaying Zhang744692d2010-03-04 16:14:02 -05001152 Opt_dioread_nolock, Opt_dioread_lock,
Eric Sandeen5328e632009-11-19 14:25:42 -05001153 Opt_discard, Opt_nodiscard,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154};
1155
Steven Whitehousea447c092008-10-13 10:46:57 +01001156static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001157 {Opt_bsd_df, "bsddf"},
1158 {Opt_minix_df, "minixdf"},
1159 {Opt_grpid, "grpid"},
1160 {Opt_grpid, "bsdgroups"},
1161 {Opt_nogrpid, "nogrpid"},
1162 {Opt_nogrpid, "sysvgroups"},
1163 {Opt_resgid, "resgid=%u"},
1164 {Opt_resuid, "resuid=%u"},
1165 {Opt_sb, "sb=%u"},
1166 {Opt_err_cont, "errors=continue"},
1167 {Opt_err_panic, "errors=panic"},
1168 {Opt_err_ro, "errors=remount-ro"},
1169 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001170 {Opt_debug, "debug"},
1171 {Opt_oldalloc, "oldalloc"},
1172 {Opt_orlov, "orlov"},
1173 {Opt_user_xattr, "user_xattr"},
1174 {Opt_nouser_xattr, "nouser_xattr"},
1175 {Opt_acl, "acl"},
1176 {Opt_noacl, "noacl"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001177 {Opt_noload, "noload"},
Eric Sandeene3bb52a2009-11-19 14:28:50 -05001178 {Opt_noload, "norecovery"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001179 {Opt_nobh, "nobh"},
1180 {Opt_bh, "bh"},
1181 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001182 {Opt_min_batch_time, "min_batch_time=%u"},
1183 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001185 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001186 {Opt_journal_checksum, "journal_checksum"},
1187 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188 {Opt_abort, "abort"},
1189 {Opt_data_journal, "data=journal"},
1190 {Opt_data_ordered, "data=ordered"},
1191 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001192 {Opt_data_err_abort, "data_err=abort"},
1193 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194 {Opt_offusrjquota, "usrjquota="},
1195 {Opt_usrjquota, "usrjquota=%s"},
1196 {Opt_offgrpjquota, "grpjquota="},
1197 {Opt_grpjquota, "grpjquota=%s"},
1198 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1199 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
Jan Kara5a20bdf2009-11-30 23:58:32 +01001200 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001201 {Opt_grpquota, "grpquota"},
1202 {Opt_noquota, "noquota"},
1203 {Opt_quota, "quota"},
1204 {Opt_usrquota, "usrquota"},
1205 {Opt_barrier, "barrier=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001206 {Opt_barrier, "barrier"},
1207 {Opt_nobarrier, "nobarrier"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001208 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001209 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001210 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001211 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001212 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001213 {Opt_block_validity, "block_validity"},
1214 {Opt_noblock_validity, "noblock_validity"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001215 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001216 {Opt_journal_ioprio, "journal_ioprio=%u"},
Theodore Ts'oafd46722009-03-16 23:12:23 -04001217 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001218 {Opt_auto_da_alloc, "auto_da_alloc"},
1219 {Opt_noauto_da_alloc, "noauto_da_alloc"},
Jiaying Zhang744692d2010-03-04 16:14:02 -05001220 {Opt_dioread_nolock, "dioread_nolock"},
1221 {Opt_dioread_lock, "dioread_lock"},
Eric Sandeen5328e632009-11-19 14:25:42 -05001222 {Opt_discard, "discard"},
1223 {Opt_nodiscard, "nodiscard"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001224 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001225};
1226
Mingming Cao617ba132006-10-11 01:20:53 -07001227static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001228{
Mingming Cao617ba132006-10-11 01:20:53 -07001229 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001230 char *options = (char *) *data;
1231
1232 if (!options || strncmp(options, "sb=", 3) != 0)
1233 return 1; /* Default location */
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001234
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 options += 3;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001236 /* TODO: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001237 sb_block = simple_strtoul(options, &options, 0);
1238 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001239 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001240 (char *) *data);
1241 return 1;
1242 }
1243 if (*options == ',')
1244 options++;
1245 *data = (void *) options;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001246
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247 return sb_block;
1248}
1249
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001250#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001251static char deprecated_msg[] = "Mount option \"%s\" will be removed by %s\n"
1252 "Contact linux-ext4@vger.kernel.org if you think we should keep it.\n";
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001253
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001254#ifdef CONFIG_QUOTA
1255static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
1256{
1257 struct ext4_sb_info *sbi = EXT4_SB(sb);
1258 char *qname;
1259
1260 if (sb_any_quota_loaded(sb) &&
1261 !sbi->s_qf_names[qtype]) {
1262 ext4_msg(sb, KERN_ERR,
1263 "Cannot change journaled "
1264 "quota options when quota turned on");
1265 return 0;
1266 }
1267 qname = match_strdup(args);
1268 if (!qname) {
1269 ext4_msg(sb, KERN_ERR,
1270 "Not enough memory for storing quotafile name");
1271 return 0;
1272 }
1273 if (sbi->s_qf_names[qtype] &&
1274 strcmp(sbi->s_qf_names[qtype], qname)) {
1275 ext4_msg(sb, KERN_ERR,
1276 "%s quota file already specified", QTYPE2NAME(qtype));
1277 kfree(qname);
1278 return 0;
1279 }
1280 sbi->s_qf_names[qtype] = qname;
1281 if (strchr(sbi->s_qf_names[qtype], '/')) {
1282 ext4_msg(sb, KERN_ERR,
1283 "quotafile must be on filesystem root");
1284 kfree(sbi->s_qf_names[qtype]);
1285 sbi->s_qf_names[qtype] = NULL;
1286 return 0;
1287 }
1288 set_opt(sbi->s_mount_opt, QUOTA);
1289 return 1;
1290}
1291
1292static int clear_qf_name(struct super_block *sb, int qtype)
1293{
1294
1295 struct ext4_sb_info *sbi = EXT4_SB(sb);
1296
1297 if (sb_any_quota_loaded(sb) &&
1298 sbi->s_qf_names[qtype]) {
1299 ext4_msg(sb, KERN_ERR, "Cannot change journaled quota options"
1300 " when quota turned on");
1301 return 0;
1302 }
1303 /*
1304 * The space will be released later when all options are confirmed
1305 * to be correct
1306 */
1307 sbi->s_qf_names[qtype] = NULL;
1308 return 1;
1309}
1310#endif
1311
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001312static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001313 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001314 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001315 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001316{
Mingming Cao617ba132006-10-11 01:20:53 -07001317 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001318 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001319 substring_t args[MAX_OPT_ARGS];
1320 int data_opt = 0;
1321 int option;
1322#ifdef CONFIG_QUOTA
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001323 int qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324#endif
1325
1326 if (!options)
1327 return 1;
1328
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001329 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001330 int token;
1331 if (!*p)
1332 continue;
1333
Eric Sandeen15121c12010-02-15 20:17:55 -05001334 /*
1335 * Initialize args struct so we know whether arg was
1336 * found; some options take optional arguments.
1337 */
1338 args[0].to = args[0].from = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001339 token = match_token(p, tokens, args);
1340 switch (token) {
1341 case Opt_bsd_df:
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001342 ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001343 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001344 break;
1345 case Opt_minix_df:
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001346 ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001347 set_opt(sbi->s_mount_opt, MINIX_DF);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001348
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001349 break;
1350 case Opt_grpid:
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001351 ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001352 set_opt(sbi->s_mount_opt, GRPID);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001353
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354 break;
1355 case Opt_nogrpid:
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001356 ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001357 clear_opt(sbi->s_mount_opt, GRPID);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001358
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001359 break;
1360 case Opt_resuid:
1361 if (match_int(&args[0], &option))
1362 return 0;
1363 sbi->s_resuid = option;
1364 break;
1365 case Opt_resgid:
1366 if (match_int(&args[0], &option))
1367 return 0;
1368 sbi->s_resgid = option;
1369 break;
1370 case Opt_sb:
1371 /* handled by get_sb_block() instead of here */
1372 /* *sb_block = match_int(&args[0]); */
1373 break;
1374 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001375 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1376 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1377 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001378 break;
1379 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001380 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1381 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1382 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383 break;
1384 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001385 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1386 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1387 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388 break;
1389 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001390 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001391 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001393 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001394 break;
1395 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001396 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001397 break;
1398 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001399 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001400 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001401#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001403 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001404 break;
1405 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001406 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001407 break;
1408#else
1409 case Opt_user_xattr:
1410 case Opt_nouser_xattr:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001411 ext4_msg(sb, KERN_ERR, "(no)user_xattr options not supported");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001412 break;
1413#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001414#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415 case Opt_acl:
1416 set_opt(sbi->s_mount_opt, POSIX_ACL);
1417 break;
1418 case Opt_noacl:
1419 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1420 break;
1421#else
1422 case Opt_acl:
1423 case Opt_noacl:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001424 ext4_msg(sb, KERN_ERR, "(no)acl options not supported");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001425 break;
1426#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001427 case Opt_journal_update:
1428 /* @@@ FIXME */
1429 /* Eventually we will want to be able to create
1430 a journal file here. For now, only allow the
1431 user to specify an existing inode to be the
1432 journal file. */
1433 if (is_remount) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001434 ext4_msg(sb, KERN_ERR,
1435 "Cannot specify journal on remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001436 return 0;
1437 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001438 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001439 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001440 case Opt_journal_dev:
1441 if (is_remount) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001442 ext4_msg(sb, KERN_ERR,
1443 "Cannot specify journal on remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 return 0;
1445 }
1446 if (match_int(&args[0], &option))
1447 return 0;
1448 *journal_devnum = option;
1449 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001450 case Opt_journal_checksum:
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08001451 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1452 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001453 case Opt_journal_async_commit:
1454 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08001455 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
Girish Shilamkar818d2762008-01-28 23:58:27 -05001456 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001457 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001458 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001459 break;
1460 case Opt_commit:
1461 if (match_int(&args[0], &option))
1462 return 0;
1463 if (option < 0)
1464 return 0;
1465 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001466 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001467 sbi->s_commit_interval = HZ * option;
1468 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001469 case Opt_max_batch_time:
1470 if (match_int(&args[0], &option))
1471 return 0;
1472 if (option < 0)
1473 return 0;
1474 if (option == 0)
1475 option = EXT4_DEF_MAX_BATCH_TIME;
1476 sbi->s_max_batch_time = option;
1477 break;
1478 case Opt_min_batch_time:
1479 if (match_int(&args[0], &option))
1480 return 0;
1481 if (option < 0)
1482 return 0;
1483 sbi->s_min_batch_time = option;
1484 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001485 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001486 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 goto datacheck;
1488 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001489 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001490 goto datacheck;
1491 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001492 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001493 datacheck:
1494 if (is_remount) {
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001495 if (test_opt(sb, DATA_FLAGS) != data_opt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001496 ext4_msg(sb, KERN_ERR,
1497 "Cannot change data mode on remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001498 return 0;
1499 }
1500 } else {
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001501 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001502 sbi->s_mount_opt |= data_opt;
1503 }
1504 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001505 case Opt_data_err_abort:
1506 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1507 break;
1508 case Opt_data_err_ignore:
1509 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1510 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001511#ifdef CONFIG_QUOTA
1512 case Opt_usrjquota:
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001513 if (!set_qf_name(sb, USRQUOTA, &args[0]))
1514 return 0;
1515 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516 case Opt_grpjquota:
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001517 if (!set_qf_name(sb, GRPQUOTA, &args[0]))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001518 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001519 break;
1520 case Opt_offusrjquota:
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001521 if (!clear_qf_name(sb, USRQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001522 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001523 break;
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001524 case Opt_offgrpjquota:
1525 if (!clear_qf_name(sb, GRPQUOTA))
1526 return 0;
1527 break;
1528
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001529 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001530 qfmt = QFMT_VFS_OLD;
1531 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001532 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001533 qfmt = QFMT_VFS_V0;
Jan Kara5a20bdf2009-11-30 23:58:32 +01001534 goto set_qf_format;
1535 case Opt_jqfmt_vfsv1:
1536 qfmt = QFMT_VFS_V1;
Jan Karadfc5d032008-05-13 19:11:51 -04001537set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001538 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001539 sbi->s_jquota_fmt != qfmt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001540 ext4_msg(sb, KERN_ERR, "Cannot change "
Jan Karadfc5d032008-05-13 19:11:51 -04001541 "journaled quota options when "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001542 "quota turned on");
Jan Karadfc5d032008-05-13 19:11:51 -04001543 return 0;
1544 }
1545 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001546 break;
1547 case Opt_quota:
1548 case Opt_usrquota:
1549 set_opt(sbi->s_mount_opt, QUOTA);
1550 set_opt(sbi->s_mount_opt, USRQUOTA);
1551 break;
1552 case Opt_grpquota:
1553 set_opt(sbi->s_mount_opt, QUOTA);
1554 set_opt(sbi->s_mount_opt, GRPQUOTA);
1555 break;
1556 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001557 if (sb_any_quota_loaded(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001558 ext4_msg(sb, KERN_ERR, "Cannot change quota "
1559 "options when quota turned on");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001560 return 0;
1561 }
1562 clear_opt(sbi->s_mount_opt, QUOTA);
1563 clear_opt(sbi->s_mount_opt, USRQUOTA);
1564 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1565 break;
1566#else
1567 case Opt_quota:
1568 case Opt_usrquota:
1569 case Opt_grpquota:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001570 ext4_msg(sb, KERN_ERR,
1571 "quota options not supported");
Jan Karacd59e7b2008-05-13 19:11:51 -04001572 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001573 case Opt_usrjquota:
1574 case Opt_grpjquota:
1575 case Opt_offusrjquota:
1576 case Opt_offgrpjquota:
1577 case Opt_jqfmt_vfsold:
1578 case Opt_jqfmt_vfsv0:
Jan Kara5a20bdf2009-11-30 23:58:32 +01001579 case Opt_jqfmt_vfsv1:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001580 ext4_msg(sb, KERN_ERR,
1581 "journaled quota options not supported");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001582 break;
1583 case Opt_noquota:
1584 break;
1585#endif
1586 case Opt_abort:
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04001587 sbi->s_mount_flags |= EXT4_MF_FS_ABORTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001588 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001589 case Opt_nobarrier:
1590 clear_opt(sbi->s_mount_opt, BARRIER);
1591 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001592 case Opt_barrier:
Eric Sandeen15121c12010-02-15 20:17:55 -05001593 if (args[0].from) {
1594 if (match_int(&args[0], &option))
1595 return 0;
1596 } else
1597 option = 1; /* No argument, default to 1 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001598 if (option)
1599 set_opt(sbi->s_mount_opt, BARRIER);
1600 else
1601 clear_opt(sbi->s_mount_opt, BARRIER);
1602 break;
1603 case Opt_ignore:
1604 break;
1605 case Opt_resize:
1606 if (!is_remount) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001607 ext4_msg(sb, KERN_ERR,
1608 "resize option only available "
1609 "for remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001610 return 0;
1611 }
1612 if (match_int(&args[0], &option) != 0)
1613 return 0;
1614 *n_blocks_count = option;
1615 break;
1616 case Opt_nobh:
1617 set_opt(sbi->s_mount_opt, NOBH);
1618 break;
1619 case Opt_bh:
1620 clear_opt(sbi->s_mount_opt, NOBH);
1621 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001622 case Opt_i_version:
1623 set_opt(sbi->s_mount_opt, I_VERSION);
1624 sb->s_flags |= MS_I_VERSION;
1625 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001626 case Opt_nodelalloc:
1627 clear_opt(sbi->s_mount_opt, DELALLOC);
1628 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001629 case Opt_stripe:
1630 if (match_int(&args[0], &option))
1631 return 0;
1632 if (option < 0)
1633 return 0;
1634 sbi->s_stripe = option;
1635 break;
Alex Tomas64769242008-07-11 19:27:31 -04001636 case Opt_delalloc:
1637 set_opt(sbi->s_mount_opt, DELALLOC);
1638 break;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001639 case Opt_block_validity:
1640 set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
1641 break;
1642 case Opt_noblock_validity:
1643 clear_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
1644 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001645 case Opt_inode_readahead_blks:
1646 if (match_int(&args[0], &option))
1647 return 0;
1648 if (option < 0 || option > (1 << 30))
1649 return 0;
Theodore Ts'of7c43952009-04-24 23:31:59 -04001650 if (!is_power_of_2(option)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001651 ext4_msg(sb, KERN_ERR,
1652 "EXT4-fs: inode_readahead_blks"
1653 " must be a power of 2");
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001654 return 0;
1655 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001656 sbi->s_inode_readahead_blks = option;
1657 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001658 case Opt_journal_ioprio:
1659 if (match_int(&args[0], &option))
1660 return 0;
1661 if (option < 0 || option > 7)
1662 break;
1663 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1664 option);
1665 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001666 case Opt_noauto_da_alloc:
1667 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1668 break;
Theodore Ts'oafd46722009-03-16 23:12:23 -04001669 case Opt_auto_da_alloc:
Eric Sandeen15121c12010-02-15 20:17:55 -05001670 if (args[0].from) {
1671 if (match_int(&args[0], &option))
1672 return 0;
1673 } else
1674 option = 1; /* No argument, default to 1 */
Theodore Ts'oafd46722009-03-16 23:12:23 -04001675 if (option)
1676 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1677 else
1678 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1679 break;
Eric Sandeen5328e632009-11-19 14:25:42 -05001680 case Opt_discard:
1681 set_opt(sbi->s_mount_opt, DISCARD);
1682 break;
1683 case Opt_nodiscard:
1684 clear_opt(sbi->s_mount_opt, DISCARD);
1685 break;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001686 case Opt_dioread_nolock:
1687 set_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
1688 break;
1689 case Opt_dioread_lock:
1690 clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
1691 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001692 default:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001693 ext4_msg(sb, KERN_ERR,
1694 "Unrecognized mount option \"%s\" "
1695 "or missing value", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001696 return 0;
1697 }
1698 }
1699#ifdef CONFIG_QUOTA
1700 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001701 if (test_opt(sb, USRQUOTA) && sbi->s_qf_names[USRQUOTA])
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001702 clear_opt(sbi->s_mount_opt, USRQUOTA);
1703
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001704 if (test_opt(sb, GRPQUOTA) && sbi->s_qf_names[GRPQUOTA])
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001705 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1706
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001707 if (test_opt(sb, GRPQUOTA) || test_opt(sb, USRQUOTA)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001708 ext4_msg(sb, KERN_ERR, "old and new quota "
1709 "format mixing");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710 return 0;
1711 }
1712
1713 if (!sbi->s_jquota_fmt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001714 ext4_msg(sb, KERN_ERR, "journaled quota format "
1715 "not specified");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001716 return 0;
1717 }
1718 } else {
1719 if (sbi->s_jquota_fmt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001720 ext4_msg(sb, KERN_ERR, "journaled quota format "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001721 "specified with no journaling "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001722 "enabled");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001723 return 0;
1724 }
1725 }
1726#endif
1727 return 1;
1728}
1729
Mingming Cao617ba132006-10-11 01:20:53 -07001730static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001731 int read_only)
1732{
Mingming Cao617ba132006-10-11 01:20:53 -07001733 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001734 int res = 0;
1735
Mingming Cao617ba132006-10-11 01:20:53 -07001736 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001737 ext4_msg(sb, KERN_ERR, "revision level too high, "
1738 "forcing read-only mode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001739 res = MS_RDONLY;
1740 }
1741 if (read_only)
1742 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001743 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001744 ext4_msg(sb, KERN_WARNING, "warning: mounting unchecked fs, "
1745 "running e2fsck is recommended");
Mingming Cao617ba132006-10-11 01:20:53 -07001746 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001747 ext4_msg(sb, KERN_WARNING,
1748 "warning: mounting fs with errors, "
1749 "running e2fsck is recommended");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001750 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1751 le16_to_cpu(es->s_mnt_count) >=
1752 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001753 ext4_msg(sb, KERN_WARNING,
1754 "warning: maximal mount count reached, "
1755 "running e2fsck is recommended");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001756 else if (le32_to_cpu(es->s_checkinterval) &&
1757 (le32_to_cpu(es->s_lastcheck) +
1758 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001759 ext4_msg(sb, KERN_WARNING,
1760 "warning: checktime reached, "
1761 "running e2fsck is recommended");
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001762 if (!sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05001763 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001764 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001765 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001766 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001767 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001768 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001769 if (sbi->s_journal)
1770 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001771
Theodore Ts'oe2d67052009-05-01 00:33:44 -04001772 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001773 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001774 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Theodore Ts'o7f4520c2009-06-13 10:09:41 -04001775 "bpg=%lu, ipg=%lu, mo=%04x]\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001776 sb->s_blocksize,
1777 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001778 EXT4_BLOCKS_PER_GROUP(sb),
1779 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001780 sbi->s_mount_opt);
1781
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001782 return res;
1783}
1784
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001785static int ext4_fill_flex_info(struct super_block *sb)
1786{
1787 struct ext4_sb_info *sbi = EXT4_SB(sb);
1788 struct ext4_group_desc *gdp = NULL;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001789 ext4_group_t flex_group_count;
1790 ext4_group_t flex_group;
1791 int groups_per_flex = 0;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001792 size_t size;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001793 int i;
1794
Theodore Ts'o503358a2009-11-23 07:24:46 -05001795 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1796 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1797
1798 if (groups_per_flex < 2) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001799 sbi->s_log_groups_per_flex = 0;
1800 return 1;
1801 }
1802
Frederic Bohec62a11f2008-09-08 10:20:24 -04001803 /* We allocate both existing and potentially added groups */
1804 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001805 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1806 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001807 size = flex_group_count * sizeof(struct flex_groups);
1808 sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
1809 if (sbi->s_flex_groups == NULL) {
1810 sbi->s_flex_groups = vmalloc(size);
1811 if (sbi->s_flex_groups)
1812 memset(sbi->s_flex_groups, 0, size);
1813 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001814 if (sbi->s_flex_groups == NULL) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001815 ext4_msg(sb, KERN_ERR, "not enough memory for "
1816 "%u flex groups", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001817 goto failed;
1818 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001819
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001820 for (i = 0; i < sbi->s_groups_count; i++) {
Theodore Ts'o88b6edd2009-05-25 11:50:39 -04001821 gdp = ext4_get_group_desc(sb, i, NULL);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001822
1823 flex_group = ext4_flex_group(sbi, i);
Theodore Ts'o7ad9bb62009-09-11 16:51:28 -04001824 atomic_add(ext4_free_inodes_count(sb, gdp),
1825 &sbi->s_flex_groups[flex_group].free_inodes);
1826 atomic_add(ext4_free_blks_count(sb, gdp),
1827 &sbi->s_flex_groups[flex_group].free_blocks);
1828 atomic_add(ext4_used_dirs_count(sb, gdp),
1829 &sbi->s_flex_groups[flex_group].used_dirs);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001830 }
1831
1832 return 1;
1833failed:
1834 return 0;
1835}
1836
Andreas Dilger717d50e2007-10-16 18:38:25 -04001837__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1838 struct ext4_group_desc *gdp)
1839{
1840 __u16 crc = 0;
1841
1842 if (sbi->s_es->s_feature_ro_compat &
1843 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1844 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1845 __le32 le_group = cpu_to_le32(block_group);
1846
1847 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1848 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1849 crc = crc16(crc, (__u8 *)gdp, offset);
1850 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1851 /* for checksum of struct ext4_group_desc do the rest...*/
1852 if ((sbi->s_es->s_feature_incompat &
1853 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1854 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1855 crc = crc16(crc, (__u8 *)gdp + offset,
1856 le16_to_cpu(sbi->s_es->s_desc_size) -
1857 offset);
1858 }
1859
1860 return cpu_to_le16(crc);
1861}
1862
1863int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1864 struct ext4_group_desc *gdp)
1865{
1866 if ((sbi->s_es->s_feature_ro_compat &
1867 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1868 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1869 return 0;
1870
1871 return 1;
1872}
1873
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001874/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001875static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001876{
Mingming Cao617ba132006-10-11 01:20:53 -07001877 struct ext4_sb_info *sbi = EXT4_SB(sb);
1878 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1879 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001880 ext4_fsblk_t block_bitmap;
1881 ext4_fsblk_t inode_bitmap;
1882 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001883 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001884 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001885
Jose R. Santosce421582007-10-16 18:38:25 -04001886 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1887 flexbg_flag = 1;
1888
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001889 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001890
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001891 for (i = 0; i < sbi->s_groups_count; i++) {
1892 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1893
Jose R. Santosce421582007-10-16 18:38:25 -04001894 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001895 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001896 else
1897 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001898 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001899
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001900 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001901 if (block_bitmap < first_block || block_bitmap > last_block) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001902 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001903 "Block bitmap for group %u not in group "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001904 "(block %llu)!", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001905 return 0;
1906 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001907 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001908 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001909 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001910 "Inode bitmap for group %u not in group "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001911 "(block %llu)!", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001912 return 0;
1913 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001914 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001915 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001916 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001917 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001918 "Inode table for group %u not in group "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001919 "(block %llu)!", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001920 return 0;
1921 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001922 ext4_lock_group(sb, i);
Andreas Dilger717d50e2007-10-16 18:38:25 -04001923 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001924 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
1925 "Checksum for group %u failed (%u!=%u)",
1926 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1927 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001928 if (!(sb->s_flags & MS_RDONLY)) {
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001929 ext4_unlock_group(sb, i);
Theodore Ts'o8a266462008-07-26 14:34:21 -04001930 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001931 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001932 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001933 ext4_unlock_group(sb, i);
Jose R. Santosce421582007-10-16 18:38:25 -04001934 if (!flexbg_flag)
1935 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001936 }
1937
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001938 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001939 sbi->s_es->s_free_inodes_count =cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001940 return 1;
1941}
1942
Mingming Cao617ba132006-10-11 01:20:53 -07001943/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001944 * the superblock) which were deleted from all directories, but held open by
1945 * a process at the time of a crash. We walk the list and try to delete these
1946 * inodes at recovery time (only with a read-write filesystem).
1947 *
1948 * In order to keep the orphan inode chain consistent during traversal (in
1949 * case of crash during recovery), we link each inode into the superblock
1950 * orphan list_head and handle it the same way as an inode deletion during
1951 * normal operation (which journals the operations for us).
1952 *
1953 * We only do an iget() and an iput() on each inode, which is very safe if we
1954 * accidentally point at an in-use or already deleted inode. The worst that
1955 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001956 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001957 * e2fsck was run on this filesystem, and it must have already done the orphan
1958 * inode cleanup for us, so we can safely abort without any further action.
1959 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001960static void ext4_orphan_cleanup(struct super_block *sb,
1961 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001962{
1963 unsigned int s_flags = sb->s_flags;
1964 int nr_orphans = 0, nr_truncates = 0;
1965#ifdef CONFIG_QUOTA
1966 int i;
1967#endif
1968 if (!es->s_last_orphan) {
1969 jbd_debug(4, "no orphan inodes to clean up\n");
1970 return;
1971 }
1972
Eric Sandeena8f48a92006-12-06 20:40:13 -08001973 if (bdev_read_only(sb->s_bdev)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001974 ext4_msg(sb, KERN_ERR, "write access "
1975 "unavailable, skipping orphan cleanup");
Eric Sandeena8f48a92006-12-06 20:40:13 -08001976 return;
1977 }
1978
Mingming Cao617ba132006-10-11 01:20:53 -07001979 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001980 if (es->s_last_orphan)
1981 jbd_debug(1, "Errors on filesystem, "
1982 "clearing orphan list.\n");
1983 es->s_last_orphan = 0;
1984 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1985 return;
1986 }
1987
1988 if (s_flags & MS_RDONLY) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001989 ext4_msg(sb, KERN_INFO, "orphan cleanup on readonly fs");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001990 sb->s_flags &= ~MS_RDONLY;
1991 }
1992#ifdef CONFIG_QUOTA
1993 /* Needed for iput() to work correctly and not trash data */
1994 sb->s_flags |= MS_ACTIVE;
1995 /* Turn on quotas so that they are updated correctly */
1996 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001997 if (EXT4_SB(sb)->s_qf_names[i]) {
1998 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001999 if (ret < 0)
Eric Sandeenb31e1552009-06-04 17:36:36 -04002000 ext4_msg(sb, KERN_ERR,
2001 "Cannot turn on journaled "
2002 "quota: error %d", ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002003 }
2004 }
2005#endif
2006
2007 while (es->s_last_orphan) {
2008 struct inode *inode;
2009
Josef Bacik97bd42b2008-04-29 22:04:56 -04002010 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
2011 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002012 es->s_last_orphan = 0;
2013 break;
2014 }
2015
Mingming Cao617ba132006-10-11 01:20:53 -07002016 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01002017 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002018 if (inode->i_nlink) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002019 ext4_msg(sb, KERN_DEBUG,
2020 "%s: truncating inode %lu to %lld bytes",
Harvey Harrison46e665e2008-04-17 10:38:59 -04002021 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002022 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002023 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07002024 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002025 nr_truncates++;
2026 } else {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002027 ext4_msg(sb, KERN_DEBUG,
2028 "%s: deleting unreferenced inode %lu",
Harvey Harrison46e665e2008-04-17 10:38:59 -04002029 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002030 jbd_debug(2, "deleting unreferenced inode %lu\n",
2031 inode->i_ino);
2032 nr_orphans++;
2033 }
2034 iput(inode); /* The delete magic happens here! */
2035 }
2036
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002037#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002038
2039 if (nr_orphans)
Eric Sandeenb31e1552009-06-04 17:36:36 -04002040 ext4_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
2041 PLURAL(nr_orphans));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002042 if (nr_truncates)
Eric Sandeenb31e1552009-06-04 17:36:36 -04002043 ext4_msg(sb, KERN_INFO, "%d truncate%s cleaned up",
2044 PLURAL(nr_truncates));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002045#ifdef CONFIG_QUOTA
2046 /* Turn quotas off */
2047 for (i = 0; i < MAXQUOTAS; i++) {
2048 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07002049 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002050 }
2051#endif
2052 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
2053}
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002054
Eric Sandeencd2291a2008-01-28 23:58:27 -05002055/*
2056 * Maximal extent format file size.
2057 * Resulting logical blkno at s_maxbytes must fit in our on-disk
2058 * extent format containers, within a sector_t, and within i_blocks
2059 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
2060 * so that won't be a limiting factor.
2061 *
2062 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
2063 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002064static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05002065{
2066 loff_t res;
2067 loff_t upper_limit = MAX_LFS_FILESIZE;
2068
2069 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002070 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05002071 /*
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +02002072 * CONFIG_LBDAF is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05002073 * i_block represent total blocks in 512 bytes
2074 * 32 == size of vfs inode i_blocks * 8
2075 */
2076 upper_limit = (1LL << 32) - 1;
2077
2078 /* total blocks in file system block size */
2079 upper_limit >>= (blkbits - 9);
2080 upper_limit <<= blkbits;
2081 }
2082
2083 /* 32-bit extent-start container, ee_block */
2084 res = 1LL << 32;
2085 res <<= blkbits;
2086 res -= 1;
2087
2088 /* Sanity check against vm- & vfs- imposed limits */
2089 if (res > upper_limit)
2090 res = upper_limit;
2091
2092 return res;
2093}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002094
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002095/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05002096 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002097 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
2098 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002099 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002100static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002101{
Mingming Cao617ba132006-10-11 01:20:53 -07002102 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002103 int meta_blocks;
2104 loff_t upper_limit;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002105 /* This is calculated to be the largest file size for a dense, block
2106 * mapped file such that the file's total number of 512-byte sectors,
2107 * including data and all indirect blocks, does not exceed (2^48 - 1).
2108 *
2109 * __u32 i_blocks_lo and _u16 i_blocks_high represent the total
2110 * number of 512-byte sectors of the file.
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002111 */
2112
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002113 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002114 /*
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +02002115 * !has_huge_files or CONFIG_LBDAF not enabled implies that
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002116 * the inode i_block field represents total file blocks in
2117 * 2^32 512-byte sectors == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002118 */
2119 upper_limit = (1LL << 32) - 1;
2120
2121 /* total blocks in file system block size */
2122 upper_limit >>= (bits - 9);
2123
2124 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05002125 /*
2126 * We use 48 bit ext4_inode i_blocks
2127 * With EXT4_HUGE_FILE_FL set the i_blocks
2128 * represent total number of blocks in
2129 * file system block size
2130 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002131 upper_limit = (1LL << 48) - 1;
2132
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002133 }
2134
2135 /* indirect blocks */
2136 meta_blocks = 1;
2137 /* double indirect blocks */
2138 meta_blocks += 1 + (1LL << (bits-2));
2139 /* tripple indirect blocks */
2140 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
2141
2142 upper_limit -= meta_blocks;
2143 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002144
2145 res += 1LL << (bits-2);
2146 res += 1LL << (2*(bits-2));
2147 res += 1LL << (3*(bits-2));
2148 res <<= bits;
2149 if (res > upper_limit)
2150 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002151
2152 if (res > MAX_LFS_FILESIZE)
2153 res = MAX_LFS_FILESIZE;
2154
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002155 return res;
2156}
2157
Mingming Cao617ba132006-10-11 01:20:53 -07002158static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002159 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002160{
Mingming Cao617ba132006-10-11 01:20:53 -07002161 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05002162 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002163 int has_super = 0;
2164
2165 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
2166
Mingming Cao617ba132006-10-11 01:20:53 -07002167 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002168 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002169 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002170 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07002171 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002172 has_super = 1;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002173
Mingming Cao617ba132006-10-11 01:20:53 -07002174 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002175}
2176
Alex Tomasc9de5602008-01-29 00:19:52 -05002177/**
2178 * ext4_get_stripe_size: Get the stripe size.
2179 * @sbi: In memory super block info
2180 *
2181 * If we have specified it via mount option, then
2182 * use the mount option value. If the value specified at mount time is
2183 * greater than the blocks per group use the super block value.
2184 * If the super block value is greater than blocks per group return 0.
2185 * Allocator needs it be less than blocks per group.
2186 *
2187 */
2188static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2189{
2190 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2191 unsigned long stripe_width =
2192 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2193
2194 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2195 return sbi->s_stripe;
2196
2197 if (stripe_width <= sbi->s_blocks_per_group)
2198 return stripe_width;
2199
2200 if (stride <= sbi->s_blocks_per_group)
2201 return stride;
2202
2203 return 0;
2204}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002205
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002206/* sysfs supprt */
2207
2208struct ext4_attr {
2209 struct attribute attr;
2210 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2211 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2212 const char *, size_t);
2213 int offset;
2214};
2215
2216static int parse_strtoul(const char *buf,
2217 unsigned long max, unsigned long *value)
2218{
2219 char *endp;
2220
André Goddard Rosae7d28602009-12-14 18:01:06 -08002221 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
2222 endp = skip_spaces(endp);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002223 if (*endp || *value > max)
2224 return -EINVAL;
2225
2226 return 0;
2227}
2228
2229static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2230 struct ext4_sb_info *sbi,
2231 char *buf)
2232{
2233 return snprintf(buf, PAGE_SIZE, "%llu\n",
2234 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2235}
2236
2237static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2238 struct ext4_sb_info *sbi, char *buf)
2239{
2240 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2241
2242 return snprintf(buf, PAGE_SIZE, "%lu\n",
2243 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2244 sbi->s_sectors_written_start) >> 1);
2245}
2246
2247static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2248 struct ext4_sb_info *sbi, char *buf)
2249{
2250 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2251
2252 return snprintf(buf, PAGE_SIZE, "%llu\n",
Andrew Mortona6b43e32009-12-23 07:48:08 -05002253 (unsigned long long)(sbi->s_kbytes_written +
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002254 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
Andrew Mortona6b43e32009-12-23 07:48:08 -05002255 EXT4_SB(sb)->s_sectors_written_start) >> 1)));
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002256}
2257
2258static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2259 struct ext4_sb_info *sbi,
2260 const char *buf, size_t count)
2261{
2262 unsigned long t;
2263
2264 if (parse_strtoul(buf, 0x40000000, &t))
2265 return -EINVAL;
2266
Theodore Ts'of7c43952009-04-24 23:31:59 -04002267 if (!is_power_of_2(t))
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002268 return -EINVAL;
2269
2270 sbi->s_inode_readahead_blks = t;
2271 return count;
2272}
2273
2274static ssize_t sbi_ui_show(struct ext4_attr *a,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002275 struct ext4_sb_info *sbi, char *buf)
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002276{
2277 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2278
2279 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2280}
2281
2282static ssize_t sbi_ui_store(struct ext4_attr *a,
2283 struct ext4_sb_info *sbi,
2284 const char *buf, size_t count)
2285{
2286 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2287 unsigned long t;
2288
2289 if (parse_strtoul(buf, 0xffffffff, &t))
2290 return -EINVAL;
2291 *ui = t;
2292 return count;
2293}
2294
2295#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2296static struct ext4_attr ext4_attr_##_name = { \
2297 .attr = {.name = __stringify(_name), .mode = _mode }, \
2298 .show = _show, \
2299 .store = _store, \
2300 .offset = offsetof(struct ext4_sb_info, _elname), \
2301}
2302#define EXT4_ATTR(name, mode, show, store) \
2303static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2304
2305#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2306#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2307#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2308 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2309#define ATTR_LIST(name) &ext4_attr_##name.attr
2310
2311EXT4_RO_ATTR(delayed_allocation_blocks);
2312EXT4_RO_ATTR(session_write_kbytes);
2313EXT4_RO_ATTR(lifetime_write_kbytes);
2314EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2315 inode_readahead_blks_store, s_inode_readahead_blks);
Andreas Dilger11013912009-06-13 11:45:35 -04002316EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002317EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2318EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2319EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2320EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2321EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2322EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
Theodore Ts'o55138e02009-09-29 13:31:31 -04002323EXT4_RW_ATTR_SBI_UI(max_writeback_mb_bump, s_max_writeback_mb_bump);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002324
2325static struct attribute *ext4_attrs[] = {
2326 ATTR_LIST(delayed_allocation_blocks),
2327 ATTR_LIST(session_write_kbytes),
2328 ATTR_LIST(lifetime_write_kbytes),
2329 ATTR_LIST(inode_readahead_blks),
Andreas Dilger11013912009-06-13 11:45:35 -04002330 ATTR_LIST(inode_goal),
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002331 ATTR_LIST(mb_stats),
2332 ATTR_LIST(mb_max_to_scan),
2333 ATTR_LIST(mb_min_to_scan),
2334 ATTR_LIST(mb_order2_req),
2335 ATTR_LIST(mb_stream_req),
2336 ATTR_LIST(mb_group_prealloc),
Theodore Ts'o55138e02009-09-29 13:31:31 -04002337 ATTR_LIST(max_writeback_mb_bump),
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002338 NULL,
2339};
2340
2341static ssize_t ext4_attr_show(struct kobject *kobj,
2342 struct attribute *attr, char *buf)
2343{
2344 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2345 s_kobj);
2346 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2347
2348 return a->show ? a->show(a, sbi, buf) : 0;
2349}
2350
2351static ssize_t ext4_attr_store(struct kobject *kobj,
2352 struct attribute *attr,
2353 const char *buf, size_t len)
2354{
2355 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2356 s_kobj);
2357 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2358
2359 return a->store ? a->store(a, sbi, buf, len) : 0;
2360}
2361
2362static void ext4_sb_release(struct kobject *kobj)
2363{
2364 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2365 s_kobj);
2366 complete(&sbi->s_kobj_unregister);
2367}
2368
2369
2370static struct sysfs_ops ext4_attr_ops = {
2371 .show = ext4_attr_show,
2372 .store = ext4_attr_store,
2373};
2374
2375static struct kobj_type ext4_ktype = {
2376 .default_attrs = ext4_attrs,
2377 .sysfs_ops = &ext4_attr_ops,
2378 .release = ext4_sb_release,
2379};
2380
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002381/*
2382 * Check whether this filesystem can be mounted based on
2383 * the features present and the RDONLY/RDWR mount requested.
2384 * Returns 1 if this filesystem can be mounted as requested,
2385 * 0 if it cannot be.
2386 */
2387static int ext4_feature_set_ok(struct super_block *sb, int readonly)
2388{
2389 if (EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP)) {
2390 ext4_msg(sb, KERN_ERR,
2391 "Couldn't mount because of "
2392 "unsupported optional features (%x)",
2393 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2394 ~EXT4_FEATURE_INCOMPAT_SUPP));
2395 return 0;
2396 }
2397
2398 if (readonly)
2399 return 1;
2400
2401 /* Check that feature set is OK for a read-write mount */
2402 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP)) {
2403 ext4_msg(sb, KERN_ERR, "couldn't mount RDWR because of "
2404 "unsupported optional features (%x)",
2405 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2406 ~EXT4_FEATURE_RO_COMPAT_SUPP));
2407 return 0;
2408 }
2409 /*
2410 * Large file size enabled file system can only be mounted
2411 * read-write on 32-bit systems if kernel is built with CONFIG_LBDAF
2412 */
2413 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
2414 if (sizeof(blkcnt_t) < sizeof(u64)) {
2415 ext4_msg(sb, KERN_ERR, "Filesystem with huge files "
2416 "cannot be mounted RDWR without "
2417 "CONFIG_LBDAF");
2418 return 0;
2419 }
2420 }
2421 return 1;
2422}
2423
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002424static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002425 __releases(kernel_lock)
2426 __acquires(kernel_lock)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002427{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002428 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002429 struct ext4_super_block *es = NULL;
2430 struct ext4_sb_info *sbi;
2431 ext4_fsblk_t block;
2432 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002433 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002434 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002435 unsigned long journal_devnum = 0;
2436 unsigned long def_mount_opts;
2437 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002438 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002439 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002440 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002441 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002442 unsigned int db_count;
2443 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002444 int needs_recovery, has_huge_files;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002445 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002446 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002447 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002448
2449 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2450 if (!sbi)
2451 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002452
2453 sbi->s_blockgroup_lock =
2454 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2455 if (!sbi->s_blockgroup_lock) {
2456 kfree(sbi);
2457 return -ENOMEM;
2458 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002459 sb->s_fs_info = sbi;
2460 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002461 sbi->s_resuid = EXT4_DEF_RESUID;
2462 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002463 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002464 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002465 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2466 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002467
2468 unlock_kernel();
2469
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002470 /* Cleanup superblock name */
2471 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2472 *cp = '!';
2473
Mingming Cao617ba132006-10-11 01:20:53 -07002474 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475 if (!blocksize) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002476 ext4_msg(sb, KERN_ERR, "unable to set blocksize");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002477 goto out_fail;
2478 }
2479
2480 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002481 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002482 * block sizes. We need to calculate the offset from buffer start.
2483 */
Mingming Cao617ba132006-10-11 01:20:53 -07002484 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002485 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2486 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002487 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002488 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002489 }
2490
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002491 if (!(bh = sb_bread(sb, logical_sb_block))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002492 ext4_msg(sb, KERN_ERR, "unable to read superblock");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002493 goto out_fail;
2494 }
2495 /*
2496 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002497 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002498 */
Mingming Cao617ba132006-10-11 01:20:53 -07002499 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002500 sbi->s_es = es;
2501 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002502 if (sb->s_magic != EXT4_SUPER_MAGIC)
2503 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002504 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505
2506 /* Set defaults before we parse the mount options */
2507 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002508 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002509 set_opt(sbi->s_mount_opt, DEBUG);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05002510 if (def_mount_opts & EXT4_DEFM_BSDGROUPS) {
2511 ext4_msg(sb, KERN_WARNING, deprecated_msg, "bsdgroups",
2512 "2.6.38");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002513 set_opt(sbi->s_mount_opt, GRPID);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05002514 }
Mingming Cao617ba132006-10-11 01:20:53 -07002515 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002516 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002517#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002518 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002519 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002520#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002521#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002522 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002523 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002524#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002525 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002526 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002527 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002528 set_opt(sbi->s_mount_opt, ORDERED_DATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002529 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002530 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002531
Mingming Cao617ba132006-10-11 01:20:53 -07002532 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002533 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002534 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002535 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002536 else
2537 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002538
2539 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2540 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002541 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2542 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2543 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002544
Eric Sandeen571640c2008-05-26 12:29:46 -04002545 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002546
Mingming Cao1e2462f2007-07-18 09:00:55 -04002547 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002548 * enable delayed allocation by default
2549 * Use -o nodelalloc to turn it off
2550 */
2551 set_opt(sbi->s_mount_opt, DELALLOC);
2552
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002553 if (!parse_options((char *) data, sb, &journal_devnum,
2554 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002555 goto failed_mount;
2556
2557 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002558 (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002559
Mingming Cao617ba132006-10-11 01:20:53 -07002560 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2561 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2562 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2563 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Eric Sandeenb31e1552009-06-04 17:36:36 -04002564 ext4_msg(sb, KERN_WARNING,
2565 "feature flags set on rev 0 fs, "
2566 "running e2fsck is recommended");
Theodore Tso469108f2008-02-10 01:11:44 -05002567
2568 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002569 * Check feature flags regardless of the revision level, since we
2570 * previously didn't change the revision level when setting the flags,
2571 * so there is a chance incompat flags are set on a rev 0 filesystem.
2572 */
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002573 if (!ext4_feature_set_ok(sb, (sb->s_flags & MS_RDONLY)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002574 goto failed_mount;
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002575
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002576 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2577
Mingming Cao617ba132006-10-11 01:20:53 -07002578 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2579 blocksize > EXT4_MAX_BLOCK_SIZE) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002580 ext4_msg(sb, KERN_ERR,
2581 "Unsupported filesystem blocksize %d", blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002582 goto failed_mount;
2583 }
2584
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002585 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002586 /* Validate the filesystem blocksize */
2587 if (!sb_set_blocksize(sb, blocksize)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002588 ext4_msg(sb, KERN_ERR, "bad block size %d",
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002589 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002590 goto failed_mount;
2591 }
2592
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002593 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002594 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2595 offset = do_div(logical_sb_block, blocksize);
2596 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002597 if (!bh) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002598 ext4_msg(sb, KERN_ERR,
2599 "Can't read superblock on 2nd try");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002600 goto failed_mount;
2601 }
Mingming Cao617ba132006-10-11 01:20:53 -07002602 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002603 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002604 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002605 ext4_msg(sb, KERN_ERR,
2606 "Magic mismatch, very weird!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002607 goto failed_mount;
2608 }
2609 }
2610
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002611 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2612 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002613 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2614 has_huge_files);
2615 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002616
Mingming Cao617ba132006-10-11 01:20:53 -07002617 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2618 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2619 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002620 } else {
2621 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2622 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002623 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002624 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002625 (sbi->s_inode_size > blocksize)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002626 ext4_msg(sb, KERN_ERR,
2627 "unsupported inode size: %d",
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002628 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002629 goto failed_mount;
2630 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002631 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2632 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002633 }
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002634
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002635 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2636 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002637 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002638 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002639 !is_power_of_2(sbi->s_desc_size)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002640 ext4_msg(sb, KERN_ERR,
2641 "unsupported descriptor size %lu",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002642 sbi->s_desc_size);
2643 goto failed_mount;
2644 }
2645 } else
2646 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002647
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002648 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002649 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002650 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002651 goto cantfind_ext4;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002652
Mingming Cao617ba132006-10-11 01:20:53 -07002653 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002654 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002655 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002656 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2657 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002658 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002659 sbi->s_sbh = bh;
2660 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002661 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2662 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002663
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002664 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002665 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2666 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002667 i = le32_to_cpu(es->s_flags);
2668 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2669 sbi->s_hash_unsigned = 3;
2670 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2671#ifdef __CHAR_UNSIGNED__
2672 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2673 sbi->s_hash_unsigned = 3;
2674#else
2675 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2676#endif
2677 sb->s_dirt = 1;
2678 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002679
2680 if (sbi->s_blocks_per_group > blocksize * 8) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002681 ext4_msg(sb, KERN_ERR,
2682 "#blocks per group too big: %lu",
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002683 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002684 goto failed_mount;
2685 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002686 if (sbi->s_inodes_per_group > blocksize * 8) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002687 ext4_msg(sb, KERN_ERR,
2688 "#inodes per group too big: %lu",
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002689 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002690 goto failed_mount;
2691 }
2692
Eric Sandeenbf43d842009-08-17 23:48:51 -04002693 /*
2694 * Test whether we have more sectors than will fit in sector_t,
2695 * and whether the max offset is addressable by the page cache.
2696 */
2697 if ((ext4_blocks_count(es) >
2698 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) ||
2699 (ext4_blocks_count(es) >
2700 (pgoff_t)(~0ULL) >> (PAGE_CACHE_SHIFT - sb->s_blocksize_bits))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002701 ext4_msg(sb, KERN_ERR, "filesystem"
Eric Sandeenbf43d842009-08-17 23:48:51 -04002702 " too large to mount safely on this system");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002703 if (sizeof(sector_t) < 8)
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +02002704 ext4_msg(sb, KERN_WARNING, "CONFIG_LBDAF not enabled");
Eric Sandeenbf43d842009-08-17 23:48:51 -04002705 ret = -EFBIG;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002706 goto failed_mount;
2707 }
2708
Mingming Cao617ba132006-10-11 01:20:53 -07002709 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2710 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002711
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002712 /* check blocks count against device size */
2713 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2714 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002715 ext4_msg(sb, KERN_WARNING, "bad geometry: block count %llu "
2716 "exceeds size of device (%llu blocks)",
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002717 ext4_blocks_count(es), blocks_count);
2718 goto failed_mount;
2719 }
2720
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002721 /*
2722 * It makes no sense for the first data block to be beyond the end
2723 * of the filesystem.
2724 */
2725 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002726 ext4_msg(sb, KERN_WARNING, "bad geometry: first data"
2727 "block %u is beyond end of filesystem (%llu)",
2728 le32_to_cpu(es->s_first_data_block),
2729 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002730 goto failed_mount;
2731 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002732 blocks_count = (ext4_blocks_count(es) -
2733 le32_to_cpu(es->s_first_data_block) +
2734 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2735 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002736 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002737 ext4_msg(sb, KERN_WARNING, "groups count too large: %u "
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002738 "(block count %llu, first data block %u, "
Eric Sandeenb31e1552009-06-04 17:36:36 -04002739 "blocks per group %lu)", sbi->s_groups_count,
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002740 ext4_blocks_count(es),
2741 le32_to_cpu(es->s_first_data_block),
2742 EXT4_BLOCKS_PER_GROUP(sb));
2743 goto failed_mount;
2744 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002745 sbi->s_groups_count = blocks_count;
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002746 sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
2747 (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
Mingming Cao617ba132006-10-11 01:20:53 -07002748 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2749 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002750 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002751 GFP_KERNEL);
2752 if (sbi->s_group_desc == NULL) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002753 ext4_msg(sb, KERN_ERR, "not enough memory");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002754 goto failed_mount;
2755 }
2756
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002757#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002758 if (ext4_proc_root)
2759 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002760#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002761
Pekka Enberg705895b2009-02-15 18:07:52 -05002762 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002763
2764 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002765 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002766 sbi->s_group_desc[i] = sb_bread(sb, block);
2767 if (!sbi->s_group_desc[i]) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002768 ext4_msg(sb, KERN_ERR,
2769 "can't read group descriptor %d", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002770 db_count = i;
2771 goto failed_mount2;
2772 }
2773 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002774 if (!ext4_check_descriptors(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002775 ext4_msg(sb, KERN_ERR, "group descriptors corrupted!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002776 goto failed_mount2;
2777 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002778 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2779 if (!ext4_fill_flex_info(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002780 ext4_msg(sb, KERN_ERR,
2781 "unable to initialize "
2782 "flex_bg meta info!");
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002783 goto failed_mount2;
2784 }
2785
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002786 sbi->s_gdb_count = db_count;
2787 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2788 spin_lock_init(&sbi->s_next_gen_lock);
2789
Peter Zijlstra833f4072007-10-16 23:25:45 -07002790 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2791 ext4_count_free_blocks(sb));
2792 if (!err) {
2793 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2794 ext4_count_free_inodes(sb));
2795 }
2796 if (!err) {
2797 err = percpu_counter_init(&sbi->s_dirs_counter,
2798 ext4_count_dirs(sb));
2799 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002800 if (!err) {
2801 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2802 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002803 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002804 ext4_msg(sb, KERN_ERR, "insufficient memory");
Peter Zijlstra833f4072007-10-16 23:25:45 -07002805 goto failed_mount3;
2806 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002807
Alex Tomasc9de5602008-01-29 00:19:52 -05002808 sbi->s_stripe = ext4_get_stripe_size(sbi);
Theodore Ts'o55138e02009-09-29 13:31:31 -04002809 sbi->s_max_writeback_mb_bump = 128;
Alex Tomasc9de5602008-01-29 00:19:52 -05002810
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002811 /*
2812 * set up enough so that it can read an inode
2813 */
Theodore Ts'o9ca92382009-05-01 12:52:25 -04002814 if (!test_opt(sb, NOLOAD) &&
2815 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
2816 sb->s_op = &ext4_sops;
2817 else
2818 sb->s_op = &ext4_nojournal_sops;
Mingming Cao617ba132006-10-11 01:20:53 -07002819 sb->s_export_op = &ext4_export_ops;
2820 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002821#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002822 sb->s_qcop = &ext4_qctl_operations;
2823 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002824#endif
2825 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002826 mutex_init(&sbi->s_orphan_lock);
Theodore Ts'o32ed5052009-04-25 22:53:39 -04002827 mutex_init(&sbi->s_resize_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002828
2829 sb->s_root = NULL;
2830
2831 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002832 EXT4_HAS_INCOMPAT_FEATURE(sb,
2833 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002834
2835 /*
2836 * The first inode we look at is the journal inode. Don't try
2837 * root first: it may be modified in the journal!
2838 */
2839 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002840 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2841 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002842 goto failed_mount3;
Frank Mayhar03901312009-01-07 00:06:22 -05002843 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2844 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002845 ext4_msg(sb, KERN_ERR, "required journal recovery "
2846 "suppressed and not mounted read-only");
Jiaying Zhang744692d2010-03-04 16:14:02 -05002847 goto failed_mount_wq;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002848 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002849 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2850 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2851 sbi->s_journal = NULL;
2852 needs_recovery = 0;
2853 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002854 }
2855
Jose R. Santoseb40a092007-07-18 08:37:25 -04002856 if (ext4_blocks_count(es) > 0xffffffffULL &&
2857 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2858 JBD2_FEATURE_INCOMPAT_64BIT)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002859 ext4_msg(sb, KERN_ERR, "Failed to set 64-bit journal feature");
Jiaying Zhang744692d2010-03-04 16:14:02 -05002860 goto failed_mount_wq;
Jose R. Santoseb40a092007-07-18 08:37:25 -04002861 }
2862
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08002863 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2864 jbd2_journal_set_features(sbi->s_journal,
2865 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
Girish Shilamkar818d2762008-01-28 23:58:27 -05002866 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08002867 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2868 jbd2_journal_set_features(sbi->s_journal,
2869 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
Girish Shilamkar818d2762008-01-28 23:58:27 -05002870 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2871 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08002872 } else {
2873 jbd2_journal_clear_features(sbi->s_journal,
2874 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2875 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2876 }
Girish Shilamkar818d2762008-01-28 23:58:27 -05002877
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002878 /* We have now updated the journal if required, so we can
2879 * validate the data journaling mode. */
2880 switch (test_opt(sb, DATA_FLAGS)) {
2881 case 0:
2882 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002883 * capabilities: ORDERED_DATA if the journal can
2884 * cope, else JOURNAL_DATA
2885 */
Mingming Caodab291a2006-10-11 01:21:01 -07002886 if (jbd2_journal_check_available_features
2887 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002888 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2889 else
2890 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2891 break;
2892
Mingming Cao617ba132006-10-11 01:20:53 -07002893 case EXT4_MOUNT_ORDERED_DATA:
2894 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002895 if (!jbd2_journal_check_available_features
2896 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002897 ext4_msg(sb, KERN_ERR, "Journal does not support "
2898 "requested data journaling mode");
Jiaying Zhang744692d2010-03-04 16:14:02 -05002899 goto failed_mount_wq;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002900 }
2901 default:
2902 break;
2903 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002904 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002905
Frank Mayhar03901312009-01-07 00:06:22 -05002906no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002907 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002908 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002909 ext4_msg(sb, KERN_WARNING, "Ignoring nobh option - "
2910 "its supported only with writeback mode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002911 clear_opt(sbi->s_mount_opt, NOBH);
2912 }
Jiaying Zhang744692d2010-03-04 16:14:02 -05002913 if (test_opt(sb, DIOREAD_NOLOCK)) {
2914 ext4_msg(sb, KERN_WARNING, "dioread_nolock option is "
2915 "not supported with nobh mode");
2916 goto failed_mount_wq;
2917 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002918 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04002919 EXT4_SB(sb)->dio_unwritten_wq = create_workqueue("ext4-dio-unwritten");
2920 if (!EXT4_SB(sb)->dio_unwritten_wq) {
2921 printk(KERN_ERR "EXT4-fs: failed to create DIO workqueue\n");
2922 goto failed_mount_wq;
2923 }
2924
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002925 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002926 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002927 * so we can safely mount the rest of the filesystem now.
2928 */
2929
David Howells1d1fe1e2008-02-07 00:15:37 -08002930 root = ext4_iget(sb, EXT4_ROOT_INO);
2931 if (IS_ERR(root)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002932 ext4_msg(sb, KERN_ERR, "get root inode failed");
David Howells1d1fe1e2008-02-07 00:15:37 -08002933 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002934 goto failed_mount4;
2935 }
2936 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002937 iput(root);
Eric Sandeenb31e1552009-06-04 17:36:36 -04002938 ext4_msg(sb, KERN_ERR, "corrupt root inode, run e2fsck");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002939 goto failed_mount4;
2940 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002941 sb->s_root = d_alloc_root(root);
2942 if (!sb->s_root) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002943 ext4_msg(sb, KERN_ERR, "get root dentry failed");
David Howells1d1fe1e2008-02-07 00:15:37 -08002944 iput(root);
2945 ret = -ENOMEM;
2946 goto failed_mount4;
2947 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002948
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002949 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002950
2951 /* determine the minimum size of new large inodes, if present */
2952 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2953 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2954 EXT4_GOOD_OLD_INODE_SIZE;
2955 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2956 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2957 if (sbi->s_want_extra_isize <
2958 le16_to_cpu(es->s_want_extra_isize))
2959 sbi->s_want_extra_isize =
2960 le16_to_cpu(es->s_want_extra_isize);
2961 if (sbi->s_want_extra_isize <
2962 le16_to_cpu(es->s_min_extra_isize))
2963 sbi->s_want_extra_isize =
2964 le16_to_cpu(es->s_min_extra_isize);
2965 }
2966 }
2967 /* Check if enough inode space is available */
2968 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2969 sbi->s_inode_size) {
2970 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2971 EXT4_GOOD_OLD_INODE_SIZE;
Eric Sandeenb31e1552009-06-04 17:36:36 -04002972 ext4_msg(sb, KERN_INFO, "required extra inode space not"
2973 "available");
Kalpak Shahef7f3832007-07-18 09:15:20 -04002974 }
2975
Theodore Ts'o90576c02009-09-29 15:51:30 -04002976 if (test_opt(sb, DELALLOC) &&
2977 (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002978 ext4_msg(sb, KERN_WARNING, "Ignoring delalloc option - "
2979 "requested data journaling mode");
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002980 clear_opt(sbi->s_mount_opt, DELALLOC);
Theodore Ts'o90576c02009-09-29 15:51:30 -04002981 }
Jiaying Zhang744692d2010-03-04 16:14:02 -05002982 if (test_opt(sb, DIOREAD_NOLOCK)) {
2983 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2984 ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
2985 "option - requested data journaling mode");
2986 clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
2987 }
2988 if (sb->s_blocksize < PAGE_SIZE) {
2989 ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
2990 "option - block size is too small");
2991 clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
2992 }
2993 }
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002994
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002995 err = ext4_setup_system_zone(sb);
2996 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002997 ext4_msg(sb, KERN_ERR, "failed to initialize system "
2998 "zone (%d)\n", err);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04002999 goto failed_mount4;
3000 }
3001
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04003002 ext4_ext_init(sb);
3003 err = ext4_mb_init(sb, needs_recovery);
3004 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003005 ext4_msg(sb, KERN_ERR, "failed to initalize mballoc (%d)",
3006 err);
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04003007 goto failed_mount4;
3008 }
3009
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003010 sbi->s_kobj.kset = ext4_kset;
3011 init_completion(&sbi->s_kobj_unregister);
3012 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
3013 "%s", sb->s_id);
3014 if (err) {
3015 ext4_mb_release(sb);
3016 ext4_ext_release(sb);
3017 goto failed_mount4;
3018 };
3019
Mingming Cao617ba132006-10-11 01:20:53 -07003020 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
3021 ext4_orphan_cleanup(sb, es);
3022 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05003023 if (needs_recovery) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003024 ext4_msg(sb, KERN_INFO, "recovery complete");
Frank Mayhar03901312009-01-07 00:06:22 -05003025 ext4_mark_recovery_complete(sb, es);
3026 }
3027 if (EXT4_SB(sb)->s_journal) {
3028 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
3029 descr = " journalled data mode";
3030 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
3031 descr = " ordered data mode";
3032 else
3033 descr = " writeback data mode";
3034 } else
3035 descr = "out journal";
3036
Eric Sandeenb31e1552009-06-04 17:36:36 -04003037 ext4_msg(sb, KERN_INFO, "mounted filesystem with%s", descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003038
3039 lock_kernel();
3040 return 0;
3041
Mingming Cao617ba132006-10-11 01:20:53 -07003042cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003043 if (!silent)
Eric Sandeenb31e1552009-06-04 17:36:36 -04003044 ext4_msg(sb, KERN_ERR, "VFS: Can't find ext4 filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003045 goto failed_mount;
3046
3047failed_mount4:
Eric Sandeenb31e1552009-06-04 17:36:36 -04003048 ext4_msg(sb, KERN_ERR, "mount failed");
Mingming Cao4c0425f2009-09-28 15:48:41 -04003049 destroy_workqueue(EXT4_SB(sb)->dio_unwritten_wq);
3050failed_mount_wq:
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003051 ext4_release_system_zone(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05003052 if (sbi->s_journal) {
3053 jbd2_journal_destroy(sbi->s_journal);
3054 sbi->s_journal = NULL;
3055 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003056failed_mount3:
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04003057 if (sbi->s_flex_groups) {
3058 if (is_vmalloc_addr(sbi->s_flex_groups))
3059 vfree(sbi->s_flex_groups);
3060 else
3061 kfree(sbi->s_flex_groups);
3062 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003063 percpu_counter_destroy(&sbi->s_freeblocks_counter);
3064 percpu_counter_destroy(&sbi->s_freeinodes_counter);
3065 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003066 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003067failed_mount2:
3068 for (i = 0; i < db_count; i++)
3069 brelse(sbi->s_group_desc[i]);
3070 kfree(sbi->s_group_desc);
3071failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04003072 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003073 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003074 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003075#ifdef CONFIG_QUOTA
3076 for (i = 0; i < MAXQUOTAS; i++)
3077 kfree(sbi->s_qf_names[i]);
3078#endif
Mingming Cao617ba132006-10-11 01:20:53 -07003079 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003080 brelse(bh);
3081out_fail:
3082 sb->s_fs_info = NULL;
Manish Katiyarf6830162009-05-17 23:52:44 -04003083 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003084 kfree(sbi);
3085 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08003086 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003087}
3088
3089/*
3090 * Setup any per-fs journal parameters now. We'll do this both on
3091 * initial mount, once the journal has been initialised but before we've
3092 * done any recovery; and again on any subsequent remount.
3093 */
Mingming Cao617ba132006-10-11 01:20:53 -07003094static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003095{
Mingming Cao617ba132006-10-11 01:20:53 -07003096 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003097
Theodore Ts'o30773842009-01-03 20:27:38 -05003098 journal->j_commit_interval = sbi->s_commit_interval;
3099 journal->j_min_batch_time = sbi->s_min_batch_time;
3100 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003101
3102 spin_lock(&journal->j_state_lock);
3103 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07003104 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003105 else
Mingming Caodab291a2006-10-11 01:21:01 -07003106 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04003107 if (test_opt(sb, DATA_ERR_ABORT))
3108 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
3109 else
3110 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003111 spin_unlock(&journal->j_state_lock);
3112}
3113
Mingming Cao617ba132006-10-11 01:20:53 -07003114static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003115 unsigned int journal_inum)
3116{
3117 struct inode *journal_inode;
3118 journal_t *journal;
3119
Frank Mayhar03901312009-01-07 00:06:22 -05003120 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3121
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003122 /* First, test for the existence of a valid inode on disk. Bad
3123 * things happen if we iget() an unused inode, as the subsequent
3124 * iput() will try to delete it. */
3125
David Howells1d1fe1e2008-02-07 00:15:37 -08003126 journal_inode = ext4_iget(sb, journal_inum);
3127 if (IS_ERR(journal_inode)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003128 ext4_msg(sb, KERN_ERR, "no journal found");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003129 return NULL;
3130 }
3131 if (!journal_inode->i_nlink) {
3132 make_bad_inode(journal_inode);
3133 iput(journal_inode);
Eric Sandeenb31e1552009-06-04 17:36:36 -04003134 ext4_msg(sb, KERN_ERR, "journal inode is deleted");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003135 return NULL;
3136 }
3137
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003138 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003139 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08003140 if (!S_ISREG(journal_inode->i_mode)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003141 ext4_msg(sb, KERN_ERR, "invalid journal inode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003142 iput(journal_inode);
3143 return NULL;
3144 }
3145
Mingming Caodab291a2006-10-11 01:21:01 -07003146 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003147 if (!journal) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003148 ext4_msg(sb, KERN_ERR, "Could not load journal inode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003149 iput(journal_inode);
3150 return NULL;
3151 }
3152 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003153 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003154 return journal;
3155}
3156
Mingming Cao617ba132006-10-11 01:20:53 -07003157static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158 dev_t j_dev)
3159{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003160 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003161 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07003162 ext4_fsblk_t start;
3163 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003164 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07003165 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003166 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003167 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003168 struct block_device *bdev;
3169
Frank Mayhar03901312009-01-07 00:06:22 -05003170 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3171
Eric Sandeenb31e1552009-06-04 17:36:36 -04003172 bdev = ext4_blkdev_get(j_dev, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003173 if (bdev == NULL)
3174 return NULL;
3175
3176 if (bd_claim(bdev, sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003177 ext4_msg(sb, KERN_ERR,
3178 "failed to claim external journal device");
Al Viro9a1c3542008-02-22 20:40:24 -05003179 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003180 return NULL;
3181 }
3182
3183 blocksize = sb->s_blocksize;
Martin K. Petersene1defc42009-05-22 17:17:49 -04003184 hblock = bdev_logical_block_size(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003185 if (blocksize < hblock) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003186 ext4_msg(sb, KERN_ERR,
3187 "blocksize too small for journal device");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003188 goto out_bdev;
3189 }
3190
Mingming Cao617ba132006-10-11 01:20:53 -07003191 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
3192 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193 set_blocksize(bdev, blocksize);
3194 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003195 ext4_msg(sb, KERN_ERR, "couldn't read superblock of "
3196 "external journal");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003197 goto out_bdev;
3198 }
3199
Mingming Cao617ba132006-10-11 01:20:53 -07003200 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
3201 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003202 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07003203 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003204 ext4_msg(sb, KERN_ERR, "external journal has "
3205 "bad superblock");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003206 brelse(bh);
3207 goto out_bdev;
3208 }
3209
Mingming Cao617ba132006-10-11 01:20:53 -07003210 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003211 ext4_msg(sb, KERN_ERR, "journal UUID does not match");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003212 brelse(bh);
3213 goto out_bdev;
3214 }
3215
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003216 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003217 start = sb_block + 1;
3218 brelse(bh); /* we're done with the superblock */
3219
Mingming Caodab291a2006-10-11 01:21:01 -07003220 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003221 start, len, blocksize);
3222 if (!journal) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003223 ext4_msg(sb, KERN_ERR, "failed to create device journal");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003224 goto out_bdev;
3225 }
3226 journal->j_private = sb;
3227 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3228 wait_on_buffer(journal->j_sb_buffer);
3229 if (!buffer_uptodate(journal->j_sb_buffer)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003230 ext4_msg(sb, KERN_ERR, "I/O error on journal device");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003231 goto out_journal;
3232 }
3233 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003234 ext4_msg(sb, KERN_ERR, "External journal has more than one "
3235 "user (unsupported) - %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003236 be32_to_cpu(journal->j_superblock->s_nr_users));
3237 goto out_journal;
3238 }
Mingming Cao617ba132006-10-11 01:20:53 -07003239 EXT4_SB(sb)->journal_bdev = bdev;
3240 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003241 return journal;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003242
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003243out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003244 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003245out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003246 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247 return NULL;
3248}
3249
Mingming Cao617ba132006-10-11 01:20:53 -07003250static int ext4_load_journal(struct super_block *sb,
3251 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003252 unsigned long journal_devnum)
3253{
3254 journal_t *journal;
3255 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3256 dev_t journal_dev;
3257 int err = 0;
3258 int really_read_only;
3259
Frank Mayhar03901312009-01-07 00:06:22 -05003260 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3261
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003262 if (journal_devnum &&
3263 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003264 ext4_msg(sb, KERN_INFO, "external journal device major/minor "
3265 "numbers have changed");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003266 journal_dev = new_decode_dev(journal_devnum);
3267 } else
3268 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3269
3270 really_read_only = bdev_read_only(sb->s_bdev);
3271
3272 /*
3273 * Are we loading a blank journal or performing recovery after a
3274 * crash? For recovery, we need to check in advance whether we
3275 * can get read-write access to the device.
3276 */
Mingming Cao617ba132006-10-11 01:20:53 -07003277 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003278 if (sb->s_flags & MS_RDONLY) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003279 ext4_msg(sb, KERN_INFO, "INFO: recovery "
3280 "required on readonly filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003281 if (really_read_only) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003282 ext4_msg(sb, KERN_ERR, "write access "
3283 "unavailable, cannot proceed");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284 return -EROFS;
3285 }
Eric Sandeenb31e1552009-06-04 17:36:36 -04003286 ext4_msg(sb, KERN_INFO, "write access will "
3287 "be enabled during recovery");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003288 }
3289 }
3290
3291 if (journal_inum && journal_dev) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003292 ext4_msg(sb, KERN_ERR, "filesystem has both journal "
3293 "and inode journals!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003294 return -EINVAL;
3295 }
3296
3297 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003298 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003299 return -EINVAL;
3300 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003301 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003302 return -EINVAL;
3303 }
3304
Theodore Ts'o90576c02009-09-29 15:51:30 -04003305 if (!(journal->j_flags & JBD2_BARRIER))
Eric Sandeenb31e1552009-06-04 17:36:36 -04003306 ext4_msg(sb, KERN_INFO, "barriers disabled");
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003307
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003309 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003310 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003311 ext4_msg(sb, KERN_ERR, "error updating journal");
Mingming Caodab291a2006-10-11 01:21:01 -07003312 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003313 return err;
3314 }
3315 }
3316
Mingming Cao617ba132006-10-11 01:20:53 -07003317 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003318 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003319 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003320 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003321
3322 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003323 ext4_msg(sb, KERN_ERR, "error loading journal");
Mingming Caodab291a2006-10-11 01:21:01 -07003324 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003325 return err;
3326 }
3327
Mingming Cao617ba132006-10-11 01:20:53 -07003328 EXT4_SB(sb)->s_journal = journal;
3329 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003330
3331 if (journal_devnum &&
3332 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3333 es->s_journal_dev = cpu_to_le32(journal_devnum);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334
3335 /* Make sure we flush the recovery flag to disk. */
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003336 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003337 }
3338
3339 return 0;
3340}
3341
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003342static int ext4_commit_super(struct super_block *sb, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003343{
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003344 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Mingming Cao617ba132006-10-11 01:20:53 -07003345 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003346 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003347
3348 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003349 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003350 if (buffer_write_io_error(sbh)) {
3351 /*
3352 * Oh, dear. A previous attempt to write the
3353 * superblock failed. This could happen because the
3354 * USB device was yanked out. Or it could happen to
3355 * be a transient write error and maybe the block will
3356 * be remapped. Nothing we can do but to retry the
3357 * write and hope for the best.
3358 */
Eric Sandeenb31e1552009-06-04 17:36:36 -04003359 ext4_msg(sb, KERN_ERR, "previous I/O error to "
3360 "superblock detected");
Theodore Ts'o914258b2008-10-06 21:35:40 -04003361 clear_buffer_write_io_error(sbh);
3362 set_buffer_uptodate(sbh);
3363 }
Theodore Ts'o71290b32009-09-10 17:31:04 -04003364 /*
3365 * If the file system is mounted read-only, don't update the
3366 * superblock write time. This avoids updating the superblock
3367 * write time when we are mounting the root file system
3368 * read/only but we need to replay the journal; at that point,
3369 * for people who are east of GMT and who make their clock
3370 * tick in localtime for Windows bug-for-bug compatibility,
3371 * the clock is set in the future, and this will cause e2fsck
3372 * to complain and force a full file system check.
3373 */
3374 if (!(sb->s_flags & MS_RDONLY))
3375 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003376 es->s_kbytes_written =
3377 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3378 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3379 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003380 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3381 &EXT4_SB(sb)->s_freeblocks_counter));
3382 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3383 &EXT4_SB(sb)->s_freeinodes_counter));
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003384 sb->s_dirt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003385 BUFFER_TRACE(sbh, "marking dirty");
3386 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003387 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003388 error = sync_dirty_buffer(sbh);
3389 if (error)
3390 return error;
3391
3392 error = buffer_write_io_error(sbh);
3393 if (error) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003394 ext4_msg(sb, KERN_ERR, "I/O error while writing "
3395 "superblock");
Theodore Ts'o914258b2008-10-06 21:35:40 -04003396 clear_buffer_write_io_error(sbh);
3397 set_buffer_uptodate(sbh);
3398 }
3399 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003400 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401}
3402
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003403/*
3404 * Have we just finished recovery? If so, and if we are mounting (or
3405 * remounting) the filesystem readonly, then we will end up with a
3406 * consistent fs on disk. Record that fact.
3407 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003408static void ext4_mark_recovery_complete(struct super_block *sb,
3409 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003410{
Mingming Cao617ba132006-10-11 01:20:53 -07003411 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003412
Frank Mayhar03901312009-01-07 00:06:22 -05003413 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3414 BUG_ON(journal != NULL);
3415 return;
3416 }
Mingming Caodab291a2006-10-11 01:21:01 -07003417 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003418 if (jbd2_journal_flush(journal) < 0)
3419 goto out;
3420
Mingming Cao617ba132006-10-11 01:20:53 -07003421 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003422 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003423 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003424 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003425 }
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003426
3427out:
Mingming Caodab291a2006-10-11 01:21:01 -07003428 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003429}
3430
3431/*
3432 * If we are mounting (or read-write remounting) a filesystem whose journal
3433 * has recorded an error from a previous lifetime, move that error to the
3434 * main filesystem now.
3435 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003436static void ext4_clear_journal_err(struct super_block *sb,
3437 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003438{
3439 journal_t *journal;
3440 int j_errno;
3441 const char *errstr;
3442
Frank Mayhar03901312009-01-07 00:06:22 -05003443 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3444
Mingming Cao617ba132006-10-11 01:20:53 -07003445 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003446
3447 /*
3448 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003449 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003450 */
3451
Mingming Caodab291a2006-10-11 01:21:01 -07003452 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003453 if (j_errno) {
3454 char nbuf[16];
3455
Mingming Cao617ba132006-10-11 01:20:53 -07003456 errstr = ext4_decode_error(sb, j_errno, nbuf);
Eric Sandeen12062dd2010-02-15 14:19:27 -05003457 ext4_warning(sb, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003458 "from previous mount: %s", errstr);
Eric Sandeen12062dd2010-02-15 14:19:27 -05003459 ext4_warning(sb, "Marking fs in need of filesystem check.");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003460
Mingming Cao617ba132006-10-11 01:20:53 -07003461 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3462 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003463 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003464
Mingming Caodab291a2006-10-11 01:21:01 -07003465 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466 }
3467}
3468
3469/*
3470 * Force the running and committing transactions to commit,
3471 * and wait on the commit.
3472 */
Mingming Cao617ba132006-10-11 01:20:53 -07003473int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003474{
3475 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003476 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003477
3478 if (sb->s_flags & MS_RDONLY)
3479 return 0;
3480
Mingming Cao617ba132006-10-11 01:20:53 -07003481 journal = EXT4_SB(sb)->s_journal;
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003482 if (journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003483 ret = ext4_journal_force_commit(journal);
Frank Mayhar03901312009-01-07 00:06:22 -05003484
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003485 return ret;
3486}
3487
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003488static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003489{
Christoph Hellwigebc1ac12009-05-11 23:35:03 +02003490 lock_super(sb);
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003491 ext4_commit_super(sb, 1);
Christoph Hellwigebc1ac12009-05-11 23:35:03 +02003492 unlock_super(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003493}
3494
Mingming Cao617ba132006-10-11 01:20:53 -07003495static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003496{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003497 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003498 tid_t target;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003499 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003500
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003501 trace_ext4_sync_fs(sb, wait);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003502 flush_workqueue(sbi->dio_unwritten_wq);
3503 if (jbd2_journal_start_commit(sbi->s_journal, &target)) {
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003504 if (wait)
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003505 jbd2_log_wait_commit(sbi->s_journal, target);
Frank Mayhar03901312009-01-07 00:06:22 -05003506 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003507 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003508}
3509
3510/*
3511 * LVM calls this function before a (read-only) snapshot is created. This
3512 * gives us a chance to flush the journal completely and mark the fs clean.
3513 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003514static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003515{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003516 int error = 0;
3517 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003518
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003519 if (sb->s_flags & MS_RDONLY)
3520 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003521
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003522 journal = EXT4_SB(sb)->s_journal;
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003523
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003524 /* Now we set up the journal barrier. */
3525 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003526
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003527 /*
3528 * Don't clear the needs_recovery flag if we failed to flush
3529 * the journal.
3530 */
3531 error = jbd2_journal_flush(journal);
3532 if (error < 0) {
3533 out:
3534 jbd2_journal_unlock_updates(journal);
3535 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003536 }
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003537
3538 /* Journal blocked and flushed, clear needs_recovery flag. */
3539 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3540 error = ext4_commit_super(sb, 1);
3541 if (error)
3542 goto out;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003543 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003544}
3545
3546/*
3547 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3548 * flag here, even though the filesystem is not technically dirty yet.
3549 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003550static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003551{
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003552 if (sb->s_flags & MS_RDONLY)
3553 return 0;
3554
3555 lock_super(sb);
3556 /* Reset the needs_recovery flag before the fs is unlocked. */
3557 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3558 ext4_commit_super(sb, 1);
3559 unlock_super(sb);
3560 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003561 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003562}
3563
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003564static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003565{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003566 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003567 struct ext4_sb_info *sbi = EXT4_SB(sb);
3568 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003569 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003570 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003571 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003572 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003573 int err;
3574#ifdef CONFIG_QUOTA
3575 int i;
3576#endif
3577
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02003578 lock_kernel();
3579
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003580 /* Store the original options */
Al Virobbd68512009-05-06 10:43:07 -04003581 lock_super(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003582 old_sb_flags = sb->s_flags;
3583 old_opts.s_mount_opt = sbi->s_mount_opt;
3584 old_opts.s_resuid = sbi->s_resuid;
3585 old_opts.s_resgid = sbi->s_resgid;
3586 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003587 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3588 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003589#ifdef CONFIG_QUOTA
3590 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3591 for (i = 0; i < MAXQUOTAS; i++)
3592 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3593#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003594 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3595 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003596
3597 /*
3598 * Allow the "check" option to be passed as a remount option.
3599 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003600 if (!parse_options(data, sb, NULL, &journal_ioprio,
3601 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003602 err = -EINVAL;
3603 goto restore_opts;
3604 }
3605
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04003606 if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003607 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003608
3609 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Dmitry Monakhov482a7422010-02-24 11:35:32 -05003610 (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003611
3612 es = sbi->s_es;
3613
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003614 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003615 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003616 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3617 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003618
3619 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003620 n_blocks_count > ext4_blocks_count(es)) {
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04003621 if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003622 err = -EROFS;
3623 goto restore_opts;
3624 }
3625
3626 if (*flags & MS_RDONLY) {
3627 /*
3628 * First of all, the unconditional stuff we have to do
3629 * to disable replay of the journal when we next remount
3630 */
3631 sb->s_flags |= MS_RDONLY;
3632
3633 /*
3634 * OK, test if we are remounting a valid rw partition
3635 * readonly, and if so set the rdonly flag and then
3636 * mark the partition as valid again.
3637 */
Mingming Cao617ba132006-10-11 01:20:53 -07003638 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3639 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003640 es->s_state = cpu_to_le16(sbi->s_mount_state);
3641
Theodore Ts'oa63c9eb2009-05-01 01:59:42 -04003642 if (sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003643 ext4_mark_recovery_complete(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003644 } else {
Eric Sandeena13fb1a2009-08-18 00:20:23 -04003645 /* Make sure we can mount this feature set readwrite */
3646 if (!ext4_feature_set_ok(sb, 0)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003647 err = -EROFS;
3648 goto restore_opts;
3649 }
Eric Sandeenead65962007-02-10 01:46:08 -08003650 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003651 * Make sure the group descriptor checksums
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003652 * are sane. If they aren't, refuse to remount r/w.
Theodore Ts'o8a266462008-07-26 14:34:21 -04003653 */
3654 for (g = 0; g < sbi->s_groups_count; g++) {
3655 struct ext4_group_desc *gdp =
3656 ext4_get_group_desc(sb, g, NULL);
3657
3658 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003659 ext4_msg(sb, KERN_ERR,
3660 "ext4_remount: Checksum for group %u failed (%u!=%u)",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003661 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3662 le16_to_cpu(gdp->bg_checksum));
3663 err = -EINVAL;
3664 goto restore_opts;
3665 }
3666 }
3667
3668 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003669 * If we have an unprocessed orphan list hanging
3670 * around from a previously readonly bdev mount,
3671 * require a full umount/remount for now.
3672 */
3673 if (es->s_last_orphan) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003674 ext4_msg(sb, KERN_WARNING, "Couldn't "
Eric Sandeenead65962007-02-10 01:46:08 -08003675 "remount RDWR because of unprocessed "
3676 "orphan inode list. Please "
Eric Sandeenb31e1552009-06-04 17:36:36 -04003677 "umount/remount instead");
Eric Sandeenead65962007-02-10 01:46:08 -08003678 err = -EINVAL;
3679 goto restore_opts;
3680 }
3681
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682 /*
3683 * Mounting a RDONLY partition read-write, so reread
3684 * and store the current valid flag. (It may have
3685 * been changed by e2fsck since we originally mounted
3686 * the partition.)
3687 */
Frank Mayhar03901312009-01-07 00:06:22 -05003688 if (sbi->s_journal)
3689 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003690 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003691 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003693 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003694 sb->s_flags &= ~MS_RDONLY;
3695 }
3696 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003697 ext4_setup_system_zone(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05003698 if (sbi->s_journal == NULL)
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003699 ext4_commit_super(sb, 1);
Frank Mayhar03901312009-01-07 00:06:22 -05003700
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003701#ifdef CONFIG_QUOTA
3702 /* Release old quota file names */
3703 for (i = 0; i < MAXQUOTAS; i++)
3704 if (old_opts.s_qf_names[i] &&
3705 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3706 kfree(old_opts.s_qf_names[i]);
3707#endif
Al Virobbd68512009-05-06 10:43:07 -04003708 unlock_super(sb);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02003709 unlock_kernel();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 return 0;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003711
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003712restore_opts:
3713 sb->s_flags = old_sb_flags;
3714 sbi->s_mount_opt = old_opts.s_mount_opt;
3715 sbi->s_resuid = old_opts.s_resuid;
3716 sbi->s_resgid = old_opts.s_resgid;
3717 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003718 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3719 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003720#ifdef CONFIG_QUOTA
3721 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3722 for (i = 0; i < MAXQUOTAS; i++) {
3723 if (sbi->s_qf_names[i] &&
3724 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3725 kfree(sbi->s_qf_names[i]);
3726 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3727 }
3728#endif
Al Virobbd68512009-05-06 10:43:07 -04003729 unlock_super(sb);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02003730 unlock_kernel();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003731 return err;
3732}
3733
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003734static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003735{
3736 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003737 struct ext4_sb_info *sbi = EXT4_SB(sb);
3738 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003739 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003740
Badari Pulavarty5e700302007-07-15 23:42:00 -07003741 if (test_opt(sb, MINIX_DF)) {
3742 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003743 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04003744 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003745 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003746
3747 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003748 * Compute the overhead (FS structures). This is constant
3749 * for a given filesystem unless the number of block groups
3750 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003751 */
3752
3753 /*
3754 * All of the blocks before first_data_block are
3755 * overhead
3756 */
3757 overhead = le32_to_cpu(es->s_first_data_block);
3758
3759 /*
3760 * Add the overhead attributed to the superblock and
3761 * block group descriptors. If the sparse superblocks
3762 * feature is turned on, then not all groups have this.
3763 */
3764 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003765 overhead += ext4_bg_has_super(sb, i) +
3766 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003767 cond_resched();
3768 }
3769
3770 /*
3771 * Every block group has an inode bitmap, a block
3772 * bitmap, and an inode table.
3773 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003774 overhead += ngroups * (2 + sbi->s_itb_per_group);
3775 sbi->s_overhead_last = overhead;
3776 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003777 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003778 }
3779
Mingming Cao617ba132006-10-11 01:20:53 -07003780 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003781 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003782 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003783 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3784 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003785 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3786 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003787 buf->f_bavail = 0;
3788 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003789 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Mingming Cao617ba132006-10-11 01:20:53 -07003790 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003791 fsid = le64_to_cpup((void *)es->s_uuid) ^
3792 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3793 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3794 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003795
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003796 return 0;
3797}
3798
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003799/* Helper function for writing quotas on sync - we need to start transaction
3800 * before quota file is locked for write. Otherwise the are possible deadlocks:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003801 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003802 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003803 * jbd2_journal_start() write_dquot()
3804 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003805 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003806 *
3807 */
3808
3809#ifdef CONFIG_QUOTA
3810
3811static inline struct inode *dquot_to_inode(struct dquot *dquot)
3812{
3813 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3814}
3815
Mingming Cao617ba132006-10-11 01:20:53 -07003816static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003817{
3818 int ret, err;
3819 handle_t *handle;
3820 struct inode *inode;
3821
3822 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003823 handle = ext4_journal_start(inode,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003824 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825 if (IS_ERR(handle))
3826 return PTR_ERR(handle);
3827 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003828 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829 if (!ret)
3830 ret = err;
3831 return ret;
3832}
3833
Mingming Cao617ba132006-10-11 01:20:53 -07003834static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003835{
3836 int ret, err;
3837 handle_t *handle;
3838
Mingming Cao617ba132006-10-11 01:20:53 -07003839 handle = ext4_journal_start(dquot_to_inode(dquot),
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003840 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003841 if (IS_ERR(handle))
3842 return PTR_ERR(handle);
3843 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003844 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003845 if (!ret)
3846 ret = err;
3847 return ret;
3848}
3849
Mingming Cao617ba132006-10-11 01:20:53 -07003850static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003851{
3852 int ret, err;
3853 handle_t *handle;
3854
Mingming Cao617ba132006-10-11 01:20:53 -07003855 handle = ext4_journal_start(dquot_to_inode(dquot),
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003856 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003857 if (IS_ERR(handle)) {
3858 /* Release dquot anyway to avoid endless cycle in dqput() */
3859 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003860 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003861 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003862 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003863 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003864 if (!ret)
3865 ret = err;
3866 return ret;
3867}
3868
Mingming Cao617ba132006-10-11 01:20:53 -07003869static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003870{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003871 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003872 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3873 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003874 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003875 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003876 } else {
3877 return dquot_mark_dquot_dirty(dquot);
3878 }
3879}
3880
Mingming Cao617ba132006-10-11 01:20:53 -07003881static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003882{
3883 int ret, err;
3884 handle_t *handle;
3885
3886 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003887 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003888 if (IS_ERR(handle))
3889 return PTR_ERR(handle);
3890 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003891 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003892 if (!ret)
3893 ret = err;
3894 return ret;
3895}
3896
3897/*
3898 * Turn on quotas during mount time - we need to find
3899 * the quota file and such...
3900 */
Mingming Cao617ba132006-10-11 01:20:53 -07003901static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003902{
Mingming Cao617ba132006-10-11 01:20:53 -07003903 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003904 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003905}
3906
3907/*
3908 * Standard function to be called on quota_on
3909 */
Mingming Cao617ba132006-10-11 01:20:53 -07003910static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003911 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003912{
3913 int err;
Al Viro82646132008-08-02 00:57:06 -04003914 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003915
3916 if (!test_opt(sb, QUOTA))
3917 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003918 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003919 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003920 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003921
Al Viro82646132008-08-02 00:57:06 -04003922 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003923 if (err)
3924 return err;
Jan Kara06235432008-05-13 19:11:51 -04003925
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003926 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003927 if (path.mnt->mnt_sb != sb) {
3928 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003929 return -EXDEV;
3930 }
Jan Kara06235432008-05-13 19:11:51 -04003931 /* Journaling quota? */
3932 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003933 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003934 if (path.dentry->d_parent != sb->s_root)
Eric Sandeenb31e1552009-06-04 17:36:36 -04003935 ext4_msg(sb, KERN_WARNING,
3936 "Quota file not on filesystem root. "
3937 "Journaled quota will not work");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003938 }
Jan Kara06235432008-05-13 19:11:51 -04003939
3940 /*
3941 * When we journal data on quota file, we have to flush journal to see
3942 * all updates to the file when we bypass pagecache...
3943 */
Frank Mayhar03901312009-01-07 00:06:22 -05003944 if (EXT4_SB(sb)->s_journal &&
3945 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003946 /*
3947 * We don't need to lock updates but journal_flush() could
3948 * otherwise be livelocked...
3949 */
3950 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003951 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003952 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003953 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003954 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003955 return err;
3956 }
Jan Kara06235432008-05-13 19:11:51 -04003957 }
3958
Al Viro82646132008-08-02 00:57:06 -04003959 err = vfs_quota_on_path(sb, type, format_id, &path);
3960 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003961 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003962}
3963
3964/* Read data from quotafile - avoid pagecache and such because we cannot afford
3965 * acquiring the locks... As quota files are never truncated and quota code
3966 * itself serializes the operations (and noone else should touch the files)
3967 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003968static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003969 size_t len, loff_t off)
3970{
3971 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003972 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003973 int err = 0;
3974 int offset = off & (sb->s_blocksize - 1);
3975 int tocopy;
3976 size_t toread;
3977 struct buffer_head *bh;
3978 loff_t i_size = i_size_read(inode);
3979
3980 if (off > i_size)
3981 return 0;
3982 if (off+len > i_size)
3983 len = i_size-off;
3984 toread = len;
3985 while (toread > 0) {
3986 tocopy = sb->s_blocksize - offset < toread ?
3987 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003988 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003989 if (err)
3990 return err;
3991 if (!bh) /* A hole? */
3992 memset(data, 0, tocopy);
3993 else
3994 memcpy(data, bh->b_data+offset, tocopy);
3995 brelse(bh);
3996 offset = 0;
3997 toread -= tocopy;
3998 data += tocopy;
3999 blk++;
4000 }
4001 return len;
4002}
4003
4004/* Write to quotafile (we know the transaction is already started and has
4005 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07004006static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004007 const char *data, size_t len, loff_t off)
4008{
4009 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004010 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004011 int err = 0;
4012 int offset = off & (sb->s_blocksize - 1);
4013 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07004014 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004015 size_t towrite = len;
4016 struct buffer_head *bh;
4017 handle_t *handle = journal_current_handle();
4018
Frank Mayhar03901312009-01-07 00:06:22 -05004019 if (EXT4_SB(sb)->s_journal && !handle) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04004020 ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
4021 " cancelled because transaction is not started",
Jan Kara9c3013e2007-09-11 15:23:29 -07004022 (unsigned long long)off, (unsigned long long)len);
4023 return -EIO;
4024 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004025 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
4026 while (towrite > 0) {
4027 tocopy = sb->s_blocksize - offset < towrite ?
4028 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07004029 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004030 if (!bh)
4031 goto out;
4032 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07004033 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004034 if (err) {
4035 brelse(bh);
4036 goto out;
4037 }
4038 }
4039 lock_buffer(bh);
4040 memcpy(bh->b_data+offset, data, tocopy);
4041 flush_dcache_page(bh->b_page);
4042 unlock_buffer(bh);
4043 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05004044 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004045 else {
4046 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04004047 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004048 mark_buffer_dirty(bh);
4049 }
4050 brelse(bh);
4051 if (err)
4052 goto out;
4053 offset = 0;
4054 towrite -= tocopy;
4055 data += tocopy;
4056 blk++;
4057 }
4058out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07004059 if (len == towrite) {
4060 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004061 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07004062 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004063 if (inode->i_size < off+len-towrite) {
4064 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07004065 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004066 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004067 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004068 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004069 mutex_unlock(&inode->i_mutex);
4070 return len - towrite;
4071}
4072
4073#endif
4074
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04004075static int ext4_get_sb(struct file_system_type *fs_type, int flags,
4076 const char *dev_name, void *data, struct vfsmount *mnt)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004077{
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04004078 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004079}
4080
Theodore Ts'oa2142382009-12-09 21:09:58 -05004081#if !defined(CONTIG_EXT2_FS) && !defined(CONFIG_EXT2_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
Theodore Ts'o24b58422009-12-07 14:08:51 -05004082static struct file_system_type ext2_fs_type = {
4083 .owner = THIS_MODULE,
4084 .name = "ext2",
4085 .get_sb = ext4_get_sb,
4086 .kill_sb = kill_block_super,
4087 .fs_flags = FS_REQUIRES_DEV,
4088};
4089
4090static inline void register_as_ext2(void)
4091{
4092 int err = register_filesystem(&ext2_fs_type);
4093 if (err)
4094 printk(KERN_WARNING
4095 "EXT4-fs: Unable to register as ext2 (%d)\n", err);
4096}
4097
4098static inline void unregister_as_ext2(void)
4099{
4100 unregister_filesystem(&ext2_fs_type);
4101}
Theodore Ts'o51b7e3c2009-12-21 10:56:09 -05004102MODULE_ALIAS("ext2");
Theodore Ts'o24b58422009-12-07 14:08:51 -05004103#else
4104static inline void register_as_ext2(void) { }
4105static inline void unregister_as_ext2(void) { }
4106#endif
4107
Theodore Ts'oa2142382009-12-09 21:09:58 -05004108#if !defined(CONTIG_EXT3_FS) && !defined(CONFIG_EXT3_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
Theodore Ts'o24b58422009-12-07 14:08:51 -05004109static struct file_system_type ext3_fs_type = {
4110 .owner = THIS_MODULE,
4111 .name = "ext3",
4112 .get_sb = ext4_get_sb,
4113 .kill_sb = kill_block_super,
4114 .fs_flags = FS_REQUIRES_DEV,
4115};
4116
4117static inline void register_as_ext3(void)
4118{
4119 int err = register_filesystem(&ext3_fs_type);
4120 if (err)
4121 printk(KERN_WARNING
4122 "EXT4-fs: Unable to register as ext3 (%d)\n", err);
4123}
4124
4125static inline void unregister_as_ext3(void)
4126{
4127 unregister_filesystem(&ext3_fs_type);
4128}
Theodore Ts'o51b7e3c2009-12-21 10:56:09 -05004129MODULE_ALIAS("ext3");
Theodore Ts'o24b58422009-12-07 14:08:51 -05004130#else
4131static inline void register_as_ext3(void) { }
4132static inline void unregister_as_ext3(void) { }
4133#endif
4134
Theodore Ts'o03010a32008-10-10 20:02:48 -04004135static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004136 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04004137 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07004138 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004139 .kill_sb = kill_block_super,
4140 .fs_flags = FS_REQUIRES_DEV,
4141};
4142
Mingming Cao617ba132006-10-11 01:20:53 -07004143static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004144{
Alex Tomasc9de5602008-01-29 00:19:52 -05004145 int err;
4146
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004147 err = init_ext4_system_zone();
4148 if (err)
4149 return err;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04004150 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
4151 if (!ext4_kset)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004152 goto out4;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04004153 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05004154 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004155 if (err)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004156 goto out3;
Alex Tomasc9de5602008-01-29 00:19:52 -05004157
4158 err = init_ext4_xattr();
4159 if (err)
4160 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004161 err = init_inodecache();
4162 if (err)
4163 goto out1;
Theodore Ts'o24b58422009-12-07 14:08:51 -05004164 register_as_ext2();
4165 register_as_ext3();
Theodore Ts'o03010a32008-10-10 20:02:48 -04004166 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004167 if (err)
4168 goto out;
4169 return 0;
4170out:
Theodore Ts'o24b58422009-12-07 14:08:51 -05004171 unregister_as_ext2();
4172 unregister_as_ext3();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004173 destroy_inodecache();
4174out1:
Mingming Cao617ba132006-10-11 01:20:53 -07004175 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05004176out2:
4177 exit_ext4_mballoc();
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004178out3:
4179 remove_proc_entry("fs/ext4", NULL);
4180 kset_unregister(ext4_kset);
4181out4:
4182 exit_ext4_system_zone();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004183 return err;
4184}
4185
Mingming Cao617ba132006-10-11 01:20:53 -07004186static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004187{
Theodore Ts'o24b58422009-12-07 14:08:51 -05004188 unregister_as_ext2();
4189 unregister_as_ext3();
Theodore Ts'o03010a32008-10-10 20:02:48 -04004190 unregister_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004191 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07004192 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05004193 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04004194 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04004195 kset_unregister(ext4_kset);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004196 exit_ext4_system_zone();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004197}
4198
4199MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05004200MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004201MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07004202module_init(init_ext4_fs)
4203module_exit(exit_ext4_fs)