blob: 68c3a44c4a970e5da4fcdddcc04028b32dac1bed [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -040023#include <linux/vmalloc.h>
Mingming Caodab291a2006-10-11 01:21:01 -070024#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070025#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/blkdev.h>
28#include <linux/parser.h>
29#include <linux/smp_lock.h>
30#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070031#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070032#include <linux/vfs.h>
33#include <linux/random.h>
34#include <linux/mount.h>
35#include <linux/namei.h>
36#include <linux/quotaops.h>
37#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040038#include <linux/proc_fs.h>
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040039#include <linux/ctype.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040040#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040041#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040042#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070043#include <asm/uaccess.h>
44
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040045#include "ext4.h"
46#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070047#include "xattr.h"
48#include "acl.h"
49#include "namei.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040050#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070051
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040052struct proc_dir_entry *ext4_proc_root;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040053static struct kset *ext4_kset;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040054
Mingming Cao617ba132006-10-11 01:20:53 -070055static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070056 unsigned long journal_devnum);
Theodore Ts'oe2d67052009-05-01 00:33:44 -040057static int ext4_commit_super(struct super_block *sb, int sync);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040058static void ext4_mark_recovery_complete(struct super_block *sb,
59 struct ext4_super_block *es);
60static void ext4_clear_journal_err(struct super_block *sb,
61 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070062static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040063static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070064 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040065static int ext4_remount(struct super_block *sb, int *flags, char *data);
66static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080067static int ext4_unfreeze(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040068static void ext4_write_super(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080069static int ext4_freeze(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070070
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070071
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070072ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
73 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070074{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040075 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070076 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040077 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070078}
79
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070080ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
81 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070082{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040083 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070084 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040085 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070086}
87
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070088ext4_fsblk_t ext4_inode_table(struct super_block *sb,
89 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070090{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040091 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070092 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040093 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070094}
95
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050096__u32 ext4_free_blks_count(struct super_block *sb,
97 struct ext4_group_desc *bg)
98{
99 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
100 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
101 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
102}
103
104__u32 ext4_free_inodes_count(struct super_block *sb,
105 struct ext4_group_desc *bg)
106{
107 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
108 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
109 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
110}
111
112__u32 ext4_used_dirs_count(struct super_block *sb,
113 struct ext4_group_desc *bg)
114{
115 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
116 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
117 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
118}
119
120__u32 ext4_itable_unused_count(struct super_block *sb,
121 struct ext4_group_desc *bg)
122{
123 return le16_to_cpu(bg->bg_itable_unused_lo) |
124 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
125 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
126}
127
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700128void ext4_block_bitmap_set(struct super_block *sb,
129 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700130{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400131 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700132 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
133 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700134}
135
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700136void ext4_inode_bitmap_set(struct super_block *sb,
137 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700138{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400139 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700140 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
141 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700142}
143
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700144void ext4_inode_table_set(struct super_block *sb,
145 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700146{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400147 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700148 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
149 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700150}
151
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500152void ext4_free_blks_set(struct super_block *sb,
153 struct ext4_group_desc *bg, __u32 count)
154{
155 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
156 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
157 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
158}
159
160void ext4_free_inodes_set(struct super_block *sb,
161 struct ext4_group_desc *bg, __u32 count)
162{
163 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
164 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
165 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
166}
167
168void ext4_used_dirs_set(struct super_block *sb,
169 struct ext4_group_desc *bg, __u32 count)
170{
171 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
172 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
173 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
174}
175
176void ext4_itable_unused_set(struct super_block *sb,
177 struct ext4_group_desc *bg, __u32 count)
178{
179 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
180 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
181 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
182}
183
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700184/*
Mingming Caodab291a2006-10-11 01:21:01 -0700185 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186 *
187 * The only special thing we need to do here is to make sure that all
188 * journal_end calls result in the superblock being marked dirty, so
189 * that sync() will call the filesystem's write_super callback if
190 * appropriate.
191 */
Mingming Cao617ba132006-10-11 01:20:53 -0700192handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700193{
194 journal_t *journal;
195
196 if (sb->s_flags & MS_RDONLY)
197 return ERR_PTR(-EROFS);
198
199 /* Special case here: if the journal has aborted behind our
200 * backs (eg. EIO in the commit thread), then we still need to
201 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700202 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500203 if (journal) {
204 if (is_journal_aborted(journal)) {
205 ext4_abort(sb, __func__,
206 "Detected aborted journal");
207 return ERR_PTR(-EROFS);
208 }
209 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210 }
Frank Mayhar03901312009-01-07 00:06:22 -0500211 /*
212 * We're not journaling, return the appropriate indication.
213 */
214 current->journal_info = EXT4_NOJOURNAL_HANDLE;
215 return current->journal_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700216}
217
218/*
219 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700220 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700221 * that sync() will call the filesystem's write_super callback if
222 * appropriate.
223 */
Mingming Cao617ba132006-10-11 01:20:53 -0700224int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700225{
226 struct super_block *sb;
227 int err;
228 int rc;
229
Frank Mayhar03901312009-01-07 00:06:22 -0500230 if (!ext4_handle_valid(handle)) {
231 /*
232 * Do this here since we don't call jbd2_journal_stop() in
233 * no-journal mode.
234 */
235 current->journal_info = NULL;
236 return 0;
237 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700238 sb = handle->h_transaction->t_journal->j_private;
239 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700240 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241
242 if (!err)
243 err = rc;
244 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700245 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700246 return err;
247}
248
Mingming Cao617ba132006-10-11 01:20:53 -0700249void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700250 struct buffer_head *bh, handle_t *handle, int err)
251{
252 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700253 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254
Frank Mayhar03901312009-01-07 00:06:22 -0500255 BUG_ON(!ext4_handle_valid(handle));
256
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 if (bh)
258 BUFFER_TRACE(bh, "abort");
259
260 if (!handle->h_err)
261 handle->h_err = err;
262
263 if (is_handle_aborted(handle))
264 return;
265
266 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
267 caller, errstr, err_fn);
268
Mingming Caodab291a2006-10-11 01:21:01 -0700269 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700270}
271
272/* Deal with the reporting of failure conditions on a filesystem such as
273 * inconsistencies detected or read IO failures.
274 *
275 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700276 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700277 * write ordering constraints on the superblock which prevent us from
278 * writing it out straight away; and given that the journal is about to
279 * be aborted, we can't rely on the current, or future, transactions to
280 * write out the superblock safely.
281 *
Mingming Caodab291a2006-10-11 01:21:01 -0700282 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700283 * the journal instead. On recovery, the journal will compain about
284 * that error until we've noted it down and cleared it.
285 */
286
Mingming Cao617ba132006-10-11 01:20:53 -0700287static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288{
Mingming Cao617ba132006-10-11 01:20:53 -0700289 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290
Mingming Cao617ba132006-10-11 01:20:53 -0700291 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
292 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700293
294 if (sb->s_flags & MS_RDONLY)
295 return;
296
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400297 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700298 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700299
Mingming Cao617ba132006-10-11 01:20:53 -0700300 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700302 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700303 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400304 if (test_opt(sb, ERRORS_RO)) {
305 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306 sb->s_flags |= MS_RDONLY;
307 }
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400308 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700310 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700311 sb->s_id);
312}
313
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400314void ext4_error(struct super_block *sb, const char *function,
315 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316{
317 va_list args;
318
319 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400320 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 vprintk(fmt, args);
322 printk("\n");
323 va_end(args);
324
Mingming Cao617ba132006-10-11 01:20:53 -0700325 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700326}
327
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400328static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700329 char nbuf[16])
330{
331 char *errstr = NULL;
332
333 switch (errno) {
334 case -EIO:
335 errstr = "IO failure";
336 break;
337 case -ENOMEM:
338 errstr = "Out of memory";
339 break;
340 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700341 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700342 errstr = "Journal has aborted";
343 else
344 errstr = "Readonly filesystem";
345 break;
346 default:
347 /* If the caller passed in an extra buffer for unknown
348 * errors, textualise them now. Else we just return
349 * NULL. */
350 if (nbuf) {
351 /* Check for truncated error codes... */
352 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
353 errstr = nbuf;
354 }
355 break;
356 }
357
358 return errstr;
359}
360
Mingming Cao617ba132006-10-11 01:20:53 -0700361/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362 * automatically and invokes the appropriate error response. */
363
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400364void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365{
366 char nbuf[16];
367 const char *errstr;
368
369 /* Special case: if the error is EROFS, and we're not already
370 * inside a transaction, then there's really no point in logging
371 * an error. */
372 if (errno == -EROFS && journal_current_handle() == NULL &&
373 (sb->s_flags & MS_RDONLY))
374 return;
375
Mingming Cao617ba132006-10-11 01:20:53 -0700376 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400377 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
378 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700379
Mingming Cao617ba132006-10-11 01:20:53 -0700380 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700381}
382
383/*
Mingming Cao617ba132006-10-11 01:20:53 -0700384 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700385 * abort function may be used to deal with unrecoverable failures such
386 * as journal IO errors or ENOMEM at a critical moment in log management.
387 *
388 * We unconditionally force the filesystem into an ABORT|READONLY state,
389 * unless the error response on the fs has been set to panic in which
390 * case we take the easy way out and panic immediately.
391 */
392
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400393void ext4_abort(struct super_block *sb, const char *function,
394 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700395{
396 va_list args;
397
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400398 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700399
400 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400401 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700402 vprintk(fmt, args);
403 printk("\n");
404 va_end(args);
405
406 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700407 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700408
409 if (sb->s_flags & MS_RDONLY)
410 return;
411
412 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700413 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700414 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700415 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400416 if (EXT4_SB(sb)->s_journal)
417 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418}
419
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400420void ext4_warning(struct super_block *sb, const char *function,
421 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422{
423 va_list args;
424
425 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700426 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700427 sb->s_id, function);
428 vprintk(fmt, args);
429 printk("\n");
430 va_end(args);
431}
432
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500433void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
434 const char *function, const char *fmt, ...)
435__releases(bitlock)
436__acquires(bitlock)
437{
438 va_list args;
439 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
440
441 va_start(args, fmt);
442 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
443 vprintk(fmt, args);
444 printk("\n");
445 va_end(args);
446
447 if (test_opt(sb, ERRORS_CONT)) {
448 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
449 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400450 ext4_commit_super(sb, 0);
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500451 return;
452 }
453 ext4_unlock_group(sb, grp);
454 ext4_handle_error(sb);
455 /*
456 * We only get here in the ERRORS_RO case; relocking the group
457 * may be dangerous, but nothing bad will happen since the
458 * filesystem will have already been marked read/only and the
459 * journal has been aborted. We return 1 as a hint to callers
460 * who might what to use the return value from
461 * ext4_grp_locked_error() to distinguish beween the
462 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
463 * aggressively from the ext4 function in question, with a
464 * more appropriate error code.
465 */
466 ext4_lock_group(sb, grp);
467 return;
468}
469
470
Mingming Cao617ba132006-10-11 01:20:53 -0700471void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700472{
Mingming Cao617ba132006-10-11 01:20:53 -0700473 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474
Mingming Cao617ba132006-10-11 01:20:53 -0700475 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700476 return;
477
Harvey Harrison46e665e2008-04-17 10:38:59 -0400478 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 "updating to rev %d because of new feature flag, "
480 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700481 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482
Mingming Cao617ba132006-10-11 01:20:53 -0700483 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
484 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
485 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700486 /* leave es->s_feature_*compat flags alone */
487 /* es->s_uuid will be set by e2fsck if empty */
488
489 /*
490 * The rest of the superblock fields should be zero, and if not it
491 * means they are likely already in use, so leave them alone. We
492 * can leave it up to e2fsck to clean up any inconsistencies there.
493 */
494}
495
496/*
497 * Open the external journal device
498 */
Mingming Cao617ba132006-10-11 01:20:53 -0700499static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700500{
501 struct block_device *bdev;
502 char b[BDEVNAME_SIZE];
503
504 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
505 if (IS_ERR(bdev))
506 goto fail;
507 return bdev;
508
509fail:
Theodore Ts'oabda1412009-01-06 00:20:32 -0500510 printk(KERN_ERR "EXT4-fs: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700511 __bdevname(dev, b), PTR_ERR(bdev));
512 return NULL;
513}
514
515/*
516 * Release the journal device
517 */
Mingming Cao617ba132006-10-11 01:20:53 -0700518static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519{
520 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500521 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700522}
523
Mingming Cao617ba132006-10-11 01:20:53 -0700524static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525{
526 struct block_device *bdev;
527 int ret = -ENODEV;
528
529 bdev = sbi->journal_bdev;
530 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700531 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700532 sbi->journal_bdev = NULL;
533 }
534 return ret;
535}
536
537static inline struct inode *orphan_list_entry(struct list_head *l)
538{
Mingming Cao617ba132006-10-11 01:20:53 -0700539 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700540}
541
Mingming Cao617ba132006-10-11 01:20:53 -0700542static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700543{
544 struct list_head *l;
545
546 printk(KERN_ERR "sb orphan head is %d\n",
547 le32_to_cpu(sbi->s_es->s_last_orphan));
548
549 printk(KERN_ERR "sb_info orphan list:\n");
550 list_for_each(l, &sbi->s_orphan) {
551 struct inode *inode = orphan_list_entry(l);
552 printk(KERN_ERR " "
553 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
554 inode->i_sb->s_id, inode->i_ino, inode,
555 inode->i_mode, inode->i_nlink,
556 NEXT_ORPHAN(inode));
557 }
558}
559
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400560static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700561{
Mingming Cao617ba132006-10-11 01:20:53 -0700562 struct ext4_sb_info *sbi = EXT4_SB(sb);
563 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400564 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565
Alex Tomasc9de5602008-01-29 00:19:52 -0500566 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700567 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700568 ext4_xattr_put_super(sb);
Frank Mayhar03901312009-01-07 00:06:22 -0500569 if (sbi->s_journal) {
570 err = jbd2_journal_destroy(sbi->s_journal);
571 sbi->s_journal = NULL;
572 if (err < 0)
573 ext4_abort(sb, __func__,
574 "Couldn't clean up the journal");
575 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700576 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700577 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700578 es->s_state = cpu_to_le16(sbi->s_mount_state);
Theodore Ts'oe2d67052009-05-01 00:33:44 -0400579 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400581 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400582 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400583 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400584 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700585
586 for (i = 0; i < sbi->s_gdb_count; i++)
587 brelse(sbi->s_group_desc[i]);
588 kfree(sbi->s_group_desc);
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -0400589 if (is_vmalloc_addr(sbi->s_flex_groups))
590 vfree(sbi->s_flex_groups);
591 else
592 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700593 percpu_counter_destroy(&sbi->s_freeblocks_counter);
594 percpu_counter_destroy(&sbi->s_freeinodes_counter);
595 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400596 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700597 brelse(sbi->s_sbh);
598#ifdef CONFIG_QUOTA
599 for (i = 0; i < MAXQUOTAS; i++)
600 kfree(sbi->s_qf_names[i]);
601#endif
602
603 /* Debugging code just in case the in-memory inode orphan list
604 * isn't empty. The on-disk one can be non-empty if we've
605 * detected an error and taken the fs readonly, but the
606 * in-memory list had better be clean by this point. */
607 if (!list_empty(&sbi->s_orphan))
608 dump_orphan_list(sb, sbi);
609 J_ASSERT(list_empty(&sbi->s_orphan));
610
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700611 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700612 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
613 /*
614 * Invalidate the journal device's buffers. We don't want them
615 * floating about in memory - the physical journal device may
616 * hotswapped, and it breaks the `ro-after' testing code.
617 */
618 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700619 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700620 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700621 }
622 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400623 /*
624 * Now that we are completely done shutting down the
625 * superblock, we need to actually destroy the kobject.
626 */
627 unlock_kernel();
628 unlock_super(sb);
629 kobject_put(&sbi->s_kobj);
630 wait_for_completion(&sbi->s_kobj_unregister);
631 lock_super(sb);
632 lock_kernel();
Pekka Enberg705895b2009-02-15 18:07:52 -0500633 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700634 kfree(sbi);
635 return;
636}
637
Christoph Lametere18b8902006-12-06 20:33:20 -0800638static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639
640/*
641 * Called inside transaction, so use GFP_NOFS
642 */
Mingming Cao617ba132006-10-11 01:20:53 -0700643static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700644{
Mingming Cao617ba132006-10-11 01:20:53 -0700645 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700646
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800647 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700648 if (!ei)
649 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400650#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700651 ei->i_acl = EXT4_ACL_NOT_CACHED;
652 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700653#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400655 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700656 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500657 INIT_LIST_HEAD(&ei->i_prealloc_list);
658 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500659 /*
660 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
661 * therefore it can be null here. Don't check it, just initialize
662 * jinode.
663 */
Jan Kara678aaf42008-07-11 19:27:31 -0400664 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400665 ei->i_reserved_data_blocks = 0;
666 ei->i_reserved_meta_blocks = 0;
667 ei->i_allocated_meta_blocks = 0;
668 ei->i_delalloc_reserved_flag = 0;
669 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700670 return &ei->vfs_inode;
671}
672
Mingming Cao617ba132006-10-11 01:20:53 -0700673static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700674{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700675 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
676 printk("EXT4 Inode %p: orphan list check failed!\n",
677 EXT4_I(inode));
678 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
679 EXT4_I(inode), sizeof(struct ext4_inode_info),
680 true);
681 dump_stack();
682 }
Mingming Cao617ba132006-10-11 01:20:53 -0700683 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700684}
685
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700686static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687{
Mingming Cao617ba132006-10-11 01:20:53 -0700688 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700689
Christoph Lametera35afb82007-05-16 22:10:57 -0700690 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400691#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700692 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700693#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500694 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700695 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700696}
697
698static int init_inodecache(void)
699{
Mingming Cao617ba132006-10-11 01:20:53 -0700700 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
701 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700702 0, (SLAB_RECLAIM_ACCOUNT|
703 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900704 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700705 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706 return -ENOMEM;
707 return 0;
708}
709
710static void destroy_inodecache(void)
711{
Mingming Cao617ba132006-10-11 01:20:53 -0700712 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713}
714
Mingming Cao617ba132006-10-11 01:20:53 -0700715static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700716{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400717#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700718 if (EXT4_I(inode)->i_acl &&
719 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
720 posix_acl_release(EXT4_I(inode)->i_acl);
721 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700722 }
Mingming Cao617ba132006-10-11 01:20:53 -0700723 if (EXT4_I(inode)->i_default_acl &&
724 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
725 posix_acl_release(EXT4_I(inode)->i_default_acl);
726 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700727 }
728#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400729 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500730 if (EXT4_JOURNAL(inode))
731 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400732 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700733}
734
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400735static inline void ext4_show_quota_options(struct seq_file *seq,
736 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737{
738#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700739 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700740
741 if (sbi->s_jquota_fmt)
742 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400743 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700744
745 if (sbi->s_qf_names[USRQUOTA])
746 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
747
748 if (sbi->s_qf_names[GRPQUOTA])
749 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
750
Mingming Cao617ba132006-10-11 01:20:53 -0700751 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 seq_puts(seq, ",usrquota");
753
Mingming Cao617ba132006-10-11 01:20:53 -0700754 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700755 seq_puts(seq, ",grpquota");
756#endif
757}
758
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700759/*
760 * Show an option if
761 * - it's set to a non-default value OR
762 * - if the per-sb default is different from the global default
763 */
Mingming Cao617ba132006-10-11 01:20:53 -0700764static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700765{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500766 int def_errors;
767 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700768 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700769 struct ext4_sb_info *sbi = EXT4_SB(sb);
770 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700771
772 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500773 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700774
775 if (sbi->s_sb_block != 1)
776 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
777 if (test_opt(sb, MINIX_DF))
778 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500779 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700780 seq_puts(seq, ",grpid");
781 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
782 seq_puts(seq, ",nogrpid");
783 if (sbi->s_resuid != EXT4_DEF_RESUID ||
784 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
785 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
786 }
787 if (sbi->s_resgid != EXT4_DEF_RESGID ||
788 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
789 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
790 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500791 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700792 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500793 def_errors == EXT4_ERRORS_CONTINUE) {
794 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700795 }
796 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500797 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500798 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500799 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700800 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500801 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700802 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500803 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700804 seq_puts(seq, ",debug");
805 if (test_opt(sb, OLDALLOC))
806 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400807#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500808 if (test_opt(sb, XATTR_USER) &&
809 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700810 seq_puts(seq, ",user_xattr");
811 if (!test_opt(sb, XATTR_USER) &&
812 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
813 seq_puts(seq, ",nouser_xattr");
814 }
815#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400816#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500817 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700818 seq_puts(seq, ",acl");
819 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
820 seq_puts(seq, ",noacl");
821#endif
Theodore Ts'o30773842009-01-03 20:27:38 -0500822 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700823 seq_printf(seq, ",commit=%u",
824 (unsigned) (sbi->s_commit_interval / HZ));
825 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500826 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
827 seq_printf(seq, ",min_batch_time=%u",
828 (unsigned) sbi->s_min_batch_time);
829 }
830 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
831 seq_printf(seq, ",max_batch_time=%u",
832 (unsigned) sbi->s_min_batch_time);
833 }
834
Eric Sandeen571640c2008-05-26 12:29:46 -0400835 /*
836 * We're changing the default of barrier mount option, so
837 * let's always display its mount state so it's clear what its
838 * status is.
839 */
840 seq_puts(seq, ",barrier=");
841 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400842 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
843 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700844 if (test_opt(sb, NOBH))
845 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500846 if (test_opt(sb, I_VERSION))
847 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400848 if (!test_opt(sb, DELALLOC))
849 seq_puts(seq, ",nodelalloc");
850
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700851
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500852 if (sbi->s_stripe)
853 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500854 /*
855 * journal mode get enabled in different ways
856 * So just print the value even if we didn't specify it
857 */
Mingming Cao617ba132006-10-11 01:20:53 -0700858 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700860 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700862 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 seq_puts(seq, ",data=writeback");
864
Theodore Ts'o240799c2008-10-09 23:53:47 -0400865 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
866 seq_printf(seq, ",inode_readahead_blks=%u",
867 sbi->s_inode_readahead_blks);
868
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400869 if (test_opt(sb, DATA_ERR_ABORT))
870 seq_puts(seq, ",data_err=abort");
871
Theodore Ts'oafd46722009-03-16 23:12:23 -0400872 if (test_opt(sb, NO_AUTO_DA_ALLOC))
Theodore Ts'o06705bf2009-03-28 10:59:57 -0400873 seq_puts(seq, ",noauto_da_alloc");
Theodore Ts'oafd46722009-03-16 23:12:23 -0400874
Mingming Cao617ba132006-10-11 01:20:53 -0700875 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700876 return 0;
877}
878
879
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700880static struct inode *ext4_nfs_get_inode(struct super_block *sb,
881 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700884
Mingming Cao617ba132006-10-11 01:20:53 -0700885 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700887 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700888 return ERR_PTR(-ESTALE);
889
890 /* iget isn't really right if the inode is currently unallocated!!
891 *
Mingming Cao617ba132006-10-11 01:20:53 -0700892 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700893 * deleted, so we should be safe.
894 *
895 * Currently we don't know the generation for parent directory, so
896 * a generation of 0 means "accept any"
897 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800898 inode = ext4_iget(sb, ino);
899 if (IS_ERR(inode))
900 return ERR_CAST(inode);
901 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700902 iput(inode);
903 return ERR_PTR(-ESTALE);
904 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700905
906 return inode;
907}
908
909static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
910 int fh_len, int fh_type)
911{
912 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
913 ext4_nfs_get_inode);
914}
915
916static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
917 int fh_len, int fh_type)
918{
919 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
920 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700921}
922
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500923/*
924 * Try to release metadata pages (indirect blocks, directories) which are
925 * mapped via the block device. Since these pages could have journal heads
926 * which would prevent try_to_free_buffers() from freeing them, we must use
927 * jbd2 layer's try_to_free_buffers() function to release them.
928 */
929static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
930{
931 journal_t *journal = EXT4_SB(sb)->s_journal;
932
933 WARN_ON(PageChecked(page));
934 if (!page_has_buffers(page))
935 return 0;
936 if (journal)
937 return jbd2_journal_try_to_free_buffers(journal, page,
938 wait & ~__GFP_WAIT);
939 return try_to_free_buffers(page);
940}
941
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400943#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400944#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700945
Mingming Cao617ba132006-10-11 01:20:53 -0700946static int ext4_write_dquot(struct dquot *dquot);
947static int ext4_acquire_dquot(struct dquot *dquot);
948static int ext4_release_dquot(struct dquot *dquot);
949static int ext4_mark_dquot_dirty(struct dquot *dquot);
950static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700951static int ext4_quota_on(struct super_block *sb, int type, int format_id,
952 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700953static int ext4_quota_on_mount(struct super_block *sb, int type);
954static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700955 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700956static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700957 const char *data, size_t len, loff_t off);
958
Mingming Cao617ba132006-10-11 01:20:53 -0700959static struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +0100960 .initialize = dquot_initialize,
961 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700962 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +0100963 .reserve_space = dquot_reserve_space,
964 .claim_space = dquot_claim_space,
965 .release_rsv = dquot_release_reserved_space,
966 .get_reserved_space = ext4_get_reserved_space,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700967 .alloc_inode = dquot_alloc_inode,
968 .free_space = dquot_free_space,
969 .free_inode = dquot_free_inode,
970 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700971 .write_dquot = ext4_write_dquot,
972 .acquire_dquot = ext4_acquire_dquot,
973 .release_dquot = ext4_release_dquot,
974 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +0100975 .write_info = ext4_write_info,
976 .alloc_dquot = dquot_alloc,
977 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978};
979
Mingming Cao617ba132006-10-11 01:20:53 -0700980static struct quotactl_ops ext4_qctl_operations = {
981 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700982 .quota_off = vfs_quota_off,
983 .quota_sync = vfs_quota_sync,
984 .get_info = vfs_get_dqinfo,
985 .set_info = vfs_set_dqinfo,
986 .get_dqblk = vfs_get_dqblk,
987 .set_dqblk = vfs_set_dqblk
988};
989#endif
990
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800991static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700992 .alloc_inode = ext4_alloc_inode,
993 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700994 .write_inode = ext4_write_inode,
995 .dirty_inode = ext4_dirty_inode,
996 .delete_inode = ext4_delete_inode,
997 .put_super = ext4_put_super,
Mingming Cao617ba132006-10-11 01:20:53 -0700998 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800999 .freeze_fs = ext4_freeze,
1000 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -07001001 .statfs = ext4_statfs,
1002 .remount_fs = ext4_remount,
1003 .clear_inode = ext4_clear_inode,
1004 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001005#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001006 .quota_read = ext4_quota_read,
1007 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001009 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001010};
1011
Theodore Ts'o9ca92382009-05-01 12:52:25 -04001012static const struct super_operations ext4_nojournal_sops = {
1013 .alloc_inode = ext4_alloc_inode,
1014 .destroy_inode = ext4_destroy_inode,
1015 .write_inode = ext4_write_inode,
1016 .dirty_inode = ext4_dirty_inode,
1017 .delete_inode = ext4_delete_inode,
1018 .write_super = ext4_write_super,
1019 .put_super = ext4_put_super,
1020 .statfs = ext4_statfs,
1021 .remount_fs = ext4_remount,
1022 .clear_inode = ext4_clear_inode,
1023 .show_options = ext4_show_options,
1024#ifdef CONFIG_QUOTA
1025 .quota_read = ext4_quota_read,
1026 .quota_write = ext4_quota_write,
1027#endif
1028 .bdev_try_to_free_page = bdev_try_to_free_page,
1029};
1030
Christoph Hellwig39655162007-10-21 16:42:17 -07001031static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001032 .fh_to_dentry = ext4_fh_to_dentry,
1033 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001034 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035};
1036
1037enum {
1038 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1039 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001040 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001041 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001042 Opt_auto_da_alloc, Opt_noauto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001043 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001044 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001045 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001046 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001047 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1049 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001050 Opt_ignore, Opt_barrier, Opt_nobarrier, Opt_err, Opt_resize,
1051 Opt_usrquota, Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001052 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001053 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001054};
1055
Steven Whitehousea447c092008-10-13 10:46:57 +01001056static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001057 {Opt_bsd_df, "bsddf"},
1058 {Opt_minix_df, "minixdf"},
1059 {Opt_grpid, "grpid"},
1060 {Opt_grpid, "bsdgroups"},
1061 {Opt_nogrpid, "nogrpid"},
1062 {Opt_nogrpid, "sysvgroups"},
1063 {Opt_resgid, "resgid=%u"},
1064 {Opt_resuid, "resuid=%u"},
1065 {Opt_sb, "sb=%u"},
1066 {Opt_err_cont, "errors=continue"},
1067 {Opt_err_panic, "errors=panic"},
1068 {Opt_err_ro, "errors=remount-ro"},
1069 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001070 {Opt_debug, "debug"},
1071 {Opt_oldalloc, "oldalloc"},
1072 {Opt_orlov, "orlov"},
1073 {Opt_user_xattr, "user_xattr"},
1074 {Opt_nouser_xattr, "nouser_xattr"},
1075 {Opt_acl, "acl"},
1076 {Opt_noacl, "noacl"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001077 {Opt_noload, "noload"},
1078 {Opt_nobh, "nobh"},
1079 {Opt_bh, "bh"},
1080 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001081 {Opt_min_batch_time, "min_batch_time=%u"},
1082 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001083 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001085 {Opt_journal_checksum, "journal_checksum"},
1086 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001087 {Opt_abort, "abort"},
1088 {Opt_data_journal, "data=journal"},
1089 {Opt_data_ordered, "data=ordered"},
1090 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001091 {Opt_data_err_abort, "data_err=abort"},
1092 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093 {Opt_offusrjquota, "usrjquota="},
1094 {Opt_usrjquota, "usrjquota=%s"},
1095 {Opt_offgrpjquota, "grpjquota="},
1096 {Opt_grpjquota, "grpjquota=%s"},
1097 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1098 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1099 {Opt_grpquota, "grpquota"},
1100 {Opt_noquota, "noquota"},
1101 {Opt_quota, "quota"},
1102 {Opt_usrquota, "usrquota"},
1103 {Opt_barrier, "barrier=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001104 {Opt_barrier, "barrier"},
1105 {Opt_nobarrier, "nobarrier"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001106 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001107 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001108 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001109 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001110 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001111 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001112 {Opt_journal_ioprio, "journal_ioprio=%u"},
Theodore Ts'oafd46722009-03-16 23:12:23 -04001113 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001114 {Opt_auto_da_alloc, "auto_da_alloc"},
1115 {Opt_noauto_da_alloc, "noauto_da_alloc"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001116 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001117};
1118
Mingming Cao617ba132006-10-11 01:20:53 -07001119static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001120{
Mingming Cao617ba132006-10-11 01:20:53 -07001121 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001122 char *options = (char *) *data;
1123
1124 if (!options || strncmp(options, "sb=", 3) != 0)
1125 return 1; /* Default location */
1126 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001127 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001128 sb_block = simple_strtoul(options, &options, 0);
1129 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001130 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001131 (char *) *data);
1132 return 1;
1133 }
1134 if (*options == ',')
1135 options++;
1136 *data = (void *) options;
1137 return sb_block;
1138}
1139
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001140#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1141
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001142static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001143 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001144 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001145 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001146{
Mingming Cao617ba132006-10-11 01:20:53 -07001147 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001148 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001149 substring_t args[MAX_OPT_ARGS];
1150 int data_opt = 0;
1151 int option;
1152#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001153 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154 char *qname;
1155#endif
1156
1157 if (!options)
1158 return 1;
1159
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001160 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001161 int token;
1162 if (!*p)
1163 continue;
1164
1165 token = match_token(p, tokens, args);
1166 switch (token) {
1167 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001168 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001169 break;
1170 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001171 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 break;
1173 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001174 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001175 break;
1176 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001177 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001178 break;
1179 case Opt_resuid:
1180 if (match_int(&args[0], &option))
1181 return 0;
1182 sbi->s_resuid = option;
1183 break;
1184 case Opt_resgid:
1185 if (match_int(&args[0], &option))
1186 return 0;
1187 sbi->s_resgid = option;
1188 break;
1189 case Opt_sb:
1190 /* handled by get_sb_block() instead of here */
1191 /* *sb_block = match_int(&args[0]); */
1192 break;
1193 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001194 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1195 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1196 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001197 break;
1198 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001199 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1200 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1201 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202 break;
1203 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001204 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1205 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1206 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001207 break;
1208 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001209 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001210 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001211 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001212 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001213 break;
1214 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001215 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001216 break;
1217 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001218 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001219 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001220#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001221 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001222 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001223 break;
1224 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001225 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001226 break;
1227#else
1228 case Opt_user_xattr:
1229 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001230 printk(KERN_ERR "EXT4 (no)user_xattr options "
1231 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001232 break;
1233#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001234#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 case Opt_acl:
1236 set_opt(sbi->s_mount_opt, POSIX_ACL);
1237 break;
1238 case Opt_noacl:
1239 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1240 break;
1241#else
1242 case Opt_acl:
1243 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001244 printk(KERN_ERR "EXT4 (no)acl options "
1245 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001246 break;
1247#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001248 case Opt_journal_update:
1249 /* @@@ FIXME */
1250 /* Eventually we will want to be able to create
1251 a journal file here. For now, only allow the
1252 user to specify an existing inode to be the
1253 journal file. */
1254 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001255 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001256 "journal on remount\n");
1257 return 0;
1258 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001259 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001261 case Opt_journal_dev:
1262 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001263 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001264 "journal on remount\n");
1265 return 0;
1266 }
1267 if (match_int(&args[0], &option))
1268 return 0;
1269 *journal_devnum = option;
1270 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001271 case Opt_journal_checksum:
1272 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1273 break;
1274 case Opt_journal_async_commit:
1275 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1276 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1277 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001278 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001279 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001280 break;
1281 case Opt_commit:
1282 if (match_int(&args[0], &option))
1283 return 0;
1284 if (option < 0)
1285 return 0;
1286 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001287 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001288 sbi->s_commit_interval = HZ * option;
1289 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001290 case Opt_max_batch_time:
1291 if (match_int(&args[0], &option))
1292 return 0;
1293 if (option < 0)
1294 return 0;
1295 if (option == 0)
1296 option = EXT4_DEF_MAX_BATCH_TIME;
1297 sbi->s_max_batch_time = option;
1298 break;
1299 case Opt_min_batch_time:
1300 if (match_int(&args[0], &option))
1301 return 0;
1302 if (option < 0)
1303 return 0;
1304 sbi->s_min_batch_time = option;
1305 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001306 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001307 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001308 goto datacheck;
1309 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001310 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001311 goto datacheck;
1312 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001313 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001314 datacheck:
1315 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001316 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001317 != data_opt) {
1318 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001319 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001320 "mode on remount\n");
1321 return 0;
1322 }
1323 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001324 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001325 sbi->s_mount_opt |= data_opt;
1326 }
1327 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001328 case Opt_data_err_abort:
1329 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1330 break;
1331 case Opt_data_err_ignore:
1332 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1333 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001334#ifdef CONFIG_QUOTA
1335 case Opt_usrjquota:
1336 qtype = USRQUOTA;
1337 goto set_qf_name;
1338 case Opt_grpjquota:
1339 qtype = GRPQUOTA;
1340set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001341 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001342 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001343 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001344 "EXT4-fs: Cannot change journaled "
1345 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001346 return 0;
1347 }
1348 qname = match_strdup(&args[0]);
1349 if (!qname) {
1350 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001351 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001352 "storing quotafile name.\n");
1353 return 0;
1354 }
1355 if (sbi->s_qf_names[qtype] &&
1356 strcmp(sbi->s_qf_names[qtype], qname)) {
1357 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001358 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001359 "specified.\n", QTYPE2NAME(qtype));
1360 kfree(qname);
1361 return 0;
1362 }
1363 sbi->s_qf_names[qtype] = qname;
1364 if (strchr(sbi->s_qf_names[qtype], '/')) {
1365 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001366 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 "filesystem root.\n");
1368 kfree(sbi->s_qf_names[qtype]);
1369 sbi->s_qf_names[qtype] = NULL;
1370 return 0;
1371 }
1372 set_opt(sbi->s_mount_opt, QUOTA);
1373 break;
1374 case Opt_offusrjquota:
1375 qtype = USRQUOTA;
1376 goto clear_qf_name;
1377 case Opt_offgrpjquota:
1378 qtype = GRPQUOTA;
1379clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001380 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001381 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001382 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001383 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001384 "quota turned on.\n");
1385 return 0;
1386 }
1387 /*
1388 * The space will be released later when all options
1389 * are confirmed to be correct
1390 */
1391 sbi->s_qf_names[qtype] = NULL;
1392 break;
1393 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001394 qfmt = QFMT_VFS_OLD;
1395 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001396 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001397 qfmt = QFMT_VFS_V0;
1398set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001399 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001400 sbi->s_jquota_fmt != qfmt) {
1401 printk(KERN_ERR "EXT4-fs: Cannot change "
1402 "journaled quota options when "
1403 "quota turned on.\n");
1404 return 0;
1405 }
1406 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001407 break;
1408 case Opt_quota:
1409 case Opt_usrquota:
1410 set_opt(sbi->s_mount_opt, QUOTA);
1411 set_opt(sbi->s_mount_opt, USRQUOTA);
1412 break;
1413 case Opt_grpquota:
1414 set_opt(sbi->s_mount_opt, QUOTA);
1415 set_opt(sbi->s_mount_opt, GRPQUOTA);
1416 break;
1417 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001418 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001419 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001420 "options when quota turned on.\n");
1421 return 0;
1422 }
1423 clear_opt(sbi->s_mount_opt, QUOTA);
1424 clear_opt(sbi->s_mount_opt, USRQUOTA);
1425 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1426 break;
1427#else
1428 case Opt_quota:
1429 case Opt_usrquota:
1430 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001431 printk(KERN_ERR
1432 "EXT4-fs: quota options not supported.\n");
1433 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001434 case Opt_usrjquota:
1435 case Opt_grpjquota:
1436 case Opt_offusrjquota:
1437 case Opt_offgrpjquota:
1438 case Opt_jqfmt_vfsold:
1439 case Opt_jqfmt_vfsv0:
1440 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001441 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001442 "supported.\n");
1443 break;
1444 case Opt_noquota:
1445 break;
1446#endif
1447 case Opt_abort:
1448 set_opt(sbi->s_mount_opt, ABORT);
1449 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001450 case Opt_nobarrier:
1451 clear_opt(sbi->s_mount_opt, BARRIER);
1452 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001453 case Opt_barrier:
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001454 if (match_int(&args[0], &option)) {
1455 set_opt(sbi->s_mount_opt, BARRIER);
1456 break;
1457 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001458 if (option)
1459 set_opt(sbi->s_mount_opt, BARRIER);
1460 else
1461 clear_opt(sbi->s_mount_opt, BARRIER);
1462 break;
1463 case Opt_ignore:
1464 break;
1465 case Opt_resize:
1466 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001467 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001468 "for remount\n");
1469 return 0;
1470 }
1471 if (match_int(&args[0], &option) != 0)
1472 return 0;
1473 *n_blocks_count = option;
1474 break;
1475 case Opt_nobh:
1476 set_opt(sbi->s_mount_opt, NOBH);
1477 break;
1478 case Opt_bh:
1479 clear_opt(sbi->s_mount_opt, NOBH);
1480 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001481 case Opt_i_version:
1482 set_opt(sbi->s_mount_opt, I_VERSION);
1483 sb->s_flags |= MS_I_VERSION;
1484 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001485 case Opt_nodelalloc:
1486 clear_opt(sbi->s_mount_opt, DELALLOC);
1487 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001488 case Opt_stripe:
1489 if (match_int(&args[0], &option))
1490 return 0;
1491 if (option < 0)
1492 return 0;
1493 sbi->s_stripe = option;
1494 break;
Alex Tomas64769242008-07-11 19:27:31 -04001495 case Opt_delalloc:
1496 set_opt(sbi->s_mount_opt, DELALLOC);
1497 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001498 case Opt_inode_readahead_blks:
1499 if (match_int(&args[0], &option))
1500 return 0;
1501 if (option < 0 || option > (1 << 30))
1502 return 0;
Theodore Ts'of7c43952009-04-24 23:31:59 -04001503 if (!is_power_of_2(option)) {
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001504 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1505 " must be a power of 2\n");
1506 return 0;
1507 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001508 sbi->s_inode_readahead_blks = option;
1509 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001510 case Opt_journal_ioprio:
1511 if (match_int(&args[0], &option))
1512 return 0;
1513 if (option < 0 || option > 7)
1514 break;
1515 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1516 option);
1517 break;
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001518 case Opt_noauto_da_alloc:
1519 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1520 break;
Theodore Ts'oafd46722009-03-16 23:12:23 -04001521 case Opt_auto_da_alloc:
Theodore Ts'o06705bf2009-03-28 10:59:57 -04001522 if (match_int(&args[0], &option)) {
1523 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1524 break;
1525 }
Theodore Ts'oafd46722009-03-16 23:12:23 -04001526 if (option)
1527 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1528 else
1529 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1530 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001531 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001532 printk(KERN_ERR
1533 "EXT4-fs: Unrecognized mount option \"%s\" "
1534 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001535 return 0;
1536 }
1537 }
1538#ifdef CONFIG_QUOTA
1539 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001540 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001541 sbi->s_qf_names[USRQUOTA])
1542 clear_opt(sbi->s_mount_opt, USRQUOTA);
1543
Mingming Cao617ba132006-10-11 01:20:53 -07001544 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001545 sbi->s_qf_names[GRPQUOTA])
1546 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1547
1548 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001549 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001550 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001551 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1552 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001553 "format mixing.\n");
1554 return 0;
1555 }
1556
1557 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001558 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559 "not specified.\n");
1560 return 0;
1561 }
1562 } else {
1563 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001564 printk(KERN_ERR "EXT4-fs: journaled quota format "
1565 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001566 "enabled.\n");
1567 return 0;
1568 }
1569 }
1570#endif
1571 return 1;
1572}
1573
Mingming Cao617ba132006-10-11 01:20:53 -07001574static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001575 int read_only)
1576{
Mingming Cao617ba132006-10-11 01:20:53 -07001577 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001578 int res = 0;
1579
Mingming Cao617ba132006-10-11 01:20:53 -07001580 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001581 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1582 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001583 res = MS_RDONLY;
1584 }
1585 if (read_only)
1586 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001587 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001588 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1589 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001590 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001591 printk(KERN_WARNING
1592 "EXT4-fs warning: mounting fs with errors, "
1593 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001594 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1595 le16_to_cpu(es->s_mnt_count) >=
1596 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001597 printk(KERN_WARNING
1598 "EXT4-fs warning: maximal mount count reached, "
1599 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001600 else if (le32_to_cpu(es->s_checkinterval) &&
1601 (le32_to_cpu(es->s_lastcheck) +
1602 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001603 printk(KERN_WARNING
1604 "EXT4-fs warning: checktime reached, "
1605 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001606 if (!sbi->s_journal)
1607 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001608 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001609 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001610 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001611 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001612 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001613 if (sbi->s_journal)
1614 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001615
Theodore Ts'oe2d67052009-05-01 00:33:44 -04001616 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001617 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001618 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001619 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1620 sb->s_blocksize,
1621 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001622 EXT4_BLOCKS_PER_GROUP(sb),
1623 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001624 sbi->s_mount_opt);
1625
Frank Mayhar03901312009-01-07 00:06:22 -05001626 if (EXT4_SB(sb)->s_journal) {
1627 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1628 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1629 "external", EXT4_SB(sb)->s_journal->j_devname);
1630 } else {
1631 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1632 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001633 return res;
1634}
1635
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001636static int ext4_fill_flex_info(struct super_block *sb)
1637{
1638 struct ext4_sb_info *sbi = EXT4_SB(sb);
1639 struct ext4_group_desc *gdp = NULL;
1640 struct buffer_head *bh;
1641 ext4_group_t flex_group_count;
1642 ext4_group_t flex_group;
1643 int groups_per_flex = 0;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001644 size_t size;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001645 int i;
1646
1647 if (!sbi->s_es->s_log_groups_per_flex) {
1648 sbi->s_log_groups_per_flex = 0;
1649 return 1;
1650 }
1651
1652 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1653 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1654
Frederic Bohec62a11f2008-09-08 10:20:24 -04001655 /* We allocate both existing and potentially added groups */
1656 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001657 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1658 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04001659 size = flex_group_count * sizeof(struct flex_groups);
1660 sbi->s_flex_groups = kzalloc(size, GFP_KERNEL);
1661 if (sbi->s_flex_groups == NULL) {
1662 sbi->s_flex_groups = vmalloc(size);
1663 if (sbi->s_flex_groups)
1664 memset(sbi->s_flex_groups, 0, size);
1665 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001666 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001667 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001668 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001669 goto failed;
1670 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001671
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001672 for (i = 0; i < sbi->s_groups_count; i++) {
1673 gdp = ext4_get_group_desc(sb, i, &bh);
1674
1675 flex_group = ext4_flex_group(sbi, i);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05001676 atomic_set(&sbi->s_flex_groups[flex_group].free_inodes,
1677 ext4_free_inodes_count(sb, gdp));
1678 atomic_set(&sbi->s_flex_groups[flex_group].free_blocks,
1679 ext4_free_blks_count(sb, gdp));
Theodore Ts'o7d39db12009-03-04 19:31:53 -05001680 atomic_set(&sbi->s_flex_groups[flex_group].used_dirs,
1681 ext4_used_dirs_count(sb, gdp));
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001682 }
1683
1684 return 1;
1685failed:
1686 return 0;
1687}
1688
Andreas Dilger717d50e2007-10-16 18:38:25 -04001689__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1690 struct ext4_group_desc *gdp)
1691{
1692 __u16 crc = 0;
1693
1694 if (sbi->s_es->s_feature_ro_compat &
1695 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1696 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1697 __le32 le_group = cpu_to_le32(block_group);
1698
1699 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1700 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1701 crc = crc16(crc, (__u8 *)gdp, offset);
1702 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1703 /* for checksum of struct ext4_group_desc do the rest...*/
1704 if ((sbi->s_es->s_feature_incompat &
1705 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1706 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1707 crc = crc16(crc, (__u8 *)gdp + offset,
1708 le16_to_cpu(sbi->s_es->s_desc_size) -
1709 offset);
1710 }
1711
1712 return cpu_to_le16(crc);
1713}
1714
1715int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1716 struct ext4_group_desc *gdp)
1717{
1718 if ((sbi->s_es->s_feature_ro_compat &
1719 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1720 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1721 return 0;
1722
1723 return 1;
1724}
1725
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001726/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001727static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001728{
Mingming Cao617ba132006-10-11 01:20:53 -07001729 struct ext4_sb_info *sbi = EXT4_SB(sb);
1730 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1731 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001732 ext4_fsblk_t block_bitmap;
1733 ext4_fsblk_t inode_bitmap;
1734 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001735 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001736 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001737
Jose R. Santosce421582007-10-16 18:38:25 -04001738 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1739 flexbg_flag = 1;
1740
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001741 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001742
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001743 for (i = 0; i < sbi->s_groups_count; i++) {
1744 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1745
Jose R. Santosce421582007-10-16 18:38:25 -04001746 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001747 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001748 else
1749 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001750 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001751
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001752 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001753 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001754 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001755 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001756 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001757 return 0;
1758 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001759 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001760 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001761 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001762 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001763 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001764 return 0;
1765 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001766 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001767 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001768 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001769 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001770 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001771 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001772 return 0;
1773 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001774 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001775 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001776 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001777 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001778 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1779 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001780 if (!(sb->s_flags & MS_RDONLY)) {
1781 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001782 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001783 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001784 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001785 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001786 if (!flexbg_flag)
1787 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001788 }
1789
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001790 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001791 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001792 return 1;
1793}
1794
Mingming Cao617ba132006-10-11 01:20:53 -07001795/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001796 * the superblock) which were deleted from all directories, but held open by
1797 * a process at the time of a crash. We walk the list and try to delete these
1798 * inodes at recovery time (only with a read-write filesystem).
1799 *
1800 * In order to keep the orphan inode chain consistent during traversal (in
1801 * case of crash during recovery), we link each inode into the superblock
1802 * orphan list_head and handle it the same way as an inode deletion during
1803 * normal operation (which journals the operations for us).
1804 *
1805 * We only do an iget() and an iput() on each inode, which is very safe if we
1806 * accidentally point at an in-use or already deleted inode. The worst that
1807 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001808 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001809 * e2fsck was run on this filesystem, and it must have already done the orphan
1810 * inode cleanup for us, so we can safely abort without any further action.
1811 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001812static void ext4_orphan_cleanup(struct super_block *sb,
1813 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001814{
1815 unsigned int s_flags = sb->s_flags;
1816 int nr_orphans = 0, nr_truncates = 0;
1817#ifdef CONFIG_QUOTA
1818 int i;
1819#endif
1820 if (!es->s_last_orphan) {
1821 jbd_debug(4, "no orphan inodes to clean up\n");
1822 return;
1823 }
1824
Eric Sandeena8f48a92006-12-06 20:40:13 -08001825 if (bdev_read_only(sb->s_bdev)) {
1826 printk(KERN_ERR "EXT4-fs: write access "
1827 "unavailable, skipping orphan cleanup.\n");
1828 return;
1829 }
1830
Mingming Cao617ba132006-10-11 01:20:53 -07001831 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001832 if (es->s_last_orphan)
1833 jbd_debug(1, "Errors on filesystem, "
1834 "clearing orphan list.\n");
1835 es->s_last_orphan = 0;
1836 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1837 return;
1838 }
1839
1840 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001841 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001842 sb->s_id);
1843 sb->s_flags &= ~MS_RDONLY;
1844 }
1845#ifdef CONFIG_QUOTA
1846 /* Needed for iput() to work correctly and not trash data */
1847 sb->s_flags |= MS_ACTIVE;
1848 /* Turn on quotas so that they are updated correctly */
1849 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001850 if (EXT4_SB(sb)->s_qf_names[i]) {
1851 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001852 if (ret < 0)
1853 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001854 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001855 "quota: error %d\n", ret);
1856 }
1857 }
1858#endif
1859
1860 while (es->s_last_orphan) {
1861 struct inode *inode;
1862
Josef Bacik97bd42b2008-04-29 22:04:56 -04001863 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1864 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001865 es->s_last_orphan = 0;
1866 break;
1867 }
1868
Mingming Cao617ba132006-10-11 01:20:53 -07001869 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001870 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001871 if (inode->i_nlink) {
1872 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001873 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001874 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001875 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001876 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001877 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001878 nr_truncates++;
1879 } else {
1880 printk(KERN_DEBUG
1881 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001882 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001883 jbd_debug(2, "deleting unreferenced inode %lu\n",
1884 inode->i_ino);
1885 nr_orphans++;
1886 }
1887 iput(inode); /* The delete magic happens here! */
1888 }
1889
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001890#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001891
1892 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001893 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001894 sb->s_id, PLURAL(nr_orphans));
1895 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001896 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001897 sb->s_id, PLURAL(nr_truncates));
1898#ifdef CONFIG_QUOTA
1899 /* Turn quotas off */
1900 for (i = 0; i < MAXQUOTAS; i++) {
1901 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001902 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001903 }
1904#endif
1905 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1906}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001907/*
1908 * Maximal extent format file size.
1909 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1910 * extent format containers, within a sector_t, and within i_blocks
1911 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1912 * so that won't be a limiting factor.
1913 *
1914 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1915 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001916static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001917{
1918 loff_t res;
1919 loff_t upper_limit = MAX_LFS_FILESIZE;
1920
1921 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001922 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001923 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001924 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001925 * i_block represent total blocks in 512 bytes
1926 * 32 == size of vfs inode i_blocks * 8
1927 */
1928 upper_limit = (1LL << 32) - 1;
1929
1930 /* total blocks in file system block size */
1931 upper_limit >>= (blkbits - 9);
1932 upper_limit <<= blkbits;
1933 }
1934
1935 /* 32-bit extent-start container, ee_block */
1936 res = 1LL << 32;
1937 res <<= blkbits;
1938 res -= 1;
1939
1940 /* Sanity check against vm- & vfs- imposed limits */
1941 if (res > upper_limit)
1942 res = upper_limit;
1943
1944 return res;
1945}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001946
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001947/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001948 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001949 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1950 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001951 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001952static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001953{
Mingming Cao617ba132006-10-11 01:20:53 -07001954 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001955 int meta_blocks;
1956 loff_t upper_limit;
1957 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001958 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001959 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001960 * does not exceed 2^48 -1
1961 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1962 * total number of 512 bytes blocks of the file
1963 */
1964
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001965 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001966 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001967 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001968 * implies the inode i_block represent total blocks in
1969 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001970 */
1971 upper_limit = (1LL << 32) - 1;
1972
1973 /* total blocks in file system block size */
1974 upper_limit >>= (bits - 9);
1975
1976 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001977 /*
1978 * We use 48 bit ext4_inode i_blocks
1979 * With EXT4_HUGE_FILE_FL set the i_blocks
1980 * represent total number of blocks in
1981 * file system block size
1982 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001983 upper_limit = (1LL << 48) - 1;
1984
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001985 }
1986
1987 /* indirect blocks */
1988 meta_blocks = 1;
1989 /* double indirect blocks */
1990 meta_blocks += 1 + (1LL << (bits-2));
1991 /* tripple indirect blocks */
1992 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1993
1994 upper_limit -= meta_blocks;
1995 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001996
1997 res += 1LL << (bits-2);
1998 res += 1LL << (2*(bits-2));
1999 res += 1LL << (3*(bits-2));
2000 res <<= bits;
2001 if (res > upper_limit)
2002 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002003
2004 if (res > MAX_LFS_FILESIZE)
2005 res = MAX_LFS_FILESIZE;
2006
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002007 return res;
2008}
2009
Mingming Cao617ba132006-10-11 01:20:53 -07002010static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002011 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002012{
Mingming Cao617ba132006-10-11 01:20:53 -07002013 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05002014 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002015 int has_super = 0;
2016
2017 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
2018
Mingming Cao617ba132006-10-11 01:20:53 -07002019 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002020 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002021 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002022 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07002023 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002024 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07002025 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002026}
2027
Alex Tomasc9de5602008-01-29 00:19:52 -05002028/**
2029 * ext4_get_stripe_size: Get the stripe size.
2030 * @sbi: In memory super block info
2031 *
2032 * If we have specified it via mount option, then
2033 * use the mount option value. If the value specified at mount time is
2034 * greater than the blocks per group use the super block value.
2035 * If the super block value is greater than blocks per group return 0.
2036 * Allocator needs it be less than blocks per group.
2037 *
2038 */
2039static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2040{
2041 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2042 unsigned long stripe_width =
2043 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2044
2045 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2046 return sbi->s_stripe;
2047
2048 if (stripe_width <= sbi->s_blocks_per_group)
2049 return stripe_width;
2050
2051 if (stride <= sbi->s_blocks_per_group)
2052 return stride;
2053
2054 return 0;
2055}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002056
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002057/* sysfs supprt */
2058
2059struct ext4_attr {
2060 struct attribute attr;
2061 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2062 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2063 const char *, size_t);
2064 int offset;
2065};
2066
2067static int parse_strtoul(const char *buf,
2068 unsigned long max, unsigned long *value)
2069{
2070 char *endp;
2071
2072 while (*buf && isspace(*buf))
2073 buf++;
2074 *value = simple_strtoul(buf, &endp, 0);
2075 while (*endp && isspace(*endp))
2076 endp++;
2077 if (*endp || *value > max)
2078 return -EINVAL;
2079
2080 return 0;
2081}
2082
2083static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2084 struct ext4_sb_info *sbi,
2085 char *buf)
2086{
2087 return snprintf(buf, PAGE_SIZE, "%llu\n",
2088 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2089}
2090
2091static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2092 struct ext4_sb_info *sbi, char *buf)
2093{
2094 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2095
2096 return snprintf(buf, PAGE_SIZE, "%lu\n",
2097 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2098 sbi->s_sectors_written_start) >> 1);
2099}
2100
2101static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2102 struct ext4_sb_info *sbi, char *buf)
2103{
2104 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2105
2106 return snprintf(buf, PAGE_SIZE, "%llu\n",
2107 sbi->s_kbytes_written +
2108 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2109 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2110}
2111
2112static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2113 struct ext4_sb_info *sbi,
2114 const char *buf, size_t count)
2115{
2116 unsigned long t;
2117
2118 if (parse_strtoul(buf, 0x40000000, &t))
2119 return -EINVAL;
2120
Theodore Ts'of7c43952009-04-24 23:31:59 -04002121 if (!is_power_of_2(t))
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002122 return -EINVAL;
2123
2124 sbi->s_inode_readahead_blks = t;
2125 return count;
2126}
2127
2128static ssize_t sbi_ui_show(struct ext4_attr *a,
2129 struct ext4_sb_info *sbi, char *buf)
2130{
2131 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2132
2133 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2134}
2135
2136static ssize_t sbi_ui_store(struct ext4_attr *a,
2137 struct ext4_sb_info *sbi,
2138 const char *buf, size_t count)
2139{
2140 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2141 unsigned long t;
2142
2143 if (parse_strtoul(buf, 0xffffffff, &t))
2144 return -EINVAL;
2145 *ui = t;
2146 return count;
2147}
2148
2149#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2150static struct ext4_attr ext4_attr_##_name = { \
2151 .attr = {.name = __stringify(_name), .mode = _mode }, \
2152 .show = _show, \
2153 .store = _store, \
2154 .offset = offsetof(struct ext4_sb_info, _elname), \
2155}
2156#define EXT4_ATTR(name, mode, show, store) \
2157static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2158
2159#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2160#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2161#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2162 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2163#define ATTR_LIST(name) &ext4_attr_##name.attr
2164
2165EXT4_RO_ATTR(delayed_allocation_blocks);
2166EXT4_RO_ATTR(session_write_kbytes);
2167EXT4_RO_ATTR(lifetime_write_kbytes);
2168EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2169 inode_readahead_blks_store, s_inode_readahead_blks);
2170EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2171EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2172EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2173EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2174EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2175EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2176
2177static struct attribute *ext4_attrs[] = {
2178 ATTR_LIST(delayed_allocation_blocks),
2179 ATTR_LIST(session_write_kbytes),
2180 ATTR_LIST(lifetime_write_kbytes),
2181 ATTR_LIST(inode_readahead_blks),
2182 ATTR_LIST(mb_stats),
2183 ATTR_LIST(mb_max_to_scan),
2184 ATTR_LIST(mb_min_to_scan),
2185 ATTR_LIST(mb_order2_req),
2186 ATTR_LIST(mb_stream_req),
2187 ATTR_LIST(mb_group_prealloc),
2188 NULL,
2189};
2190
2191static ssize_t ext4_attr_show(struct kobject *kobj,
2192 struct attribute *attr, char *buf)
2193{
2194 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2195 s_kobj);
2196 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2197
2198 return a->show ? a->show(a, sbi, buf) : 0;
2199}
2200
2201static ssize_t ext4_attr_store(struct kobject *kobj,
2202 struct attribute *attr,
2203 const char *buf, size_t len)
2204{
2205 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2206 s_kobj);
2207 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2208
2209 return a->store ? a->store(a, sbi, buf, len) : 0;
2210}
2211
2212static void ext4_sb_release(struct kobject *kobj)
2213{
2214 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2215 s_kobj);
2216 complete(&sbi->s_kobj_unregister);
2217}
2218
2219
2220static struct sysfs_ops ext4_attr_ops = {
2221 .show = ext4_attr_show,
2222 .store = ext4_attr_store,
2223};
2224
2225static struct kobj_type ext4_ktype = {
2226 .default_attrs = ext4_attrs,
2227 .sysfs_ops = &ext4_attr_ops,
2228 .release = ext4_sb_release,
2229};
2230
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002231static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002232 __releases(kernel_lock)
2233 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002234
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002235{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002236 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002237 struct ext4_super_block *es = NULL;
2238 struct ext4_sb_info *sbi;
2239 ext4_fsblk_t block;
2240 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002241 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002242 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002243 unsigned long journal_devnum = 0;
2244 unsigned long def_mount_opts;
2245 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002246 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002247 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002248 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002249 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002250 unsigned int db_count;
2251 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002252 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002253 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002254 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002255 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002256 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002257
2258 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2259 if (!sbi)
2260 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002261
2262 sbi->s_blockgroup_lock =
2263 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2264 if (!sbi->s_blockgroup_lock) {
2265 kfree(sbi);
2266 return -ENOMEM;
2267 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002268 sb->s_fs_info = sbi;
2269 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002270 sbi->s_resuid = EXT4_DEF_RESUID;
2271 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002272 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002273 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002274 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2275 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002276
2277 unlock_kernel();
2278
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002279 /* Cleanup superblock name */
2280 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2281 *cp = '!';
2282
Mingming Cao617ba132006-10-11 01:20:53 -07002283 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002284 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002285 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002286 goto out_fail;
2287 }
2288
2289 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002290 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002291 * block sizes. We need to calculate the offset from buffer start.
2292 */
Mingming Cao617ba132006-10-11 01:20:53 -07002293 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002294 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2295 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002296 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002297 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002298 }
2299
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002300 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002301 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002302 goto out_fail;
2303 }
2304 /*
2305 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002306 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002307 */
Mingming Cao617ba132006-10-11 01:20:53 -07002308 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002309 sbi->s_es = es;
2310 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002311 if (sb->s_magic != EXT4_SUPER_MAGIC)
2312 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002313 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002314
2315 /* Set defaults before we parse the mount options */
2316 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002317 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002318 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002319 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002320 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002321 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002322 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002323#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002324 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002325 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002326#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002327#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002328 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002329 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002330#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002331 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2332 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2333 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2334 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2335 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2336 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002337
Mingming Cao617ba132006-10-11 01:20:53 -07002338 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002339 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002340 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002341 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002342 else
2343 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002344
2345 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2346 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002347 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2348 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2349 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002350
Eric Sandeen571640c2008-05-26 12:29:46 -04002351 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002352
Mingming Cao1e2462f2007-07-18 09:00:55 -04002353 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002354 * enable delayed allocation by default
2355 * Use -o nodelalloc to turn it off
2356 */
2357 set_opt(sbi->s_mount_opt, DELALLOC);
2358
2359
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002360 if (!parse_options((char *) data, sb, &journal_devnum,
2361 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002362 goto failed_mount;
2363
2364 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002365 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002366
Mingming Cao617ba132006-10-11 01:20:53 -07002367 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2368 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2369 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2370 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002371 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002372 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002373 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002374
2375 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002376 * Check feature flags regardless of the revision level, since we
2377 * previously didn't change the revision level when setting the flags,
2378 * so there is a chance incompat flags are set on a rev 0 filesystem.
2379 */
Mingming Cao617ba132006-10-11 01:20:53 -07002380 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002381 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002382 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002383 "unsupported optional features (%x).\n", sb->s_id,
2384 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2385 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002386 goto failed_mount;
2387 }
Mingming Cao617ba132006-10-11 01:20:53 -07002388 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002389 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002390 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002391 "unsupported optional features (%x).\n", sb->s_id,
2392 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2393 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002394 goto failed_mount;
2395 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002396 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2397 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2398 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002399 /*
2400 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002401 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002402 */
2403 if (sizeof(root->i_blocks) < sizeof(u64) &&
2404 !(sb->s_flags & MS_RDONLY)) {
2405 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2406 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002407 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002408 goto failed_mount;
2409 }
2410 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002411 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2412
Mingming Cao617ba132006-10-11 01:20:53 -07002413 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2414 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002415 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002416 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002417 blocksize, sb->s_id);
2418 goto failed_mount;
2419 }
2420
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002421 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002422
2423 /* Validate the filesystem blocksize */
2424 if (!sb_set_blocksize(sb, blocksize)) {
2425 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2426 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002427 goto failed_mount;
2428 }
2429
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002430 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002431 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2432 offset = do_div(logical_sb_block, blocksize);
2433 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002434 if (!bh) {
2435 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002436 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002437 goto failed_mount;
2438 }
Mingming Cao617ba132006-10-11 01:20:53 -07002439 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002440 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002441 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002442 printk(KERN_ERR
2443 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002444 goto failed_mount;
2445 }
2446 }
2447
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002448 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2449 has_huge_files);
2450 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451
Mingming Cao617ba132006-10-11 01:20:53 -07002452 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2453 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2454 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002455 } else {
2456 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2457 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002458 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002459 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002460 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002461 printk(KERN_ERR
2462 "EXT4-fs: unsupported inode size: %d\n",
2463 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002464 goto failed_mount;
2465 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002466 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2467 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002468 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002469 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2470 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002471 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002472 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002473 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002474 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002475 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002476 sbi->s_desc_size);
2477 goto failed_mount;
2478 }
2479 } else
2480 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002481 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002482 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002483 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002484 goto cantfind_ext4;
2485 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002486 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002487 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002488 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2489 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002490 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002491 sbi->s_sbh = bh;
2492 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002493 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2494 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002495 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002496 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2497 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002498 i = le32_to_cpu(es->s_flags);
2499 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2500 sbi->s_hash_unsigned = 3;
2501 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2502#ifdef __CHAR_UNSIGNED__
2503 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2504 sbi->s_hash_unsigned = 3;
2505#else
2506 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2507#endif
2508 sb->s_dirt = 1;
2509 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002510
2511 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002512 printk(KERN_ERR
2513 "EXT4-fs: #blocks per group too big: %lu\n",
2514 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002515 goto failed_mount;
2516 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002517 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002518 printk(KERN_ERR
2519 "EXT4-fs: #inodes per group too big: %lu\n",
2520 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002521 goto failed_mount;
2522 }
2523
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002524 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002525 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002526 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002527 " too large to mount safely\n", sb->s_id);
2528 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002529 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002530 "enabled\n");
2531 goto failed_mount;
2532 }
2533
Mingming Cao617ba132006-10-11 01:20:53 -07002534 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2535 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002536
From: Thiemo Nagel0f2ddca2009-04-07 14:07:47 -04002537 /* check blocks count against device size */
2538 blocks_count = sb->s_bdev->bd_inode->i_size >> sb->s_blocksize_bits;
2539 if (blocks_count && ext4_blocks_count(es) > blocks_count) {
2540 printk(KERN_WARNING "EXT4-fs: bad geometry: block count %llu "
2541 "exceeds size of device (%llu blocks)\n",
2542 ext4_blocks_count(es), blocks_count);
2543 goto failed_mount;
2544 }
2545
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002546 /*
2547 * It makes no sense for the first data block to be beyond the end
2548 * of the filesystem.
2549 */
2550 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2551 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2552 "block %u is beyond end of filesystem (%llu)\n",
2553 le32_to_cpu(es->s_first_data_block),
2554 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002555 goto failed_mount;
2556 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002557 blocks_count = (ext4_blocks_count(es) -
2558 le32_to_cpu(es->s_first_data_block) +
2559 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2560 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002561 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2562 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2563 "(block count %llu, first data block %u, "
2564 "blocks per group %lu)\n", sbi->s_groups_count,
2565 ext4_blocks_count(es),
2566 le32_to_cpu(es->s_first_data_block),
2567 EXT4_BLOCKS_PER_GROUP(sb));
2568 goto failed_mount;
2569 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002570 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002571 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2572 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002573 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002574 GFP_KERNEL);
2575 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002576 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002577 goto failed_mount;
2578 }
2579
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002580#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002581 if (ext4_proc_root)
2582 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002583#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002584
Pekka Enberg705895b2009-02-15 18:07:52 -05002585 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002586
2587 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002588 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002589 sbi->s_group_desc[i] = sb_bread(sb, block);
2590 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002591 printk(KERN_ERR "EXT4-fs: "
2592 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002593 db_count = i;
2594 goto failed_mount2;
2595 }
2596 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002597 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002598 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002599 goto failed_mount2;
2600 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002601 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2602 if (!ext4_fill_flex_info(sb)) {
2603 printk(KERN_ERR
2604 "EXT4-fs: unable to initialize "
2605 "flex_bg meta info!\n");
2606 goto failed_mount2;
2607 }
2608
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002609 sbi->s_gdb_count = db_count;
2610 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2611 spin_lock_init(&sbi->s_next_gen_lock);
2612
Peter Zijlstra833f4072007-10-16 23:25:45 -07002613 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2614 ext4_count_free_blocks(sb));
2615 if (!err) {
2616 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2617 ext4_count_free_inodes(sb));
2618 }
2619 if (!err) {
2620 err = percpu_counter_init(&sbi->s_dirs_counter,
2621 ext4_count_dirs(sb));
2622 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002623 if (!err) {
2624 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2625 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002626 if (err) {
2627 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2628 goto failed_mount3;
2629 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002630
Alex Tomasc9de5602008-01-29 00:19:52 -05002631 sbi->s_stripe = ext4_get_stripe_size(sbi);
2632
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002633 /*
2634 * set up enough so that it can read an inode
2635 */
Theodore Ts'o9ca92382009-05-01 12:52:25 -04002636 if (!test_opt(sb, NOLOAD) &&
2637 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL))
2638 sb->s_op = &ext4_sops;
2639 else
2640 sb->s_op = &ext4_nojournal_sops;
Mingming Cao617ba132006-10-11 01:20:53 -07002641 sb->s_export_op = &ext4_export_ops;
2642 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002643#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002644 sb->s_qcop = &ext4_qctl_operations;
2645 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002646#endif
2647 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2648
2649 sb->s_root = NULL;
2650
2651 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002652 EXT4_HAS_INCOMPAT_FEATURE(sb,
2653 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002654
2655 /*
2656 * The first inode we look at is the journal inode. Don't try
2657 * root first: it may be modified in the journal!
2658 */
2659 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002660 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2661 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002662 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002663 if (!(sb->s_flags & MS_RDONLY) &&
2664 EXT4_SB(sb)->s_journal->j_failed_commit) {
2665 printk(KERN_CRIT "EXT4-fs error (device %s): "
2666 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002667 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002668 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002669 if (test_opt(sb, ERRORS_RO)) {
2670 printk(KERN_CRIT
2671 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002672 sb->s_flags |= MS_RDONLY;
2673 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2674 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2675 }
2676 if (test_opt(sb, ERRORS_PANIC)) {
2677 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2678 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04002679 ext4_commit_super(sb, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002680 goto failed_mount4;
2681 }
2682 }
Frank Mayhar03901312009-01-07 00:06:22 -05002683 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2684 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2685 printk(KERN_ERR "EXT4-fs: required journal recovery "
2686 "suppressed and not mounted read-only\n");
2687 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002688 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002689 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2690 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2691 sbi->s_journal = NULL;
2692 needs_recovery = 0;
2693 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002694 }
2695
Jose R. Santoseb40a092007-07-18 08:37:25 -04002696 if (ext4_blocks_count(es) > 0xffffffffULL &&
2697 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2698 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002699 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002700 goto failed_mount4;
2701 }
2702
Girish Shilamkar818d2762008-01-28 23:58:27 -05002703 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2704 jbd2_journal_set_features(sbi->s_journal,
2705 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2706 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2707 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2708 jbd2_journal_set_features(sbi->s_journal,
2709 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2710 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2711 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2712 } else {
2713 jbd2_journal_clear_features(sbi->s_journal,
2714 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2715 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2716 }
2717
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002718 /* We have now updated the journal if required, so we can
2719 * validate the data journaling mode. */
2720 switch (test_opt(sb, DATA_FLAGS)) {
2721 case 0:
2722 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002723 * capabilities: ORDERED_DATA if the journal can
2724 * cope, else JOURNAL_DATA
2725 */
Mingming Caodab291a2006-10-11 01:21:01 -07002726 if (jbd2_journal_check_available_features
2727 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002728 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2729 else
2730 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2731 break;
2732
Mingming Cao617ba132006-10-11 01:20:53 -07002733 case EXT4_MOUNT_ORDERED_DATA:
2734 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002735 if (!jbd2_journal_check_available_features
2736 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002737 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002738 "requested data journaling mode\n");
2739 goto failed_mount4;
2740 }
2741 default:
2742 break;
2743 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002744 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002745
Frank Mayhar03901312009-01-07 00:06:22 -05002746no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002747
2748 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002749 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2750 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002751 "its supported only with writeback mode\n");
2752 clear_opt(sbi->s_mount_opt, NOBH);
2753 }
2754 }
2755 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002756 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002757 * so we can safely mount the rest of the filesystem now.
2758 */
2759
David Howells1d1fe1e2008-02-07 00:15:37 -08002760 root = ext4_iget(sb, EXT4_ROOT_INO);
2761 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002762 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002763 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002764 goto failed_mount4;
2765 }
2766 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002767 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002768 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002769 goto failed_mount4;
2770 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002771 sb->s_root = d_alloc_root(root);
2772 if (!sb->s_root) {
2773 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2774 iput(root);
2775 ret = -ENOMEM;
2776 goto failed_mount4;
2777 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002779 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002780
2781 /* determine the minimum size of new large inodes, if present */
2782 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2783 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2784 EXT4_GOOD_OLD_INODE_SIZE;
2785 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2786 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2787 if (sbi->s_want_extra_isize <
2788 le16_to_cpu(es->s_want_extra_isize))
2789 sbi->s_want_extra_isize =
2790 le16_to_cpu(es->s_want_extra_isize);
2791 if (sbi->s_want_extra_isize <
2792 le16_to_cpu(es->s_min_extra_isize))
2793 sbi->s_want_extra_isize =
2794 le16_to_cpu(es->s_min_extra_isize);
2795 }
2796 }
2797 /* Check if enough inode space is available */
2798 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2799 sbi->s_inode_size) {
2800 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2801 EXT4_GOOD_OLD_INODE_SIZE;
2802 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2803 "available.\n");
2804 }
2805
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002806 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2807 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2808 "requested data journaling mode\n");
2809 clear_opt(sbi->s_mount_opt, DELALLOC);
2810 } else if (test_opt(sb, DELALLOC))
2811 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2812
2813 ext4_ext_init(sb);
2814 err = ext4_mb_init(sb, needs_recovery);
2815 if (err) {
2816 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2817 err);
2818 goto failed_mount4;
2819 }
2820
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002821 sbi->s_kobj.kset = ext4_kset;
2822 init_completion(&sbi->s_kobj_unregister);
2823 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2824 "%s", sb->s_id);
2825 if (err) {
2826 ext4_mb_release(sb);
2827 ext4_ext_release(sb);
2828 goto failed_mount4;
2829 };
2830
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002831 /*
2832 * akpm: core read_super() calls in here with the superblock locked.
2833 * That deadlocks, because orphan cleanup needs to lock the superblock
2834 * in numerous places. Here we just pop the lock - it's relatively
2835 * harmless, because we are now ready to accept write_super() requests,
2836 * and aviro says that's the only reason for hanging onto the
2837 * superblock lock.
2838 */
Mingming Cao617ba132006-10-11 01:20:53 -07002839 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2840 ext4_orphan_cleanup(sb, es);
2841 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002842 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002843 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002844 ext4_mark_recovery_complete(sb, es);
2845 }
2846 if (EXT4_SB(sb)->s_journal) {
2847 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2848 descr = " journalled data mode";
2849 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2850 descr = " ordered data mode";
2851 else
2852 descr = " writeback data mode";
2853 } else
2854 descr = "out journal";
2855
2856 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2857 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002858
2859 lock_kernel();
2860 return 0;
2861
Mingming Cao617ba132006-10-11 01:20:53 -07002862cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002863 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002864 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002865 sb->s_id);
2866 goto failed_mount;
2867
2868failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002869 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2870 if (sbi->s_journal) {
2871 jbd2_journal_destroy(sbi->s_journal);
2872 sbi->s_journal = NULL;
2873 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002874failed_mount3:
Theodore Ts'oc5ca7c72009-04-27 22:48:48 -04002875 if (sbi->s_flex_groups) {
2876 if (is_vmalloc_addr(sbi->s_flex_groups))
2877 vfree(sbi->s_flex_groups);
2878 else
2879 kfree(sbi->s_flex_groups);
2880 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002881 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2882 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2883 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002884 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002885failed_mount2:
2886 for (i = 0; i < db_count; i++)
2887 brelse(sbi->s_group_desc[i]);
2888 kfree(sbi->s_group_desc);
2889failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002890 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002891 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002892 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002893#ifdef CONFIG_QUOTA
2894 for (i = 0; i < MAXQUOTAS; i++)
2895 kfree(sbi->s_qf_names[i]);
2896#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002897 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002898 brelse(bh);
2899out_fail:
2900 sb->s_fs_info = NULL;
2901 kfree(sbi);
2902 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002903 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002904}
2905
2906/*
2907 * Setup any per-fs journal parameters now. We'll do this both on
2908 * initial mount, once the journal has been initialised but before we've
2909 * done any recovery; and again on any subsequent remount.
2910 */
Mingming Cao617ba132006-10-11 01:20:53 -07002911static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912{
Mingming Cao617ba132006-10-11 01:20:53 -07002913 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002914
Theodore Ts'o30773842009-01-03 20:27:38 -05002915 journal->j_commit_interval = sbi->s_commit_interval;
2916 journal->j_min_batch_time = sbi->s_min_batch_time;
2917 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002918
2919 spin_lock(&journal->j_state_lock);
2920 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002921 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922 else
Mingming Caodab291a2006-10-11 01:21:01 -07002923 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002924 if (test_opt(sb, DATA_ERR_ABORT))
2925 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2926 else
2927 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002928 spin_unlock(&journal->j_state_lock);
2929}
2930
Mingming Cao617ba132006-10-11 01:20:53 -07002931static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002932 unsigned int journal_inum)
2933{
2934 struct inode *journal_inode;
2935 journal_t *journal;
2936
Frank Mayhar03901312009-01-07 00:06:22 -05002937 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2938
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002939 /* First, test for the existence of a valid inode on disk. Bad
2940 * things happen if we iget() an unused inode, as the subsequent
2941 * iput() will try to delete it. */
2942
David Howells1d1fe1e2008-02-07 00:15:37 -08002943 journal_inode = ext4_iget(sb, journal_inum);
2944 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002945 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002946 return NULL;
2947 }
2948 if (!journal_inode->i_nlink) {
2949 make_bad_inode(journal_inode);
2950 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002951 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002952 return NULL;
2953 }
2954
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002955 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002956 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002957 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002958 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002959 iput(journal_inode);
2960 return NULL;
2961 }
2962
Mingming Caodab291a2006-10-11 01:21:01 -07002963 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002964 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002965 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002966 iput(journal_inode);
2967 return NULL;
2968 }
2969 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002970 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002971 return journal;
2972}
2973
Mingming Cao617ba132006-10-11 01:20:53 -07002974static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002975 dev_t j_dev)
2976{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002977 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002978 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002979 ext4_fsblk_t start;
2980 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002981 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002982 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002983 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002984 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002985 struct block_device *bdev;
2986
Frank Mayhar03901312009-01-07 00:06:22 -05002987 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2988
Mingming Cao617ba132006-10-11 01:20:53 -07002989 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002990 if (bdev == NULL)
2991 return NULL;
2992
2993 if (bd_claim(bdev, sb)) {
2994 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05002995 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002996 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002997 return NULL;
2998 }
2999
3000 blocksize = sb->s_blocksize;
3001 hblock = bdev_hardsect_size(bdev);
3002 if (blocksize < hblock) {
3003 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07003004 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003005 goto out_bdev;
3006 }
3007
Mingming Cao617ba132006-10-11 01:20:53 -07003008 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
3009 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003010 set_blocksize(bdev, blocksize);
3011 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07003012 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003013 "external journal\n");
3014 goto out_bdev;
3015 }
3016
Mingming Cao617ba132006-10-11 01:20:53 -07003017 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
3018 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003019 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07003020 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
3021 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003022 "bad superblock\n");
3023 brelse(bh);
3024 goto out_bdev;
3025 }
3026
Mingming Cao617ba132006-10-11 01:20:53 -07003027 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
3028 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003029 brelse(bh);
3030 goto out_bdev;
3031 }
3032
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003033 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003034 start = sb_block + 1;
3035 brelse(bh); /* we're done with the superblock */
3036
Mingming Caodab291a2006-10-11 01:21:01 -07003037 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003038 start, len, blocksize);
3039 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07003040 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003041 goto out_bdev;
3042 }
3043 journal->j_private = sb;
3044 ll_rw_block(READ, 1, &journal->j_sb_buffer);
3045 wait_on_buffer(journal->j_sb_buffer);
3046 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003047 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003048 goto out_journal;
3049 }
3050 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07003051 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003052 "user (unsupported) - %d\n",
3053 be32_to_cpu(journal->j_superblock->s_nr_users));
3054 goto out_journal;
3055 }
Mingming Cao617ba132006-10-11 01:20:53 -07003056 EXT4_SB(sb)->journal_bdev = bdev;
3057 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003058 return journal;
3059out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003060 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003061out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003062 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003063 return NULL;
3064}
3065
Mingming Cao617ba132006-10-11 01:20:53 -07003066static int ext4_load_journal(struct super_block *sb,
3067 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003068 unsigned long journal_devnum)
3069{
3070 journal_t *journal;
3071 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3072 dev_t journal_dev;
3073 int err = 0;
3074 int really_read_only;
3075
Frank Mayhar03901312009-01-07 00:06:22 -05003076 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3077
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003078 if (journal_devnum &&
3079 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003080 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003081 "numbers have changed\n");
3082 journal_dev = new_decode_dev(journal_devnum);
3083 } else
3084 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3085
3086 really_read_only = bdev_read_only(sb->s_bdev);
3087
3088 /*
3089 * Are we loading a blank journal or performing recovery after a
3090 * crash? For recovery, we need to check in advance whether we
3091 * can get read-write access to the device.
3092 */
3093
Mingming Cao617ba132006-10-11 01:20:53 -07003094 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003095 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003096 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003097 "required on readonly filesystem.\n");
3098 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07003099 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003100 "unavailable, cannot proceed.\n");
3101 return -EROFS;
3102 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003103 printk(KERN_INFO "EXT4-fs: write access will "
3104 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003105 }
3106 }
3107
3108 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07003109 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003110 "and inode journals!\n");
3111 return -EINVAL;
3112 }
3113
3114 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003115 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003116 return -EINVAL;
3117 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003118 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003119 return -EINVAL;
3120 }
3121
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003122 if (journal->j_flags & JBD2_BARRIER)
3123 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3124 else
3125 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3126
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003127 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003128 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003129 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003130 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003131 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003132 return err;
3133 }
3134 }
3135
Mingming Cao617ba132006-10-11 01:20:53 -07003136 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003137 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003138 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003139 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003140
3141 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003142 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003143 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003144 return err;
3145 }
3146
Mingming Cao617ba132006-10-11 01:20:53 -07003147 EXT4_SB(sb)->s_journal = journal;
3148 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003149
3150 if (journal_devnum &&
3151 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3152 es->s_journal_dev = cpu_to_le32(journal_devnum);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003153
3154 /* Make sure we flush the recovery flag to disk. */
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003155 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003156 }
3157
3158 return 0;
3159}
3160
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003161static int ext4_commit_super(struct super_block *sb, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003162{
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003163 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Mingming Cao617ba132006-10-11 01:20:53 -07003164 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003165 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003166
3167 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003168 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003169 if (buffer_write_io_error(sbh)) {
3170 /*
3171 * Oh, dear. A previous attempt to write the
3172 * superblock failed. This could happen because the
3173 * USB device was yanked out. Or it could happen to
3174 * be a transient write error and maybe the block will
3175 * be remapped. Nothing we can do but to retry the
3176 * write and hope for the best.
3177 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05003178 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003179 "superblock detected for %s.\n", sb->s_id);
3180 clear_buffer_write_io_error(sbh);
3181 set_buffer_uptodate(sbh);
3182 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003184 es->s_kbytes_written =
3185 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3186 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3187 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003188 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3189 &EXT4_SB(sb)->s_freeblocks_counter));
3190 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3191 &EXT4_SB(sb)->s_freeinodes_counter));
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003192 sb->s_dirt = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193 BUFFER_TRACE(sbh, "marking dirty");
3194 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003195 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003196 error = sync_dirty_buffer(sbh);
3197 if (error)
3198 return error;
3199
3200 error = buffer_write_io_error(sbh);
3201 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05003202 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003203 "superblock for %s.\n", sb->s_id);
3204 clear_buffer_write_io_error(sbh);
3205 set_buffer_uptodate(sbh);
3206 }
3207 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003208 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003209}
3210
3211
3212/*
3213 * Have we just finished recovery? If so, and if we are mounting (or
3214 * remounting) the filesystem readonly, then we will end up with a
3215 * consistent fs on disk. Record that fact.
3216 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003217static void ext4_mark_recovery_complete(struct super_block *sb,
3218 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003219{
Mingming Cao617ba132006-10-11 01:20:53 -07003220 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003221
Frank Mayhar03901312009-01-07 00:06:22 -05003222 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3223 BUG_ON(journal != NULL);
3224 return;
3225 }
Mingming Caodab291a2006-10-11 01:21:01 -07003226 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003227 if (jbd2_journal_flush(journal) < 0)
3228 goto out;
3229
Jan Kara32c37732007-07-15 23:41:09 -07003230 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07003231 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003232 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003233 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003234 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003235 }
Jan Kara32c37732007-07-15 23:41:09 -07003236 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003237
3238out:
Mingming Caodab291a2006-10-11 01:21:01 -07003239 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240}
3241
3242/*
3243 * If we are mounting (or read-write remounting) a filesystem whose journal
3244 * has recorded an error from a previous lifetime, move that error to the
3245 * main filesystem now.
3246 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003247static void ext4_clear_journal_err(struct super_block *sb,
3248 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003249{
3250 journal_t *journal;
3251 int j_errno;
3252 const char *errstr;
3253
Frank Mayhar03901312009-01-07 00:06:22 -05003254 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3255
Mingming Cao617ba132006-10-11 01:20:53 -07003256 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003257
3258 /*
3259 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003260 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003261 */
3262
Mingming Caodab291a2006-10-11 01:21:01 -07003263 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264 if (j_errno) {
3265 char nbuf[16];
3266
Mingming Cao617ba132006-10-11 01:20:53 -07003267 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003268 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003269 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003270 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003271 "filesystem check.");
3272
Mingming Cao617ba132006-10-11 01:20:53 -07003273 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3274 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003275 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003276
Mingming Caodab291a2006-10-11 01:21:01 -07003277 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003278 }
3279}
3280
3281/*
3282 * Force the running and committing transactions to commit,
3283 * and wait on the commit.
3284 */
Mingming Cao617ba132006-10-11 01:20:53 -07003285int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003286{
3287 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003288 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289
3290 if (sb->s_flags & MS_RDONLY)
3291 return 0;
3292
Mingming Cao617ba132006-10-11 01:20:53 -07003293 journal = EXT4_SB(sb)->s_journal;
Theodore Ts'o7234ab22009-04-30 21:24:04 -04003294 if (journal)
Frank Mayhar03901312009-01-07 00:06:22 -05003295 ret = ext4_journal_force_commit(journal);
Frank Mayhar03901312009-01-07 00:06:22 -05003296
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297 return ret;
3298}
3299
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003300static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003301{
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003302 ext4_commit_super(sb, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003303}
3304
Mingming Cao617ba132006-10-11 01:20:53 -07003305static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003306{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003307 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003308 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003309
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003310 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003311 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal, &target)) {
3312 if (wait)
3313 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal, target);
Frank Mayhar03901312009-01-07 00:06:22 -05003314 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003315 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003316}
3317
3318/*
3319 * LVM calls this function before a (read-only) snapshot is created. This
3320 * gives us a chance to flush the journal completely and mark the fs clean.
3321 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003322static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003323{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003324 int error = 0;
3325 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003326
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003327 if (sb->s_flags & MS_RDONLY)
3328 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003329
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003330 journal = EXT4_SB(sb)->s_journal;
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003331
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003332 /* Now we set up the journal barrier. */
3333 jbd2_journal_lock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003335 /*
3336 * Don't clear the needs_recovery flag if we failed to flush
3337 * the journal.
3338 */
3339 error = jbd2_journal_flush(journal);
3340 if (error < 0) {
3341 out:
3342 jbd2_journal_unlock_updates(journal);
3343 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003344 }
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003345
3346 /* Journal blocked and flushed, clear needs_recovery flag. */
3347 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3348 error = ext4_commit_super(sb, 1);
3349 if (error)
3350 goto out;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003351 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003352}
3353
3354/*
3355 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3356 * flag here, even though the filesystem is not technically dirty yet.
3357 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003358static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003359{
Theodore Ts'o9ca92382009-05-01 12:52:25 -04003360 if (sb->s_flags & MS_RDONLY)
3361 return 0;
3362
3363 lock_super(sb);
3364 /* Reset the needs_recovery flag before the fs is unlocked. */
3365 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3366 ext4_commit_super(sb, 1);
3367 unlock_super(sb);
3368 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003369 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003370}
3371
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003372static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003373{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003374 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003375 struct ext4_sb_info *sbi = EXT4_SB(sb);
3376 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003377 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003378 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003379 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003380 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381 int err;
3382#ifdef CONFIG_QUOTA
3383 int i;
3384#endif
3385
3386 /* Store the original options */
3387 old_sb_flags = sb->s_flags;
3388 old_opts.s_mount_opt = sbi->s_mount_opt;
3389 old_opts.s_resuid = sbi->s_resuid;
3390 old_opts.s_resgid = sbi->s_resgid;
3391 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003392 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3393 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003394#ifdef CONFIG_QUOTA
3395 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3396 for (i = 0; i < MAXQUOTAS; i++)
3397 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3398#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003399 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3400 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401
3402 /*
3403 * Allow the "check" option to be passed as a remount option.
3404 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003405 if (!parse_options(data, sb, NULL, &journal_ioprio,
3406 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003407 err = -EINVAL;
3408 goto restore_opts;
3409 }
3410
Mingming Cao617ba132006-10-11 01:20:53 -07003411 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003412 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003413
3414 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003415 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003416
3417 es = sbi->s_es;
3418
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003419 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003420 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003421 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3422 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003423
3424 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003425 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003426 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003427 err = -EROFS;
3428 goto restore_opts;
3429 }
3430
3431 if (*flags & MS_RDONLY) {
3432 /*
3433 * First of all, the unconditional stuff we have to do
3434 * to disable replay of the journal when we next remount
3435 */
3436 sb->s_flags |= MS_RDONLY;
3437
3438 /*
3439 * OK, test if we are remounting a valid rw partition
3440 * readonly, and if so set the rdonly flag and then
3441 * mark the partition as valid again.
3442 */
Mingming Cao617ba132006-10-11 01:20:53 -07003443 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3444 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003445 es->s_state = cpu_to_le16(sbi->s_mount_state);
3446
Jan Kara32c37732007-07-15 23:41:09 -07003447 /*
3448 * We have to unlock super so that we can wait for
3449 * transactions.
3450 */
Frank Mayhar03901312009-01-07 00:06:22 -05003451 if (sbi->s_journal) {
3452 unlock_super(sb);
3453 ext4_mark_recovery_complete(sb, es);
3454 lock_super(sb);
3455 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003456 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003457 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003458 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3459 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3460 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003461 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003462 "optional features (%x).\n", sb->s_id,
3463 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3464 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003465 err = -EROFS;
3466 goto restore_opts;
3467 }
Eric Sandeenead65962007-02-10 01:46:08 -08003468
3469 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003470 * Make sure the group descriptor checksums
3471 * are sane. If they aren't, refuse to
3472 * remount r/w.
3473 */
3474 for (g = 0; g < sbi->s_groups_count; g++) {
3475 struct ext4_group_desc *gdp =
3476 ext4_get_group_desc(sb, g, NULL);
3477
3478 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3479 printk(KERN_ERR
3480 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003481 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003482 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3483 le16_to_cpu(gdp->bg_checksum));
3484 err = -EINVAL;
3485 goto restore_opts;
3486 }
3487 }
3488
3489 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003490 * If we have an unprocessed orphan list hanging
3491 * around from a previously readonly bdev mount,
3492 * require a full umount/remount for now.
3493 */
3494 if (es->s_last_orphan) {
3495 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3496 "remount RDWR because of unprocessed "
3497 "orphan inode list. Please "
3498 "umount/remount instead.\n",
3499 sb->s_id);
3500 err = -EINVAL;
3501 goto restore_opts;
3502 }
3503
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003504 /*
3505 * Mounting a RDONLY partition read-write, so reread
3506 * and store the current valid flag. (It may have
3507 * been changed by e2fsck since we originally mounted
3508 * the partition.)
3509 */
Frank Mayhar03901312009-01-07 00:06:22 -05003510 if (sbi->s_journal)
3511 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003512 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003513 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003514 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003515 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003516 sb->s_flags &= ~MS_RDONLY;
3517 }
3518 }
Frank Mayhar03901312009-01-07 00:06:22 -05003519 if (sbi->s_journal == NULL)
Theodore Ts'oe2d67052009-05-01 00:33:44 -04003520 ext4_commit_super(sb, 1);
Frank Mayhar03901312009-01-07 00:06:22 -05003521
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003522#ifdef CONFIG_QUOTA
3523 /* Release old quota file names */
3524 for (i = 0; i < MAXQUOTAS; i++)
3525 if (old_opts.s_qf_names[i] &&
3526 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3527 kfree(old_opts.s_qf_names[i]);
3528#endif
3529 return 0;
3530restore_opts:
3531 sb->s_flags = old_sb_flags;
3532 sbi->s_mount_opt = old_opts.s_mount_opt;
3533 sbi->s_resuid = old_opts.s_resuid;
3534 sbi->s_resgid = old_opts.s_resgid;
3535 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003536 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3537 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003538#ifdef CONFIG_QUOTA
3539 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3540 for (i = 0; i < MAXQUOTAS; i++) {
3541 if (sbi->s_qf_names[i] &&
3542 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3543 kfree(sbi->s_qf_names[i]);
3544 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3545 }
3546#endif
3547 return err;
3548}
3549
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003550static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003551{
3552 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003553 struct ext4_sb_info *sbi = EXT4_SB(sb);
3554 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003555 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003556
Badari Pulavarty5e700302007-07-15 23:42:00 -07003557 if (test_opt(sb, MINIX_DF)) {
3558 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003559 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003560 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003561 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003562 smp_rmb();
3563
3564 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003565 * Compute the overhead (FS structures). This is constant
3566 * for a given filesystem unless the number of block groups
3567 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003568 */
3569
3570 /*
3571 * All of the blocks before first_data_block are
3572 * overhead
3573 */
3574 overhead = le32_to_cpu(es->s_first_data_block);
3575
3576 /*
3577 * Add the overhead attributed to the superblock and
3578 * block group descriptors. If the sparse superblocks
3579 * feature is turned on, then not all groups have this.
3580 */
3581 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003582 overhead += ext4_bg_has_super(sb, i) +
3583 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003584 cond_resched();
3585 }
3586
3587 /*
3588 * Every block group has an inode bitmap, a block
3589 * bitmap, and an inode table.
3590 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003591 overhead += ngroups * (2 + sbi->s_itb_per_group);
3592 sbi->s_overhead_last = overhead;
3593 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003594 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003595 }
3596
Mingming Cao617ba132006-10-11 01:20:53 -07003597 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003598 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003599 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003600 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3601 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003602 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003603 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3604 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003605 buf->f_bavail = 0;
3606 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003607 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003608 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003609 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003610 fsid = le64_to_cpup((void *)es->s_uuid) ^
3611 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3612 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3613 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003614 return 0;
3615}
3616
3617/* Helper function for writing quotas on sync - we need to start transaction before quota file
3618 * is locked for write. Otherwise the are possible deadlocks:
3619 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003620 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003621 * jbd2_journal_start() write_dquot()
3622 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003623 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003624 *
3625 */
3626
3627#ifdef CONFIG_QUOTA
3628
3629static inline struct inode *dquot_to_inode(struct dquot *dquot)
3630{
3631 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3632}
3633
Mingming Cao617ba132006-10-11 01:20:53 -07003634static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003635{
3636 int ret, err;
3637 handle_t *handle;
3638 struct inode *inode;
3639
3640 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003641 handle = ext4_journal_start(inode,
3642 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003643 if (IS_ERR(handle))
3644 return PTR_ERR(handle);
3645 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003646 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003647 if (!ret)
3648 ret = err;
3649 return ret;
3650}
3651
Mingming Cao617ba132006-10-11 01:20:53 -07003652static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003653{
3654 int ret, err;
3655 handle_t *handle;
3656
Mingming Cao617ba132006-10-11 01:20:53 -07003657 handle = ext4_journal_start(dquot_to_inode(dquot),
3658 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003659 if (IS_ERR(handle))
3660 return PTR_ERR(handle);
3661 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003662 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003663 if (!ret)
3664 ret = err;
3665 return ret;
3666}
3667
Mingming Cao617ba132006-10-11 01:20:53 -07003668static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003669{
3670 int ret, err;
3671 handle_t *handle;
3672
Mingming Cao617ba132006-10-11 01:20:53 -07003673 handle = ext4_journal_start(dquot_to_inode(dquot),
3674 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003675 if (IS_ERR(handle)) {
3676 /* Release dquot anyway to avoid endless cycle in dqput() */
3677 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003678 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003679 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003680 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003681 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682 if (!ret)
3683 ret = err;
3684 return ret;
3685}
3686
Mingming Cao617ba132006-10-11 01:20:53 -07003687static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003688{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003689 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003690 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3691 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003693 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003694 } else {
3695 return dquot_mark_dquot_dirty(dquot);
3696 }
3697}
3698
Mingming Cao617ba132006-10-11 01:20:53 -07003699static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003700{
3701 int ret, err;
3702 handle_t *handle;
3703
3704 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003705 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003706 if (IS_ERR(handle))
3707 return PTR_ERR(handle);
3708 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003709 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 if (!ret)
3711 ret = err;
3712 return ret;
3713}
3714
3715/*
3716 * Turn on quotas during mount time - we need to find
3717 * the quota file and such...
3718 */
Mingming Cao617ba132006-10-11 01:20:53 -07003719static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003720{
Mingming Cao617ba132006-10-11 01:20:53 -07003721 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3722 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003723}
3724
3725/*
3726 * Standard function to be called on quota_on
3727 */
Mingming Cao617ba132006-10-11 01:20:53 -07003728static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003729 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003730{
3731 int err;
Al Viro82646132008-08-02 00:57:06 -04003732 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003733
3734 if (!test_opt(sb, QUOTA))
3735 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003736 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003737 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003738 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003739
Al Viro82646132008-08-02 00:57:06 -04003740 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003741 if (err)
3742 return err;
Jan Kara06235432008-05-13 19:11:51 -04003743
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003744 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003745 if (path.mnt->mnt_sb != sb) {
3746 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003747 return -EXDEV;
3748 }
Jan Kara06235432008-05-13 19:11:51 -04003749 /* Journaling quota? */
3750 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003751 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003752 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003753 printk(KERN_WARNING
3754 "EXT4-fs: Quota file not on filesystem root. "
3755 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003756 }
Jan Kara06235432008-05-13 19:11:51 -04003757
3758 /*
3759 * When we journal data on quota file, we have to flush journal to see
3760 * all updates to the file when we bypass pagecache...
3761 */
Frank Mayhar03901312009-01-07 00:06:22 -05003762 if (EXT4_SB(sb)->s_journal &&
3763 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003764 /*
3765 * We don't need to lock updates but journal_flush() could
3766 * otherwise be livelocked...
3767 */
3768 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003769 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003770 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003771 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003772 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003773 return err;
3774 }
Jan Kara06235432008-05-13 19:11:51 -04003775 }
3776
Al Viro82646132008-08-02 00:57:06 -04003777 err = vfs_quota_on_path(sb, type, format_id, &path);
3778 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003779 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003780}
3781
3782/* Read data from quotafile - avoid pagecache and such because we cannot afford
3783 * acquiring the locks... As quota files are never truncated and quota code
3784 * itself serializes the operations (and noone else should touch the files)
3785 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003786static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003787 size_t len, loff_t off)
3788{
3789 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003790 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003791 int err = 0;
3792 int offset = off & (sb->s_blocksize - 1);
3793 int tocopy;
3794 size_t toread;
3795 struct buffer_head *bh;
3796 loff_t i_size = i_size_read(inode);
3797
3798 if (off > i_size)
3799 return 0;
3800 if (off+len > i_size)
3801 len = i_size-off;
3802 toread = len;
3803 while (toread > 0) {
3804 tocopy = sb->s_blocksize - offset < toread ?
3805 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003806 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003807 if (err)
3808 return err;
3809 if (!bh) /* A hole? */
3810 memset(data, 0, tocopy);
3811 else
3812 memcpy(data, bh->b_data+offset, tocopy);
3813 brelse(bh);
3814 offset = 0;
3815 toread -= tocopy;
3816 data += tocopy;
3817 blk++;
3818 }
3819 return len;
3820}
3821
3822/* Write to quotafile (we know the transaction is already started and has
3823 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003824static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825 const char *data, size_t len, loff_t off)
3826{
3827 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003828 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829 int err = 0;
3830 int offset = off & (sb->s_blocksize - 1);
3831 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003832 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003833 size_t towrite = len;
3834 struct buffer_head *bh;
3835 handle_t *handle = journal_current_handle();
3836
Frank Mayhar03901312009-01-07 00:06:22 -05003837 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003838 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003839 " cancelled because transaction is not started.\n",
3840 (unsigned long long)off, (unsigned long long)len);
3841 return -EIO;
3842 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003843 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3844 while (towrite > 0) {
3845 tocopy = sb->s_blocksize - offset < towrite ?
3846 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003847 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003848 if (!bh)
3849 goto out;
3850 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003851 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003852 if (err) {
3853 brelse(bh);
3854 goto out;
3855 }
3856 }
3857 lock_buffer(bh);
3858 memcpy(bh->b_data+offset, data, tocopy);
3859 flush_dcache_page(bh->b_page);
3860 unlock_buffer(bh);
3861 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003862 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003863 else {
3864 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003865 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003866 mark_buffer_dirty(bh);
3867 }
3868 brelse(bh);
3869 if (err)
3870 goto out;
3871 offset = 0;
3872 towrite -= tocopy;
3873 data += tocopy;
3874 blk++;
3875 }
3876out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003877 if (len == towrite) {
3878 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003879 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003880 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003881 if (inode->i_size < off+len-towrite) {
3882 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003883 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003884 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003885 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003886 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003887 mutex_unlock(&inode->i_mutex);
3888 return len - towrite;
3889}
3890
3891#endif
3892
Mingming Cao617ba132006-10-11 01:20:53 -07003893static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003894 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3895{
Mingming Cao617ba132006-10-11 01:20:53 -07003896 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003897}
3898
Theodore Ts'o03010a32008-10-10 20:02:48 -04003899static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003900 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003901 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003902 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003903 .kill_sb = kill_block_super,
3904 .fs_flags = FS_REQUIRES_DEV,
3905};
3906
Theodore Ts'o03010a32008-10-10 20:02:48 -04003907#ifdef CONFIG_EXT4DEV_COMPAT
3908static int ext4dev_get_sb(struct file_system_type *fs_type,
3909 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3910{
3911 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3912 "to mount using ext4\n");
3913 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3914 "will go away by 2.6.31\n");
3915 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3916}
3917
3918static struct file_system_type ext4dev_fs_type = {
3919 .owner = THIS_MODULE,
3920 .name = "ext4dev",
3921 .get_sb = ext4dev_get_sb,
3922 .kill_sb = kill_block_super,
3923 .fs_flags = FS_REQUIRES_DEV,
3924};
3925MODULE_ALIAS("ext4dev");
3926#endif
3927
Mingming Cao617ba132006-10-11 01:20:53 -07003928static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003929{
Alex Tomasc9de5602008-01-29 00:19:52 -05003930 int err;
3931
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003932 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3933 if (!ext4_kset)
3934 return -ENOMEM;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003935 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003936 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003937 if (err)
3938 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003939
3940 err = init_ext4_xattr();
3941 if (err)
3942 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003943 err = init_inodecache();
3944 if (err)
3945 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003946 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003947 if (err)
3948 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003949#ifdef CONFIG_EXT4DEV_COMPAT
3950 err = register_filesystem(&ext4dev_fs_type);
3951 if (err) {
3952 unregister_filesystem(&ext4_fs_type);
3953 goto out;
3954 }
3955#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003956 return 0;
3957out:
3958 destroy_inodecache();
3959out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003960 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003961out2:
3962 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003963 return err;
3964}
3965
Mingming Cao617ba132006-10-11 01:20:53 -07003966static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003967{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003968 unregister_filesystem(&ext4_fs_type);
3969#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003970 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003971#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003972 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003973 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003974 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003975 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003976 kset_unregister(ext4_kset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003977}
3978
3979MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05003980MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003981MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003982module_init(init_ext4_fs)
3983module_exit(exit_ext4_fs)