blob: 08d31101eb0597d1eeb04235b71f52f8ce5a3cac [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);
Jan Karaba69f9a2010-03-24 20:18:37 -040071static int ext4_get_sb(struct file_system_type *fs_type, int flags,
72 const char *dev_name, void *data, struct vfsmount *mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070073
Jan Karaba69f9a2010-03-24 20:18:37 -040074#if !defined(CONFIG_EXT3_FS) && !defined(CONFIG_EXT3_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
75static struct file_system_type ext3_fs_type = {
76 .owner = THIS_MODULE,
77 .name = "ext3",
78 .get_sb = ext4_get_sb,
79 .kill_sb = kill_block_super,
80 .fs_flags = FS_REQUIRES_DEV,
81};
82#define IS_EXT3_SB(sb) ((sb)->s_bdev->bd_holder == &ext3_fs_type)
83#else
84#define IS_EXT3_SB(sb) (0)
85#endif
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070086
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070087ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
88 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070089{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040090 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070091 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -040092 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070093}
94
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070095ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
96 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070097{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040098 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070099 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400100 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700101}
102
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700103ext4_fsblk_t ext4_inode_table(struct super_block *sb,
104 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700105{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400106 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700107 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400108 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700109}
110
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500111__u32 ext4_free_blks_count(struct super_block *sb,
112 struct ext4_group_desc *bg)
113{
114 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
115 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400116 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500117}
118
119__u32 ext4_free_inodes_count(struct super_block *sb,
120 struct ext4_group_desc *bg)
121{
122 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
123 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400124 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500125}
126
127__u32 ext4_used_dirs_count(struct super_block *sb,
128 struct ext4_group_desc *bg)
129{
130 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
131 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400132 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500133}
134
135__u32 ext4_itable_unused_count(struct super_block *sb,
136 struct ext4_group_desc *bg)
137{
138 return le16_to_cpu(bg->bg_itable_unused_lo) |
139 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400140 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500141}
142
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700143void ext4_block_bitmap_set(struct super_block *sb,
144 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700145{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400146 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700147 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
148 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700149}
150
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700151void ext4_inode_bitmap_set(struct super_block *sb,
152 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700153{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400154 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700155 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
156 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700157}
158
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700159void ext4_inode_table_set(struct super_block *sb,
160 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700161{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400162 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700163 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
164 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700165}
166
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500167void ext4_free_blks_set(struct super_block *sb,
168 struct ext4_group_desc *bg, __u32 count)
169{
170 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
171 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
172 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
173}
174
175void ext4_free_inodes_set(struct super_block *sb,
176 struct ext4_group_desc *bg, __u32 count)
177{
178 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
179 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
180 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
181}
182
183void ext4_used_dirs_set(struct super_block *sb,
184 struct ext4_group_desc *bg, __u32 count)
185{
186 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
187 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
188 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
189}
190
191void ext4_itable_unused_set(struct super_block *sb,
192 struct ext4_group_desc *bg, __u32 count)
193{
194 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
195 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
196 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
197}
198
Curt Wohlgemuthd3d1faf2009-09-29 11:01:03 -0400199
200/* Just increment the non-pointer handle value */
201static handle_t *ext4_get_nojournal(void)
202{
203 handle_t *handle = current->journal_info;
204 unsigned long ref_cnt = (unsigned long)handle;
205
206 BUG_ON(ref_cnt >= EXT4_NOJOURNAL_MAX_REF_COUNT);
207
208 ref_cnt++;
209 handle = (handle_t *)ref_cnt;
210
211 current->journal_info = handle;
212 return handle;
213}
214
215
216/* Decrement the non-pointer handle value */
217static void ext4_put_nojournal(handle_t *handle)
218{
219 unsigned long ref_cnt = (unsigned long)handle;
220
221 BUG_ON(ref_cnt == 0);
222
223 ref_cnt--;
224 handle = (handle_t *)ref_cnt;
225
226 current->journal_info = handle;
227}
228
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700229/*
Mingming Caodab291a2006-10-11 01:21:01 -0700230 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700231 *
232 * The only special thing we need to do here is to make sure that all
233 * journal_end calls result in the superblock being marked dirty, so
234 * that sync() will call the filesystem's write_super callback if
235 * appropriate.
236 */
Mingming Cao617ba132006-10-11 01:20:53 -0700237handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700238{
239 journal_t *journal;
240
241 if (sb->s_flags & MS_RDONLY)
242 return ERR_PTR(-EROFS);
243
244 /* Special case here: if the journal has aborted behind our
245 * backs (eg. EIO in the commit thread), then we still need to
246 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700247 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500248 if (journal) {
249 if (is_journal_aborted(journal)) {
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400250 ext4_abort(sb, __func__, "Detected aborted journal");
Frank Mayhar03901312009-01-07 00:06:22 -0500251 return ERR_PTR(-EROFS);
252 }
253 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254 }
Curt Wohlgemuthd3d1faf2009-09-29 11:01:03 -0400255 return ext4_get_nojournal();
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700256}
257
258/*
259 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700260 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700261 * that sync() will call the filesystem's write_super callback if
262 * appropriate.
263 */
Mingming Cao617ba132006-10-11 01:20:53 -0700264int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700265{
266 struct super_block *sb;
267 int err;
268 int rc;
269
Frank Mayhar03901312009-01-07 00:06:22 -0500270 if (!ext4_handle_valid(handle)) {
Curt Wohlgemuthd3d1faf2009-09-29 11:01:03 -0400271 ext4_put_nojournal(handle);
Frank Mayhar03901312009-01-07 00:06:22 -0500272 return 0;
273 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700274 sb = handle->h_transaction->t_journal->j_private;
275 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700276 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700277
278 if (!err)
279 err = rc;
280 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700281 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700282 return err;
283}
284
Mingming Cao617ba132006-10-11 01:20:53 -0700285void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700286 struct buffer_head *bh, handle_t *handle, int err)
287{
288 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700289 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290
Frank Mayhar03901312009-01-07 00:06:22 -0500291 BUG_ON(!ext4_handle_valid(handle));
292
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700293 if (bh)
294 BUFFER_TRACE(bh, "abort");
295
296 if (!handle->h_err)
297 handle->h_err = err;
298
299 if (is_handle_aborted(handle))
300 return;
301
302 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
303 caller, errstr, err_fn);
304
Mingming Caodab291a2006-10-11 01:21:01 -0700305 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306}
307
308/* Deal with the reporting of failure conditions on a filesystem such as
309 * inconsistencies detected or read IO failures.
310 *
311 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700312 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700313 * write ordering constraints on the superblock which prevent us from
314 * writing it out straight away; and given that the journal is about to
315 * be aborted, we can't rely on the current, or future, transactions to
316 * write out the superblock safely.
317 *
Mingming Caodab291a2006-10-11 01:21:01 -0700318 * We'll just use the jbd2_journal_abort() error code to record an error in
Thadeu Lima de Souza Cascardod6b198b2010-01-17 19:10:07 -0200319 * the journal instead. On recovery, the journal will complain about
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700320 * that error until we've noted it down and cleared it.
321 */
322
Mingming Cao617ba132006-10-11 01:20:53 -0700323static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700324{
Mingming Cao617ba132006-10-11 01:20:53 -0700325 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700326
Mingming Cao617ba132006-10-11 01:20:53 -0700327 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
328 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700329
330 if (sb->s_flags & MS_RDONLY)
331 return;
332
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400333 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700334 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700335
Theodore Ts'o4ab2f152009-06-13 10:09:36 -0400336 EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700337 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700338 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700339 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400340 if (test_opt(sb, ERRORS_RO)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -0400341 ext4_msg(sb, KERN_CRIT, "Remounting filesystem read-only");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700342 sb->s_flags |= MS_RDONLY;
343 }
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400344 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700345 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700346 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700347 sb->s_id);
348}
349
Eric Sandeen12062dd2010-02-15 14:19:27 -0500350void __ext4_error(struct super_block *sb, const char *function,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400351 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700352{
353 va_list args;
354
355 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400356 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700357 vprintk(fmt, args);
358 printk("\n");
359 va_end(args);
360
Mingming Cao617ba132006-10-11 01:20:53 -0700361 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362}
363
Frank Mayhar273df552010-03-02 11:46:09 -0500364void ext4_error_inode(const char *function, struct inode *inode,
365 const char *fmt, ...)
366{
367 va_list args;
368
369 va_start(args, fmt);
370 printk(KERN_CRIT "EXT4-fs error (device %s): %s: inode #%lu: (comm %s) ",
371 inode->i_sb->s_id, function, inode->i_ino, current->comm);
372 vprintk(fmt, args);
373 printk("\n");
374 va_end(args);
375
376 ext4_handle_error(inode->i_sb);
377}
378
379void ext4_error_file(const char *function, struct file *file,
380 const char *fmt, ...)
381{
382 va_list args;
383 struct inode *inode = file->f_dentry->d_inode;
384 char pathname[80], *path;
385
386 va_start(args, fmt);
387 path = d_path(&(file->f_path), pathname, sizeof(pathname));
388 if (!path)
389 path = "(unknown)";
390 printk(KERN_CRIT
391 "EXT4-fs error (device %s): %s: inode #%lu (comm %s path %s): ",
392 inode->i_sb->s_id, function, inode->i_ino, current->comm, path);
393 vprintk(fmt, args);
394 printk("\n");
395 va_end(args);
396
397 ext4_handle_error(inode->i_sb);
398}
399
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400400static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700401 char nbuf[16])
402{
403 char *errstr = NULL;
404
405 switch (errno) {
406 case -EIO:
407 errstr = "IO failure";
408 break;
409 case -ENOMEM:
410 errstr = "Out of memory";
411 break;
412 case -EROFS:
Theodore Ts'o78f1ddb2009-07-27 23:09:47 -0400413 if (!sb || (EXT4_SB(sb)->s_journal &&
414 EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700415 errstr = "Journal has aborted";
416 else
417 errstr = "Readonly filesystem";
418 break;
419 default:
420 /* If the caller passed in an extra buffer for unknown
421 * errors, textualise them now. Else we just return
422 * NULL. */
423 if (nbuf) {
424 /* Check for truncated error codes... */
425 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
426 errstr = nbuf;
427 }
428 break;
429 }
430
431 return errstr;
432}
433
Mingming Cao617ba132006-10-11 01:20:53 -0700434/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700435 * automatically and invokes the appropriate error response. */
436
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400437void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700438{
439 char nbuf[16];
440 const char *errstr;
441
442 /* Special case: if the error is EROFS, and we're not already
443 * inside a transaction, then there's really no point in logging
444 * an error. */
445 if (errno == -EROFS && journal_current_handle() == NULL &&
446 (sb->s_flags & MS_RDONLY))
447 return;
448
Mingming Cao617ba132006-10-11 01:20:53 -0700449 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400450 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
451 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700452
Mingming Cao617ba132006-10-11 01:20:53 -0700453 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700454}
455
456/*
Mingming Cao617ba132006-10-11 01:20:53 -0700457 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700458 * abort function may be used to deal with unrecoverable failures such
459 * as journal IO errors or ENOMEM at a critical moment in log management.
460 *
461 * We unconditionally force the filesystem into an ABORT|READONLY state,
462 * unless the error response on the fs has been set to panic in which
463 * case we take the easy way out and panic immediately.
464 */
465
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400466void ext4_abort(struct super_block *sb, const char *function,
467 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700468{
469 va_list args;
470
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700471 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400472 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700473 vprintk(fmt, args);
474 printk("\n");
475 va_end(args);
476
477 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700478 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479
480 if (sb->s_flags & MS_RDONLY)
481 return;
482
Eric Sandeenb31e1552009-06-04 17:36:36 -0400483 ext4_msg(sb, KERN_CRIT, "Remounting filesystem read-only");
Mingming Cao617ba132006-10-11 01:20:53 -0700484 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700485 sb->s_flags |= MS_RDONLY;
Theodore Ts'o4ab2f152009-06-13 10:09:36 -0400486 EXT4_SB(sb)->s_mount_flags |= EXT4_MF_FS_ABORTED;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400487 if (EXT4_SB(sb)->s_journal)
488 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700489}
490
Eric Sandeenb31e1552009-06-04 17:36:36 -0400491void ext4_msg (struct super_block * sb, const char *prefix,
492 const char *fmt, ...)
493{
494 va_list args;
495
496 va_start(args, fmt);
497 printk("%sEXT4-fs (%s): ", prefix, sb->s_id);
498 vprintk(fmt, args);
499 printk("\n");
500 va_end(args);
501}
502
Eric Sandeen12062dd2010-02-15 14:19:27 -0500503void __ext4_warning(struct super_block *sb, const char *function,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400504 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700505{
506 va_list args;
507
508 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700509 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700510 sb->s_id, function);
511 vprintk(fmt, args);
512 printk("\n");
513 va_end(args);
514}
515
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500516void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400517 const char *function, const char *fmt, ...)
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500518__releases(bitlock)
519__acquires(bitlock)
520{
521 va_list args;
522 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
523
524 va_start(args, fmt);
525 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
526 vprintk(fmt, args);
527 printk("\n");
528 va_end(args);
529
530 if (test_opt(sb, ERRORS_CONT)) {
531 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
532 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400533 ext4_commit_super(sb, 0);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500534 return;
535 }
536 ext4_unlock_group(sb, grp);
537 ext4_handle_error(sb);
538 /*
539 * We only get here in the ERRORS_RO case; relocking the group
540 * may be dangerous, but nothing bad will happen since the
541 * filesystem will have already been marked read/only and the
542 * journal has been aborted. We return 1 as a hint to callers
543 * who might what to use the return value from
544 * ext4_grp_locked_error() to distinguish beween the
545 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
546 * aggressively from the ext4 function in question, with a
547 * more appropriate error code.
548 */
549 ext4_lock_group(sb, grp);
550 return;
551}
552
Mingming Cao617ba132006-10-11 01:20:53 -0700553void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700554{
Mingming Cao617ba132006-10-11 01:20:53 -0700555 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700556
Mingming Cao617ba132006-10-11 01:20:53 -0700557 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700558 return;
559
Eric Sandeen12062dd2010-02-15 14:19:27 -0500560 ext4_warning(sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700561 "updating to rev %d because of new feature flag, "
562 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700563 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700564
Mingming Cao617ba132006-10-11 01:20:53 -0700565 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
566 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
567 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700568 /* leave es->s_feature_*compat flags alone */
569 /* es->s_uuid will be set by e2fsck if empty */
570
571 /*
572 * The rest of the superblock fields should be zero, and if not it
573 * means they are likely already in use, so leave them alone. We
574 * can leave it up to e2fsck to clean up any inconsistencies there.
575 */
576}
577
578/*
579 * Open the external journal device
580 */
Eric Sandeenb31e1552009-06-04 17:36:36 -0400581static struct block_device *ext4_blkdev_get(dev_t dev, struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700582{
583 struct block_device *bdev;
584 char b[BDEVNAME_SIZE];
585
586 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
587 if (IS_ERR(bdev))
588 goto fail;
589 return bdev;
590
591fail:
Eric Sandeenb31e1552009-06-04 17:36:36 -0400592 ext4_msg(sb, KERN_ERR, "failed to open journal device %s: %ld",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700593 __bdevname(dev, b), PTR_ERR(bdev));
594 return NULL;
595}
596
597/*
598 * Release the journal device
599 */
Mingming Cao617ba132006-10-11 01:20:53 -0700600static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700601{
602 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500603 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700604}
605
Mingming Cao617ba132006-10-11 01:20:53 -0700606static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700607{
608 struct block_device *bdev;
609 int ret = -ENODEV;
610
611 bdev = sbi->journal_bdev;
612 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700613 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700614 sbi->journal_bdev = NULL;
615 }
616 return ret;
617}
618
619static inline struct inode *orphan_list_entry(struct list_head *l)
620{
Mingming Cao617ba132006-10-11 01:20:53 -0700621 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700622}
623
Mingming Cao617ba132006-10-11 01:20:53 -0700624static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700625{
626 struct list_head *l;
627
Eric Sandeenb31e1552009-06-04 17:36:36 -0400628 ext4_msg(sb, KERN_ERR, "sb orphan head is %d",
629 le32_to_cpu(sbi->s_es->s_last_orphan));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700630
631 printk(KERN_ERR "sb_info orphan list:\n");
632 list_for_each(l, &sbi->s_orphan) {
633 struct inode *inode = orphan_list_entry(l);
634 printk(KERN_ERR " "
635 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
636 inode->i_sb->s_id, inode->i_ino, inode,
637 inode->i_mode, inode->i_nlink,
638 NEXT_ORPHAN(inode));
639 }
640}
641
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400642static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700643{
Mingming Cao617ba132006-10-11 01:20:53 -0700644 struct ext4_sb_info *sbi = EXT4_SB(sb);
645 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400646 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700647
Mingming Cao4c0425f2009-09-28 15:48:41 -0400648 flush_workqueue(sbi->dio_unwritten_wq);
649 destroy_workqueue(sbi->dio_unwritten_wq);
650
Al Viroa9e220f2009-05-05 22:10:44 -0400651 lock_super(sb);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200652 lock_kernel();
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200653 if (sb->s_dirt)
Christoph Hellwigebc1ac12009-05-11 23:35:03 +0200654 ext4_commit_super(sb, 1);
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200655
Frank Mayhar03901312009-01-07 00:06:22 -0500656 if (sbi->s_journal) {
657 err = jbd2_journal_destroy(sbi->s_journal);
658 sbi->s_journal = NULL;
659 if (err < 0)
660 ext4_abort(sb, __func__,
661 "Couldn't clean up the journal");
662 }
Josef Bacikd4edac32009-12-08 21:48:58 -0500663
664 ext4_release_system_zone(sb);
665 ext4_mb_release(sb);
666 ext4_ext_release(sb);
667 ext4_xattr_put_super(sb);
668
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700669 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700670 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671 es->s_state = cpu_to_le16(sbi->s_mount_state);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400672 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400674 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400675 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400676 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400677 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678
679 for (i = 0; i < sbi->s_gdb_count; i++)
680 brelse(sbi->s_group_desc[i]);
681 kfree(sbi->s_group_desc);
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -0400682 if (is_vmalloc_addr(sbi->s_flex_groups))
683 vfree(sbi->s_flex_groups);
684 else
685 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686 percpu_counter_destroy(&sbi->s_freeblocks_counter);
687 percpu_counter_destroy(&sbi->s_freeinodes_counter);
688 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400689 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690 brelse(sbi->s_sbh);
691#ifdef CONFIG_QUOTA
692 for (i = 0; i < MAXQUOTAS; i++)
693 kfree(sbi->s_qf_names[i]);
694#endif
695
696 /* Debugging code just in case the in-memory inode orphan list
697 * isn't empty. The on-disk one can be non-empty if we've
698 * detected an error and taken the fs readonly, but the
699 * in-memory list had better be clean by this point. */
700 if (!list_empty(&sbi->s_orphan))
701 dump_orphan_list(sb, sbi);
702 J_ASSERT(list_empty(&sbi->s_orphan));
703
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700704 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700705 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
706 /*
707 * Invalidate the journal device's buffers. We don't want them
708 * floating about in memory - the physical journal device may
709 * hotswapped, and it breaks the `ro-after' testing code.
710 */
711 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700712 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700713 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714 }
715 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400716 /*
717 * Now that we are completely done shutting down the
718 * superblock, we need to actually destroy the kobject.
719 */
720 unlock_kernel();
721 unlock_super(sb);
722 kobject_put(&sbi->s_kobj);
723 wait_for_completion(&sbi->s_kobj_unregister);
Pekka Enberg705895b2009-02-15 18:07:52 -0500724 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700725 kfree(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700726}
727
Christoph Lametere18b8902006-12-06 20:33:20 -0800728static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700729
730/*
731 * Called inside transaction, so use GFP_NOFS
732 */
Mingming Cao617ba132006-10-11 01:20:53 -0700733static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734{
Mingming Cao617ba132006-10-11 01:20:53 -0700735 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700736
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800737 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738 if (!ei)
739 return NULL;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400740
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400742 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700743 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500744 INIT_LIST_HEAD(&ei->i_prealloc_list);
745 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500746 /*
747 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
748 * therefore it can be null here. Don't check it, just initialize
749 * jinode.
750 */
Jan Kara678aaf42008-07-11 19:27:31 -0400751 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400752 ei->i_reserved_data_blocks = 0;
753 ei->i_reserved_meta_blocks = 0;
754 ei->i_allocated_meta_blocks = 0;
Theodore Ts'o9d0be502010-01-01 02:41:30 -0500755 ei->i_da_metadata_calc_len = 0;
Mingming Caod2a17632008-07-14 17:52:37 -0400756 ei->i_delalloc_reserved_flag = 0;
757 spin_lock_init(&(ei->i_block_reservation_lock));
Dmitry Monakhova9e7f442009-12-14 15:21:14 +0300758#ifdef CONFIG_QUOTA
759 ei->i_reserved_quota = 0;
760#endif
Jiaying Zhangc7064ef2010-03-02 13:28:44 -0500761 INIT_LIST_HEAD(&ei->i_completed_io_list);
Jiaying Zhang744692d2010-03-04 16:14:02 -0500762 spin_lock_init(&ei->i_completed_io_lock);
Mingming Cao8d5d02e2009-09-28 15:48:29 -0400763 ei->cur_aio_dio = NULL;
Jan Karab436b9b2009-12-08 23:51:10 -0500764 ei->i_sync_tid = 0;
765 ei->i_datasync_tid = 0;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400766
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700767 return &ei->vfs_inode;
768}
769
Mingming Cao617ba132006-10-11 01:20:53 -0700770static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700771{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700772 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -0400773 ext4_msg(inode->i_sb, KERN_ERR,
774 "Inode %lu (%p): orphan list check failed!",
775 inode->i_ino, EXT4_I(inode));
Vasily Averin9f7dd932007-07-15 23:40:45 -0700776 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
777 EXT4_I(inode), sizeof(struct ext4_inode_info),
778 true);
779 dump_stack();
780 }
Mingming Cao617ba132006-10-11 01:20:53 -0700781 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700782}
783
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700784static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700785{
Mingming Cao617ba132006-10-11 01:20:53 -0700786 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700787
Christoph Lametera35afb82007-05-16 22:10:57 -0700788 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400789#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700790 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700791#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500792 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700793 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700794}
795
796static int init_inodecache(void)
797{
Mingming Cao617ba132006-10-11 01:20:53 -0700798 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
799 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700800 0, (SLAB_RECLAIM_ACCOUNT|
801 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900802 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700803 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700804 return -ENOMEM;
805 return 0;
806}
807
808static void destroy_inodecache(void)
809{
Mingming Cao617ba132006-10-11 01:20:53 -0700810 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700811}
812
Mingming Cao617ba132006-10-11 01:20:53 -0700813static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700814{
Christoph Hellwig9f754752010-03-03 09:05:05 -0500815 dquot_drop(inode);
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400816 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500817 if (EXT4_JOURNAL(inode))
818 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400819 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700820}
821
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400822static inline void ext4_show_quota_options(struct seq_file *seq,
823 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700824{
825#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700826 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700827
Jan Kara5a20bdf2009-11-30 23:58:32 +0100828 if (sbi->s_jquota_fmt) {
829 char *fmtname = "";
830
831 switch (sbi->s_jquota_fmt) {
832 case QFMT_VFS_OLD:
833 fmtname = "vfsold";
834 break;
835 case QFMT_VFS_V0:
836 fmtname = "vfsv0";
837 break;
838 case QFMT_VFS_V1:
839 fmtname = "vfsv1";
840 break;
841 }
842 seq_printf(seq, ",jqfmt=%s", fmtname);
843 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700844
845 if (sbi->s_qf_names[USRQUOTA])
846 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
847
848 if (sbi->s_qf_names[GRPQUOTA])
849 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
850
Dmitry Monakhov482a7422010-02-24 11:35:32 -0500851 if (test_opt(sb, USRQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700852 seq_puts(seq, ",usrquota");
853
Dmitry Monakhov482a7422010-02-24 11:35:32 -0500854 if (test_opt(sb, GRPQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700855 seq_puts(seq, ",grpquota");
856#endif
857}
858
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700859/*
860 * Show an option if
861 * - it's set to a non-default value OR
862 * - if the per-sb default is different from the global default
863 */
Mingming Cao617ba132006-10-11 01:20:53 -0700864static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700865{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500866 int def_errors;
867 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700869 struct ext4_sb_info *sbi = EXT4_SB(sb);
870 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700871
872 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500873 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700874
875 if (sbi->s_sb_block != 1)
876 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
877 if (test_opt(sb, MINIX_DF))
878 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500879 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700880 seq_puts(seq, ",grpid");
881 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
882 seq_puts(seq, ",nogrpid");
883 if (sbi->s_resuid != EXT4_DEF_RESUID ||
884 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
885 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
886 }
887 if (sbi->s_resgid != EXT4_DEF_RESGID ||
888 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
889 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
890 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500891 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700892 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500893 def_errors == EXT4_ERRORS_CONTINUE) {
894 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700895 }
896 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500897 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500898 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500899 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700900 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500901 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700902 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500903 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700904 seq_puts(seq, ",debug");
905 if (test_opt(sb, OLDALLOC))
906 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400907#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500908 if (test_opt(sb, XATTR_USER) &&
909 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700910 seq_puts(seq, ",user_xattr");
911 if (!test_opt(sb, XATTR_USER) &&
912 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
913 seq_puts(seq, ",nouser_xattr");
914 }
915#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400916#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500917 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700918 seq_puts(seq, ",acl");
919 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
920 seq_puts(seq, ",noacl");
921#endif
Theodore Ts'o30773842009-01-03 20:27:38 -0500922 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700923 seq_printf(seq, ",commit=%u",
924 (unsigned) (sbi->s_commit_interval / HZ));
925 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500926 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
927 seq_printf(seq, ",min_batch_time=%u",
928 (unsigned) sbi->s_min_batch_time);
929 }
930 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
931 seq_printf(seq, ",max_batch_time=%u",
932 (unsigned) sbi->s_min_batch_time);
933 }
934
Eric Sandeen571640c2008-05-26 12:29:46 -0400935 /*
936 * We're changing the default of barrier mount option, so
937 * let's always display its mount state so it's clear what its
938 * status is.
939 */
940 seq_puts(seq, ",barrier=");
941 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400942 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
943 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700944 if (test_opt(sb, NOBH))
945 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500946 if (test_opt(sb, I_VERSION))
947 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400948 if (!test_opt(sb, DELALLOC))
949 seq_puts(seq, ",nodelalloc");
950
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500952 if (sbi->s_stripe)
953 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500954 /*
955 * journal mode get enabled in different ways
956 * So just print the value even if we didn't specify it
957 */
Mingming Cao617ba132006-10-11 01:20:53 -0700958 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700959 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700960 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700961 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700962 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 seq_puts(seq, ",data=writeback");
964
Theodore Ts'o240799c2008-10-09 23:53:47 -0400965 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
966 seq_printf(seq, ",inode_readahead_blks=%u",
967 sbi->s_inode_readahead_blks);
968
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400969 if (test_opt(sb, DATA_ERR_ABORT))
970 seq_puts(seq, ",data_err=abort");
971
Theodore Ts'oafd46722009-03-16 23:12:23 -0400972 if (test_opt(sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o06705bf2009-03-28 10:59:57 -0400973 seq_puts(seq, ",noauto_da_alloc");
Theodore Ts'oafd46722009-03-16 23:12:23 -0400974
Eric Sandeen5328e632009-11-19 14:25:42 -0500975 if (test_opt(sb, DISCARD))
976 seq_puts(seq, ",discard");
977
Eric Sandeene3bb52a2009-11-19 14:28:50 -0500978 if (test_opt(sb, NOLOAD))
979 seq_puts(seq, ",norecovery");
980
Jiaying Zhang744692d2010-03-04 16:14:02 -0500981 if (test_opt(sb, DIOREAD_NOLOCK))
982 seq_puts(seq, ",dioread_nolock");
983
Mingming Cao617ba132006-10-11 01:20:53 -0700984 ext4_show_quota_options(seq, sb);
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400985
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700986 return 0;
987}
988
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700989static struct inode *ext4_nfs_get_inode(struct super_block *sb,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -0400990 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700991{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993
Mingming Cao617ba132006-10-11 01:20:53 -0700994 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700996 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700997 return ERR_PTR(-ESTALE);
998
999 /* iget isn't really right if the inode is currently unallocated!!
1000 *
Mingming Cao617ba132006-10-11 01:20:53 -07001001 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001002 * deleted, so we should be safe.
1003 *
1004 * Currently we don't know the generation for parent directory, so
1005 * a generation of 0 means "accept any"
1006 */
David Howells1d1fe1e2008-02-07 00:15:37 -08001007 inode = ext4_iget(sb, ino);
1008 if (IS_ERR(inode))
1009 return ERR_CAST(inode);
1010 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011 iput(inode);
1012 return ERR_PTR(-ESTALE);
1013 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001014
1015 return inode;
1016}
1017
1018static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001019 int fh_len, int fh_type)
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001020{
1021 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
1022 ext4_nfs_get_inode);
1023}
1024
1025static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001026 int fh_len, int fh_type)
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001027{
1028 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
1029 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001030}
1031
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001032/*
1033 * Try to release metadata pages (indirect blocks, directories) which are
1034 * mapped via the block device. Since these pages could have journal heads
1035 * which would prevent try_to_free_buffers() from freeing them, we must use
1036 * jbd2 layer's try_to_free_buffers() function to release them.
1037 */
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001038static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
1039 gfp_t wait)
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001040{
1041 journal_t *journal = EXT4_SB(sb)->s_journal;
1042
1043 WARN_ON(PageChecked(page));
1044 if (!page_has_buffers(page))
1045 return 0;
1046 if (journal)
1047 return jbd2_journal_try_to_free_buffers(journal, page,
1048 wait & ~__GFP_WAIT);
1049 return try_to_free_buffers(page);
1050}
1051
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001053#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001054#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001055
Mingming Cao617ba132006-10-11 01:20:53 -07001056static int ext4_write_dquot(struct dquot *dquot);
1057static int ext4_acquire_dquot(struct dquot *dquot);
1058static int ext4_release_dquot(struct dquot *dquot);
1059static int ext4_mark_dquot_dirty(struct dquot *dquot);
1060static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -07001061static int ext4_quota_on(struct super_block *sb, int type, int format_id,
1062 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -07001063static int ext4_quota_on_mount(struct super_block *sb, int type);
1064static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -07001066static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 const char *data, size_t len, loff_t off);
1068
Alexey Dobriyan61e225d2009-09-21 17:01:08 -07001069static const struct dquot_operations ext4_quota_operations = {
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001070#ifdef CONFIG_QUOTA
Mingming Cao60e58e02009-01-22 18:13:05 +01001071 .get_reserved_space = ext4_get_reserved_space,
Dmitry Monakhova9e7f442009-12-14 15:21:14 +03001072#endif
Mingming Cao617ba132006-10-11 01:20:53 -07001073 .write_dquot = ext4_write_dquot,
1074 .acquire_dquot = ext4_acquire_dquot,
1075 .release_dquot = ext4_release_dquot,
1076 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +01001077 .write_info = ext4_write_info,
1078 .alloc_dquot = dquot_alloc,
1079 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001080};
1081
Alexey Dobriyan0d54b212009-09-21 17:01:09 -07001082static const struct quotactl_ops ext4_qctl_operations = {
Mingming Cao617ba132006-10-11 01:20:53 -07001083 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 .quota_off = vfs_quota_off,
1085 .quota_sync = vfs_quota_sync,
1086 .get_info = vfs_get_dqinfo,
1087 .set_info = vfs_set_dqinfo,
1088 .get_dqblk = vfs_get_dqblk,
1089 .set_dqblk = vfs_set_dqblk
1090};
1091#endif
1092
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -08001093static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -07001094 .alloc_inode = ext4_alloc_inode,
1095 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -07001096 .write_inode = ext4_write_inode,
1097 .dirty_inode = ext4_dirty_inode,
1098 .delete_inode = ext4_delete_inode,
1099 .put_super = ext4_put_super,
Mingming Cao617ba132006-10-11 01:20:53 -07001100 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -08001101 .freeze_fs = ext4_freeze,
1102 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -07001103 .statfs = ext4_statfs,
1104 .remount_fs = ext4_remount,
1105 .clear_inode = ext4_clear_inode,
1106 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001108 .quota_read = ext4_quota_read,
1109 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001110#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001111 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001112};
1113
Theodore Ts'o9ca92382009-05-01 12:52:25 -04001114static const struct super_operations ext4_nojournal_sops = {
1115 .alloc_inode = ext4_alloc_inode,
1116 .destroy_inode = ext4_destroy_inode,
1117 .write_inode = ext4_write_inode,
1118 .dirty_inode = ext4_dirty_inode,
1119 .delete_inode = ext4_delete_inode,
1120 .write_super = ext4_write_super,
1121 .put_super = ext4_put_super,
1122 .statfs = ext4_statfs,
1123 .remount_fs = ext4_remount,
1124 .clear_inode = ext4_clear_inode,
1125 .show_options = ext4_show_options,
1126#ifdef CONFIG_QUOTA
1127 .quota_read = ext4_quota_read,
1128 .quota_write = ext4_quota_write,
1129#endif
1130 .bdev_try_to_free_page = bdev_try_to_free_page,
1131};
1132
Christoph Hellwig39655162007-10-21 16:42:17 -07001133static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001134 .fh_to_dentry = ext4_fh_to_dentry,
1135 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001136 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137};
1138
1139enum {
1140 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1141 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001142 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001143 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001144 Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001145 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001146 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001147 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001148 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Theodore Ts'o296c3552009-09-30 00:32:42 -04001149 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001150 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
Jan Kara5a20bdf2009-11-30 23:58:32 +01001151 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_jqfmt_vfsv1, Opt_quota,
1152 Opt_noquota, Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err,
1153 Opt_resize, Opt_usrquota, Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001154 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001155 Opt_block_validity, Opt_noblock_validity,
Eric Sandeen5328e632009-11-19 14:25:42 -05001156 Opt_inode_readahead_blks, Opt_journal_ioprio,
Jiaying Zhang744692d2010-03-04 16:14:02 -05001157 Opt_dioread_nolock, Opt_dioread_lock,
Eric Sandeen5328e632009-11-19 14:25:42 -05001158 Opt_discard, Opt_nodiscard,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001159};
1160
Steven Whitehousea447c092008-10-13 10:46:57 +01001161static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001162 {Opt_bsd_df, "bsddf"},
1163 {Opt_minix_df, "minixdf"},
1164 {Opt_grpid, "grpid"},
1165 {Opt_grpid, "bsdgroups"},
1166 {Opt_nogrpid, "nogrpid"},
1167 {Opt_nogrpid, "sysvgroups"},
1168 {Opt_resgid, "resgid=%u"},
1169 {Opt_resuid, "resuid=%u"},
1170 {Opt_sb, "sb=%u"},
1171 {Opt_err_cont, "errors=continue"},
1172 {Opt_err_panic, "errors=panic"},
1173 {Opt_err_ro, "errors=remount-ro"},
1174 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001175 {Opt_debug, "debug"},
1176 {Opt_oldalloc, "oldalloc"},
1177 {Opt_orlov, "orlov"},
1178 {Opt_user_xattr, "user_xattr"},
1179 {Opt_nouser_xattr, "nouser_xattr"},
1180 {Opt_acl, "acl"},
1181 {Opt_noacl, "noacl"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 {Opt_noload, "noload"},
Eric Sandeene3bb52a2009-11-19 14:28:50 -05001183 {Opt_noload, "norecovery"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184 {Opt_nobh, "nobh"},
1185 {Opt_bh, "bh"},
1186 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001187 {Opt_min_batch_time, "min_batch_time=%u"},
1188 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001189 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001190 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001191 {Opt_journal_checksum, "journal_checksum"},
1192 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001193 {Opt_abort, "abort"},
1194 {Opt_data_journal, "data=journal"},
1195 {Opt_data_ordered, "data=ordered"},
1196 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001197 {Opt_data_err_abort, "data_err=abort"},
1198 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001199 {Opt_offusrjquota, "usrjquota="},
1200 {Opt_usrjquota, "usrjquota=%s"},
1201 {Opt_offgrpjquota, "grpjquota="},
1202 {Opt_grpjquota, "grpjquota=%s"},
1203 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1204 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
Jan Kara5a20bdf2009-11-30 23:58:32 +01001205 {Opt_jqfmt_vfsv1, "jqfmt=vfsv1"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001206 {Opt_grpquota, "grpquota"},
1207 {Opt_noquota, "noquota"},
1208 {Opt_quota, "quota"},
1209 {Opt_usrquota, "usrquota"},
1210 {Opt_barrier, "barrier=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001211 {Opt_barrier, "barrier"},
1212 {Opt_nobarrier, "nobarrier"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001213 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001214 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001215 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001216 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001217 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001218 {Opt_block_validity, "block_validity"},
1219 {Opt_noblock_validity, "noblock_validity"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001220 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001221 {Opt_journal_ioprio, "journal_ioprio=%u"},
Theodore Ts'oafd46722009-03-16 23:12:23 -04001222 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001223 {Opt_auto_da_alloc, "auto_da_alloc"},
1224 {Opt_noauto_da_alloc, "noauto_da_alloc"},
Jiaying Zhang744692d2010-03-04 16:14:02 -05001225 {Opt_dioread_nolock, "dioread_nolock"},
1226 {Opt_dioread_lock, "dioread_lock"},
Eric Sandeen5328e632009-11-19 14:25:42 -05001227 {Opt_discard, "discard"},
1228 {Opt_nodiscard, "nodiscard"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001229 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001230};
1231
Mingming Cao617ba132006-10-11 01:20:53 -07001232static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001233{
Mingming Cao617ba132006-10-11 01:20:53 -07001234 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 char *options = (char *) *data;
1236
1237 if (!options || strncmp(options, "sb=", 3) != 0)
1238 return 1; /* Default location */
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001239
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001240 options += 3;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001241 /* TODO: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001242 sb_block = simple_strtoul(options, &options, 0);
1243 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001244 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001245 (char *) *data);
1246 return 1;
1247 }
1248 if (*options == ',')
1249 options++;
1250 *data = (void *) options;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001251
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001252 return sb_block;
1253}
1254
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001255#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001256static char deprecated_msg[] = "Mount option \"%s\" will be removed by %s\n"
1257 "Contact linux-ext4@vger.kernel.org if you think we should keep it.\n";
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001258
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001259#ifdef CONFIG_QUOTA
1260static int set_qf_name(struct super_block *sb, int qtype, substring_t *args)
1261{
1262 struct ext4_sb_info *sbi = EXT4_SB(sb);
1263 char *qname;
1264
1265 if (sb_any_quota_loaded(sb) &&
1266 !sbi->s_qf_names[qtype]) {
1267 ext4_msg(sb, KERN_ERR,
1268 "Cannot change journaled "
1269 "quota options when quota turned on");
1270 return 0;
1271 }
1272 qname = match_strdup(args);
1273 if (!qname) {
1274 ext4_msg(sb, KERN_ERR,
1275 "Not enough memory for storing quotafile name");
1276 return 0;
1277 }
1278 if (sbi->s_qf_names[qtype] &&
1279 strcmp(sbi->s_qf_names[qtype], qname)) {
1280 ext4_msg(sb, KERN_ERR,
1281 "%s quota file already specified", QTYPE2NAME(qtype));
1282 kfree(qname);
1283 return 0;
1284 }
1285 sbi->s_qf_names[qtype] = qname;
1286 if (strchr(sbi->s_qf_names[qtype], '/')) {
1287 ext4_msg(sb, KERN_ERR,
1288 "quotafile must be on filesystem root");
1289 kfree(sbi->s_qf_names[qtype]);
1290 sbi->s_qf_names[qtype] = NULL;
1291 return 0;
1292 }
1293 set_opt(sbi->s_mount_opt, QUOTA);
1294 return 1;
1295}
1296
1297static int clear_qf_name(struct super_block *sb, int qtype)
1298{
1299
1300 struct ext4_sb_info *sbi = EXT4_SB(sb);
1301
1302 if (sb_any_quota_loaded(sb) &&
1303 sbi->s_qf_names[qtype]) {
1304 ext4_msg(sb, KERN_ERR, "Cannot change journaled quota options"
1305 " when quota turned on");
1306 return 0;
1307 }
1308 /*
1309 * The space will be released later when all options are confirmed
1310 * to be correct
1311 */
1312 sbi->s_qf_names[qtype] = NULL;
1313 return 1;
1314}
1315#endif
1316
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001317static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001318 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001319 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001320 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001321{
Mingming Cao617ba132006-10-11 01:20:53 -07001322 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001323 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324 substring_t args[MAX_OPT_ARGS];
1325 int data_opt = 0;
1326 int option;
1327#ifdef CONFIG_QUOTA
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001328 int qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001329#endif
1330
1331 if (!options)
1332 return 1;
1333
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001334 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001335 int token;
1336 if (!*p)
1337 continue;
1338
Eric Sandeen15121c12010-02-15 20:17:55 -05001339 /*
1340 * Initialize args struct so we know whether arg was
1341 * found; some options take optional arguments.
1342 */
1343 args[0].to = args[0].from = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001344 token = match_token(p, tokens, args);
1345 switch (token) {
1346 case Opt_bsd_df:
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001347 ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001348 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001349 break;
1350 case Opt_minix_df:
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, MINIX_DF);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001353
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001354 break;
1355 case Opt_grpid:
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 set_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_nogrpid:
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001361 ext4_msg(sb, KERN_WARNING, deprecated_msg, p, "2.6.38");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001362 clear_opt(sbi->s_mount_opt, GRPID);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05001363
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001364 break;
1365 case Opt_resuid:
1366 if (match_int(&args[0], &option))
1367 return 0;
1368 sbi->s_resuid = option;
1369 break;
1370 case Opt_resgid:
1371 if (match_int(&args[0], &option))
1372 return 0;
1373 sbi->s_resgid = option;
1374 break;
1375 case Opt_sb:
1376 /* handled by get_sb_block() instead of here */
1377 /* *sb_block = match_int(&args[0]); */
1378 break;
1379 case Opt_err_panic:
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_RO);
1382 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001383 break;
1384 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001385 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1386 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1387 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388 break;
1389 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001390 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1391 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1392 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001393 break;
1394 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001395 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001397 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001398 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001399 break;
1400 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001401 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402 break;
1403 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001404 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001405 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001406#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001407 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001408 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001409 break;
1410 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001411 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001412 break;
1413#else
1414 case Opt_user_xattr:
1415 case Opt_nouser_xattr:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001416 ext4_msg(sb, KERN_ERR, "(no)user_xattr options not supported");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417 break;
1418#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001419#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 case Opt_acl:
1421 set_opt(sbi->s_mount_opt, POSIX_ACL);
1422 break;
1423 case Opt_noacl:
1424 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1425 break;
1426#else
1427 case Opt_acl:
1428 case Opt_noacl:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001429 ext4_msg(sb, KERN_ERR, "(no)acl options not supported");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001430 break;
1431#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001432 case Opt_journal_update:
1433 /* @@@ FIXME */
1434 /* Eventually we will want to be able to create
1435 a journal file here. For now, only allow the
1436 user to specify an existing inode to be the
1437 journal file. */
1438 if (is_remount) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001439 ext4_msg(sb, KERN_ERR,
1440 "Cannot specify journal on remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001441 return 0;
1442 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001443 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001445 case Opt_journal_dev:
1446 if (is_remount) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001447 ext4_msg(sb, KERN_ERR,
1448 "Cannot specify journal on remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001449 return 0;
1450 }
1451 if (match_int(&args[0], &option))
1452 return 0;
1453 *journal_devnum = option;
1454 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001455 case Opt_journal_checksum:
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08001456 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1457 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001458 case Opt_journal_async_commit:
1459 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08001460 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
Girish Shilamkar818d2762008-01-28 23:58:27 -05001461 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001462 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001463 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001464 break;
1465 case Opt_commit:
1466 if (match_int(&args[0], &option))
1467 return 0;
1468 if (option < 0)
1469 return 0;
1470 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001471 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001472 sbi->s_commit_interval = HZ * option;
1473 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001474 case Opt_max_batch_time:
1475 if (match_int(&args[0], &option))
1476 return 0;
1477 if (option < 0)
1478 return 0;
1479 if (option == 0)
1480 option = EXT4_DEF_MAX_BATCH_TIME;
1481 sbi->s_max_batch_time = option;
1482 break;
1483 case Opt_min_batch_time:
1484 if (match_int(&args[0], &option))
1485 return 0;
1486 if (option < 0)
1487 return 0;
1488 sbi->s_min_batch_time = option;
1489 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001490 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001491 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001492 goto datacheck;
1493 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001494 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001495 goto datacheck;
1496 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001497 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001498 datacheck:
1499 if (is_remount) {
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001500 if (test_opt(sb, DATA_FLAGS) != data_opt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001501 ext4_msg(sb, KERN_ERR,
1502 "Cannot change data mode on remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001503 return 0;
1504 }
1505 } else {
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001506 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001507 sbi->s_mount_opt |= data_opt;
1508 }
1509 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001510 case Opt_data_err_abort:
1511 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1512 break;
1513 case Opt_data_err_ignore:
1514 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1515 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516#ifdef CONFIG_QUOTA
1517 case Opt_usrjquota:
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001518 if (!set_qf_name(sb, USRQUOTA, &args[0]))
1519 return 0;
1520 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001521 case Opt_grpjquota:
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001522 if (!set_qf_name(sb, GRPQUOTA, &args[0]))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001523 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001524 break;
1525 case Opt_offusrjquota:
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001526 if (!clear_qf_name(sb, USRQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001527 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001528 break;
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001529 case Opt_offgrpjquota:
1530 if (!clear_qf_name(sb, GRPQUOTA))
1531 return 0;
1532 break;
1533
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001534 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001535 qfmt = QFMT_VFS_OLD;
1536 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001537 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001538 qfmt = QFMT_VFS_V0;
Jan Kara5a20bdf2009-11-30 23:58:32 +01001539 goto set_qf_format;
1540 case Opt_jqfmt_vfsv1:
1541 qfmt = QFMT_VFS_V1;
Jan Karadfc5d032008-05-13 19:11:51 -04001542set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001543 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001544 sbi->s_jquota_fmt != qfmt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001545 ext4_msg(sb, KERN_ERR, "Cannot change "
Jan Karadfc5d032008-05-13 19:11:51 -04001546 "journaled quota options when "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001547 "quota turned on");
Jan Karadfc5d032008-05-13 19:11:51 -04001548 return 0;
1549 }
1550 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001551 break;
1552 case Opt_quota:
1553 case Opt_usrquota:
1554 set_opt(sbi->s_mount_opt, QUOTA);
1555 set_opt(sbi->s_mount_opt, USRQUOTA);
1556 break;
1557 case Opt_grpquota:
1558 set_opt(sbi->s_mount_opt, QUOTA);
1559 set_opt(sbi->s_mount_opt, GRPQUOTA);
1560 break;
1561 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001562 if (sb_any_quota_loaded(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001563 ext4_msg(sb, KERN_ERR, "Cannot change quota "
1564 "options when quota turned on");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001565 return 0;
1566 }
1567 clear_opt(sbi->s_mount_opt, QUOTA);
1568 clear_opt(sbi->s_mount_opt, USRQUOTA);
1569 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1570 break;
1571#else
1572 case Opt_quota:
1573 case Opt_usrquota:
1574 case Opt_grpquota:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001575 ext4_msg(sb, KERN_ERR,
1576 "quota options not supported");
Jan Karacd59e7b2008-05-13 19:11:51 -04001577 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001578 case Opt_usrjquota:
1579 case Opt_grpjquota:
1580 case Opt_offusrjquota:
1581 case Opt_offgrpjquota:
1582 case Opt_jqfmt_vfsold:
1583 case Opt_jqfmt_vfsv0:
Jan Kara5a20bdf2009-11-30 23:58:32 +01001584 case Opt_jqfmt_vfsv1:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001585 ext4_msg(sb, KERN_ERR,
1586 "journaled quota options not supported");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001587 break;
1588 case Opt_noquota:
1589 break;
1590#endif
1591 case Opt_abort:
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04001592 sbi->s_mount_flags |= EXT4_MF_FS_ABORTED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001593 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001594 case Opt_nobarrier:
1595 clear_opt(sbi->s_mount_opt, BARRIER);
1596 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001597 case Opt_barrier:
Eric Sandeen15121c12010-02-15 20:17:55 -05001598 if (args[0].from) {
1599 if (match_int(&args[0], &option))
1600 return 0;
1601 } else
1602 option = 1; /* No argument, default to 1 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001603 if (option)
1604 set_opt(sbi->s_mount_opt, BARRIER);
1605 else
1606 clear_opt(sbi->s_mount_opt, BARRIER);
1607 break;
1608 case Opt_ignore:
1609 break;
1610 case Opt_resize:
1611 if (!is_remount) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001612 ext4_msg(sb, KERN_ERR,
1613 "resize option only available "
1614 "for remount");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001615 return 0;
1616 }
1617 if (match_int(&args[0], &option) != 0)
1618 return 0;
1619 *n_blocks_count = option;
1620 break;
1621 case Opt_nobh:
1622 set_opt(sbi->s_mount_opt, NOBH);
1623 break;
1624 case Opt_bh:
1625 clear_opt(sbi->s_mount_opt, NOBH);
1626 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001627 case Opt_i_version:
1628 set_opt(sbi->s_mount_opt, I_VERSION);
1629 sb->s_flags |= MS_I_VERSION;
1630 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001631 case Opt_nodelalloc:
1632 clear_opt(sbi->s_mount_opt, DELALLOC);
1633 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001634 case Opt_stripe:
1635 if (match_int(&args[0], &option))
1636 return 0;
1637 if (option < 0)
1638 return 0;
1639 sbi->s_stripe = option;
1640 break;
Alex Tomas64769242008-07-11 19:27:31 -04001641 case Opt_delalloc:
1642 set_opt(sbi->s_mount_opt, DELALLOC);
1643 break;
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04001644 case Opt_block_validity:
1645 set_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
1646 break;
1647 case Opt_noblock_validity:
1648 clear_opt(sbi->s_mount_opt, BLOCK_VALIDITY);
1649 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001650 case Opt_inode_readahead_blks:
1651 if (match_int(&args[0], &option))
1652 return 0;
1653 if (option < 0 || option > (1 << 30))
1654 return 0;
Theodore Ts'of7c43952009-04-24 23:31:59 -04001655 if (!is_power_of_2(option)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001656 ext4_msg(sb, KERN_ERR,
1657 "EXT4-fs: inode_readahead_blks"
1658 " must be a power of 2");
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001659 return 0;
1660 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001661 sbi->s_inode_readahead_blks = option;
1662 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001663 case Opt_journal_ioprio:
1664 if (match_int(&args[0], &option))
1665 return 0;
1666 if (option < 0 || option > 7)
1667 break;
1668 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1669 option);
1670 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001671 case Opt_noauto_da_alloc:
1672 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1673 break;
Theodore Ts'oafd46722009-03-16 23:12:23 -04001674 case Opt_auto_da_alloc:
Eric Sandeen15121c12010-02-15 20:17:55 -05001675 if (args[0].from) {
1676 if (match_int(&args[0], &option))
1677 return 0;
1678 } else
1679 option = 1; /* No argument, default to 1 */
Theodore Ts'oafd46722009-03-16 23:12:23 -04001680 if (option)
1681 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1682 else
1683 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1684 break;
Eric Sandeen5328e632009-11-19 14:25:42 -05001685 case Opt_discard:
1686 set_opt(sbi->s_mount_opt, DISCARD);
1687 break;
1688 case Opt_nodiscard:
1689 clear_opt(sbi->s_mount_opt, DISCARD);
1690 break;
Jiaying Zhang744692d2010-03-04 16:14:02 -05001691 case Opt_dioread_nolock:
1692 set_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
1693 break;
1694 case Opt_dioread_lock:
1695 clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
1696 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001697 default:
Eric Sandeenb31e1552009-06-04 17:36:36 -04001698 ext4_msg(sb, KERN_ERR,
1699 "Unrecognized mount option \"%s\" "
1700 "or missing value", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001701 return 0;
1702 }
1703 }
1704#ifdef CONFIG_QUOTA
1705 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001706 if (test_opt(sb, USRQUOTA) && sbi->s_qf_names[USRQUOTA])
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001707 clear_opt(sbi->s_mount_opt, USRQUOTA);
1708
Dmitry Monakhov482a7422010-02-24 11:35:32 -05001709 if (test_opt(sb, GRPQUOTA) && sbi->s_qf_names[GRPQUOTA])
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1711
Dmitry Monakhov56c50f12010-03-01 23:28:41 -05001712 if (test_opt(sb, GRPQUOTA) || test_opt(sb, USRQUOTA)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001713 ext4_msg(sb, KERN_ERR, "old and new quota "
1714 "format mixing");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001715 return 0;
1716 }
1717
1718 if (!sbi->s_jquota_fmt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001719 ext4_msg(sb, KERN_ERR, "journaled quota format "
1720 "not specified");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001721 return 0;
1722 }
1723 } else {
1724 if (sbi->s_jquota_fmt) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001725 ext4_msg(sb, KERN_ERR, "journaled quota format "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001726 "specified with no journaling "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001727 "enabled");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001728 return 0;
1729 }
1730 }
1731#endif
1732 return 1;
1733}
1734
Mingming Cao617ba132006-10-11 01:20:53 -07001735static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001736 int read_only)
1737{
Mingming Cao617ba132006-10-11 01:20:53 -07001738 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001739 int res = 0;
1740
Mingming Cao617ba132006-10-11 01:20:53 -07001741 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001742 ext4_msg(sb, KERN_ERR, "revision level too high, "
1743 "forcing read-only mode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001744 res = MS_RDONLY;
1745 }
1746 if (read_only)
1747 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001748 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001749 ext4_msg(sb, KERN_WARNING, "warning: mounting unchecked fs, "
1750 "running e2fsck is recommended");
Mingming Cao617ba132006-10-11 01:20:53 -07001751 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001752 ext4_msg(sb, KERN_WARNING,
1753 "warning: mounting fs with errors, "
1754 "running e2fsck is recommended");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001755 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1756 le16_to_cpu(es->s_mnt_count) >=
1757 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001758 ext4_msg(sb, KERN_WARNING,
1759 "warning: maximal mount count reached, "
1760 "running e2fsck is recommended");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001761 else if (le32_to_cpu(es->s_checkinterval) &&
1762 (le32_to_cpu(es->s_lastcheck) +
1763 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Eric Sandeenb31e1552009-06-04 17:36:36 -04001764 ext4_msg(sb, KERN_WARNING,
1765 "warning: checktime reached, "
1766 "running e2fsck is recommended");
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001767 if (!sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05001768 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001769 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001770 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001771 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001772 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001773 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001774 if (sbi->s_journal)
1775 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001776
Theodore Ts'oe2d67052009-05-01 00:33:44 -04001777 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001778 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001779 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Theodore Ts'o7f4520c2009-06-13 10:09:41 -04001780 "bpg=%lu, ipg=%lu, mo=%04x]\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001781 sb->s_blocksize,
1782 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001783 EXT4_BLOCKS_PER_GROUP(sb),
1784 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001785 sbi->s_mount_opt);
1786
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001787 return res;
1788}
1789
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001790static int ext4_fill_flex_info(struct super_block *sb)
1791{
1792 struct ext4_sb_info *sbi = EXT4_SB(sb);
1793 struct ext4_group_desc *gdp = NULL;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001794 ext4_group_t flex_group_count;
1795 ext4_group_t flex_group;
1796 int groups_per_flex = 0;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001797 size_t size;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001798 int i;
1799
Theodore Ts'o503358a2009-11-23 07:24:46 -05001800 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1801 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1802
1803 if (groups_per_flex < 2) {
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001804 sbi->s_log_groups_per_flex = 0;
1805 return 1;
1806 }
1807
Frederic Bohec62a11f2008-09-08 10:20:24 -04001808 /* We allocate both existing and potentially added groups */
1809 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001810 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1811 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001812 size = flex_group_count * sizeof(struct flex_groups);
1813 sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
1814 if (sbi->s_flex_groups == NULL) {
1815 sbi->s_flex_groups = vmalloc(size);
1816 if (sbi->s_flex_groups)
1817 memset(sbi->s_flex_groups, 0, size);
1818 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001819 if (sbi->s_flex_groups == NULL) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001820 ext4_msg(sb, KERN_ERR, "not enough memory for "
1821 "%u flex groups", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001822 goto failed;
1823 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001824
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001825 for (i = 0; i < sbi->s_groups_count; i++) {
Theodore Ts'o88b6edd2009-05-25 11:50:39 -04001826 gdp = ext4_get_group_desc(sb, i, NULL);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001827
1828 flex_group = ext4_flex_group(sbi, i);
Theodore Ts'o7ad9bb62009-09-11 16:51:28 -04001829 atomic_add(ext4_free_inodes_count(sb, gdp),
1830 &sbi->s_flex_groups[flex_group].free_inodes);
1831 atomic_add(ext4_free_blks_count(sb, gdp),
1832 &sbi->s_flex_groups[flex_group].free_blocks);
1833 atomic_add(ext4_used_dirs_count(sb, gdp),
1834 &sbi->s_flex_groups[flex_group].used_dirs);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001835 }
1836
1837 return 1;
1838failed:
1839 return 0;
1840}
1841
Andreas Dilger717d50e2007-10-16 18:38:25 -04001842__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1843 struct ext4_group_desc *gdp)
1844{
1845 __u16 crc = 0;
1846
1847 if (sbi->s_es->s_feature_ro_compat &
1848 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1849 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1850 __le32 le_group = cpu_to_le32(block_group);
1851
1852 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1853 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1854 crc = crc16(crc, (__u8 *)gdp, offset);
1855 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1856 /* for checksum of struct ext4_group_desc do the rest...*/
1857 if ((sbi->s_es->s_feature_incompat &
1858 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1859 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1860 crc = crc16(crc, (__u8 *)gdp + offset,
1861 le16_to_cpu(sbi->s_es->s_desc_size) -
1862 offset);
1863 }
1864
1865 return cpu_to_le16(crc);
1866}
1867
1868int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1869 struct ext4_group_desc *gdp)
1870{
1871 if ((sbi->s_es->s_feature_ro_compat &
1872 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1873 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1874 return 0;
1875
1876 return 1;
1877}
1878
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001879/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001880static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001881{
Mingming Cao617ba132006-10-11 01:20:53 -07001882 struct ext4_sb_info *sbi = EXT4_SB(sb);
1883 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1884 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001885 ext4_fsblk_t block_bitmap;
1886 ext4_fsblk_t inode_bitmap;
1887 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001888 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001889 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001890
Jose R. Santosce421582007-10-16 18:38:25 -04001891 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1892 flexbg_flag = 1;
1893
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001894 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001895
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001896 for (i = 0; i < sbi->s_groups_count; i++) {
1897 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1898
Jose R. Santosce421582007-10-16 18:38:25 -04001899 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001900 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001901 else
1902 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001903 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001904
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001905 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001906 if (block_bitmap < first_block || block_bitmap > last_block) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001907 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001908 "Block bitmap for group %u not in group "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001909 "(block %llu)!", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001910 return 0;
1911 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001912 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001913 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001914 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001915 "Inode bitmap for group %u not in group "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001916 "(block %llu)!", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001917 return 0;
1918 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001919 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001920 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001921 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001922 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001923 "Inode table for group %u not in group "
Eric Sandeenb31e1552009-06-04 17:36:36 -04001924 "(block %llu)!", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001925 return 0;
1926 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001927 ext4_lock_group(sb, i);
Andreas Dilger717d50e2007-10-16 18:38:25 -04001928 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001929 ext4_msg(sb, KERN_ERR, "ext4_check_descriptors: "
1930 "Checksum for group %u failed (%u!=%u)",
1931 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1932 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001933 if (!(sb->s_flags & MS_RDONLY)) {
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001934 ext4_unlock_group(sb, i);
Theodore Ts'o8a266462008-07-26 14:34:21 -04001935 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001936 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001937 }
Aneesh Kumar K.V955ce5f2009-05-02 20:35:09 -04001938 ext4_unlock_group(sb, i);
Jose R. Santosce421582007-10-16 18:38:25 -04001939 if (!flexbg_flag)
1940 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001941 }
1942
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001943 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04001944 sbi->s_es->s_free_inodes_count =cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001945 return 1;
1946}
1947
Mingming Cao617ba132006-10-11 01:20:53 -07001948/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001949 * the superblock) which were deleted from all directories, but held open by
1950 * a process at the time of a crash. We walk the list and try to delete these
1951 * inodes at recovery time (only with a read-write filesystem).
1952 *
1953 * In order to keep the orphan inode chain consistent during traversal (in
1954 * case of crash during recovery), we link each inode into the superblock
1955 * orphan list_head and handle it the same way as an inode deletion during
1956 * normal operation (which journals the operations for us).
1957 *
1958 * We only do an iget() and an iput() on each inode, which is very safe if we
1959 * accidentally point at an in-use or already deleted inode. The worst that
1960 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001961 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001962 * e2fsck was run on this filesystem, and it must have already done the orphan
1963 * inode cleanup for us, so we can safely abort without any further action.
1964 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001965static void ext4_orphan_cleanup(struct super_block *sb,
1966 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001967{
1968 unsigned int s_flags = sb->s_flags;
1969 int nr_orphans = 0, nr_truncates = 0;
1970#ifdef CONFIG_QUOTA
1971 int i;
1972#endif
1973 if (!es->s_last_orphan) {
1974 jbd_debug(4, "no orphan inodes to clean up\n");
1975 return;
1976 }
1977
Eric Sandeena8f48a92006-12-06 20:40:13 -08001978 if (bdev_read_only(sb->s_bdev)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001979 ext4_msg(sb, KERN_ERR, "write access "
1980 "unavailable, skipping orphan cleanup");
Eric Sandeena8f48a92006-12-06 20:40:13 -08001981 return;
1982 }
1983
Mingming Cao617ba132006-10-11 01:20:53 -07001984 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001985 if (es->s_last_orphan)
1986 jbd_debug(1, "Errors on filesystem, "
1987 "clearing orphan list.\n");
1988 es->s_last_orphan = 0;
1989 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1990 return;
1991 }
1992
1993 if (s_flags & MS_RDONLY) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04001994 ext4_msg(sb, KERN_INFO, "orphan cleanup on readonly fs");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001995 sb->s_flags &= ~MS_RDONLY;
1996 }
1997#ifdef CONFIG_QUOTA
1998 /* Needed for iput() to work correctly and not trash data */
1999 sb->s_flags |= MS_ACTIVE;
2000 /* Turn on quotas so that they are updated correctly */
2001 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07002002 if (EXT4_SB(sb)->s_qf_names[i]) {
2003 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002004 if (ret < 0)
Eric Sandeenb31e1552009-06-04 17:36:36 -04002005 ext4_msg(sb, KERN_ERR,
2006 "Cannot turn on journaled "
2007 "quota: error %d", ret);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002008 }
2009 }
2010#endif
2011
2012 while (es->s_last_orphan) {
2013 struct inode *inode;
2014
Josef Bacik97bd42b2008-04-29 22:04:56 -04002015 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
2016 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002017 es->s_last_orphan = 0;
2018 break;
2019 }
2020
Mingming Cao617ba132006-10-11 01:20:53 -07002021 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Christoph Hellwig871a2932010-03-03 09:05:07 -05002022 dquot_initialize(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002023 if (inode->i_nlink) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002024 ext4_msg(sb, KERN_DEBUG,
2025 "%s: truncating inode %lu to %lld bytes",
Harvey Harrison46e665e2008-04-17 10:38:59 -04002026 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002027 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002028 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07002029 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002030 nr_truncates++;
2031 } else {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002032 ext4_msg(sb, KERN_DEBUG,
2033 "%s: deleting unreferenced inode %lu",
Harvey Harrison46e665e2008-04-17 10:38:59 -04002034 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002035 jbd_debug(2, "deleting unreferenced inode %lu\n",
2036 inode->i_ino);
2037 nr_orphans++;
2038 }
2039 iput(inode); /* The delete magic happens here! */
2040 }
2041
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002042#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002043
2044 if (nr_orphans)
Eric Sandeenb31e1552009-06-04 17:36:36 -04002045 ext4_msg(sb, KERN_INFO, "%d orphan inode%s deleted",
2046 PLURAL(nr_orphans));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002047 if (nr_truncates)
Eric Sandeenb31e1552009-06-04 17:36:36 -04002048 ext4_msg(sb, KERN_INFO, "%d truncate%s cleaned up",
2049 PLURAL(nr_truncates));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002050#ifdef CONFIG_QUOTA
2051 /* Turn quotas off */
2052 for (i = 0; i < MAXQUOTAS; i++) {
2053 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07002054 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002055 }
2056#endif
2057 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
2058}
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002059
Eric Sandeencd2291a2008-01-28 23:58:27 -05002060/*
2061 * Maximal extent format file size.
2062 * Resulting logical blkno at s_maxbytes must fit in our on-disk
2063 * extent format containers, within a sector_t, and within i_blocks
2064 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
2065 * so that won't be a limiting factor.
2066 *
2067 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
2068 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002069static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05002070{
2071 loff_t res;
2072 loff_t upper_limit = MAX_LFS_FILESIZE;
2073
2074 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002075 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05002076 /*
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +02002077 * CONFIG_LBDAF is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05002078 * i_block represent total blocks in 512 bytes
2079 * 32 == size of vfs inode i_blocks * 8
2080 */
2081 upper_limit = (1LL << 32) - 1;
2082
2083 /* total blocks in file system block size */
2084 upper_limit >>= (blkbits - 9);
2085 upper_limit <<= blkbits;
2086 }
2087
2088 /* 32-bit extent-start container, ee_block */
2089 res = 1LL << 32;
2090 res <<= blkbits;
2091 res -= 1;
2092
2093 /* Sanity check against vm- & vfs- imposed limits */
2094 if (res > upper_limit)
2095 res = upper_limit;
2096
2097 return res;
2098}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002099
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002100/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05002101 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002102 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
2103 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002104 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002105static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002106{
Mingming Cao617ba132006-10-11 01:20:53 -07002107 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002108 int meta_blocks;
2109 loff_t upper_limit;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002110 /* This is calculated to be the largest file size for a dense, block
2111 * mapped file such that the file's total number of 512-byte sectors,
2112 * including data and all indirect blocks, does not exceed (2^48 - 1).
2113 *
2114 * __u32 i_blocks_lo and _u16 i_blocks_high represent the total
2115 * number of 512-byte sectors of the file.
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002116 */
2117
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002118 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002119 /*
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +02002120 * !has_huge_files or CONFIG_LBDAF not enabled implies that
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002121 * the inode i_block field represents total file blocks in
2122 * 2^32 512-byte sectors == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002123 */
2124 upper_limit = (1LL << 32) - 1;
2125
2126 /* total blocks in file system block size */
2127 upper_limit >>= (bits - 9);
2128
2129 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05002130 /*
2131 * We use 48 bit ext4_inode i_blocks
2132 * With EXT4_HUGE_FILE_FL set the i_blocks
2133 * represent total number of blocks in
2134 * file system block size
2135 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002136 upper_limit = (1LL << 48) - 1;
2137
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002138 }
2139
2140 /* indirect blocks */
2141 meta_blocks = 1;
2142 /* double indirect blocks */
2143 meta_blocks += 1 + (1LL << (bits-2));
2144 /* tripple indirect blocks */
2145 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
2146
2147 upper_limit -= meta_blocks;
2148 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002149
2150 res += 1LL << (bits-2);
2151 res += 1LL << (2*(bits-2));
2152 res += 1LL << (3*(bits-2));
2153 res <<= bits;
2154 if (res > upper_limit)
2155 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002156
2157 if (res > MAX_LFS_FILESIZE)
2158 res = MAX_LFS_FILESIZE;
2159
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002160 return res;
2161}
2162
Mingming Cao617ba132006-10-11 01:20:53 -07002163static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002164 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002165{
Mingming Cao617ba132006-10-11 01:20:53 -07002166 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05002167 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002168 int has_super = 0;
2169
2170 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
2171
Mingming Cao617ba132006-10-11 01:20:53 -07002172 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002173 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002174 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002175 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07002176 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002177 has_super = 1;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002178
Mingming Cao617ba132006-10-11 01:20:53 -07002179 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002180}
2181
Alex Tomasc9de5602008-01-29 00:19:52 -05002182/**
2183 * ext4_get_stripe_size: Get the stripe size.
2184 * @sbi: In memory super block info
2185 *
2186 * If we have specified it via mount option, then
2187 * use the mount option value. If the value specified at mount time is
2188 * greater than the blocks per group use the super block value.
2189 * If the super block value is greater than blocks per group return 0.
2190 * Allocator needs it be less than blocks per group.
2191 *
2192 */
2193static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2194{
2195 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2196 unsigned long stripe_width =
2197 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2198
2199 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2200 return sbi->s_stripe;
2201
2202 if (stripe_width <= sbi->s_blocks_per_group)
2203 return stripe_width;
2204
2205 if (stride <= sbi->s_blocks_per_group)
2206 return stride;
2207
2208 return 0;
2209}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002210
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002211/* sysfs supprt */
2212
2213struct ext4_attr {
2214 struct attribute attr;
2215 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2216 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2217 const char *, size_t);
2218 int offset;
2219};
2220
2221static int parse_strtoul(const char *buf,
2222 unsigned long max, unsigned long *value)
2223{
2224 char *endp;
2225
André Goddard Rosae7d28602009-12-14 18:01:06 -08002226 *value = simple_strtoul(skip_spaces(buf), &endp, 0);
2227 endp = skip_spaces(endp);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002228 if (*endp || *value > max)
2229 return -EINVAL;
2230
2231 return 0;
2232}
2233
2234static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2235 struct ext4_sb_info *sbi,
2236 char *buf)
2237{
2238 return snprintf(buf, PAGE_SIZE, "%llu\n",
2239 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2240}
2241
2242static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2243 struct ext4_sb_info *sbi, char *buf)
2244{
2245 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2246
2247 return snprintf(buf, PAGE_SIZE, "%lu\n",
2248 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2249 sbi->s_sectors_written_start) >> 1);
2250}
2251
2252static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2253 struct ext4_sb_info *sbi, char *buf)
2254{
2255 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2256
2257 return snprintf(buf, PAGE_SIZE, "%llu\n",
Andrew Mortona6b43e32009-12-23 07:48:08 -05002258 (unsigned long long)(sbi->s_kbytes_written +
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002259 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
Andrew Mortona6b43e32009-12-23 07:48:08 -05002260 EXT4_SB(sb)->s_sectors_written_start) >> 1)));
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002261}
2262
2263static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2264 struct ext4_sb_info *sbi,
2265 const char *buf, size_t count)
2266{
2267 unsigned long t;
2268
2269 if (parse_strtoul(buf, 0x40000000, &t))
2270 return -EINVAL;
2271
Theodore Ts'of7c43952009-04-24 23:31:59 -04002272 if (!is_power_of_2(t))
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002273 return -EINVAL;
2274
2275 sbi->s_inode_readahead_blks = t;
2276 return count;
2277}
2278
2279static ssize_t sbi_ui_show(struct ext4_attr *a,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002280 struct ext4_sb_info *sbi, char *buf)
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002281{
2282 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2283
2284 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2285}
2286
2287static ssize_t sbi_ui_store(struct ext4_attr *a,
2288 struct ext4_sb_info *sbi,
2289 const char *buf, size_t count)
2290{
2291 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2292 unsigned long t;
2293
2294 if (parse_strtoul(buf, 0xffffffff, &t))
2295 return -EINVAL;
2296 *ui = t;
2297 return count;
2298}
2299
2300#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2301static struct ext4_attr ext4_attr_##_name = { \
2302 .attr = {.name = __stringify(_name), .mode = _mode }, \
2303 .show = _show, \
2304 .store = _store, \
2305 .offset = offsetof(struct ext4_sb_info, _elname), \
2306}
2307#define EXT4_ATTR(name, mode, show, store) \
2308static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2309
2310#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2311#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2312#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2313 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2314#define ATTR_LIST(name) &ext4_attr_##name.attr
2315
2316EXT4_RO_ATTR(delayed_allocation_blocks);
2317EXT4_RO_ATTR(session_write_kbytes);
2318EXT4_RO_ATTR(lifetime_write_kbytes);
2319EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2320 inode_readahead_blks_store, s_inode_readahead_blks);
Andreas Dilger11013912009-06-13 11:45:35 -04002321EXT4_RW_ATTR_SBI_UI(inode_goal, s_inode_goal);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002322EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2323EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2324EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2325EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2326EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2327EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
Theodore Ts'o55138e02009-09-29 13:31:31 -04002328EXT4_RW_ATTR_SBI_UI(max_writeback_mb_bump, s_max_writeback_mb_bump);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002329
2330static struct attribute *ext4_attrs[] = {
2331 ATTR_LIST(delayed_allocation_blocks),
2332 ATTR_LIST(session_write_kbytes),
2333 ATTR_LIST(lifetime_write_kbytes),
2334 ATTR_LIST(inode_readahead_blks),
Andreas Dilger11013912009-06-13 11:45:35 -04002335 ATTR_LIST(inode_goal),
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002336 ATTR_LIST(mb_stats),
2337 ATTR_LIST(mb_max_to_scan),
2338 ATTR_LIST(mb_min_to_scan),
2339 ATTR_LIST(mb_order2_req),
2340 ATTR_LIST(mb_stream_req),
2341 ATTR_LIST(mb_group_prealloc),
Theodore Ts'o55138e02009-09-29 13:31:31 -04002342 ATTR_LIST(max_writeback_mb_bump),
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002343 NULL,
2344};
2345
2346static ssize_t ext4_attr_show(struct kobject *kobj,
2347 struct attribute *attr, char *buf)
2348{
2349 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2350 s_kobj);
2351 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2352
2353 return a->show ? a->show(a, sbi, buf) : 0;
2354}
2355
2356static ssize_t ext4_attr_store(struct kobject *kobj,
2357 struct attribute *attr,
2358 const char *buf, size_t len)
2359{
2360 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2361 s_kobj);
2362 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2363
2364 return a->store ? a->store(a, sbi, buf, len) : 0;
2365}
2366
2367static void ext4_sb_release(struct kobject *kobj)
2368{
2369 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2370 s_kobj);
2371 complete(&sbi->s_kobj_unregister);
2372}
2373
2374
Emese Revfy52cf25d2010-01-19 02:58:23 +01002375static const struct sysfs_ops ext4_attr_ops = {
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002376 .show = ext4_attr_show,
2377 .store = ext4_attr_store,
2378};
2379
2380static struct kobj_type ext4_ktype = {
2381 .default_attrs = ext4_attrs,
2382 .sysfs_ops = &ext4_attr_ops,
2383 .release = ext4_sb_release,
2384};
2385
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002386/*
2387 * Check whether this filesystem can be mounted based on
2388 * the features present and the RDONLY/RDWR mount requested.
2389 * Returns 1 if this filesystem can be mounted as requested,
2390 * 0 if it cannot be.
2391 */
2392static int ext4_feature_set_ok(struct super_block *sb, int readonly)
2393{
2394 if (EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP)) {
2395 ext4_msg(sb, KERN_ERR,
2396 "Couldn't mount because of "
2397 "unsupported optional features (%x)",
2398 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2399 ~EXT4_FEATURE_INCOMPAT_SUPP));
2400 return 0;
2401 }
2402
2403 if (readonly)
2404 return 1;
2405
2406 /* Check that feature set is OK for a read-write mount */
2407 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP)) {
2408 ext4_msg(sb, KERN_ERR, "couldn't mount RDWR because of "
2409 "unsupported optional features (%x)",
2410 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2411 ~EXT4_FEATURE_RO_COMPAT_SUPP));
2412 return 0;
2413 }
2414 /*
2415 * Large file size enabled file system can only be mounted
2416 * read-write on 32-bit systems if kernel is built with CONFIG_LBDAF
2417 */
2418 if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_HUGE_FILE)) {
2419 if (sizeof(blkcnt_t) < sizeof(u64)) {
2420 ext4_msg(sb, KERN_ERR, "Filesystem with huge files "
2421 "cannot be mounted RDWR without "
2422 "CONFIG_LBDAF");
2423 return 0;
2424 }
2425 }
2426 return 1;
2427}
2428
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002429static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002430 __releases(kernel_lock)
2431 __acquires(kernel_lock)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002432{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002433 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002434 struct ext4_super_block *es = NULL;
2435 struct ext4_sb_info *sbi;
2436 ext4_fsblk_t block;
2437 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002438 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002439 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002440 unsigned long journal_devnum = 0;
2441 unsigned long def_mount_opts;
2442 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002443 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002444 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002445 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002446 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002447 unsigned int db_count;
2448 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002449 int needs_recovery, has_huge_files;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002450 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002451 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002452 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002453
2454 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2455 if (!sbi)
2456 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002457
2458 sbi->s_blockgroup_lock =
2459 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2460 if (!sbi->s_blockgroup_lock) {
2461 kfree(sbi);
2462 return -ENOMEM;
2463 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002464 sb->s_fs_info = sbi;
2465 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002466 sbi->s_resuid = EXT4_DEF_RESUID;
2467 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002468 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002469 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002470 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2471 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002472
2473 unlock_kernel();
2474
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002475 /* Cleanup superblock name */
2476 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2477 *cp = '!';
2478
Mingming Cao617ba132006-10-11 01:20:53 -07002479 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002480 if (!blocksize) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002481 ext4_msg(sb, KERN_ERR, "unable to set blocksize");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002482 goto out_fail;
2483 }
2484
2485 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002486 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002487 * block sizes. We need to calculate the offset from buffer start.
2488 */
Mingming Cao617ba132006-10-11 01:20:53 -07002489 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002490 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2491 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002492 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002493 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002494 }
2495
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002496 if (!(bh = sb_bread(sb, logical_sb_block))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002497 ext4_msg(sb, KERN_ERR, "unable to read superblock");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002498 goto out_fail;
2499 }
2500 /*
2501 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002502 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002503 */
Mingming Cao617ba132006-10-11 01:20:53 -07002504 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002505 sbi->s_es = es;
2506 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002507 if (sb->s_magic != EXT4_SUPER_MAGIC)
2508 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002509 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002510
2511 /* Set defaults before we parse the mount options */
2512 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002513 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002514 set_opt(sbi->s_mount_opt, DEBUG);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05002515 if (def_mount_opts & EXT4_DEFM_BSDGROUPS) {
2516 ext4_msg(sb, KERN_WARNING, deprecated_msg, "bsdgroups",
2517 "2.6.38");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002518 set_opt(sbi->s_mount_opt, GRPID);
Dmitry Monakhov437ca0f2010-03-01 22:29:21 -05002519 }
Mingming Cao617ba132006-10-11 01:20:53 -07002520 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002521 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002522#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002523 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002524 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002525#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002526#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002527 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002528 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002529#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002530 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002531 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002532 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002533 set_opt(sbi->s_mount_opt, ORDERED_DATA);
Mingming Cao617ba132006-10-11 01:20:53 -07002534 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002535 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002536
Mingming Cao617ba132006-10-11 01:20:53 -07002537 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002538 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002539 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002540 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002541 else
2542 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002543
2544 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2545 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002546 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2547 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2548 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002549
Eric Sandeen571640c2008-05-26 12:29:46 -04002550 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002551
Mingming Cao1e2462f2007-07-18 09:00:55 -04002552 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002553 * enable delayed allocation by default
2554 * Use -o nodelalloc to turn it off
2555 */
Jan Karaba69f9a2010-03-24 20:18:37 -04002556 if (!IS_EXT3_SB(sb))
2557 set_opt(sbi->s_mount_opt, DELALLOC);
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002558
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002559 if (!parse_options((char *) data, sb, &journal_devnum,
2560 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002561 goto failed_mount;
2562
2563 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Dmitry Monakhov482a7422010-02-24 11:35:32 -05002564 (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002565
Mingming Cao617ba132006-10-11 01:20:53 -07002566 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2567 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2568 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2569 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Eric Sandeenb31e1552009-06-04 17:36:36 -04002570 ext4_msg(sb, KERN_WARNING,
2571 "feature flags set on rev 0 fs, "
2572 "running e2fsck is recommended");
Theodore Tso469108f2008-02-10 01:11:44 -05002573
2574 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002575 * Check feature flags regardless of the revision level, since we
2576 * previously didn't change the revision level when setting the flags,
2577 * so there is a chance incompat flags are set on a rev 0 filesystem.
2578 */
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002579 if (!ext4_feature_set_ok(sb, (sb->s_flags & MS_RDONLY)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002580 goto failed_mount;
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002581
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002582 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2583
Mingming Cao617ba132006-10-11 01:20:53 -07002584 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2585 blocksize > EXT4_MAX_BLOCK_SIZE) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002586 ext4_msg(sb, KERN_ERR,
2587 "Unsupported filesystem blocksize %d", blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002588 goto failed_mount;
2589 }
2590
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002591 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002592 /* Validate the filesystem blocksize */
2593 if (!sb_set_blocksize(sb, blocksize)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002594 ext4_msg(sb, KERN_ERR, "bad block size %d",
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002595 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002596 goto failed_mount;
2597 }
2598
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002599 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002600 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2601 offset = do_div(logical_sb_block, blocksize);
2602 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002603 if (!bh) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002604 ext4_msg(sb, KERN_ERR,
2605 "Can't read superblock on 2nd try");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002606 goto failed_mount;
2607 }
Mingming Cao617ba132006-10-11 01:20:53 -07002608 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002609 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002610 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002611 ext4_msg(sb, KERN_ERR,
2612 "Magic mismatch, very weird!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002613 goto failed_mount;
2614 }
2615 }
2616
Eric Sandeena13fb1a2009-08-18 00:20:23 -04002617 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2618 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002619 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2620 has_huge_files);
2621 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002622
Mingming Cao617ba132006-10-11 01:20:53 -07002623 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2624 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2625 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002626 } else {
2627 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2628 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002629 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002630 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002631 (sbi->s_inode_size > blocksize)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002632 ext4_msg(sb, KERN_ERR,
2633 "unsupported inode size: %d",
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002634 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002635 goto failed_mount;
2636 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002637 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2638 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002639 }
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002640
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002641 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2642 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002643 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002644 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002645 !is_power_of_2(sbi->s_desc_size)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002646 ext4_msg(sb, KERN_ERR,
2647 "unsupported descriptor size %lu",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002648 sbi->s_desc_size);
2649 goto failed_mount;
2650 }
2651 } else
2652 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002653
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002654 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002655 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002656 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002657 goto cantfind_ext4;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002658
Mingming Cao617ba132006-10-11 01:20:53 -07002659 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002660 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002661 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002662 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2663 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002664 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002665 sbi->s_sbh = bh;
2666 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002667 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2668 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002669
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002670 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002671 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2672 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002673 i = le32_to_cpu(es->s_flags);
2674 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2675 sbi->s_hash_unsigned = 3;
2676 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2677#ifdef __CHAR_UNSIGNED__
2678 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2679 sbi->s_hash_unsigned = 3;
2680#else
2681 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2682#endif
2683 sb->s_dirt = 1;
2684 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002685
2686 if (sbi->s_blocks_per_group > blocksize * 8) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002687 ext4_msg(sb, KERN_ERR,
2688 "#blocks per group too big: %lu",
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002689 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002690 goto failed_mount;
2691 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692 if (sbi->s_inodes_per_group > blocksize * 8) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002693 ext4_msg(sb, KERN_ERR,
2694 "#inodes per group too big: %lu",
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002695 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002696 goto failed_mount;
2697 }
2698
Eric Sandeenbf43d842009-08-17 23:48:51 -04002699 /*
2700 * Test whether we have more sectors than will fit in sector_t,
2701 * and whether the max offset is addressable by the page cache.
2702 */
2703 if ((ext4_blocks_count(es) >
2704 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) ||
2705 (ext4_blocks_count(es) >
2706 (pgoff_t)(~0ULL) >> (PAGE_CACHE_SHIFT - sb->s_blocksize_bits))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002707 ext4_msg(sb, KERN_ERR, "filesystem"
Eric Sandeenbf43d842009-08-17 23:48:51 -04002708 " too large to mount safely on this system");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002709 if (sizeof(sector_t) < 8)
Bartlomiej Zolnierkiewicz90c699a2009-06-19 08:08:50 +02002710 ext4_msg(sb, KERN_WARNING, "CONFIG_LBDAF not enabled");
Eric Sandeenbf43d842009-08-17 23:48:51 -04002711 ret = -EFBIG;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002712 goto failed_mount;
2713 }
2714
Mingming Cao617ba132006-10-11 01:20:53 -07002715 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2716 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002717
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002718 /* check blocks count against device size */
2719 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2720 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002721 ext4_msg(sb, KERN_WARNING, "bad geometry: block count %llu "
2722 "exceeds size of device (%llu blocks)",
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002723 ext4_blocks_count(es), blocks_count);
2724 goto failed_mount;
2725 }
2726
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04002727 /*
2728 * It makes no sense for the first data block to be beyond the end
2729 * of the filesystem.
2730 */
2731 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002732 ext4_msg(sb, KERN_WARNING, "bad geometry: first data"
2733 "block %u is beyond end of filesystem (%llu)",
2734 le32_to_cpu(es->s_first_data_block),
2735 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002736 goto failed_mount;
2737 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002738 blocks_count = (ext4_blocks_count(es) -
2739 le32_to_cpu(es->s_first_data_block) +
2740 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2741 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002742 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002743 ext4_msg(sb, KERN_WARNING, "groups count too large: %u "
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002744 "(block count %llu, first data block %u, "
Eric Sandeenb31e1552009-06-04 17:36:36 -04002745 "blocks per group %lu)", sbi->s_groups_count,
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002746 ext4_blocks_count(es),
2747 le32_to_cpu(es->s_first_data_block),
2748 EXT4_BLOCKS_PER_GROUP(sb));
2749 goto failed_mount;
2750 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002751 sbi->s_groups_count = blocks_count;
Eric Sandeenfb0a3872009-09-16 14:45:10 -04002752 sbi->s_blockfile_groups = min_t(ext4_group_t, sbi->s_groups_count,
2753 (EXT4_MAX_BLOCK_FILE_PHYS / EXT4_BLOCKS_PER_GROUP(sb)));
Mingming Cao617ba132006-10-11 01:20:53 -07002754 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2755 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002756 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002757 GFP_KERNEL);
2758 if (sbi->s_group_desc == NULL) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002759 ext4_msg(sb, KERN_ERR, "not enough memory");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002760 goto failed_mount;
2761 }
2762
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002763#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002764 if (ext4_proc_root)
2765 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002766#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002767
Pekka Enberg705895b2009-02-15 18:07:52 -05002768 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002769
2770 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002771 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002772 sbi->s_group_desc[i] = sb_bread(sb, block);
2773 if (!sbi->s_group_desc[i]) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002774 ext4_msg(sb, KERN_ERR,
2775 "can't read group descriptor %d", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002776 db_count = i;
2777 goto failed_mount2;
2778 }
2779 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002780 if (!ext4_check_descriptors(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002781 ext4_msg(sb, KERN_ERR, "group descriptors corrupted!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002782 goto failed_mount2;
2783 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002784 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2785 if (!ext4_fill_flex_info(sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002786 ext4_msg(sb, KERN_ERR,
2787 "unable to initialize "
2788 "flex_bg meta info!");
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002789 goto failed_mount2;
2790 }
2791
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002792 sbi->s_gdb_count = db_count;
2793 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2794 spin_lock_init(&sbi->s_next_gen_lock);
2795
Peter Zijlstra833f4072007-10-16 23:25:45 -07002796 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2797 ext4_count_free_blocks(sb));
2798 if (!err) {
2799 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2800 ext4_count_free_inodes(sb));
2801 }
2802 if (!err) {
2803 err = percpu_counter_init(&sbi->s_dirs_counter,
2804 ext4_count_dirs(sb));
2805 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002806 if (!err) {
2807 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2808 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002809 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002810 ext4_msg(sb, KERN_ERR, "insufficient memory");
Peter Zijlstra833f4072007-10-16 23:25:45 -07002811 goto failed_mount3;
2812 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002813
Alex Tomasc9de5602008-01-29 00:19:52 -05002814 sbi->s_stripe = ext4_get_stripe_size(sbi);
Theodore Ts'o55138e02009-09-29 13:31:31 -04002815 sbi->s_max_writeback_mb_bump = 128;
Alex Tomasc9de5602008-01-29 00:19:52 -05002816
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002817 /*
2818 * set up enough so that it can read an inode
2819 */
Theodore Ts'o9ca92382009-05-01 12:52:25 -04002820 if (!test_opt(sb, NOLOAD) &&
2821 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
2822 sb->s_op = &ext4_sops;
2823 else
2824 sb->s_op = &ext4_nojournal_sops;
Mingming Cao617ba132006-10-11 01:20:53 -07002825 sb->s_export_op = &ext4_export_ops;
2826 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002827#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002828 sb->s_qcop = &ext4_qctl_operations;
2829 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002830#endif
2831 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
Theodore Ts'o3b9d4ed2009-04-25 22:54:04 -04002832 mutex_init(&sbi->s_orphan_lock);
Theodore Ts'o32ed5052009-04-25 22:53:39 -04002833 mutex_init(&sbi->s_resize_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002834
2835 sb->s_root = NULL;
2836
2837 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002838 EXT4_HAS_INCOMPAT_FEATURE(sb,
2839 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002840
2841 /*
2842 * The first inode we look at is the journal inode. Don't try
2843 * root first: it may be modified in the journal!
2844 */
2845 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002846 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2847 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002848 goto failed_mount3;
Frank Mayhar03901312009-01-07 00:06:22 -05002849 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2850 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002851 ext4_msg(sb, KERN_ERR, "required journal recovery "
2852 "suppressed and not mounted read-only");
Jiaying Zhang744692d2010-03-04 16:14:02 -05002853 goto failed_mount_wq;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002854 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002855 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2856 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2857 sbi->s_journal = NULL;
2858 needs_recovery = 0;
2859 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002860 }
2861
Jose R. Santoseb40a092007-07-18 08:37:25 -04002862 if (ext4_blocks_count(es) > 0xffffffffULL &&
2863 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2864 JBD2_FEATURE_INCOMPAT_64BIT)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002865 ext4_msg(sb, KERN_ERR, "Failed to set 64-bit journal feature");
Jiaying Zhang744692d2010-03-04 16:14:02 -05002866 goto failed_mount_wq;
Jose R. Santoseb40a092007-07-18 08:37:25 -04002867 }
2868
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08002869 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2870 jbd2_journal_set_features(sbi->s_journal,
2871 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
Girish Shilamkar818d2762008-01-28 23:58:27 -05002872 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08002873 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2874 jbd2_journal_set_features(sbi->s_journal,
2875 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
Girish Shilamkar818d2762008-01-28 23:58:27 -05002876 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2877 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
Linus Torvaldsd4da6c92009-11-02 10:15:27 -08002878 } else {
2879 jbd2_journal_clear_features(sbi->s_journal,
2880 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2881 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2882 }
Girish Shilamkar818d2762008-01-28 23:58:27 -05002883
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002884 /* We have now updated the journal if required, so we can
2885 * validate the data journaling mode. */
2886 switch (test_opt(sb, DATA_FLAGS)) {
2887 case 0:
2888 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002889 * capabilities: ORDERED_DATA if the journal can
2890 * cope, else JOURNAL_DATA
2891 */
Mingming Caodab291a2006-10-11 01:21:01 -07002892 if (jbd2_journal_check_available_features
2893 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2895 else
2896 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2897 break;
2898
Mingming Cao617ba132006-10-11 01:20:53 -07002899 case EXT4_MOUNT_ORDERED_DATA:
2900 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002901 if (!jbd2_journal_check_available_features
2902 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002903 ext4_msg(sb, KERN_ERR, "Journal does not support "
2904 "requested data journaling mode");
Jiaying Zhang744692d2010-03-04 16:14:02 -05002905 goto failed_mount_wq;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002906 }
2907 default:
2908 break;
2909 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002910 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002911
Frank Mayhar03901312009-01-07 00:06:22 -05002912no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002913 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002914 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002915 ext4_msg(sb, KERN_WARNING, "Ignoring nobh option - "
2916 "its supported only with writeback mode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002917 clear_opt(sbi->s_mount_opt, NOBH);
2918 }
Jiaying Zhang744692d2010-03-04 16:14:02 -05002919 if (test_opt(sb, DIOREAD_NOLOCK)) {
2920 ext4_msg(sb, KERN_WARNING, "dioread_nolock option is "
2921 "not supported with nobh mode");
2922 goto failed_mount_wq;
2923 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002924 }
Mingming Cao4c0425f2009-09-28 15:48:41 -04002925 EXT4_SB(sb)->dio_unwritten_wq = create_workqueue("ext4-dio-unwritten");
2926 if (!EXT4_SB(sb)->dio_unwritten_wq) {
2927 printk(KERN_ERR "EXT4-fs: failed to create DIO workqueue\n");
2928 goto failed_mount_wq;
2929 }
2930
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002931 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002932 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002933 * so we can safely mount the rest of the filesystem now.
2934 */
2935
David Howells1d1fe1e2008-02-07 00:15:37 -08002936 root = ext4_iget(sb, EXT4_ROOT_INO);
2937 if (IS_ERR(root)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002938 ext4_msg(sb, KERN_ERR, "get root inode failed");
David Howells1d1fe1e2008-02-07 00:15:37 -08002939 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002940 goto failed_mount4;
2941 }
2942 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002943 iput(root);
Eric Sandeenb31e1552009-06-04 17:36:36 -04002944 ext4_msg(sb, KERN_ERR, "corrupt root inode, run e2fsck");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002945 goto failed_mount4;
2946 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002947 sb->s_root = d_alloc_root(root);
2948 if (!sb->s_root) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002949 ext4_msg(sb, KERN_ERR, "get root dentry failed");
David Howells1d1fe1e2008-02-07 00:15:37 -08002950 iput(root);
2951 ret = -ENOMEM;
2952 goto failed_mount4;
2953 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002954
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002955 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002956
2957 /* determine the minimum size of new large inodes, if present */
2958 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2959 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2960 EXT4_GOOD_OLD_INODE_SIZE;
2961 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2962 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2963 if (sbi->s_want_extra_isize <
2964 le16_to_cpu(es->s_want_extra_isize))
2965 sbi->s_want_extra_isize =
2966 le16_to_cpu(es->s_want_extra_isize);
2967 if (sbi->s_want_extra_isize <
2968 le16_to_cpu(es->s_min_extra_isize))
2969 sbi->s_want_extra_isize =
2970 le16_to_cpu(es->s_min_extra_isize);
2971 }
2972 }
2973 /* Check if enough inode space is available */
2974 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2975 sbi->s_inode_size) {
2976 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2977 EXT4_GOOD_OLD_INODE_SIZE;
Eric Sandeenb31e1552009-06-04 17:36:36 -04002978 ext4_msg(sb, KERN_INFO, "required extra inode space not"
2979 "available");
Kalpak Shahef7f3832007-07-18 09:15:20 -04002980 }
2981
Theodore Ts'o90576c02009-09-29 15:51:30 -04002982 if (test_opt(sb, DELALLOC) &&
2983 (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04002984 ext4_msg(sb, KERN_WARNING, "Ignoring delalloc option - "
2985 "requested data journaling mode");
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002986 clear_opt(sbi->s_mount_opt, DELALLOC);
Theodore Ts'o90576c02009-09-29 15:51:30 -04002987 }
Jiaying Zhang744692d2010-03-04 16:14:02 -05002988 if (test_opt(sb, DIOREAD_NOLOCK)) {
2989 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2990 ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
2991 "option - requested data journaling mode");
2992 clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
2993 }
2994 if (sb->s_blocksize < PAGE_SIZE) {
2995 ext4_msg(sb, KERN_WARNING, "Ignoring dioread_nolock "
2996 "option - block size is too small");
2997 clear_opt(sbi->s_mount_opt, DIOREAD_NOLOCK);
2998 }
2999 }
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04003000
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003001 err = ext4_setup_system_zone(sb);
3002 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003003 ext4_msg(sb, KERN_ERR, "failed to initialize system "
3004 "zone (%d)\n", err);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003005 goto failed_mount4;
3006 }
3007
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04003008 ext4_ext_init(sb);
3009 err = ext4_mb_init(sb, needs_recovery);
3010 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003011 ext4_msg(sb, KERN_ERR, "failed to initalize mballoc (%d)",
3012 err);
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04003013 goto failed_mount4;
3014 }
3015
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003016 sbi->s_kobj.kset = ext4_kset;
3017 init_completion(&sbi->s_kobj_unregister);
3018 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
3019 "%s", sb->s_id);
3020 if (err) {
3021 ext4_mb_release(sb);
3022 ext4_ext_release(sb);
3023 goto failed_mount4;
3024 };
3025
Mingming Cao617ba132006-10-11 01:20:53 -07003026 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
3027 ext4_orphan_cleanup(sb, es);
3028 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05003029 if (needs_recovery) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003030 ext4_msg(sb, KERN_INFO, "recovery complete");
Frank Mayhar03901312009-01-07 00:06:22 -05003031 ext4_mark_recovery_complete(sb, es);
3032 }
3033 if (EXT4_SB(sb)->s_journal) {
3034 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
3035 descr = " journalled data mode";
3036 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
3037 descr = " ordered data mode";
3038 else
3039 descr = " writeback data mode";
3040 } else
3041 descr = "out journal";
3042
Eric Sandeenb31e1552009-06-04 17:36:36 -04003043 ext4_msg(sb, KERN_INFO, "mounted filesystem with%s", descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003044
3045 lock_kernel();
3046 return 0;
3047
Mingming Cao617ba132006-10-11 01:20:53 -07003048cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003049 if (!silent)
Eric Sandeenb31e1552009-06-04 17:36:36 -04003050 ext4_msg(sb, KERN_ERR, "VFS: Can't find ext4 filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003051 goto failed_mount;
3052
3053failed_mount4:
Eric Sandeenb31e1552009-06-04 17:36:36 -04003054 ext4_msg(sb, KERN_ERR, "mount failed");
Mingming Cao4c0425f2009-09-28 15:48:41 -04003055 destroy_workqueue(EXT4_SB(sb)->dio_unwritten_wq);
3056failed_mount_wq:
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003057 ext4_release_system_zone(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05003058 if (sbi->s_journal) {
3059 jbd2_journal_destroy(sbi->s_journal);
3060 sbi->s_journal = NULL;
3061 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003062failed_mount3:
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04003063 if (sbi->s_flex_groups) {
3064 if (is_vmalloc_addr(sbi->s_flex_groups))
3065 vfree(sbi->s_flex_groups);
3066 else
3067 kfree(sbi->s_flex_groups);
3068 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003069 percpu_counter_destroy(&sbi->s_freeblocks_counter);
3070 percpu_counter_destroy(&sbi->s_freeinodes_counter);
3071 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003072 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003073failed_mount2:
3074 for (i = 0; i < db_count; i++)
3075 brelse(sbi->s_group_desc[i]);
3076 kfree(sbi->s_group_desc);
3077failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04003078 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003079 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04003080 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003081#ifdef CONFIG_QUOTA
3082 for (i = 0; i < MAXQUOTAS; i++)
3083 kfree(sbi->s_qf_names[i]);
3084#endif
Mingming Cao617ba132006-10-11 01:20:53 -07003085 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003086 brelse(bh);
3087out_fail:
3088 sb->s_fs_info = NULL;
Manish Katiyarf6830162009-05-17 23:52:44 -04003089 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003090 kfree(sbi);
3091 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08003092 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003093}
3094
3095/*
3096 * Setup any per-fs journal parameters now. We'll do this both on
3097 * initial mount, once the journal has been initialised but before we've
3098 * done any recovery; and again on any subsequent remount.
3099 */
Mingming Cao617ba132006-10-11 01:20:53 -07003100static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003101{
Mingming Cao617ba132006-10-11 01:20:53 -07003102 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003103
Theodore Ts'o30773842009-01-03 20:27:38 -05003104 journal->j_commit_interval = sbi->s_commit_interval;
3105 journal->j_min_batch_time = sbi->s_min_batch_time;
3106 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003107
3108 spin_lock(&journal->j_state_lock);
3109 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07003110 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003111 else
Mingming Caodab291a2006-10-11 01:21:01 -07003112 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04003113 if (test_opt(sb, DATA_ERR_ABORT))
3114 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
3115 else
3116 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003117 spin_unlock(&journal->j_state_lock);
3118}
3119
Mingming Cao617ba132006-10-11 01:20:53 -07003120static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003121 unsigned int journal_inum)
3122{
3123 struct inode *journal_inode;
3124 journal_t *journal;
3125
Frank Mayhar03901312009-01-07 00:06:22 -05003126 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3127
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003128 /* First, test for the existence of a valid inode on disk. Bad
3129 * things happen if we iget() an unused inode, as the subsequent
3130 * iput() will try to delete it. */
3131
David Howells1d1fe1e2008-02-07 00:15:37 -08003132 journal_inode = ext4_iget(sb, journal_inum);
3133 if (IS_ERR(journal_inode)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003134 ext4_msg(sb, KERN_ERR, "no journal found");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003135 return NULL;
3136 }
3137 if (!journal_inode->i_nlink) {
3138 make_bad_inode(journal_inode);
3139 iput(journal_inode);
Eric Sandeenb31e1552009-06-04 17:36:36 -04003140 ext4_msg(sb, KERN_ERR, "journal inode is deleted");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003141 return NULL;
3142 }
3143
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003144 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003145 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08003146 if (!S_ISREG(journal_inode->i_mode)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003147 ext4_msg(sb, KERN_ERR, "invalid journal inode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003148 iput(journal_inode);
3149 return NULL;
3150 }
3151
Mingming Caodab291a2006-10-11 01:21:01 -07003152 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003153 if (!journal) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003154 ext4_msg(sb, KERN_ERR, "Could not load journal inode");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003155 iput(journal_inode);
3156 return NULL;
3157 }
3158 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003159 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003160 return journal;
3161}
3162
Mingming Cao617ba132006-10-11 01:20:53 -07003163static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003164 dev_t j_dev)
3165{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003166 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07003168 ext4_fsblk_t start;
3169 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003170 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07003171 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003172 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003173 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174 struct block_device *bdev;
3175
Frank Mayhar03901312009-01-07 00:06:22 -05003176 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3177
Eric Sandeenb31e1552009-06-04 17:36:36 -04003178 bdev = ext4_blkdev_get(j_dev, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003179 if (bdev == NULL)
3180 return NULL;
3181
3182 if (bd_claim(bdev, sb)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003183 ext4_msg(sb, KERN_ERR,
3184 "failed to claim external journal device");
Al Viro9a1c3542008-02-22 20:40:24 -05003185 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003186 return NULL;
3187 }
3188
3189 blocksize = sb->s_blocksize;
Martin K. Petersene1defc42009-05-22 17:17:49 -04003190 hblock = bdev_logical_block_size(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003191 if (blocksize < hblock) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003192 ext4_msg(sb, KERN_ERR,
3193 "blocksize too small for journal device");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003194 goto out_bdev;
3195 }
3196
Mingming Cao617ba132006-10-11 01:20:53 -07003197 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
3198 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003199 set_blocksize(bdev, blocksize);
3200 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003201 ext4_msg(sb, KERN_ERR, "couldn't read superblock of "
3202 "external journal");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003203 goto out_bdev;
3204 }
3205
Mingming Cao617ba132006-10-11 01:20:53 -07003206 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
3207 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003208 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07003209 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003210 ext4_msg(sb, KERN_ERR, "external journal has "
3211 "bad superblock");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003212 brelse(bh);
3213 goto out_bdev;
3214 }
3215
Mingming Cao617ba132006-10-11 01:20:53 -07003216 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003217 ext4_msg(sb, KERN_ERR, "journal UUID does not match");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218 brelse(bh);
3219 goto out_bdev;
3220 }
3221
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003222 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223 start = sb_block + 1;
3224 brelse(bh); /* we're done with the superblock */
3225
Mingming Caodab291a2006-10-11 01:21:01 -07003226 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003227 start, len, blocksize);
3228 if (!journal) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003229 ext4_msg(sb, KERN_ERR, "failed to create device journal");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003230 goto out_bdev;
3231 }
3232 journal->j_private = sb;
3233 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3234 wait_on_buffer(journal->j_sb_buffer);
3235 if (!buffer_uptodate(journal->j_sb_buffer)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003236 ext4_msg(sb, KERN_ERR, "I/O error on journal device");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003237 goto out_journal;
3238 }
3239 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003240 ext4_msg(sb, KERN_ERR, "External journal has more than one "
3241 "user (unsupported) - %d",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003242 be32_to_cpu(journal->j_superblock->s_nr_users));
3243 goto out_journal;
3244 }
Mingming Cao617ba132006-10-11 01:20:53 -07003245 EXT4_SB(sb)->journal_bdev = bdev;
3246 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247 return journal;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003248
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003249out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003250 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003252 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003253 return NULL;
3254}
3255
Mingming Cao617ba132006-10-11 01:20:53 -07003256static int ext4_load_journal(struct super_block *sb,
3257 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003258 unsigned long journal_devnum)
3259{
3260 journal_t *journal;
3261 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3262 dev_t journal_dev;
3263 int err = 0;
3264 int really_read_only;
3265
Frank Mayhar03901312009-01-07 00:06:22 -05003266 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3267
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003268 if (journal_devnum &&
3269 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003270 ext4_msg(sb, KERN_INFO, "external journal device major/minor "
3271 "numbers have changed");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003272 journal_dev = new_decode_dev(journal_devnum);
3273 } else
3274 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3275
3276 really_read_only = bdev_read_only(sb->s_bdev);
3277
3278 /*
3279 * Are we loading a blank journal or performing recovery after a
3280 * crash? For recovery, we need to check in advance whether we
3281 * can get read-write access to the device.
3282 */
Mingming Cao617ba132006-10-11 01:20:53 -07003283 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284 if (sb->s_flags & MS_RDONLY) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003285 ext4_msg(sb, KERN_INFO, "INFO: recovery "
3286 "required on readonly filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 if (really_read_only) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003288 ext4_msg(sb, KERN_ERR, "write access "
3289 "unavailable, cannot proceed");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290 return -EROFS;
3291 }
Eric Sandeenb31e1552009-06-04 17:36:36 -04003292 ext4_msg(sb, KERN_INFO, "write access will "
3293 "be enabled during recovery");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003294 }
3295 }
3296
3297 if (journal_inum && journal_dev) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003298 ext4_msg(sb, KERN_ERR, "filesystem has both journal "
3299 "and inode journals!");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003300 return -EINVAL;
3301 }
3302
3303 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003304 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003305 return -EINVAL;
3306 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003307 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003308 return -EINVAL;
3309 }
3310
Theodore Ts'o90576c02009-09-29 15:51:30 -04003311 if (!(journal->j_flags & JBD2_BARRIER))
Eric Sandeenb31e1552009-06-04 17:36:36 -04003312 ext4_msg(sb, KERN_INFO, "barriers disabled");
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003313
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003314 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003315 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003316 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003317 ext4_msg(sb, KERN_ERR, "error updating journal");
Mingming Caodab291a2006-10-11 01:21:01 -07003318 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003319 return err;
3320 }
3321 }
3322
Mingming Cao617ba132006-10-11 01:20:53 -07003323 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003324 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003325 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003326 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003327
3328 if (err) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003329 ext4_msg(sb, KERN_ERR, "error loading journal");
Mingming Caodab291a2006-10-11 01:21:01 -07003330 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331 return err;
3332 }
3333
Mingming Cao617ba132006-10-11 01:20:53 -07003334 EXT4_SB(sb)->s_journal = journal;
3335 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003336
3337 if (journal_devnum &&
3338 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3339 es->s_journal_dev = cpu_to_le32(journal_devnum);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003340
3341 /* Make sure we flush the recovery flag to disk. */
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003342 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003343 }
3344
3345 return 0;
3346}
3347
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003348static int ext4_commit_super(struct super_block *sb, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003349{
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003350 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Mingming Cao617ba132006-10-11 01:20:53 -07003351 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003352 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003353
3354 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003355 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003356 if (buffer_write_io_error(sbh)) {
3357 /*
3358 * Oh, dear. A previous attempt to write the
3359 * superblock failed. This could happen because the
3360 * USB device was yanked out. Or it could happen to
3361 * be a transient write error and maybe the block will
3362 * be remapped. Nothing we can do but to retry the
3363 * write and hope for the best.
3364 */
Eric Sandeenb31e1552009-06-04 17:36:36 -04003365 ext4_msg(sb, KERN_ERR, "previous I/O error to "
3366 "superblock detected");
Theodore Ts'o914258b2008-10-06 21:35:40 -04003367 clear_buffer_write_io_error(sbh);
3368 set_buffer_uptodate(sbh);
3369 }
Theodore Ts'o71290b32009-09-10 17:31:04 -04003370 /*
3371 * If the file system is mounted read-only, don't update the
3372 * superblock write time. This avoids updating the superblock
3373 * write time when we are mounting the root file system
3374 * read/only but we need to replay the journal; at that point,
3375 * for people who are east of GMT and who make their clock
3376 * tick in localtime for Windows bug-for-bug compatibility,
3377 * the clock is set in the future, and this will cause e2fsck
3378 * to complain and force a full file system check.
3379 */
3380 if (!(sb->s_flags & MS_RDONLY))
3381 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003382 es->s_kbytes_written =
3383 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3384 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3385 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003386 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3387 &EXT4_SB(sb)->s_freeblocks_counter));
3388 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3389 &EXT4_SB(sb)->s_freeinodes_counter));
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003390 sb->s_dirt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003391 BUFFER_TRACE(sbh, "marking dirty");
3392 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003393 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003394 error = sync_dirty_buffer(sbh);
3395 if (error)
3396 return error;
3397
3398 error = buffer_write_io_error(sbh);
3399 if (error) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003400 ext4_msg(sb, KERN_ERR, "I/O error while writing "
3401 "superblock");
Theodore Ts'o914258b2008-10-06 21:35:40 -04003402 clear_buffer_write_io_error(sbh);
3403 set_buffer_uptodate(sbh);
3404 }
3405 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003406 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003407}
3408
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003409/*
3410 * Have we just finished recovery? If so, and if we are mounting (or
3411 * remounting) the filesystem readonly, then we will end up with a
3412 * consistent fs on disk. Record that fact.
3413 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003414static void ext4_mark_recovery_complete(struct super_block *sb,
3415 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003416{
Mingming Cao617ba132006-10-11 01:20:53 -07003417 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003418
Frank Mayhar03901312009-01-07 00:06:22 -05003419 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3420 BUG_ON(journal != NULL);
3421 return;
3422 }
Mingming Caodab291a2006-10-11 01:21:01 -07003423 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003424 if (jbd2_journal_flush(journal) < 0)
3425 goto out;
3426
Mingming Cao617ba132006-10-11 01:20:53 -07003427 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003428 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003429 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003430 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003431 }
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003432
3433out:
Mingming Caodab291a2006-10-11 01:21:01 -07003434 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003435}
3436
3437/*
3438 * If we are mounting (or read-write remounting) a filesystem whose journal
3439 * has recorded an error from a previous lifetime, move that error to the
3440 * main filesystem now.
3441 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003442static void ext4_clear_journal_err(struct super_block *sb,
3443 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003444{
3445 journal_t *journal;
3446 int j_errno;
3447 const char *errstr;
3448
Frank Mayhar03901312009-01-07 00:06:22 -05003449 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3450
Mingming Cao617ba132006-10-11 01:20:53 -07003451 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003452
3453 /*
3454 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003455 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003456 */
3457
Mingming Caodab291a2006-10-11 01:21:01 -07003458 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003459 if (j_errno) {
3460 char nbuf[16];
3461
Mingming Cao617ba132006-10-11 01:20:53 -07003462 errstr = ext4_decode_error(sb, j_errno, nbuf);
Eric Sandeen12062dd2010-02-15 14:19:27 -05003463 ext4_warning(sb, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003464 "from previous mount: %s", errstr);
Eric Sandeen12062dd2010-02-15 14:19:27 -05003465 ext4_warning(sb, "Marking fs in need of filesystem check.");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466
Mingming Cao617ba132006-10-11 01:20:53 -07003467 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3468 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003469 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003470
Mingming Caodab291a2006-10-11 01:21:01 -07003471 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 }
3473}
3474
3475/*
3476 * Force the running and committing transactions to commit,
3477 * and wait on the commit.
3478 */
Mingming Cao617ba132006-10-11 01:20:53 -07003479int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003480{
3481 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003482 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003483
3484 if (sb->s_flags & MS_RDONLY)
3485 return 0;
3486
Mingming Cao617ba132006-10-11 01:20:53 -07003487 journal = EXT4_SB(sb)->s_journal;
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003488 if (journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003489 ret = ext4_journal_force_commit(journal);
Frank Mayhar03901312009-01-07 00:06:22 -05003490
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003491 return ret;
3492}
3493
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003494static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003495{
Christoph Hellwigebc1ac12009-05-11 23:35:03 +02003496 lock_super(sb);
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003497 ext4_commit_super(sb, 1);
Christoph Hellwigebc1ac12009-05-11 23:35:03 +02003498 unlock_super(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003499}
3500
Mingming Cao617ba132006-10-11 01:20:53 -07003501static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003502{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003503 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003504 tid_t target;
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003505 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003506
Theodore Ts'o9bffad12009-06-17 11:48:11 -04003507 trace_ext4_sync_fs(sb, wait);
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003508 flush_workqueue(sbi->dio_unwritten_wq);
3509 if (jbd2_journal_start_commit(sbi->s_journal, &target)) {
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003510 if (wait)
Mingming Cao8d5d02e2009-09-28 15:48:29 -04003511 jbd2_log_wait_commit(sbi->s_journal, target);
Frank Mayhar03901312009-01-07 00:06:22 -05003512 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003513 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003514}
3515
3516/*
3517 * LVM calls this function before a (read-only) snapshot is created. This
3518 * gives us a chance to flush the journal completely and mark the fs clean.
3519 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003520static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003521{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003522 int error = 0;
3523 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003524
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003525 if (sb->s_flags & MS_RDONLY)
3526 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003527
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003528 journal = EXT4_SB(sb)->s_journal;
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003529
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003530 /* Now we set up the journal barrier. */
3531 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003532
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003533 /*
3534 * Don't clear the needs_recovery flag if we failed to flush
3535 * the journal.
3536 */
3537 error = jbd2_journal_flush(journal);
3538 if (error < 0) {
3539 out:
3540 jbd2_journal_unlock_updates(journal);
3541 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003542 }
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003543
3544 /* Journal blocked and flushed, clear needs_recovery flag. */
3545 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3546 error = ext4_commit_super(sb, 1);
3547 if (error)
3548 goto out;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003549 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003550}
3551
3552/*
3553 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3554 * flag here, even though the filesystem is not technically dirty yet.
3555 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003556static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557{
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003558 if (sb->s_flags & MS_RDONLY)
3559 return 0;
3560
3561 lock_super(sb);
3562 /* Reset the needs_recovery flag before the fs is unlocked. */
3563 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3564 ext4_commit_super(sb, 1);
3565 unlock_super(sb);
3566 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003567 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003568}
3569
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003570static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003571{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003572 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003573 struct ext4_sb_info *sbi = EXT4_SB(sb);
3574 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003575 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003576 struct ext4_mount_options old_opts;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04003577 int enable_quota = 0;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003578 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003579 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003580 int err;
3581#ifdef CONFIG_QUOTA
3582 int i;
3583#endif
3584
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02003585 lock_kernel();
3586
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003587 /* Store the original options */
Al Virobbd68512009-05-06 10:43:07 -04003588 lock_super(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003589 old_sb_flags = sb->s_flags;
3590 old_opts.s_mount_opt = sbi->s_mount_opt;
3591 old_opts.s_resuid = sbi->s_resuid;
3592 old_opts.s_resgid = sbi->s_resgid;
3593 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003594 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3595 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003596#ifdef CONFIG_QUOTA
3597 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3598 for (i = 0; i < MAXQUOTAS; i++)
3599 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3600#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003601 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3602 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003603
3604 /*
3605 * Allow the "check" option to be passed as a remount option.
3606 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003607 if (!parse_options(data, sb, NULL, &journal_ioprio,
3608 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003609 err = -EINVAL;
3610 goto restore_opts;
3611 }
3612
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04003613 if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003614 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003615
3616 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Dmitry Monakhov482a7422010-02-24 11:35:32 -05003617 (test_opt(sb, POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003618
3619 es = sbi->s_es;
3620
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003621 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003622 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003623 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3624 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003625
3626 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003627 n_blocks_count > ext4_blocks_count(es)) {
Theodore Ts'o4ab2f152009-06-13 10:09:36 -04003628 if (sbi->s_mount_flags & EXT4_MF_FS_ABORTED) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003629 err = -EROFS;
3630 goto restore_opts;
3631 }
3632
3633 if (*flags & MS_RDONLY) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04003634 err = dquot_suspend(sb, -1);
3635 if (err < 0)
Christoph Hellwigc79d9672010-05-19 07:16:40 -04003636 goto restore_opts;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04003637
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003638 /*
3639 * First of all, the unconditional stuff we have to do
3640 * to disable replay of the journal when we next remount
3641 */
3642 sb->s_flags |= MS_RDONLY;
3643
3644 /*
3645 * OK, test if we are remounting a valid rw partition
3646 * readonly, and if so set the rdonly flag and then
3647 * mark the partition as valid again.
3648 */
Mingming Cao617ba132006-10-11 01:20:53 -07003649 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3650 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003651 es->s_state = cpu_to_le16(sbi->s_mount_state);
3652
Theodore Ts'oa63c9eb2009-05-01 01:59:42 -04003653 if (sbi->s_journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003654 ext4_mark_recovery_complete(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003655 } else {
Eric Sandeena13fb1a2009-08-18 00:20:23 -04003656 /* Make sure we can mount this feature set readwrite */
3657 if (!ext4_feature_set_ok(sb, 0)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003658 err = -EROFS;
3659 goto restore_opts;
3660 }
Eric Sandeenead65962007-02-10 01:46:08 -08003661 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003662 * Make sure the group descriptor checksums
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003663 * are sane. If they aren't, refuse to remount r/w.
Theodore Ts'o8a266462008-07-26 14:34:21 -04003664 */
3665 for (g = 0; g < sbi->s_groups_count; g++) {
3666 struct ext4_group_desc *gdp =
3667 ext4_get_group_desc(sb, g, NULL);
3668
3669 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003670 ext4_msg(sb, KERN_ERR,
3671 "ext4_remount: Checksum for group %u failed (%u!=%u)",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003672 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3673 le16_to_cpu(gdp->bg_checksum));
3674 err = -EINVAL;
3675 goto restore_opts;
3676 }
3677 }
3678
3679 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003680 * If we have an unprocessed orphan list hanging
3681 * around from a previously readonly bdev mount,
3682 * require a full umount/remount for now.
3683 */
3684 if (es->s_last_orphan) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04003685 ext4_msg(sb, KERN_WARNING, "Couldn't "
Eric Sandeenead65962007-02-10 01:46:08 -08003686 "remount RDWR because of unprocessed "
3687 "orphan inode list. Please "
Eric Sandeenb31e1552009-06-04 17:36:36 -04003688 "umount/remount instead");
Eric Sandeenead65962007-02-10 01:46:08 -08003689 err = -EINVAL;
3690 goto restore_opts;
3691 }
3692
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003693 /*
3694 * Mounting a RDONLY partition read-write, so reread
3695 * and store the current valid flag. (It may have
3696 * been changed by e2fsck since we originally mounted
3697 * the partition.)
3698 */
Frank Mayhar03901312009-01-07 00:06:22 -05003699 if (sbi->s_journal)
3700 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003701 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003702 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003703 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003704 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003705 sb->s_flags &= ~MS_RDONLY;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04003706 enable_quota = 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003707 }
3708 }
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04003709 ext4_setup_system_zone(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05003710 if (sbi->s_journal == NULL)
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003711 ext4_commit_super(sb, 1);
Frank Mayhar03901312009-01-07 00:06:22 -05003712
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003713#ifdef CONFIG_QUOTA
3714 /* Release old quota file names */
3715 for (i = 0; i < MAXQUOTAS; i++)
3716 if (old_opts.s_qf_names[i] &&
3717 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3718 kfree(old_opts.s_qf_names[i]);
3719#endif
Al Virobbd68512009-05-06 10:43:07 -04003720 unlock_super(sb);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02003721 unlock_kernel();
Christoph Hellwigc79d9672010-05-19 07:16:40 -04003722 if (enable_quota)
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04003723 dquot_resume(sb, -1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003724 return 0;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003725
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003726restore_opts:
3727 sb->s_flags = old_sb_flags;
3728 sbi->s_mount_opt = old_opts.s_mount_opt;
3729 sbi->s_resuid = old_opts.s_resuid;
3730 sbi->s_resgid = old_opts.s_resgid;
3731 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003732 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3733 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003734#ifdef CONFIG_QUOTA
3735 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3736 for (i = 0; i < MAXQUOTAS; i++) {
3737 if (sbi->s_qf_names[i] &&
3738 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3739 kfree(sbi->s_qf_names[i]);
3740 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3741 }
3742#endif
Al Virobbd68512009-05-06 10:43:07 -04003743 unlock_super(sb);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02003744 unlock_kernel();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003745 return err;
3746}
3747
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003748static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003749{
3750 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003751 struct ext4_sb_info *sbi = EXT4_SB(sb);
3752 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003753 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003754
Badari Pulavarty5e700302007-07-15 23:42:00 -07003755 if (test_opt(sb, MINIX_DF)) {
3756 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003757 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Theodore Ts'o8df96752009-05-01 08:50:38 -04003758 ext4_group_t i, ngroups = ext4_get_groups_count(sb);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003759 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003760
3761 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003762 * Compute the overhead (FS structures). This is constant
3763 * for a given filesystem unless the number of block groups
3764 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003765 */
3766
3767 /*
3768 * All of the blocks before first_data_block are
3769 * overhead
3770 */
3771 overhead = le32_to_cpu(es->s_first_data_block);
3772
3773 /*
3774 * Add the overhead attributed to the superblock and
3775 * block group descriptors. If the sparse superblocks
3776 * feature is turned on, then not all groups have this.
3777 */
3778 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003779 overhead += ext4_bg_has_super(sb, i) +
3780 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003781 cond_resched();
3782 }
3783
3784 /*
3785 * Every block group has an inode bitmap, a block
3786 * bitmap, and an inode table.
3787 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003788 overhead += ngroups * (2 + sbi->s_itb_per_group);
3789 sbi->s_overhead_last = overhead;
3790 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003791 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003792 }
3793
Mingming Cao617ba132006-10-11 01:20:53 -07003794 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003795 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003796 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003797 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3798 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003799 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3800 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003801 buf->f_bavail = 0;
3802 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003803 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Mingming Cao617ba132006-10-11 01:20:53 -07003804 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003805 fsid = le64_to_cpup((void *)es->s_uuid) ^
3806 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3807 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3808 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003809
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003810 return 0;
3811}
3812
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003813/* Helper function for writing quotas on sync - we need to start transaction
3814 * before quota file is locked for write. Otherwise the are possible deadlocks:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003815 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003816 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003817 * jbd2_journal_start() write_dquot()
Christoph Hellwig871a2932010-03-03 09:05:07 -05003818 * dquot_initialize() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003819 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003820 *
3821 */
3822
3823#ifdef CONFIG_QUOTA
3824
3825static inline struct inode *dquot_to_inode(struct dquot *dquot)
3826{
3827 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3828}
3829
Mingming Cao617ba132006-10-11 01:20:53 -07003830static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003831{
3832 int ret, err;
3833 handle_t *handle;
3834 struct inode *inode;
3835
3836 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003837 handle = ext4_journal_start(inode,
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003838 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003839 if (IS_ERR(handle))
3840 return PTR_ERR(handle);
3841 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003842 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003843 if (!ret)
3844 ret = err;
3845 return ret;
3846}
3847
Mingming Cao617ba132006-10-11 01:20:53 -07003848static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003849{
3850 int ret, err;
3851 handle_t *handle;
3852
Mingming Cao617ba132006-10-11 01:20:53 -07003853 handle = ext4_journal_start(dquot_to_inode(dquot),
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003854 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003855 if (IS_ERR(handle))
3856 return PTR_ERR(handle);
3857 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003858 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003859 if (!ret)
3860 ret = err;
3861 return ret;
3862}
3863
Mingming Cao617ba132006-10-11 01:20:53 -07003864static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003865{
3866 int ret, err;
3867 handle_t *handle;
3868
Mingming Cao617ba132006-10-11 01:20:53 -07003869 handle = ext4_journal_start(dquot_to_inode(dquot),
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003870 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003871 if (IS_ERR(handle)) {
3872 /* Release dquot anyway to avoid endless cycle in dqput() */
3873 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003874 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003875 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003876 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003877 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003878 if (!ret)
3879 ret = err;
3880 return ret;
3881}
3882
Mingming Cao617ba132006-10-11 01:20:53 -07003883static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003884{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003885 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003886 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3887 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003888 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003889 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003890 } else {
3891 return dquot_mark_dquot_dirty(dquot);
3892 }
3893}
3894
Mingming Cao617ba132006-10-11 01:20:53 -07003895static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003896{
3897 int ret, err;
3898 handle_t *handle;
3899
3900 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003901 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003902 if (IS_ERR(handle))
3903 return PTR_ERR(handle);
3904 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003905 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003906 if (!ret)
3907 ret = err;
3908 return ret;
3909}
3910
3911/*
3912 * Turn on quotas during mount time - we need to find
3913 * the quota file and such...
3914 */
Mingming Cao617ba132006-10-11 01:20:53 -07003915static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003916{
Mingming Cao617ba132006-10-11 01:20:53 -07003917 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04003918 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003919}
3920
3921/*
3922 * Standard function to be called on quota_on
3923 */
Mingming Cao617ba132006-10-11 01:20:53 -07003924static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003925 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003926{
3927 int err;
Al Viro82646132008-08-02 00:57:06 -04003928 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003929
3930 if (!test_opt(sb, QUOTA))
3931 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003932 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003933 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003934 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003935
Al Viro82646132008-08-02 00:57:06 -04003936 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003937 if (err)
3938 return err;
Jan Kara06235432008-05-13 19:11:51 -04003939
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003940 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003941 if (path.mnt->mnt_sb != sb) {
3942 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003943 return -EXDEV;
3944 }
Jan Kara06235432008-05-13 19:11:51 -04003945 /* Journaling quota? */
3946 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003947 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003948 if (path.dentry->d_parent != sb->s_root)
Eric Sandeenb31e1552009-06-04 17:36:36 -04003949 ext4_msg(sb, KERN_WARNING,
3950 "Quota file not on filesystem root. "
3951 "Journaled quota will not work");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003952 }
Jan Kara06235432008-05-13 19:11:51 -04003953
3954 /*
3955 * When we journal data on quota file, we have to flush journal to see
3956 * all updates to the file when we bypass pagecache...
3957 */
Frank Mayhar03901312009-01-07 00:06:22 -05003958 if (EXT4_SB(sb)->s_journal &&
3959 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003960 /*
3961 * We don't need to lock updates but journal_flush() could
3962 * otherwise be livelocked...
3963 */
3964 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003965 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003966 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003967 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003968 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003969 return err;
3970 }
Jan Kara06235432008-05-13 19:11:51 -04003971 }
3972
Al Viro82646132008-08-02 00:57:06 -04003973 err = vfs_quota_on_path(sb, type, format_id, &path);
3974 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003975 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003976}
3977
3978/* Read data from quotafile - avoid pagecache and such because we cannot afford
3979 * acquiring the locks... As quota files are never truncated and quota code
3980 * itself serializes the operations (and noone else should touch the files)
3981 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003982static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003983 size_t len, loff_t off)
3984{
3985 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003986 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003987 int err = 0;
3988 int offset = off & (sb->s_blocksize - 1);
3989 int tocopy;
3990 size_t toread;
3991 struct buffer_head *bh;
3992 loff_t i_size = i_size_read(inode);
3993
3994 if (off > i_size)
3995 return 0;
3996 if (off+len > i_size)
3997 len = i_size-off;
3998 toread = len;
3999 while (toread > 0) {
4000 tocopy = sb->s_blocksize - offset < toread ?
4001 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07004002 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004003 if (err)
4004 return err;
4005 if (!bh) /* A hole? */
4006 memset(data, 0, tocopy);
4007 else
4008 memcpy(data, bh->b_data+offset, tocopy);
4009 brelse(bh);
4010 offset = 0;
4011 toread -= tocopy;
4012 data += tocopy;
4013 blk++;
4014 }
4015 return len;
4016}
4017
4018/* Write to quotafile (we know the transaction is already started and has
4019 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07004020static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004021 const char *data, size_t len, loff_t off)
4022{
4023 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05004024 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004025 int err = 0;
4026 int offset = off & (sb->s_blocksize - 1);
Mingming Cao617ba132006-10-11 01:20:53 -07004027 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004028 struct buffer_head *bh;
4029 handle_t *handle = journal_current_handle();
4030
Frank Mayhar03901312009-01-07 00:06:22 -05004031 if (EXT4_SB(sb)->s_journal && !handle) {
Eric Sandeenb31e1552009-06-04 17:36:36 -04004032 ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
4033 " cancelled because transaction is not started",
Jan Kara9c3013e2007-09-11 15:23:29 -07004034 (unsigned long long)off, (unsigned long long)len);
4035 return -EIO;
4036 }
Dmitry Monakhov67eeb562010-03-02 08:08:51 -05004037 /*
4038 * Since we account only one data block in transaction credits,
4039 * then it is impossible to cross a block boundary.
4040 */
4041 if (sb->s_blocksize - offset < len) {
4042 ext4_msg(sb, KERN_WARNING, "Quota write (off=%llu, len=%llu)"
4043 " cancelled because not block aligned",
4044 (unsigned long long)off, (unsigned long long)len);
4045 return -EIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004046 }
Dmitry Monakhov67eeb562010-03-02 08:08:51 -05004047
4048 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
4049 bh = ext4_bread(handle, inode, blk, 1, &err);
4050 if (!bh)
4051 goto out;
4052 if (journal_quota) {
4053 err = ext4_journal_get_write_access(handle, bh);
4054 if (err) {
4055 brelse(bh);
4056 goto out;
4057 }
4058 }
4059 lock_buffer(bh);
4060 memcpy(bh->b_data+offset, data, len);
4061 flush_dcache_page(bh->b_page);
4062 unlock_buffer(bh);
4063 if (journal_quota)
4064 err = ext4_handle_dirty_metadata(handle, NULL, bh);
4065 else {
4066 /* Always do at least ordered writes for quotas */
4067 err = ext4_jbd2_file_inode(handle, inode);
4068 mark_buffer_dirty(bh);
4069 }
4070 brelse(bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004071out:
Dmitry Monakhov67eeb562010-03-02 08:08:51 -05004072 if (err) {
Jan Kara4d04e4f2008-07-04 09:59:34 -07004073 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004074 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07004075 }
Dmitry Monakhov67eeb562010-03-02 08:08:51 -05004076 if (inode->i_size < off + len) {
4077 i_size_write(inode, off + len);
Mingming Cao617ba132006-10-11 01:20:53 -07004078 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004079 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004080 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07004081 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004082 mutex_unlock(&inode->i_mutex);
Dmitry Monakhov67eeb562010-03-02 08:08:51 -05004083 return len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004084}
4085
4086#endif
4087
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04004088static int ext4_get_sb(struct file_system_type *fs_type, int flags,
4089 const char *dev_name, void *data, struct vfsmount *mnt)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004090{
Andreas Dilger0b8e58a2009-06-03 17:59:28 -04004091 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super,mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004092}
4093
Theodore Ts'o37f328e2010-03-24 20:06:41 -04004094#if !defined(CONFIG_EXT2_FS) && !defined(CONFIG_EXT2_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
Theodore Ts'o24b58422009-12-07 14:08:51 -05004095static struct file_system_type ext2_fs_type = {
4096 .owner = THIS_MODULE,
4097 .name = "ext2",
4098 .get_sb = ext4_get_sb,
4099 .kill_sb = kill_block_super,
4100 .fs_flags = FS_REQUIRES_DEV,
4101};
4102
4103static inline void register_as_ext2(void)
4104{
4105 int err = register_filesystem(&ext2_fs_type);
4106 if (err)
4107 printk(KERN_WARNING
4108 "EXT4-fs: Unable to register as ext2 (%d)\n", err);
4109}
4110
4111static inline void unregister_as_ext2(void)
4112{
4113 unregister_filesystem(&ext2_fs_type);
4114}
Theodore Ts'o51b7e3c2009-12-21 10:56:09 -05004115MODULE_ALIAS("ext2");
Theodore Ts'o24b58422009-12-07 14:08:51 -05004116#else
4117static inline void register_as_ext2(void) { }
4118static inline void unregister_as_ext2(void) { }
4119#endif
4120
Theodore Ts'o37f328e2010-03-24 20:06:41 -04004121#if !defined(CONFIG_EXT3_FS) && !defined(CONFIG_EXT3_FS_MODULE) && defined(CONFIG_EXT4_USE_FOR_EXT23)
Theodore Ts'o24b58422009-12-07 14:08:51 -05004122static inline void register_as_ext3(void)
4123{
4124 int err = register_filesystem(&ext3_fs_type);
4125 if (err)
4126 printk(KERN_WARNING
4127 "EXT4-fs: Unable to register as ext3 (%d)\n", err);
4128}
4129
4130static inline void unregister_as_ext3(void)
4131{
4132 unregister_filesystem(&ext3_fs_type);
4133}
Theodore Ts'o51b7e3c2009-12-21 10:56:09 -05004134MODULE_ALIAS("ext3");
Theodore Ts'o24b58422009-12-07 14:08:51 -05004135#else
4136static inline void register_as_ext3(void) { }
4137static inline void unregister_as_ext3(void) { }
4138#endif
4139
Theodore Ts'o03010a32008-10-10 20:02:48 -04004140static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004141 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04004142 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07004143 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004144 .kill_sb = kill_block_super,
4145 .fs_flags = FS_REQUIRES_DEV,
4146};
4147
Mingming Cao617ba132006-10-11 01:20:53 -07004148static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004149{
Alex Tomasc9de5602008-01-29 00:19:52 -05004150 int err;
4151
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004152 err = init_ext4_system_zone();
4153 if (err)
4154 return err;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04004155 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
4156 if (!ext4_kset)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004157 goto out4;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04004158 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05004159 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004160 if (err)
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004161 goto out3;
Alex Tomasc9de5602008-01-29 00:19:52 -05004162
4163 err = init_ext4_xattr();
4164 if (err)
4165 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004166 err = init_inodecache();
4167 if (err)
4168 goto out1;
Theodore Ts'o24b58422009-12-07 14:08:51 -05004169 register_as_ext2();
4170 register_as_ext3();
Theodore Ts'o03010a32008-10-10 20:02:48 -04004171 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004172 if (err)
4173 goto out;
4174 return 0;
4175out:
Theodore Ts'o24b58422009-12-07 14:08:51 -05004176 unregister_as_ext2();
4177 unregister_as_ext3();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004178 destroy_inodecache();
4179out1:
Mingming Cao617ba132006-10-11 01:20:53 -07004180 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05004181out2:
4182 exit_ext4_mballoc();
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004183out3:
4184 remove_proc_entry("fs/ext4", NULL);
4185 kset_unregister(ext4_kset);
4186out4:
4187 exit_ext4_system_zone();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004188 return err;
4189}
4190
Mingming Cao617ba132006-10-11 01:20:53 -07004191static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004192{
Theodore Ts'o24b58422009-12-07 14:08:51 -05004193 unregister_as_ext2();
4194 unregister_as_ext3();
Theodore Ts'o03010a32008-10-10 20:02:48 -04004195 unregister_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004196 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07004197 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05004198 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04004199 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04004200 kset_unregister(ext4_kset);
Theodore Ts'o6fd058f2009-05-17 15:38:01 -04004201 exit_ext4_system_zone();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004202}
4203
4204MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05004205MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07004206MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07004207module_init(init_ext4_fs)
4208module_exit(exit_ext4_fs)