blob: 1ec554cc107a2554c55aa4b99cd37d04f8b94b3d [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070023#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/blkdev.h>
27#include <linux/parser.h>
28#include <linux/smp_lock.h>
29#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070030#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/vfs.h>
32#include <linux/random.h>
33#include <linux/mount.h>
34#include <linux/namei.h>
35#include <linux/quotaops.h>
36#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040037#include <linux/proc_fs.h>
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040038#include <linux/ctype.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040039#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040040#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040041#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070042#include <asm/uaccess.h>
43
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4.h"
45#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070046#include "xattr.h"
47#include "acl.h"
48#include "namei.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040049#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070050
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040051struct proc_dir_entry *ext4_proc_root;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040052static struct kset *ext4_kset;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040053
Mingming Cao617ba132006-10-11 01:20:53 -070054static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070055 unsigned long journal_devnum);
Takashi Satoc4be0c12009-01-09 16:40:58 -080056static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040057 struct ext4_super_block *es, int sync);
58static void ext4_mark_recovery_complete(struct super_block *sb,
59 struct ext4_super_block *es);
60static void ext4_clear_journal_err(struct super_block *sb,
61 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070062static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040063static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070064 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040065static int ext4_remount(struct super_block *sb, int *flags, char *data);
66static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
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 }
Mingming Cao617ba132006-10-11 01:20:53 -0700308 ext4_commit_super(sb, es, 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);
450 ext4_commit_super(sb, es, 0);
451 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);
Mingming Cao617ba132006-10-11 01:20:53 -0700579 ext4_commit_super(sb, es, 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);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400589 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 percpu_counter_destroy(&sbi->s_freeblocks_counter);
591 percpu_counter_destroy(&sbi->s_freeinodes_counter);
592 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400593 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700594 brelse(sbi->s_sbh);
595#ifdef CONFIG_QUOTA
596 for (i = 0; i < MAXQUOTAS; i++)
597 kfree(sbi->s_qf_names[i]);
598#endif
599
600 /* Debugging code just in case the in-memory inode orphan list
601 * isn't empty. The on-disk one can be non-empty if we've
602 * detected an error and taken the fs readonly, but the
603 * in-memory list had better be clean by this point. */
604 if (!list_empty(&sbi->s_orphan))
605 dump_orphan_list(sb, sbi);
606 J_ASSERT(list_empty(&sbi->s_orphan));
607
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700608 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700609 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
610 /*
611 * Invalidate the journal device's buffers. We don't want them
612 * floating about in memory - the physical journal device may
613 * hotswapped, and it breaks the `ro-after' testing code.
614 */
615 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700616 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700617 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618 }
619 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400620 /*
621 * Now that we are completely done shutting down the
622 * superblock, we need to actually destroy the kobject.
623 */
624 unlock_kernel();
625 unlock_super(sb);
626 kobject_put(&sbi->s_kobj);
627 wait_for_completion(&sbi->s_kobj_unregister);
628 lock_super(sb);
629 lock_kernel();
Pekka Enberg705895b2009-02-15 18:07:52 -0500630 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 kfree(sbi);
632 return;
633}
634
Christoph Lametere18b8902006-12-06 20:33:20 -0800635static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700636
637/*
638 * Called inside transaction, so use GFP_NOFS
639 */
Mingming Cao617ba132006-10-11 01:20:53 -0700640static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700641{
Mingming Cao617ba132006-10-11 01:20:53 -0700642 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700643
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800644 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 if (!ei)
646 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400647#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700648 ei->i_acl = EXT4_ACL_NOT_CACHED;
649 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700650#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400652 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700653 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500654 INIT_LIST_HEAD(&ei->i_prealloc_list);
655 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500656 /*
657 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
658 * therefore it can be null here. Don't check it, just initialize
659 * jinode.
660 */
Jan Kara678aaf42008-07-11 19:27:31 -0400661 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400662 ei->i_reserved_data_blocks = 0;
663 ei->i_reserved_meta_blocks = 0;
664 ei->i_allocated_meta_blocks = 0;
665 ei->i_delalloc_reserved_flag = 0;
666 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700667 return &ei->vfs_inode;
668}
669
Mingming Cao617ba132006-10-11 01:20:53 -0700670static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700672 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
673 printk("EXT4 Inode %p: orphan list check failed!\n",
674 EXT4_I(inode));
675 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
676 EXT4_I(inode), sizeof(struct ext4_inode_info),
677 true);
678 dump_stack();
679 }
Mingming Cao617ba132006-10-11 01:20:53 -0700680 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700681}
682
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700683static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700684{
Mingming Cao617ba132006-10-11 01:20:53 -0700685 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686
Christoph Lametera35afb82007-05-16 22:10:57 -0700687 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400688#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700689 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500691 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700692 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700693}
694
695static int init_inodecache(void)
696{
Mingming Cao617ba132006-10-11 01:20:53 -0700697 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
698 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 0, (SLAB_RECLAIM_ACCOUNT|
700 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900701 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700702 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 return -ENOMEM;
704 return 0;
705}
706
707static void destroy_inodecache(void)
708{
Mingming Cao617ba132006-10-11 01:20:53 -0700709 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700710}
711
Mingming Cao617ba132006-10-11 01:20:53 -0700712static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400714#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700715 if (EXT4_I(inode)->i_acl &&
716 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
717 posix_acl_release(EXT4_I(inode)->i_acl);
718 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700719 }
Mingming Cao617ba132006-10-11 01:20:53 -0700720 if (EXT4_I(inode)->i_default_acl &&
721 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
722 posix_acl_release(EXT4_I(inode)->i_default_acl);
723 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 }
725#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400726 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500727 if (EXT4_JOURNAL(inode))
728 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400729 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700730}
731
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400732static inline void ext4_show_quota_options(struct seq_file *seq,
733 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734{
735#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700736 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737
738 if (sbi->s_jquota_fmt)
739 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400740 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741
742 if (sbi->s_qf_names[USRQUOTA])
743 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
744
745 if (sbi->s_qf_names[GRPQUOTA])
746 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
747
Mingming Cao617ba132006-10-11 01:20:53 -0700748 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700749 seq_puts(seq, ",usrquota");
750
Mingming Cao617ba132006-10-11 01:20:53 -0700751 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 seq_puts(seq, ",grpquota");
753#endif
754}
755
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700756/*
757 * Show an option if
758 * - it's set to a non-default value OR
759 * - if the per-sb default is different from the global default
760 */
Mingming Cao617ba132006-10-11 01:20:53 -0700761static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700762{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500763 int def_errors;
764 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700765 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700766 struct ext4_sb_info *sbi = EXT4_SB(sb);
767 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700768
769 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500770 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700771
772 if (sbi->s_sb_block != 1)
773 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
774 if (test_opt(sb, MINIX_DF))
775 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500776 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700777 seq_puts(seq, ",grpid");
778 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
779 seq_puts(seq, ",nogrpid");
780 if (sbi->s_resuid != EXT4_DEF_RESUID ||
781 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
782 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
783 }
784 if (sbi->s_resgid != EXT4_DEF_RESGID ||
785 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
786 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
787 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500788 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700789 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500790 def_errors == EXT4_ERRORS_CONTINUE) {
791 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700792 }
793 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500794 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500795 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500796 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700797 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500798 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700799 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500800 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700801 seq_puts(seq, ",debug");
802 if (test_opt(sb, OLDALLOC))
803 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400804#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500805 if (test_opt(sb, XATTR_USER) &&
806 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700807 seq_puts(seq, ",user_xattr");
808 if (!test_opt(sb, XATTR_USER) &&
809 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
810 seq_puts(seq, ",nouser_xattr");
811 }
812#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400813#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500814 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700815 seq_puts(seq, ",acl");
816 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
817 seq_puts(seq, ",noacl");
818#endif
819 if (!test_opt(sb, RESERVATION))
820 seq_puts(seq, ",noreservation");
Theodore Ts'o30773842009-01-03 20:27:38 -0500821 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700822 seq_printf(seq, ",commit=%u",
823 (unsigned) (sbi->s_commit_interval / HZ));
824 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500825 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
826 seq_printf(seq, ",min_batch_time=%u",
827 (unsigned) sbi->s_min_batch_time);
828 }
829 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
830 seq_printf(seq, ",max_batch_time=%u",
831 (unsigned) sbi->s_min_batch_time);
832 }
833
Eric Sandeen571640c2008-05-26 12:29:46 -0400834 /*
835 * We're changing the default of barrier mount option, so
836 * let's always display its mount state so it's clear what its
837 * status is.
838 */
839 seq_puts(seq, ",barrier=");
840 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400841 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
842 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700843 if (test_opt(sb, NOBH))
844 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500845 if (test_opt(sb, I_VERSION))
846 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400847 if (!test_opt(sb, DELALLOC))
848 seq_puts(seq, ",nodelalloc");
849
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500851 if (sbi->s_stripe)
852 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500853 /*
854 * journal mode get enabled in different ways
855 * So just print the value even if we didn't specify it
856 */
Mingming Cao617ba132006-10-11 01:20:53 -0700857 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700859 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700860 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700861 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700862 seq_puts(seq, ",data=writeback");
863
Theodore Ts'o240799c2008-10-09 23:53:47 -0400864 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
865 seq_printf(seq, ",inode_readahead_blks=%u",
866 sbi->s_inode_readahead_blks);
867
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400868 if (test_opt(sb, DATA_ERR_ABORT))
869 seq_puts(seq, ",data_err=abort");
870
Mingming Cao617ba132006-10-11 01:20:53 -0700871 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700872 return 0;
873}
874
875
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700876static struct inode *ext4_nfs_get_inode(struct super_block *sb,
877 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880
Mingming Cao617ba132006-10-11 01:20:53 -0700881 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700882 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700883 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700884 return ERR_PTR(-ESTALE);
885
886 /* iget isn't really right if the inode is currently unallocated!!
887 *
Mingming Cao617ba132006-10-11 01:20:53 -0700888 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700889 * deleted, so we should be safe.
890 *
891 * Currently we don't know the generation for parent directory, so
892 * a generation of 0 means "accept any"
893 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800894 inode = ext4_iget(sb, ino);
895 if (IS_ERR(inode))
896 return ERR_CAST(inode);
897 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700898 iput(inode);
899 return ERR_PTR(-ESTALE);
900 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700901
902 return inode;
903}
904
905static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
906 int fh_len, int fh_type)
907{
908 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
909 ext4_nfs_get_inode);
910}
911
912static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
913 int fh_len, int fh_type)
914{
915 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
916 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700917}
918
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500919/*
920 * Try to release metadata pages (indirect blocks, directories) which are
921 * mapped via the block device. Since these pages could have journal heads
922 * which would prevent try_to_free_buffers() from freeing them, we must use
923 * jbd2 layer's try_to_free_buffers() function to release them.
924 */
925static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
926{
927 journal_t *journal = EXT4_SB(sb)->s_journal;
928
929 WARN_ON(PageChecked(page));
930 if (!page_has_buffers(page))
931 return 0;
932 if (journal)
933 return jbd2_journal_try_to_free_buffers(journal, page,
934 wait & ~__GFP_WAIT);
935 return try_to_free_buffers(page);
936}
937
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700938#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400939#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400940#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700941
Mingming Cao617ba132006-10-11 01:20:53 -0700942static int ext4_write_dquot(struct dquot *dquot);
943static int ext4_acquire_dquot(struct dquot *dquot);
944static int ext4_release_dquot(struct dquot *dquot);
945static int ext4_mark_dquot_dirty(struct dquot *dquot);
946static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700947static int ext4_quota_on(struct super_block *sb, int type, int format_id,
948 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700949static int ext4_quota_on_mount(struct super_block *sb, int type);
950static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700952static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700953 const char *data, size_t len, loff_t off);
954
Mingming Cao617ba132006-10-11 01:20:53 -0700955static struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +0100956 .initialize = dquot_initialize,
957 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700958 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +0100959 .reserve_space = dquot_reserve_space,
960 .claim_space = dquot_claim_space,
961 .release_rsv = dquot_release_reserved_space,
962 .get_reserved_space = ext4_get_reserved_space,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 .alloc_inode = dquot_alloc_inode,
964 .free_space = dquot_free_space,
965 .free_inode = dquot_free_inode,
966 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700967 .write_dquot = ext4_write_dquot,
968 .acquire_dquot = ext4_acquire_dquot,
969 .release_dquot = ext4_release_dquot,
970 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +0100971 .write_info = ext4_write_info,
972 .alloc_dquot = dquot_alloc,
973 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700974};
975
Mingming Cao617ba132006-10-11 01:20:53 -0700976static struct quotactl_ops ext4_qctl_operations = {
977 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700978 .quota_off = vfs_quota_off,
979 .quota_sync = vfs_quota_sync,
980 .get_info = vfs_get_dqinfo,
981 .set_info = vfs_set_dqinfo,
982 .get_dqblk = vfs_get_dqblk,
983 .set_dqblk = vfs_set_dqblk
984};
985#endif
986
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800987static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700988 .alloc_inode = ext4_alloc_inode,
989 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700990 .write_inode = ext4_write_inode,
991 .dirty_inode = ext4_dirty_inode,
992 .delete_inode = ext4_delete_inode,
993 .put_super = ext4_put_super,
994 .write_super = ext4_write_super,
995 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800996 .freeze_fs = ext4_freeze,
997 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -0700998 .statfs = ext4_statfs,
999 .remount_fs = ext4_remount,
1000 .clear_inode = ext4_clear_inode,
1001 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001002#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001003 .quota_read = ext4_quota_read,
1004 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001005#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001006 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001007};
1008
Christoph Hellwig39655162007-10-21 16:42:17 -07001009static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001010 .fh_to_dentry = ext4_fh_to_dentry,
1011 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001012 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001013};
1014
1015enum {
1016 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1017 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001018 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001019 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
1020 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001021 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001022 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001023 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001024 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001025 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001026 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1027 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
1028 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
Theodore Ts'o83982b62009-01-06 14:53:16 -05001029 Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001030 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001031 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001032};
1033
Steven Whitehousea447c092008-10-13 10:46:57 +01001034static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001035 {Opt_bsd_df, "bsddf"},
1036 {Opt_minix_df, "minixdf"},
1037 {Opt_grpid, "grpid"},
1038 {Opt_grpid, "bsdgroups"},
1039 {Opt_nogrpid, "nogrpid"},
1040 {Opt_nogrpid, "sysvgroups"},
1041 {Opt_resgid, "resgid=%u"},
1042 {Opt_resuid, "resuid=%u"},
1043 {Opt_sb, "sb=%u"},
1044 {Opt_err_cont, "errors=continue"},
1045 {Opt_err_panic, "errors=panic"},
1046 {Opt_err_ro, "errors=remount-ro"},
1047 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048 {Opt_debug, "debug"},
1049 {Opt_oldalloc, "oldalloc"},
1050 {Opt_orlov, "orlov"},
1051 {Opt_user_xattr, "user_xattr"},
1052 {Opt_nouser_xattr, "nouser_xattr"},
1053 {Opt_acl, "acl"},
1054 {Opt_noacl, "noacl"},
1055 {Opt_reservation, "reservation"},
1056 {Opt_noreservation, "noreservation"},
1057 {Opt_noload, "noload"},
1058 {Opt_nobh, "nobh"},
1059 {Opt_bh, "bh"},
1060 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001061 {Opt_min_batch_time, "min_batch_time=%u"},
1062 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001063 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001064 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001065 {Opt_journal_checksum, "journal_checksum"},
1066 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001067 {Opt_abort, "abort"},
1068 {Opt_data_journal, "data=journal"},
1069 {Opt_data_ordered, "data=ordered"},
1070 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001071 {Opt_data_err_abort, "data_err=abort"},
1072 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001073 {Opt_offusrjquota, "usrjquota="},
1074 {Opt_usrjquota, "usrjquota=%s"},
1075 {Opt_offgrpjquota, "grpjquota="},
1076 {Opt_grpjquota, "grpjquota=%s"},
1077 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1078 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1079 {Opt_grpquota, "grpquota"},
1080 {Opt_noquota, "noquota"},
1081 {Opt_quota, "quota"},
1082 {Opt_usrquota, "usrquota"},
1083 {Opt_barrier, "barrier=%u"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001084 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001085 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001086 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001087 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001088 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001089 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001090 {Opt_journal_ioprio, "journal_ioprio=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001091 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001092};
1093
Mingming Cao617ba132006-10-11 01:20:53 -07001094static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001095{
Mingming Cao617ba132006-10-11 01:20:53 -07001096 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097 char *options = (char *) *data;
1098
1099 if (!options || strncmp(options, "sb=", 3) != 0)
1100 return 1; /* Default location */
1101 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001102 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001103 sb_block = simple_strtoul(options, &options, 0);
1104 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001105 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001106 (char *) *data);
1107 return 1;
1108 }
1109 if (*options == ',')
1110 options++;
1111 *data = (void *) options;
1112 return sb_block;
1113}
1114
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001115#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1116
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001117static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001118 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001119 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001120 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001121{
Mingming Cao617ba132006-10-11 01:20:53 -07001122 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001123 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001124 substring_t args[MAX_OPT_ARGS];
1125 int data_opt = 0;
1126 int option;
1127#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001128 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129 char *qname;
1130#endif
1131
1132 if (!options)
1133 return 1;
1134
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001135 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136 int token;
1137 if (!*p)
1138 continue;
1139
1140 token = match_token(p, tokens, args);
1141 switch (token) {
1142 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001143 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001144 break;
1145 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001146 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001147 break;
1148 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001149 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001150 break;
1151 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001152 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001153 break;
1154 case Opt_resuid:
1155 if (match_int(&args[0], &option))
1156 return 0;
1157 sbi->s_resuid = option;
1158 break;
1159 case Opt_resgid:
1160 if (match_int(&args[0], &option))
1161 return 0;
1162 sbi->s_resgid = option;
1163 break;
1164 case Opt_sb:
1165 /* handled by get_sb_block() instead of here */
1166 /* *sb_block = match_int(&args[0]); */
1167 break;
1168 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001169 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1170 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1171 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 break;
1173 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001174 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1175 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1176 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001177 break;
1178 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001179 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1180 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1181 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 break;
1183 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001184 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001185 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001186 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001187 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188 break;
1189 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001190 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001191 break;
1192 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001193 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001195#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001196 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001197 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001198 break;
1199 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001200 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001201 break;
1202#else
1203 case Opt_user_xattr:
1204 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001205 printk(KERN_ERR "EXT4 (no)user_xattr options "
1206 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001207 break;
1208#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001209#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001210 case Opt_acl:
1211 set_opt(sbi->s_mount_opt, POSIX_ACL);
1212 break;
1213 case Opt_noacl:
1214 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1215 break;
1216#else
1217 case Opt_acl:
1218 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001219 printk(KERN_ERR "EXT4 (no)acl options "
1220 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001221 break;
1222#endif
1223 case Opt_reservation:
1224 set_opt(sbi->s_mount_opt, RESERVATION);
1225 break;
1226 case Opt_noreservation:
1227 clear_opt(sbi->s_mount_opt, RESERVATION);
1228 break;
1229 case Opt_journal_update:
1230 /* @@@ FIXME */
1231 /* Eventually we will want to be able to create
1232 a journal file here. For now, only allow the
1233 user to specify an existing inode to be the
1234 journal file. */
1235 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001236 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001237 "journal on remount\n");
1238 return 0;
1239 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001240 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001241 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001242 case Opt_journal_dev:
1243 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001244 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001245 "journal on remount\n");
1246 return 0;
1247 }
1248 if (match_int(&args[0], &option))
1249 return 0;
1250 *journal_devnum = option;
1251 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001252 case Opt_journal_checksum:
1253 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1254 break;
1255 case Opt_journal_async_commit:
1256 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1257 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1258 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001259 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001260 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001261 break;
1262 case Opt_commit:
1263 if (match_int(&args[0], &option))
1264 return 0;
1265 if (option < 0)
1266 return 0;
1267 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001268 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001269 sbi->s_commit_interval = HZ * option;
1270 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001271 case Opt_max_batch_time:
1272 if (match_int(&args[0], &option))
1273 return 0;
1274 if (option < 0)
1275 return 0;
1276 if (option == 0)
1277 option = EXT4_DEF_MAX_BATCH_TIME;
1278 sbi->s_max_batch_time = option;
1279 break;
1280 case Opt_min_batch_time:
1281 if (match_int(&args[0], &option))
1282 return 0;
1283 if (option < 0)
1284 return 0;
1285 sbi->s_min_batch_time = option;
1286 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001287 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001288 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001289 goto datacheck;
1290 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001291 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001292 goto datacheck;
1293 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001294 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001295 datacheck:
1296 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001297 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001298 != data_opt) {
1299 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001300 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001301 "mode on remount\n");
1302 return 0;
1303 }
1304 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001305 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001306 sbi->s_mount_opt |= data_opt;
1307 }
1308 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001309 case Opt_data_err_abort:
1310 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1311 break;
1312 case Opt_data_err_ignore:
1313 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1314 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315#ifdef CONFIG_QUOTA
1316 case Opt_usrjquota:
1317 qtype = USRQUOTA;
1318 goto set_qf_name;
1319 case Opt_grpjquota:
1320 qtype = GRPQUOTA;
1321set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001322 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001323 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001324 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001325 "EXT4-fs: Cannot change journaled "
1326 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001327 return 0;
1328 }
1329 qname = match_strdup(&args[0]);
1330 if (!qname) {
1331 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001332 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001333 "storing quotafile name.\n");
1334 return 0;
1335 }
1336 if (sbi->s_qf_names[qtype] &&
1337 strcmp(sbi->s_qf_names[qtype], qname)) {
1338 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001339 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001340 "specified.\n", QTYPE2NAME(qtype));
1341 kfree(qname);
1342 return 0;
1343 }
1344 sbi->s_qf_names[qtype] = qname;
1345 if (strchr(sbi->s_qf_names[qtype], '/')) {
1346 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001347 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001348 "filesystem root.\n");
1349 kfree(sbi->s_qf_names[qtype]);
1350 sbi->s_qf_names[qtype] = NULL;
1351 return 0;
1352 }
1353 set_opt(sbi->s_mount_opt, QUOTA);
1354 break;
1355 case Opt_offusrjquota:
1356 qtype = USRQUOTA;
1357 goto clear_qf_name;
1358 case Opt_offgrpjquota:
1359 qtype = GRPQUOTA;
1360clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001361 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001362 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001363 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001364 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 "quota turned on.\n");
1366 return 0;
1367 }
1368 /*
1369 * The space will be released later when all options
1370 * are confirmed to be correct
1371 */
1372 sbi->s_qf_names[qtype] = NULL;
1373 break;
1374 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001375 qfmt = QFMT_VFS_OLD;
1376 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001377 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001378 qfmt = QFMT_VFS_V0;
1379set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001380 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001381 sbi->s_jquota_fmt != qfmt) {
1382 printk(KERN_ERR "EXT4-fs: Cannot change "
1383 "journaled quota options when "
1384 "quota turned on.\n");
1385 return 0;
1386 }
1387 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001388 break;
1389 case Opt_quota:
1390 case Opt_usrquota:
1391 set_opt(sbi->s_mount_opt, QUOTA);
1392 set_opt(sbi->s_mount_opt, USRQUOTA);
1393 break;
1394 case Opt_grpquota:
1395 set_opt(sbi->s_mount_opt, QUOTA);
1396 set_opt(sbi->s_mount_opt, GRPQUOTA);
1397 break;
1398 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001399 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001400 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001401 "options when quota turned on.\n");
1402 return 0;
1403 }
1404 clear_opt(sbi->s_mount_opt, QUOTA);
1405 clear_opt(sbi->s_mount_opt, USRQUOTA);
1406 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1407 break;
1408#else
1409 case Opt_quota:
1410 case Opt_usrquota:
1411 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001412 printk(KERN_ERR
1413 "EXT4-fs: quota options not supported.\n");
1414 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001415 case Opt_usrjquota:
1416 case Opt_grpjquota:
1417 case Opt_offusrjquota:
1418 case Opt_offgrpjquota:
1419 case Opt_jqfmt_vfsold:
1420 case Opt_jqfmt_vfsv0:
1421 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001422 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001423 "supported.\n");
1424 break;
1425 case Opt_noquota:
1426 break;
1427#endif
1428 case Opt_abort:
1429 set_opt(sbi->s_mount_opt, ABORT);
1430 break;
1431 case Opt_barrier:
1432 if (match_int(&args[0], &option))
1433 return 0;
1434 if (option)
1435 set_opt(sbi->s_mount_opt, BARRIER);
1436 else
1437 clear_opt(sbi->s_mount_opt, BARRIER);
1438 break;
1439 case Opt_ignore:
1440 break;
1441 case Opt_resize:
1442 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001443 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001444 "for remount\n");
1445 return 0;
1446 }
1447 if (match_int(&args[0], &option) != 0)
1448 return 0;
1449 *n_blocks_count = option;
1450 break;
1451 case Opt_nobh:
1452 set_opt(sbi->s_mount_opt, NOBH);
1453 break;
1454 case Opt_bh:
1455 clear_opt(sbi->s_mount_opt, NOBH);
1456 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001457 case Opt_i_version:
1458 set_opt(sbi->s_mount_opt, I_VERSION);
1459 sb->s_flags |= MS_I_VERSION;
1460 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001461 case Opt_nodelalloc:
1462 clear_opt(sbi->s_mount_opt, DELALLOC);
1463 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001464 case Opt_stripe:
1465 if (match_int(&args[0], &option))
1466 return 0;
1467 if (option < 0)
1468 return 0;
1469 sbi->s_stripe = option;
1470 break;
Alex Tomas64769242008-07-11 19:27:31 -04001471 case Opt_delalloc:
1472 set_opt(sbi->s_mount_opt, DELALLOC);
1473 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001474 case Opt_inode_readahead_blks:
1475 if (match_int(&args[0], &option))
1476 return 0;
1477 if (option < 0 || option > (1 << 30))
1478 return 0;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001479 if (option & (option - 1)) {
1480 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1481 " must be a power of 2\n");
1482 return 0;
1483 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001484 sbi->s_inode_readahead_blks = option;
1485 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001486 case Opt_journal_ioprio:
1487 if (match_int(&args[0], &option))
1488 return 0;
1489 if (option < 0 || option > 7)
1490 break;
1491 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1492 option);
1493 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001494 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001495 printk(KERN_ERR
1496 "EXT4-fs: Unrecognized mount option \"%s\" "
1497 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001498 return 0;
1499 }
1500 }
1501#ifdef CONFIG_QUOTA
1502 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001503 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001504 sbi->s_qf_names[USRQUOTA])
1505 clear_opt(sbi->s_mount_opt, USRQUOTA);
1506
Mingming Cao617ba132006-10-11 01:20:53 -07001507 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001508 sbi->s_qf_names[GRPQUOTA])
1509 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1510
1511 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001512 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001513 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001514 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1515 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001516 "format mixing.\n");
1517 return 0;
1518 }
1519
1520 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001521 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001522 "not specified.\n");
1523 return 0;
1524 }
1525 } else {
1526 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001527 printk(KERN_ERR "EXT4-fs: journaled quota format "
1528 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001529 "enabled.\n");
1530 return 0;
1531 }
1532 }
1533#endif
1534 return 1;
1535}
1536
Mingming Cao617ba132006-10-11 01:20:53 -07001537static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001538 int read_only)
1539{
Mingming Cao617ba132006-10-11 01:20:53 -07001540 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001541 int res = 0;
1542
Mingming Cao617ba132006-10-11 01:20:53 -07001543 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001544 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1545 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001546 res = MS_RDONLY;
1547 }
1548 if (read_only)
1549 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001550 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001551 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1552 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001553 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001554 printk(KERN_WARNING
1555 "EXT4-fs warning: mounting fs with errors, "
1556 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001557 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1558 le16_to_cpu(es->s_mnt_count) >=
1559 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001560 printk(KERN_WARNING
1561 "EXT4-fs warning: maximal mount count reached, "
1562 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001563 else if (le32_to_cpu(es->s_checkinterval) &&
1564 (le32_to_cpu(es->s_lastcheck) +
1565 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001566 printk(KERN_WARNING
1567 "EXT4-fs warning: checktime reached, "
1568 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001569 if (!sbi->s_journal)
1570 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001571 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001572 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001573 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001574 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001575 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001576 if (sbi->s_journal)
1577 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001578
Mingming Cao617ba132006-10-11 01:20:53 -07001579 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001580 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001581 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001582 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1583 sb->s_blocksize,
1584 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001585 EXT4_BLOCKS_PER_GROUP(sb),
1586 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001587 sbi->s_mount_opt);
1588
Frank Mayhar03901312009-01-07 00:06:22 -05001589 if (EXT4_SB(sb)->s_journal) {
1590 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1591 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1592 "external", EXT4_SB(sb)->s_journal->j_devname);
1593 } else {
1594 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1595 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001596 return res;
1597}
1598
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001599static int ext4_fill_flex_info(struct super_block *sb)
1600{
1601 struct ext4_sb_info *sbi = EXT4_SB(sb);
1602 struct ext4_group_desc *gdp = NULL;
1603 struct buffer_head *bh;
1604 ext4_group_t flex_group_count;
1605 ext4_group_t flex_group;
1606 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001607 int i;
1608
1609 if (!sbi->s_es->s_log_groups_per_flex) {
1610 sbi->s_log_groups_per_flex = 0;
1611 return 1;
1612 }
1613
1614 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1615 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1616
Frederic Bohec62a11f2008-09-08 10:20:24 -04001617 /* We allocate both existing and potentially added groups */
1618 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001619 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1620 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001621 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001622 sizeof(struct flex_groups), GFP_KERNEL);
1623 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001624 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001625 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001626 goto failed;
1627 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001628
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001629 for (i = 0; i < sbi->s_groups_count; i++) {
1630 gdp = ext4_get_group_desc(sb, i, &bh);
1631
1632 flex_group = ext4_flex_group(sbi, i);
1633 sbi->s_flex_groups[flex_group].free_inodes +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001634 ext4_free_inodes_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001635 sbi->s_flex_groups[flex_group].free_blocks +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001636 ext4_free_blks_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001637 }
1638
1639 return 1;
1640failed:
1641 return 0;
1642}
1643
Andreas Dilger717d50e2007-10-16 18:38:25 -04001644__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1645 struct ext4_group_desc *gdp)
1646{
1647 __u16 crc = 0;
1648
1649 if (sbi->s_es->s_feature_ro_compat &
1650 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1651 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1652 __le32 le_group = cpu_to_le32(block_group);
1653
1654 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1655 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1656 crc = crc16(crc, (__u8 *)gdp, offset);
1657 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1658 /* for checksum of struct ext4_group_desc do the rest...*/
1659 if ((sbi->s_es->s_feature_incompat &
1660 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1661 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1662 crc = crc16(crc, (__u8 *)gdp + offset,
1663 le16_to_cpu(sbi->s_es->s_desc_size) -
1664 offset);
1665 }
1666
1667 return cpu_to_le16(crc);
1668}
1669
1670int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1671 struct ext4_group_desc *gdp)
1672{
1673 if ((sbi->s_es->s_feature_ro_compat &
1674 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1675 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1676 return 0;
1677
1678 return 1;
1679}
1680
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001681/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001682static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001683{
Mingming Cao617ba132006-10-11 01:20:53 -07001684 struct ext4_sb_info *sbi = EXT4_SB(sb);
1685 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1686 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001687 ext4_fsblk_t block_bitmap;
1688 ext4_fsblk_t inode_bitmap;
1689 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001690 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001691 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001692
Jose R. Santosce421582007-10-16 18:38:25 -04001693 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1694 flexbg_flag = 1;
1695
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001696 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001697
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001698 for (i = 0; i < sbi->s_groups_count; i++) {
1699 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1700
Jose R. Santosce421582007-10-16 18:38:25 -04001701 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001702 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001703 else
1704 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001705 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001706
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001707 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001708 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001709 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001710 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001711 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001712 return 0;
1713 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001714 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001715 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001716 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001717 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001718 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001719 return 0;
1720 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001721 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001722 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001723 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001724 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001725 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001726 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001727 return 0;
1728 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001729 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001730 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001731 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001732 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001733 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1734 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001735 if (!(sb->s_flags & MS_RDONLY)) {
1736 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001737 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001738 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001739 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001740 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001741 if (!flexbg_flag)
1742 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001743 }
1744
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001745 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001746 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001747 return 1;
1748}
1749
Mingming Cao617ba132006-10-11 01:20:53 -07001750/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001751 * the superblock) which were deleted from all directories, but held open by
1752 * a process at the time of a crash. We walk the list and try to delete these
1753 * inodes at recovery time (only with a read-write filesystem).
1754 *
1755 * In order to keep the orphan inode chain consistent during traversal (in
1756 * case of crash during recovery), we link each inode into the superblock
1757 * orphan list_head and handle it the same way as an inode deletion during
1758 * normal operation (which journals the operations for us).
1759 *
1760 * We only do an iget() and an iput() on each inode, which is very safe if we
1761 * accidentally point at an in-use or already deleted inode. The worst that
1762 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001763 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001764 * e2fsck was run on this filesystem, and it must have already done the orphan
1765 * inode cleanup for us, so we can safely abort without any further action.
1766 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001767static void ext4_orphan_cleanup(struct super_block *sb,
1768 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001769{
1770 unsigned int s_flags = sb->s_flags;
1771 int nr_orphans = 0, nr_truncates = 0;
1772#ifdef CONFIG_QUOTA
1773 int i;
1774#endif
1775 if (!es->s_last_orphan) {
1776 jbd_debug(4, "no orphan inodes to clean up\n");
1777 return;
1778 }
1779
Eric Sandeena8f48a92006-12-06 20:40:13 -08001780 if (bdev_read_only(sb->s_bdev)) {
1781 printk(KERN_ERR "EXT4-fs: write access "
1782 "unavailable, skipping orphan cleanup.\n");
1783 return;
1784 }
1785
Mingming Cao617ba132006-10-11 01:20:53 -07001786 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001787 if (es->s_last_orphan)
1788 jbd_debug(1, "Errors on filesystem, "
1789 "clearing orphan list.\n");
1790 es->s_last_orphan = 0;
1791 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1792 return;
1793 }
1794
1795 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001796 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001797 sb->s_id);
1798 sb->s_flags &= ~MS_RDONLY;
1799 }
1800#ifdef CONFIG_QUOTA
1801 /* Needed for iput() to work correctly and not trash data */
1802 sb->s_flags |= MS_ACTIVE;
1803 /* Turn on quotas so that they are updated correctly */
1804 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001805 if (EXT4_SB(sb)->s_qf_names[i]) {
1806 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001807 if (ret < 0)
1808 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001809 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001810 "quota: error %d\n", ret);
1811 }
1812 }
1813#endif
1814
1815 while (es->s_last_orphan) {
1816 struct inode *inode;
1817
Josef Bacik97bd42b2008-04-29 22:04:56 -04001818 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1819 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001820 es->s_last_orphan = 0;
1821 break;
1822 }
1823
Mingming Cao617ba132006-10-11 01:20:53 -07001824 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001825 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001826 if (inode->i_nlink) {
1827 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001828 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001829 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001830 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001831 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001832 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001833 nr_truncates++;
1834 } else {
1835 printk(KERN_DEBUG
1836 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001837 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001838 jbd_debug(2, "deleting unreferenced inode %lu\n",
1839 inode->i_ino);
1840 nr_orphans++;
1841 }
1842 iput(inode); /* The delete magic happens here! */
1843 }
1844
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001845#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001846
1847 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001848 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001849 sb->s_id, PLURAL(nr_orphans));
1850 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001851 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001852 sb->s_id, PLURAL(nr_truncates));
1853#ifdef CONFIG_QUOTA
1854 /* Turn quotas off */
1855 for (i = 0; i < MAXQUOTAS; i++) {
1856 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001857 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001858 }
1859#endif
1860 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1861}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001862/*
1863 * Maximal extent format file size.
1864 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1865 * extent format containers, within a sector_t, and within i_blocks
1866 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1867 * so that won't be a limiting factor.
1868 *
1869 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1870 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001871static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001872{
1873 loff_t res;
1874 loff_t upper_limit = MAX_LFS_FILESIZE;
1875
1876 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001877 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001878 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001879 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001880 * i_block represent total blocks in 512 bytes
1881 * 32 == size of vfs inode i_blocks * 8
1882 */
1883 upper_limit = (1LL << 32) - 1;
1884
1885 /* total blocks in file system block size */
1886 upper_limit >>= (blkbits - 9);
1887 upper_limit <<= blkbits;
1888 }
1889
1890 /* 32-bit extent-start container, ee_block */
1891 res = 1LL << 32;
1892 res <<= blkbits;
1893 res -= 1;
1894
1895 /* Sanity check against vm- & vfs- imposed limits */
1896 if (res > upper_limit)
1897 res = upper_limit;
1898
1899 return res;
1900}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001901
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001903 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001904 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1905 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001906 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001907static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001908{
Mingming Cao617ba132006-10-11 01:20:53 -07001909 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001910 int meta_blocks;
1911 loff_t upper_limit;
1912 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001913 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001914 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001915 * does not exceed 2^48 -1
1916 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1917 * total number of 512 bytes blocks of the file
1918 */
1919
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001920 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001921 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001922 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001923 * implies the inode i_block represent total blocks in
1924 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001925 */
1926 upper_limit = (1LL << 32) - 1;
1927
1928 /* total blocks in file system block size */
1929 upper_limit >>= (bits - 9);
1930
1931 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001932 /*
1933 * We use 48 bit ext4_inode i_blocks
1934 * With EXT4_HUGE_FILE_FL set the i_blocks
1935 * represent total number of blocks in
1936 * file system block size
1937 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001938 upper_limit = (1LL << 48) - 1;
1939
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001940 }
1941
1942 /* indirect blocks */
1943 meta_blocks = 1;
1944 /* double indirect blocks */
1945 meta_blocks += 1 + (1LL << (bits-2));
1946 /* tripple indirect blocks */
1947 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1948
1949 upper_limit -= meta_blocks;
1950 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001951
1952 res += 1LL << (bits-2);
1953 res += 1LL << (2*(bits-2));
1954 res += 1LL << (3*(bits-2));
1955 res <<= bits;
1956 if (res > upper_limit)
1957 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001958
1959 if (res > MAX_LFS_FILESIZE)
1960 res = MAX_LFS_FILESIZE;
1961
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001962 return res;
1963}
1964
Mingming Cao617ba132006-10-11 01:20:53 -07001965static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001966 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001967{
Mingming Cao617ba132006-10-11 01:20:53 -07001968 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001969 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001970 int has_super = 0;
1971
1972 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1973
Mingming Cao617ba132006-10-11 01:20:53 -07001974 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001975 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001976 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001977 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001978 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001980 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001981}
1982
Alex Tomasc9de5602008-01-29 00:19:52 -05001983/**
1984 * ext4_get_stripe_size: Get the stripe size.
1985 * @sbi: In memory super block info
1986 *
1987 * If we have specified it via mount option, then
1988 * use the mount option value. If the value specified at mount time is
1989 * greater than the blocks per group use the super block value.
1990 * If the super block value is greater than blocks per group return 0.
1991 * Allocator needs it be less than blocks per group.
1992 *
1993 */
1994static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1995{
1996 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
1997 unsigned long stripe_width =
1998 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
1999
2000 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2001 return sbi->s_stripe;
2002
2003 if (stripe_width <= sbi->s_blocks_per_group)
2004 return stripe_width;
2005
2006 if (stride <= sbi->s_blocks_per_group)
2007 return stride;
2008
2009 return 0;
2010}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002011
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002012/* sysfs supprt */
2013
2014struct ext4_attr {
2015 struct attribute attr;
2016 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2017 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2018 const char *, size_t);
2019 int offset;
2020};
2021
2022static int parse_strtoul(const char *buf,
2023 unsigned long max, unsigned long *value)
2024{
2025 char *endp;
2026
2027 while (*buf && isspace(*buf))
2028 buf++;
2029 *value = simple_strtoul(buf, &endp, 0);
2030 while (*endp && isspace(*endp))
2031 endp++;
2032 if (*endp || *value > max)
2033 return -EINVAL;
2034
2035 return 0;
2036}
2037
2038static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2039 struct ext4_sb_info *sbi,
2040 char *buf)
2041{
2042 return snprintf(buf, PAGE_SIZE, "%llu\n",
2043 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2044}
2045
2046static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2047 struct ext4_sb_info *sbi, char *buf)
2048{
2049 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2050
2051 return snprintf(buf, PAGE_SIZE, "%lu\n",
2052 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2053 sbi->s_sectors_written_start) >> 1);
2054}
2055
2056static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2057 struct ext4_sb_info *sbi, char *buf)
2058{
2059 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2060
2061 return snprintf(buf, PAGE_SIZE, "%llu\n",
2062 sbi->s_kbytes_written +
2063 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2064 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2065}
2066
2067static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2068 struct ext4_sb_info *sbi,
2069 const char *buf, size_t count)
2070{
2071 unsigned long t;
2072
2073 if (parse_strtoul(buf, 0x40000000, &t))
2074 return -EINVAL;
2075
2076 /* inode_readahead_blks must be a power of 2 */
2077 if (t & (t-1))
2078 return -EINVAL;
2079
2080 sbi->s_inode_readahead_blks = t;
2081 return count;
2082}
2083
2084static ssize_t sbi_ui_show(struct ext4_attr *a,
2085 struct ext4_sb_info *sbi, char *buf)
2086{
2087 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2088
2089 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2090}
2091
2092static ssize_t sbi_ui_store(struct ext4_attr *a,
2093 struct ext4_sb_info *sbi,
2094 const char *buf, size_t count)
2095{
2096 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2097 unsigned long t;
2098
2099 if (parse_strtoul(buf, 0xffffffff, &t))
2100 return -EINVAL;
2101 *ui = t;
2102 return count;
2103}
2104
2105#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2106static struct ext4_attr ext4_attr_##_name = { \
2107 .attr = {.name = __stringify(_name), .mode = _mode }, \
2108 .show = _show, \
2109 .store = _store, \
2110 .offset = offsetof(struct ext4_sb_info, _elname), \
2111}
2112#define EXT4_ATTR(name, mode, show, store) \
2113static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2114
2115#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2116#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2117#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2118 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2119#define ATTR_LIST(name) &ext4_attr_##name.attr
2120
2121EXT4_RO_ATTR(delayed_allocation_blocks);
2122EXT4_RO_ATTR(session_write_kbytes);
2123EXT4_RO_ATTR(lifetime_write_kbytes);
2124EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2125 inode_readahead_blks_store, s_inode_readahead_blks);
2126EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2127EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2128EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2129EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2130EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2131EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2132
2133static struct attribute *ext4_attrs[] = {
2134 ATTR_LIST(delayed_allocation_blocks),
2135 ATTR_LIST(session_write_kbytes),
2136 ATTR_LIST(lifetime_write_kbytes),
2137 ATTR_LIST(inode_readahead_blks),
2138 ATTR_LIST(mb_stats),
2139 ATTR_LIST(mb_max_to_scan),
2140 ATTR_LIST(mb_min_to_scan),
2141 ATTR_LIST(mb_order2_req),
2142 ATTR_LIST(mb_stream_req),
2143 ATTR_LIST(mb_group_prealloc),
2144 NULL,
2145};
2146
2147static ssize_t ext4_attr_show(struct kobject *kobj,
2148 struct attribute *attr, char *buf)
2149{
2150 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2151 s_kobj);
2152 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2153
2154 return a->show ? a->show(a, sbi, buf) : 0;
2155}
2156
2157static ssize_t ext4_attr_store(struct kobject *kobj,
2158 struct attribute *attr,
2159 const char *buf, size_t len)
2160{
2161 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2162 s_kobj);
2163 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2164
2165 return a->store ? a->store(a, sbi, buf, len) : 0;
2166}
2167
2168static void ext4_sb_release(struct kobject *kobj)
2169{
2170 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2171 s_kobj);
2172 complete(&sbi->s_kobj_unregister);
2173}
2174
2175
2176static struct sysfs_ops ext4_attr_ops = {
2177 .show = ext4_attr_show,
2178 .store = ext4_attr_store,
2179};
2180
2181static struct kobj_type ext4_ktype = {
2182 .default_attrs = ext4_attrs,
2183 .sysfs_ops = &ext4_attr_ops,
2184 .release = ext4_sb_release,
2185};
2186
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002187static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002188 __releases(kernel_lock)
2189 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002190
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002191{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002192 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002193 struct ext4_super_block *es = NULL;
2194 struct ext4_sb_info *sbi;
2195 ext4_fsblk_t block;
2196 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002197 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002198 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002199 unsigned long journal_devnum = 0;
2200 unsigned long def_mount_opts;
2201 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002202 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002203 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002204 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002205 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002206 unsigned int db_count;
2207 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002208 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002209 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002210 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002211 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002212 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002213
2214 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2215 if (!sbi)
2216 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002217
2218 sbi->s_blockgroup_lock =
2219 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2220 if (!sbi->s_blockgroup_lock) {
2221 kfree(sbi);
2222 return -ENOMEM;
2223 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002224 sb->s_fs_info = sbi;
2225 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002226 sbi->s_resuid = EXT4_DEF_RESUID;
2227 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002228 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002229 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002230 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2231 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002232
2233 unlock_kernel();
2234
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002235 /* Cleanup superblock name */
2236 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2237 *cp = '!';
2238
Mingming Cao617ba132006-10-11 01:20:53 -07002239 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002240 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002241 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002242 goto out_fail;
2243 }
2244
2245 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002246 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002247 * block sizes. We need to calculate the offset from buffer start.
2248 */
Mingming Cao617ba132006-10-11 01:20:53 -07002249 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002250 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2251 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002252 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002253 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002254 }
2255
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002256 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002257 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002258 goto out_fail;
2259 }
2260 /*
2261 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002262 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002263 */
Mingming Cao617ba132006-10-11 01:20:53 -07002264 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002265 sbi->s_es = es;
2266 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002267 if (sb->s_magic != EXT4_SUPER_MAGIC)
2268 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002269 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002270
2271 /* Set defaults before we parse the mount options */
2272 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002273 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002274 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002275 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002276 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002277 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002278 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002279#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002280 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002281 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002282#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002283#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002284 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002285 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002286#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002287 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2288 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2289 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2290 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2291 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2292 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002293
Mingming Cao617ba132006-10-11 01:20:53 -07002294 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002295 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002296 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002297 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002298 else
2299 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002300
2301 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2302 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002303 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2304 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2305 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002306
2307 set_opt(sbi->s_mount_opt, RESERVATION);
Eric Sandeen571640c2008-05-26 12:29:46 -04002308 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002309
Mingming Cao1e2462f2007-07-18 09:00:55 -04002310 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002311 * enable delayed allocation by default
2312 * Use -o nodelalloc to turn it off
2313 */
2314 set_opt(sbi->s_mount_opt, DELALLOC);
2315
2316
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002317 if (!parse_options((char *) data, sb, &journal_devnum,
2318 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002319 goto failed_mount;
2320
2321 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002322 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002323
Mingming Cao617ba132006-10-11 01:20:53 -07002324 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2325 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2326 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2327 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002328 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002329 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002330 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002331
2332 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002333 * Check feature flags regardless of the revision level, since we
2334 * previously didn't change the revision level when setting the flags,
2335 * so there is a chance incompat flags are set on a rev 0 filesystem.
2336 */
Mingming Cao617ba132006-10-11 01:20:53 -07002337 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002338 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002339 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002340 "unsupported optional features (%x).\n", sb->s_id,
2341 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2342 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002343 goto failed_mount;
2344 }
Mingming Cao617ba132006-10-11 01:20:53 -07002345 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002346 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002347 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002348 "unsupported optional features (%x).\n", sb->s_id,
2349 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2350 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002351 goto failed_mount;
2352 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002353 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2354 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2355 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002356 /*
2357 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002358 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002359 */
2360 if (sizeof(root->i_blocks) < sizeof(u64) &&
2361 !(sb->s_flags & MS_RDONLY)) {
2362 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2363 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002364 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002365 goto failed_mount;
2366 }
2367 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002368 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2369
Mingming Cao617ba132006-10-11 01:20:53 -07002370 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2371 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002372 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002373 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002374 blocksize, sb->s_id);
2375 goto failed_mount;
2376 }
2377
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002378 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002379
2380 /* Validate the filesystem blocksize */
2381 if (!sb_set_blocksize(sb, blocksize)) {
2382 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2383 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002384 goto failed_mount;
2385 }
2386
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002387 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002388 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2389 offset = do_div(logical_sb_block, blocksize);
2390 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002391 if (!bh) {
2392 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002393 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002394 goto failed_mount;
2395 }
Mingming Cao617ba132006-10-11 01:20:53 -07002396 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002397 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002398 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002399 printk(KERN_ERR
2400 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002401 goto failed_mount;
2402 }
2403 }
2404
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002405 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2406 has_huge_files);
2407 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002408
Mingming Cao617ba132006-10-11 01:20:53 -07002409 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2410 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2411 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002412 } else {
2413 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2414 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002415 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002416 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002417 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002418 printk(KERN_ERR
2419 "EXT4-fs: unsupported inode size: %d\n",
2420 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002421 goto failed_mount;
2422 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002423 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2424 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002425 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002426 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2427 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002428 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002429 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002430 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002431 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002432 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002433 sbi->s_desc_size);
2434 goto failed_mount;
2435 }
2436 } else
2437 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002438 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002439 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002440 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002441 goto cantfind_ext4;
2442 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002443 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002444 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002445 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2446 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002447 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002448 sbi->s_sbh = bh;
2449 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002450 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2451 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002452 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002453 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2454 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002455 i = le32_to_cpu(es->s_flags);
2456 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2457 sbi->s_hash_unsigned = 3;
2458 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2459#ifdef __CHAR_UNSIGNED__
2460 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2461 sbi->s_hash_unsigned = 3;
2462#else
2463 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2464#endif
2465 sb->s_dirt = 1;
2466 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002467
2468 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002469 printk(KERN_ERR
2470 "EXT4-fs: #blocks per group too big: %lu\n",
2471 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002472 goto failed_mount;
2473 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002474 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002475 printk(KERN_ERR
2476 "EXT4-fs: #inodes per group too big: %lu\n",
2477 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002478 goto failed_mount;
2479 }
2480
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002481 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002482 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002483 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002484 " too large to mount safely\n", sb->s_id);
2485 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002486 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002487 "enabled\n");
2488 goto failed_mount;
2489 }
2490
Mingming Cao617ba132006-10-11 01:20:53 -07002491 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2492 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002493
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002494 /*
2495 * It makes no sense for the first data block to be beyond the end
2496 * of the filesystem.
2497 */
2498 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2499 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2500 "block %u is beyond end of filesystem (%llu)\n",
2501 le32_to_cpu(es->s_first_data_block),
2502 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002503 goto failed_mount;
2504 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002505 blocks_count = (ext4_blocks_count(es) -
2506 le32_to_cpu(es->s_first_data_block) +
2507 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2508 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002509 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2510 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2511 "(block count %llu, first data block %u, "
2512 "blocks per group %lu)\n", sbi->s_groups_count,
2513 ext4_blocks_count(es),
2514 le32_to_cpu(es->s_first_data_block),
2515 EXT4_BLOCKS_PER_GROUP(sb));
2516 goto failed_mount;
2517 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002518 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002519 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2520 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002521 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002522 GFP_KERNEL);
2523 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002524 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002525 goto failed_mount;
2526 }
2527
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002528#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002529 if (ext4_proc_root)
2530 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002531#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002532
Pekka Enberg705895b2009-02-15 18:07:52 -05002533 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002534
2535 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002536 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002537 sbi->s_group_desc[i] = sb_bread(sb, block);
2538 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002539 printk(KERN_ERR "EXT4-fs: "
2540 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002541 db_count = i;
2542 goto failed_mount2;
2543 }
2544 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002545 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002546 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002547 goto failed_mount2;
2548 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002549 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2550 if (!ext4_fill_flex_info(sb)) {
2551 printk(KERN_ERR
2552 "EXT4-fs: unable to initialize "
2553 "flex_bg meta info!\n");
2554 goto failed_mount2;
2555 }
2556
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002557 sbi->s_gdb_count = db_count;
2558 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2559 spin_lock_init(&sbi->s_next_gen_lock);
2560
Peter Zijlstra833f4072007-10-16 23:25:45 -07002561 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2562 ext4_count_free_blocks(sb));
2563 if (!err) {
2564 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2565 ext4_count_free_inodes(sb));
2566 }
2567 if (!err) {
2568 err = percpu_counter_init(&sbi->s_dirs_counter,
2569 ext4_count_dirs(sb));
2570 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002571 if (!err) {
2572 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2573 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002574 if (err) {
2575 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2576 goto failed_mount3;
2577 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002578
Alex Tomasc9de5602008-01-29 00:19:52 -05002579 sbi->s_stripe = ext4_get_stripe_size(sbi);
2580
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002581 /*
2582 * set up enough so that it can read an inode
2583 */
Mingming Cao617ba132006-10-11 01:20:53 -07002584 sb->s_op = &ext4_sops;
2585 sb->s_export_op = &ext4_export_ops;
2586 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002587#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002588 sb->s_qcop = &ext4_qctl_operations;
2589 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002590#endif
2591 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2592
2593 sb->s_root = NULL;
2594
2595 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002596 EXT4_HAS_INCOMPAT_FEATURE(sb,
2597 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002598
2599 /*
2600 * The first inode we look at is the journal inode. Don't try
2601 * root first: it may be modified in the journal!
2602 */
2603 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002604 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2605 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002606 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002607 if (!(sb->s_flags & MS_RDONLY) &&
2608 EXT4_SB(sb)->s_journal->j_failed_commit) {
2609 printk(KERN_CRIT "EXT4-fs error (device %s): "
2610 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002611 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002612 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002613 if (test_opt(sb, ERRORS_RO)) {
2614 printk(KERN_CRIT
2615 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002616 sb->s_flags |= MS_RDONLY;
2617 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2618 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2619 }
2620 if (test_opt(sb, ERRORS_PANIC)) {
2621 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2622 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2623 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002624 goto failed_mount4;
2625 }
2626 }
Frank Mayhar03901312009-01-07 00:06:22 -05002627 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2628 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2629 printk(KERN_ERR "EXT4-fs: required journal recovery "
2630 "suppressed and not mounted read-only\n");
2631 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002632 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002633 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2634 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2635 sbi->s_journal = NULL;
2636 needs_recovery = 0;
2637 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002638 }
2639
Jose R. Santoseb40a092007-07-18 08:37:25 -04002640 if (ext4_blocks_count(es) > 0xffffffffULL &&
2641 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2642 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002643 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002644 goto failed_mount4;
2645 }
2646
Girish Shilamkar818d2762008-01-28 23:58:27 -05002647 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2648 jbd2_journal_set_features(sbi->s_journal,
2649 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2650 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2651 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2652 jbd2_journal_set_features(sbi->s_journal,
2653 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2654 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2655 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2656 } else {
2657 jbd2_journal_clear_features(sbi->s_journal,
2658 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2659 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2660 }
2661
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002662 /* We have now updated the journal if required, so we can
2663 * validate the data journaling mode. */
2664 switch (test_opt(sb, DATA_FLAGS)) {
2665 case 0:
2666 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002667 * capabilities: ORDERED_DATA if the journal can
2668 * cope, else JOURNAL_DATA
2669 */
Mingming Caodab291a2006-10-11 01:21:01 -07002670 if (jbd2_journal_check_available_features
2671 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002672 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2673 else
2674 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2675 break;
2676
Mingming Cao617ba132006-10-11 01:20:53 -07002677 case EXT4_MOUNT_ORDERED_DATA:
2678 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002679 if (!jbd2_journal_check_available_features
2680 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002681 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002682 "requested data journaling mode\n");
2683 goto failed_mount4;
2684 }
2685 default:
2686 break;
2687 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002688 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002689
Frank Mayhar03901312009-01-07 00:06:22 -05002690no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002691
2692 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002693 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2694 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002695 "its supported only with writeback mode\n");
2696 clear_opt(sbi->s_mount_opt, NOBH);
2697 }
2698 }
2699 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002700 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002701 * so we can safely mount the rest of the filesystem now.
2702 */
2703
David Howells1d1fe1e2008-02-07 00:15:37 -08002704 root = ext4_iget(sb, EXT4_ROOT_INO);
2705 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002706 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002707 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708 goto failed_mount4;
2709 }
2710 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002711 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002712 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002713 goto failed_mount4;
2714 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002715 sb->s_root = d_alloc_root(root);
2716 if (!sb->s_root) {
2717 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2718 iput(root);
2719 ret = -ENOMEM;
2720 goto failed_mount4;
2721 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002722
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002723 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002724
2725 /* determine the minimum size of new large inodes, if present */
2726 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2727 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2728 EXT4_GOOD_OLD_INODE_SIZE;
2729 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2730 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2731 if (sbi->s_want_extra_isize <
2732 le16_to_cpu(es->s_want_extra_isize))
2733 sbi->s_want_extra_isize =
2734 le16_to_cpu(es->s_want_extra_isize);
2735 if (sbi->s_want_extra_isize <
2736 le16_to_cpu(es->s_min_extra_isize))
2737 sbi->s_want_extra_isize =
2738 le16_to_cpu(es->s_min_extra_isize);
2739 }
2740 }
2741 /* Check if enough inode space is available */
2742 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2743 sbi->s_inode_size) {
2744 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2745 EXT4_GOOD_OLD_INODE_SIZE;
2746 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2747 "available.\n");
2748 }
2749
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002750 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2751 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2752 "requested data journaling mode\n");
2753 clear_opt(sbi->s_mount_opt, DELALLOC);
2754 } else if (test_opt(sb, DELALLOC))
2755 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2756
2757 ext4_ext_init(sb);
2758 err = ext4_mb_init(sb, needs_recovery);
2759 if (err) {
2760 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2761 err);
2762 goto failed_mount4;
2763 }
2764
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002765 sbi->s_kobj.kset = ext4_kset;
2766 init_completion(&sbi->s_kobj_unregister);
2767 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2768 "%s", sb->s_id);
2769 if (err) {
2770 ext4_mb_release(sb);
2771 ext4_ext_release(sb);
2772 goto failed_mount4;
2773 };
2774
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002775 /*
2776 * akpm: core read_super() calls in here with the superblock locked.
2777 * That deadlocks, because orphan cleanup needs to lock the superblock
2778 * in numerous places. Here we just pop the lock - it's relatively
2779 * harmless, because we are now ready to accept write_super() requests,
2780 * and aviro says that's the only reason for hanging onto the
2781 * superblock lock.
2782 */
Mingming Cao617ba132006-10-11 01:20:53 -07002783 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2784 ext4_orphan_cleanup(sb, es);
2785 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002786 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002787 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002788 ext4_mark_recovery_complete(sb, es);
2789 }
2790 if (EXT4_SB(sb)->s_journal) {
2791 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2792 descr = " journalled data mode";
2793 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2794 descr = " ordered data mode";
2795 else
2796 descr = " writeback data mode";
2797 } else
2798 descr = "out journal";
2799
2800 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2801 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002802
2803 lock_kernel();
2804 return 0;
2805
Mingming Cao617ba132006-10-11 01:20:53 -07002806cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002807 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002808 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002809 sb->s_id);
2810 goto failed_mount;
2811
2812failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002813 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2814 if (sbi->s_journal) {
2815 jbd2_journal_destroy(sbi->s_journal);
2816 sbi->s_journal = NULL;
2817 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002818failed_mount3:
2819 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2820 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2821 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002822 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002823failed_mount2:
2824 for (i = 0; i < db_count; i++)
2825 brelse(sbi->s_group_desc[i]);
2826 kfree(sbi->s_group_desc);
2827failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002828 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002829 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002830 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002831#ifdef CONFIG_QUOTA
2832 for (i = 0; i < MAXQUOTAS; i++)
2833 kfree(sbi->s_qf_names[i]);
2834#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002835 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002836 brelse(bh);
2837out_fail:
2838 sb->s_fs_info = NULL;
2839 kfree(sbi);
2840 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002841 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002842}
2843
2844/*
2845 * Setup any per-fs journal parameters now. We'll do this both on
2846 * initial mount, once the journal has been initialised but before we've
2847 * done any recovery; and again on any subsequent remount.
2848 */
Mingming Cao617ba132006-10-11 01:20:53 -07002849static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002850{
Mingming Cao617ba132006-10-11 01:20:53 -07002851 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002852
Theodore Ts'o30773842009-01-03 20:27:38 -05002853 journal->j_commit_interval = sbi->s_commit_interval;
2854 journal->j_min_batch_time = sbi->s_min_batch_time;
2855 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002856
2857 spin_lock(&journal->j_state_lock);
2858 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002859 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002860 else
Mingming Caodab291a2006-10-11 01:21:01 -07002861 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002862 if (test_opt(sb, DATA_ERR_ABORT))
2863 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2864 else
2865 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002866 spin_unlock(&journal->j_state_lock);
2867}
2868
Mingming Cao617ba132006-10-11 01:20:53 -07002869static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002870 unsigned int journal_inum)
2871{
2872 struct inode *journal_inode;
2873 journal_t *journal;
2874
Frank Mayhar03901312009-01-07 00:06:22 -05002875 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2876
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002877 /* First, test for the existence of a valid inode on disk. Bad
2878 * things happen if we iget() an unused inode, as the subsequent
2879 * iput() will try to delete it. */
2880
David Howells1d1fe1e2008-02-07 00:15:37 -08002881 journal_inode = ext4_iget(sb, journal_inum);
2882 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002883 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002884 return NULL;
2885 }
2886 if (!journal_inode->i_nlink) {
2887 make_bad_inode(journal_inode);
2888 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002889 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002890 return NULL;
2891 }
2892
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002893 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002894 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002895 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002896 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002897 iput(journal_inode);
2898 return NULL;
2899 }
2900
Mingming Caodab291a2006-10-11 01:21:01 -07002901 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002902 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002903 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002904 iput(journal_inode);
2905 return NULL;
2906 }
2907 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002908 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002909 return journal;
2910}
2911
Mingming Cao617ba132006-10-11 01:20:53 -07002912static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002913 dev_t j_dev)
2914{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002915 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002917 ext4_fsblk_t start;
2918 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002919 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002920 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002921 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002922 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923 struct block_device *bdev;
2924
Frank Mayhar03901312009-01-07 00:06:22 -05002925 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2926
Mingming Cao617ba132006-10-11 01:20:53 -07002927 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002928 if (bdev == NULL)
2929 return NULL;
2930
2931 if (bd_claim(bdev, sb)) {
2932 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05002933 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002934 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002935 return NULL;
2936 }
2937
2938 blocksize = sb->s_blocksize;
2939 hblock = bdev_hardsect_size(bdev);
2940 if (blocksize < hblock) {
2941 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002942 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002943 goto out_bdev;
2944 }
2945
Mingming Cao617ba132006-10-11 01:20:53 -07002946 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2947 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002948 set_blocksize(bdev, blocksize);
2949 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002950 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002951 "external journal\n");
2952 goto out_bdev;
2953 }
2954
Mingming Cao617ba132006-10-11 01:20:53 -07002955 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2956 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002957 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002958 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2959 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002960 "bad superblock\n");
2961 brelse(bh);
2962 goto out_bdev;
2963 }
2964
Mingming Cao617ba132006-10-11 01:20:53 -07002965 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2966 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002967 brelse(bh);
2968 goto out_bdev;
2969 }
2970
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002971 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002972 start = sb_block + 1;
2973 brelse(bh); /* we're done with the superblock */
2974
Mingming Caodab291a2006-10-11 01:21:01 -07002975 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002976 start, len, blocksize);
2977 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002978 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979 goto out_bdev;
2980 }
2981 journal->j_private = sb;
2982 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2983 wait_on_buffer(journal->j_sb_buffer);
2984 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002985 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986 goto out_journal;
2987 }
2988 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002989 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002990 "user (unsupported) - %d\n",
2991 be32_to_cpu(journal->j_superblock->s_nr_users));
2992 goto out_journal;
2993 }
Mingming Cao617ba132006-10-11 01:20:53 -07002994 EXT4_SB(sb)->journal_bdev = bdev;
2995 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002996 return journal;
2997out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07002998 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002999out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003000 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003001 return NULL;
3002}
3003
Mingming Cao617ba132006-10-11 01:20:53 -07003004static int ext4_load_journal(struct super_block *sb,
3005 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003006 unsigned long journal_devnum)
3007{
3008 journal_t *journal;
3009 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3010 dev_t journal_dev;
3011 int err = 0;
3012 int really_read_only;
3013
Frank Mayhar03901312009-01-07 00:06:22 -05003014 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3015
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003016 if (journal_devnum &&
3017 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003018 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003019 "numbers have changed\n");
3020 journal_dev = new_decode_dev(journal_devnum);
3021 } else
3022 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3023
3024 really_read_only = bdev_read_only(sb->s_bdev);
3025
3026 /*
3027 * Are we loading a blank journal or performing recovery after a
3028 * crash? For recovery, we need to check in advance whether we
3029 * can get read-write access to the device.
3030 */
3031
Mingming Cao617ba132006-10-11 01:20:53 -07003032 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003033 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003034 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003035 "required on readonly filesystem.\n");
3036 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07003037 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003038 "unavailable, cannot proceed.\n");
3039 return -EROFS;
3040 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003041 printk(KERN_INFO "EXT4-fs: write access will "
3042 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003043 }
3044 }
3045
3046 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07003047 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003048 "and inode journals!\n");
3049 return -EINVAL;
3050 }
3051
3052 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003053 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003054 return -EINVAL;
3055 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003056 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003057 return -EINVAL;
3058 }
3059
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003060 if (journal->j_flags & JBD2_BARRIER)
3061 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3062 else
3063 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3064
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003065 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003066 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003067 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003068 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003069 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003070 return err;
3071 }
3072 }
3073
Mingming Cao617ba132006-10-11 01:20:53 -07003074 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003075 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003076 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003077 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003078
3079 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003080 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003081 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003082 return err;
3083 }
3084
Mingming Cao617ba132006-10-11 01:20:53 -07003085 EXT4_SB(sb)->s_journal = journal;
3086 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003087
3088 if (journal_devnum &&
3089 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3090 es->s_journal_dev = cpu_to_le32(journal_devnum);
3091 sb->s_dirt = 1;
3092
3093 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07003094 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003095 }
3096
3097 return 0;
3098}
3099
Takashi Satoc4be0c12009-01-09 16:40:58 -08003100static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003101 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003102{
Mingming Cao617ba132006-10-11 01:20:53 -07003103 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003104 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003105
3106 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003107 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003108 if (buffer_write_io_error(sbh)) {
3109 /*
3110 * Oh, dear. A previous attempt to write the
3111 * superblock failed. This could happen because the
3112 * USB device was yanked out. Or it could happen to
3113 * be a transient write error and maybe the block will
3114 * be remapped. Nothing we can do but to retry the
3115 * write and hope for the best.
3116 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05003117 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003118 "superblock detected for %s.\n", sb->s_id);
3119 clear_buffer_write_io_error(sbh);
3120 set_buffer_uptodate(sbh);
3121 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003122 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003123 es->s_kbytes_written =
3124 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3125 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3126 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003127 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3128 &EXT4_SB(sb)->s_freeblocks_counter));
3129 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3130 &EXT4_SB(sb)->s_freeinodes_counter));
3131
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003132 BUFFER_TRACE(sbh, "marking dirty");
3133 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003134 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003135 error = sync_dirty_buffer(sbh);
3136 if (error)
3137 return error;
3138
3139 error = buffer_write_io_error(sbh);
3140 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05003141 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003142 "superblock for %s.\n", sb->s_id);
3143 clear_buffer_write_io_error(sbh);
3144 set_buffer_uptodate(sbh);
3145 }
3146 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003147 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003148}
3149
3150
3151/*
3152 * Have we just finished recovery? If so, and if we are mounting (or
3153 * remounting) the filesystem readonly, then we will end up with a
3154 * consistent fs on disk. Record that fact.
3155 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003156static void ext4_mark_recovery_complete(struct super_block *sb,
3157 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003158{
Mingming Cao617ba132006-10-11 01:20:53 -07003159 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003160
Frank Mayhar03901312009-01-07 00:06:22 -05003161 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3162 BUG_ON(journal != NULL);
3163 return;
3164 }
Mingming Caodab291a2006-10-11 01:21:01 -07003165 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003166 if (jbd2_journal_flush(journal) < 0)
3167 goto out;
3168
Jan Kara32c37732007-07-15 23:41:09 -07003169 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07003170 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003171 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003172 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003173 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003174 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003175 }
Jan Kara32c37732007-07-15 23:41:09 -07003176 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003177
3178out:
Mingming Caodab291a2006-10-11 01:21:01 -07003179 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003180}
3181
3182/*
3183 * If we are mounting (or read-write remounting) a filesystem whose journal
3184 * has recorded an error from a previous lifetime, move that error to the
3185 * main filesystem now.
3186 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003187static void ext4_clear_journal_err(struct super_block *sb,
3188 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003189{
3190 journal_t *journal;
3191 int j_errno;
3192 const char *errstr;
3193
Frank Mayhar03901312009-01-07 00:06:22 -05003194 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3195
Mingming Cao617ba132006-10-11 01:20:53 -07003196 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003197
3198 /*
3199 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003200 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003201 */
3202
Mingming Caodab291a2006-10-11 01:21:01 -07003203 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003204 if (j_errno) {
3205 char nbuf[16];
3206
Mingming Cao617ba132006-10-11 01:20:53 -07003207 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003208 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003209 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003210 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003211 "filesystem check.");
3212
Mingming Cao617ba132006-10-11 01:20:53 -07003213 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3214 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003215 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003216
Mingming Caodab291a2006-10-11 01:21:01 -07003217 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218 }
3219}
3220
3221/*
3222 * Force the running and committing transactions to commit,
3223 * and wait on the commit.
3224 */
Mingming Cao617ba132006-10-11 01:20:53 -07003225int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003226{
3227 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003228 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003229
3230 if (sb->s_flags & MS_RDONLY)
3231 return 0;
3232
Mingming Cao617ba132006-10-11 01:20:53 -07003233 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003234 if (journal) {
3235 sb->s_dirt = 0;
3236 ret = ext4_journal_force_commit(journal);
3237 }
3238
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003239 return ret;
3240}
3241
3242/*
Mingming Cao617ba132006-10-11 01:20:53 -07003243 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003244 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003245 * point. (We can probably nuke this function altogether, and remove
3246 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003248static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003249{
Frank Mayhar03901312009-01-07 00:06:22 -05003250 if (EXT4_SB(sb)->s_journal) {
3251 if (mutex_trylock(&sb->s_lock) != 0)
3252 BUG();
3253 sb->s_dirt = 0;
3254 } else {
3255 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3256 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003257}
3258
Mingming Cao617ba132006-10-11 01:20:53 -07003259static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003260{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003261 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003262 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003263
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003264 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003265 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003266 if (EXT4_SB(sb)->s_journal) {
Jan Kara9eddacf2009-02-10 06:46:05 -05003267 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal,
3268 &target)) {
3269 if (wait)
3270 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal,
3271 target);
3272 }
Frank Mayhar03901312009-01-07 00:06:22 -05003273 } else {
3274 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
3275 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003276 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003277}
3278
3279/*
3280 * LVM calls this function before a (read-only) snapshot is created. This
3281 * gives us a chance to flush the journal completely and mark the fs clean.
3282 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003283static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003285 int error = 0;
3286 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 sb->s_dirt = 0;
3288
3289 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003290 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291
Frank Mayhar03901312009-01-07 00:06:22 -05003292 if (journal) {
3293 /* Now we set up the journal barrier. */
3294 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003295
Frank Mayhar03901312009-01-07 00:06:22 -05003296 /*
3297 * We don't want to clear needs_recovery flag when we
3298 * failed to flush the journal.
3299 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003300 error = jbd2_journal_flush(journal);
3301 if (error < 0)
3302 goto out;
Frank Mayhar03901312009-01-07 00:06:22 -05003303 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003304
3305 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003306 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003307 error = ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3308 if (error)
3309 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003310 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003311 return 0;
3312out:
3313 jbd2_journal_unlock_updates(journal);
3314 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003315}
3316
3317/*
3318 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3319 * flag here, even though the filesystem is not technically dirty yet.
3320 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003321static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003322{
Frank Mayhar03901312009-01-07 00:06:22 -05003323 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003324 lock_super(sb);
3325 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003326 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3327 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003328 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003329 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003330 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003331 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003332}
3333
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003334static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003335{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003336 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003337 struct ext4_sb_info *sbi = EXT4_SB(sb);
3338 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003339 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003340 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003341 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003342 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003343 int err;
3344#ifdef CONFIG_QUOTA
3345 int i;
3346#endif
3347
3348 /* Store the original options */
3349 old_sb_flags = sb->s_flags;
3350 old_opts.s_mount_opt = sbi->s_mount_opt;
3351 old_opts.s_resuid = sbi->s_resuid;
3352 old_opts.s_resgid = sbi->s_resgid;
3353 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003354 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3355 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003356#ifdef CONFIG_QUOTA
3357 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3358 for (i = 0; i < MAXQUOTAS; i++)
3359 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3360#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003361 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3362 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003363
3364 /*
3365 * Allow the "check" option to be passed as a remount option.
3366 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003367 if (!parse_options(data, sb, NULL, &journal_ioprio,
3368 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003369 err = -EINVAL;
3370 goto restore_opts;
3371 }
3372
Mingming Cao617ba132006-10-11 01:20:53 -07003373 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003374 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003375
3376 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003377 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003378
3379 es = sbi->s_es;
3380
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003381 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003382 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003383 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3384 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003385
3386 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003387 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003388 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003389 err = -EROFS;
3390 goto restore_opts;
3391 }
3392
3393 if (*flags & MS_RDONLY) {
3394 /*
3395 * First of all, the unconditional stuff we have to do
3396 * to disable replay of the journal when we next remount
3397 */
3398 sb->s_flags |= MS_RDONLY;
3399
3400 /*
3401 * OK, test if we are remounting a valid rw partition
3402 * readonly, and if so set the rdonly flag and then
3403 * mark the partition as valid again.
3404 */
Mingming Cao617ba132006-10-11 01:20:53 -07003405 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3406 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003407 es->s_state = cpu_to_le16(sbi->s_mount_state);
3408
Jan Kara32c37732007-07-15 23:41:09 -07003409 /*
3410 * We have to unlock super so that we can wait for
3411 * transactions.
3412 */
Frank Mayhar03901312009-01-07 00:06:22 -05003413 if (sbi->s_journal) {
3414 unlock_super(sb);
3415 ext4_mark_recovery_complete(sb, es);
3416 lock_super(sb);
3417 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003418 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003419 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003420 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3421 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3422 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003423 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003424 "optional features (%x).\n", sb->s_id,
3425 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3426 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003427 err = -EROFS;
3428 goto restore_opts;
3429 }
Eric Sandeenead65962007-02-10 01:46:08 -08003430
3431 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003432 * Make sure the group descriptor checksums
3433 * are sane. If they aren't, refuse to
3434 * remount r/w.
3435 */
3436 for (g = 0; g < sbi->s_groups_count; g++) {
3437 struct ext4_group_desc *gdp =
3438 ext4_get_group_desc(sb, g, NULL);
3439
3440 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3441 printk(KERN_ERR
3442 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003443 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003444 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3445 le16_to_cpu(gdp->bg_checksum));
3446 err = -EINVAL;
3447 goto restore_opts;
3448 }
3449 }
3450
3451 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003452 * If we have an unprocessed orphan list hanging
3453 * around from a previously readonly bdev mount,
3454 * require a full umount/remount for now.
3455 */
3456 if (es->s_last_orphan) {
3457 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3458 "remount RDWR because of unprocessed "
3459 "orphan inode list. Please "
3460 "umount/remount instead.\n",
3461 sb->s_id);
3462 err = -EINVAL;
3463 goto restore_opts;
3464 }
3465
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466 /*
3467 * Mounting a RDONLY partition read-write, so reread
3468 * and store the current valid flag. (It may have
3469 * been changed by e2fsck since we originally mounted
3470 * the partition.)
3471 */
Frank Mayhar03901312009-01-07 00:06:22 -05003472 if (sbi->s_journal)
3473 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003474 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003475 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003476 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003477 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003478 sb->s_flags &= ~MS_RDONLY;
3479 }
3480 }
Frank Mayhar03901312009-01-07 00:06:22 -05003481 if (sbi->s_journal == NULL)
3482 ext4_commit_super(sb, es, 1);
3483
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003484#ifdef CONFIG_QUOTA
3485 /* Release old quota file names */
3486 for (i = 0; i < MAXQUOTAS; i++)
3487 if (old_opts.s_qf_names[i] &&
3488 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3489 kfree(old_opts.s_qf_names[i]);
3490#endif
3491 return 0;
3492restore_opts:
3493 sb->s_flags = old_sb_flags;
3494 sbi->s_mount_opt = old_opts.s_mount_opt;
3495 sbi->s_resuid = old_opts.s_resuid;
3496 sbi->s_resgid = old_opts.s_resgid;
3497 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003498 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3499 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003500#ifdef CONFIG_QUOTA
3501 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3502 for (i = 0; i < MAXQUOTAS; i++) {
3503 if (sbi->s_qf_names[i] &&
3504 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3505 kfree(sbi->s_qf_names[i]);
3506 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3507 }
3508#endif
3509 return err;
3510}
3511
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003512static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003513{
3514 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003515 struct ext4_sb_info *sbi = EXT4_SB(sb);
3516 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003517 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003518
Badari Pulavarty5e700302007-07-15 23:42:00 -07003519 if (test_opt(sb, MINIX_DF)) {
3520 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003521 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003522 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003523 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003524 smp_rmb();
3525
3526 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003527 * Compute the overhead (FS structures). This is constant
3528 * for a given filesystem unless the number of block groups
3529 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003530 */
3531
3532 /*
3533 * All of the blocks before first_data_block are
3534 * overhead
3535 */
3536 overhead = le32_to_cpu(es->s_first_data_block);
3537
3538 /*
3539 * Add the overhead attributed to the superblock and
3540 * block group descriptors. If the sparse superblocks
3541 * feature is turned on, then not all groups have this.
3542 */
3543 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003544 overhead += ext4_bg_has_super(sb, i) +
3545 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003546 cond_resched();
3547 }
3548
3549 /*
3550 * Every block group has an inode bitmap, a block
3551 * bitmap, and an inode table.
3552 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003553 overhead += ngroups * (2 + sbi->s_itb_per_group);
3554 sbi->s_overhead_last = overhead;
3555 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003556 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557 }
3558
Mingming Cao617ba132006-10-11 01:20:53 -07003559 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003561 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003562 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3563 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003564 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003565 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3566 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003567 buf->f_bavail = 0;
3568 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003569 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003570 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003571 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003572 fsid = le64_to_cpup((void *)es->s_uuid) ^
3573 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3574 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3575 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003576 return 0;
3577}
3578
3579/* Helper function for writing quotas on sync - we need to start transaction before quota file
3580 * is locked for write. Otherwise the are possible deadlocks:
3581 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003582 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003583 * jbd2_journal_start() write_dquot()
3584 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003585 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003586 *
3587 */
3588
3589#ifdef CONFIG_QUOTA
3590
3591static inline struct inode *dquot_to_inode(struct dquot *dquot)
3592{
3593 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3594}
3595
Mingming Cao617ba132006-10-11 01:20:53 -07003596static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003597{
3598 int ret, err;
3599 handle_t *handle;
3600 struct inode *inode;
3601
3602 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003603 handle = ext4_journal_start(inode,
3604 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003605 if (IS_ERR(handle))
3606 return PTR_ERR(handle);
3607 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003608 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003609 if (!ret)
3610 ret = err;
3611 return ret;
3612}
3613
Mingming Cao617ba132006-10-11 01:20:53 -07003614static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003615{
3616 int ret, err;
3617 handle_t *handle;
3618
Mingming Cao617ba132006-10-11 01:20:53 -07003619 handle = ext4_journal_start(dquot_to_inode(dquot),
3620 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003621 if (IS_ERR(handle))
3622 return PTR_ERR(handle);
3623 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003624 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003625 if (!ret)
3626 ret = err;
3627 return ret;
3628}
3629
Mingming Cao617ba132006-10-11 01:20:53 -07003630static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003631{
3632 int ret, err;
3633 handle_t *handle;
3634
Mingming Cao617ba132006-10-11 01:20:53 -07003635 handle = ext4_journal_start(dquot_to_inode(dquot),
3636 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003637 if (IS_ERR(handle)) {
3638 /* Release dquot anyway to avoid endless cycle in dqput() */
3639 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003640 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003641 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003643 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003644 if (!ret)
3645 ret = err;
3646 return ret;
3647}
3648
Mingming Cao617ba132006-10-11 01:20:53 -07003649static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003650{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003651 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003652 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3653 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003654 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003655 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003656 } else {
3657 return dquot_mark_dquot_dirty(dquot);
3658 }
3659}
3660
Mingming Cao617ba132006-10-11 01:20:53 -07003661static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003662{
3663 int ret, err;
3664 handle_t *handle;
3665
3666 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003667 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003668 if (IS_ERR(handle))
3669 return PTR_ERR(handle);
3670 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003671 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003672 if (!ret)
3673 ret = err;
3674 return ret;
3675}
3676
3677/*
3678 * Turn on quotas during mount time - we need to find
3679 * the quota file and such...
3680 */
Mingming Cao617ba132006-10-11 01:20:53 -07003681static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003682{
Mingming Cao617ba132006-10-11 01:20:53 -07003683 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3684 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003685}
3686
3687/*
3688 * Standard function to be called on quota_on
3689 */
Mingming Cao617ba132006-10-11 01:20:53 -07003690static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003691 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692{
3693 int err;
Al Viro82646132008-08-02 00:57:06 -04003694 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003695
3696 if (!test_opt(sb, QUOTA))
3697 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003698 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003699 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003700 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003701
Al Viro82646132008-08-02 00:57:06 -04003702 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003703 if (err)
3704 return err;
Jan Kara06235432008-05-13 19:11:51 -04003705
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003706 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003707 if (path.mnt->mnt_sb != sb) {
3708 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003709 return -EXDEV;
3710 }
Jan Kara06235432008-05-13 19:11:51 -04003711 /* Journaling quota? */
3712 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003713 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003714 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003715 printk(KERN_WARNING
3716 "EXT4-fs: Quota file not on filesystem root. "
3717 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003718 }
Jan Kara06235432008-05-13 19:11:51 -04003719
3720 /*
3721 * When we journal data on quota file, we have to flush journal to see
3722 * all updates to the file when we bypass pagecache...
3723 */
Frank Mayhar03901312009-01-07 00:06:22 -05003724 if (EXT4_SB(sb)->s_journal &&
3725 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003726 /*
3727 * We don't need to lock updates but journal_flush() could
3728 * otherwise be livelocked...
3729 */
3730 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003731 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003732 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003733 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003734 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003735 return err;
3736 }
Jan Kara06235432008-05-13 19:11:51 -04003737 }
3738
Al Viro82646132008-08-02 00:57:06 -04003739 err = vfs_quota_on_path(sb, type, format_id, &path);
3740 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003741 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003742}
3743
3744/* Read data from quotafile - avoid pagecache and such because we cannot afford
3745 * acquiring the locks... As quota files are never truncated and quota code
3746 * itself serializes the operations (and noone else should touch the files)
3747 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003748static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003749 size_t len, loff_t off)
3750{
3751 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003752 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003753 int err = 0;
3754 int offset = off & (sb->s_blocksize - 1);
3755 int tocopy;
3756 size_t toread;
3757 struct buffer_head *bh;
3758 loff_t i_size = i_size_read(inode);
3759
3760 if (off > i_size)
3761 return 0;
3762 if (off+len > i_size)
3763 len = i_size-off;
3764 toread = len;
3765 while (toread > 0) {
3766 tocopy = sb->s_blocksize - offset < toread ?
3767 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003768 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003769 if (err)
3770 return err;
3771 if (!bh) /* A hole? */
3772 memset(data, 0, tocopy);
3773 else
3774 memcpy(data, bh->b_data+offset, tocopy);
3775 brelse(bh);
3776 offset = 0;
3777 toread -= tocopy;
3778 data += tocopy;
3779 blk++;
3780 }
3781 return len;
3782}
3783
3784/* Write to quotafile (we know the transaction is already started and has
3785 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003786static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003787 const char *data, 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;
Mingming Cao617ba132006-10-11 01:20:53 -07003794 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003795 size_t towrite = len;
3796 struct buffer_head *bh;
3797 handle_t *handle = journal_current_handle();
3798
Frank Mayhar03901312009-01-07 00:06:22 -05003799 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003800 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003801 " cancelled because transaction is not started.\n",
3802 (unsigned long long)off, (unsigned long long)len);
3803 return -EIO;
3804 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003805 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3806 while (towrite > 0) {
3807 tocopy = sb->s_blocksize - offset < towrite ?
3808 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003809 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003810 if (!bh)
3811 goto out;
3812 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003813 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003814 if (err) {
3815 brelse(bh);
3816 goto out;
3817 }
3818 }
3819 lock_buffer(bh);
3820 memcpy(bh->b_data+offset, data, tocopy);
3821 flush_dcache_page(bh->b_page);
3822 unlock_buffer(bh);
3823 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003824 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825 else {
3826 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003827 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003828 mark_buffer_dirty(bh);
3829 }
3830 brelse(bh);
3831 if (err)
3832 goto out;
3833 offset = 0;
3834 towrite -= tocopy;
3835 data += tocopy;
3836 blk++;
3837 }
3838out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003839 if (len == towrite) {
3840 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003841 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003842 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003843 if (inode->i_size < off+len-towrite) {
3844 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003845 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003846 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003847 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003848 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003849 mutex_unlock(&inode->i_mutex);
3850 return len - towrite;
3851}
3852
3853#endif
3854
Mingming Cao617ba132006-10-11 01:20:53 -07003855static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003856 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3857{
Mingming Cao617ba132006-10-11 01:20:53 -07003858 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003859}
3860
Theodore Ts'o03010a32008-10-10 20:02:48 -04003861static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003862 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003863 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003864 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003865 .kill_sb = kill_block_super,
3866 .fs_flags = FS_REQUIRES_DEV,
3867};
3868
Theodore Ts'o03010a32008-10-10 20:02:48 -04003869#ifdef CONFIG_EXT4DEV_COMPAT
3870static int ext4dev_get_sb(struct file_system_type *fs_type,
3871 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3872{
3873 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3874 "to mount using ext4\n");
3875 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3876 "will go away by 2.6.31\n");
3877 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3878}
3879
3880static struct file_system_type ext4dev_fs_type = {
3881 .owner = THIS_MODULE,
3882 .name = "ext4dev",
3883 .get_sb = ext4dev_get_sb,
3884 .kill_sb = kill_block_super,
3885 .fs_flags = FS_REQUIRES_DEV,
3886};
3887MODULE_ALIAS("ext4dev");
3888#endif
3889
Mingming Cao617ba132006-10-11 01:20:53 -07003890static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003891{
Alex Tomasc9de5602008-01-29 00:19:52 -05003892 int err;
3893
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003894 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3895 if (!ext4_kset)
3896 return -ENOMEM;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003897 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003898 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003899 if (err)
3900 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003901
3902 err = init_ext4_xattr();
3903 if (err)
3904 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003905 err = init_inodecache();
3906 if (err)
3907 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003908 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003909 if (err)
3910 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003911#ifdef CONFIG_EXT4DEV_COMPAT
3912 err = register_filesystem(&ext4dev_fs_type);
3913 if (err) {
3914 unregister_filesystem(&ext4_fs_type);
3915 goto out;
3916 }
3917#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003918 return 0;
3919out:
3920 destroy_inodecache();
3921out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003922 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003923out2:
3924 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003925 return err;
3926}
3927
Mingming Cao617ba132006-10-11 01:20:53 -07003928static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003929{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003930 unregister_filesystem(&ext4_fs_type);
3931#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003932 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003933#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003934 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003935 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003936 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003937 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003938 kset_unregister(ext4_kset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003939}
3940
3941MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05003942MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003943MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003944module_init(init_ext4_fs)
3945module_exit(exit_ext4_fs)