blob: 30fc27cdf8fc90673414e0e11bc946128a6b6faa [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070023#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/blkdev.h>
27#include <linux/parser.h>
28#include <linux/smp_lock.h>
29#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070030#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/vfs.h>
32#include <linux/random.h>
33#include <linux/mount.h>
34#include <linux/namei.h>
35#include <linux/quotaops.h>
36#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040037#include <linux/proc_fs.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040038#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040039#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040040#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070041#include <asm/uaccess.h>
42
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040043#include "ext4.h"
44#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070045#include "xattr.h"
46#include "acl.h"
47#include "namei.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040048#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070049
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040050struct proc_dir_entry *ext4_proc_root;
51
Mingming Cao617ba132006-10-11 01:20:53 -070052static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070053 unsigned long journal_devnum);
Takashi Satoc4be0c12009-01-09 16:40:58 -080054static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040055 struct ext4_super_block *es, int sync);
56static void ext4_mark_recovery_complete(struct super_block *sb,
57 struct ext4_super_block *es);
58static void ext4_clear_journal_err(struct super_block *sb,
59 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070060static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040061static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070062 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040063static int ext4_remount(struct super_block *sb, int *flags, char *data);
64static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080065static int ext4_unfreeze(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040066static void ext4_write_super(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080067static int ext4_freeze(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070068
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070069
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070070ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
71 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070072{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040073 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070074 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040075 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070076}
77
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070078ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
79 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070080{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040081 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070082 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040083 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070084}
85
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070086ext4_fsblk_t ext4_inode_table(struct super_block *sb,
87 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070088{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040089 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070090 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040091 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070092}
93
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050094__u32 ext4_free_blks_count(struct super_block *sb,
95 struct ext4_group_desc *bg)
96{
97 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
98 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
99 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
100}
101
102__u32 ext4_free_inodes_count(struct super_block *sb,
103 struct ext4_group_desc *bg)
104{
105 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
106 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
107 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
108}
109
110__u32 ext4_used_dirs_count(struct super_block *sb,
111 struct ext4_group_desc *bg)
112{
113 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
114 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
115 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
116}
117
118__u32 ext4_itable_unused_count(struct super_block *sb,
119 struct ext4_group_desc *bg)
120{
121 return le16_to_cpu(bg->bg_itable_unused_lo) |
122 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
123 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
124}
125
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700126void ext4_block_bitmap_set(struct super_block *sb,
127 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700128{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400129 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700130 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
131 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700132}
133
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700134void ext4_inode_bitmap_set(struct super_block *sb,
135 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700136{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400137 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700138 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
139 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700140}
141
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700142void ext4_inode_table_set(struct super_block *sb,
143 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700144{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400145 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700146 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
147 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700148}
149
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500150void ext4_free_blks_set(struct super_block *sb,
151 struct ext4_group_desc *bg, __u32 count)
152{
153 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
154 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
155 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
156}
157
158void ext4_free_inodes_set(struct super_block *sb,
159 struct ext4_group_desc *bg, __u32 count)
160{
161 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
162 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
163 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
164}
165
166void ext4_used_dirs_set(struct super_block *sb,
167 struct ext4_group_desc *bg, __u32 count)
168{
169 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
170 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
171 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
172}
173
174void ext4_itable_unused_set(struct super_block *sb,
175 struct ext4_group_desc *bg, __u32 count)
176{
177 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
178 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
179 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
180}
181
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700182/*
Mingming Caodab291a2006-10-11 01:21:01 -0700183 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700184 *
185 * The only special thing we need to do here is to make sure that all
186 * journal_end calls result in the superblock being marked dirty, so
187 * that sync() will call the filesystem's write_super callback if
188 * appropriate.
189 */
Mingming Cao617ba132006-10-11 01:20:53 -0700190handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700191{
192 journal_t *journal;
193
194 if (sb->s_flags & MS_RDONLY)
195 return ERR_PTR(-EROFS);
196
197 /* Special case here: if the journal has aborted behind our
198 * backs (eg. EIO in the commit thread), then we still need to
199 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700200 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500201 if (journal) {
202 if (is_journal_aborted(journal)) {
203 ext4_abort(sb, __func__,
204 "Detected aborted journal");
205 return ERR_PTR(-EROFS);
206 }
207 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700208 }
Frank Mayhar03901312009-01-07 00:06:22 -0500209 /*
210 * We're not journaling, return the appropriate indication.
211 */
212 current->journal_info = EXT4_NOJOURNAL_HANDLE;
213 return current->journal_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700214}
215
216/*
217 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700218 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700219 * that sync() will call the filesystem's write_super callback if
220 * appropriate.
221 */
Mingming Cao617ba132006-10-11 01:20:53 -0700222int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700223{
224 struct super_block *sb;
225 int err;
226 int rc;
227
Frank Mayhar03901312009-01-07 00:06:22 -0500228 if (!ext4_handle_valid(handle)) {
229 /*
230 * Do this here since we don't call jbd2_journal_stop() in
231 * no-journal mode.
232 */
233 current->journal_info = NULL;
234 return 0;
235 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700236 sb = handle->h_transaction->t_journal->j_private;
237 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700238 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700239
240 if (!err)
241 err = rc;
242 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700243 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700244 return err;
245}
246
Mingming Cao617ba132006-10-11 01:20:53 -0700247void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700248 struct buffer_head *bh, handle_t *handle, int err)
249{
250 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700251 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700252
Frank Mayhar03901312009-01-07 00:06:22 -0500253 BUG_ON(!ext4_handle_valid(handle));
254
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700255 if (bh)
256 BUFFER_TRACE(bh, "abort");
257
258 if (!handle->h_err)
259 handle->h_err = err;
260
261 if (is_handle_aborted(handle))
262 return;
263
264 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
265 caller, errstr, err_fn);
266
Mingming Caodab291a2006-10-11 01:21:01 -0700267 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700268}
269
270/* Deal with the reporting of failure conditions on a filesystem such as
271 * inconsistencies detected or read IO failures.
272 *
273 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700274 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700275 * write ordering constraints on the superblock which prevent us from
276 * writing it out straight away; and given that the journal is about to
277 * be aborted, we can't rely on the current, or future, transactions to
278 * write out the superblock safely.
279 *
Mingming Caodab291a2006-10-11 01:21:01 -0700280 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700281 * the journal instead. On recovery, the journal will compain about
282 * that error until we've noted it down and cleared it.
283 */
284
Mingming Cao617ba132006-10-11 01:20:53 -0700285static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700286{
Mingming Cao617ba132006-10-11 01:20:53 -0700287 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288
Mingming Cao617ba132006-10-11 01:20:53 -0700289 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
290 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700291
292 if (sb->s_flags & MS_RDONLY)
293 return;
294
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400295 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700296 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700297
Mingming Cao617ba132006-10-11 01:20:53 -0700298 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700299 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700300 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400302 if (test_opt(sb, ERRORS_RO)) {
303 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700304 sb->s_flags |= MS_RDONLY;
305 }
Mingming Cao617ba132006-10-11 01:20:53 -0700306 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700307 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700308 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 sb->s_id);
310}
311
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400312void ext4_error(struct super_block *sb, const char *function,
313 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700314{
315 va_list args;
316
317 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400318 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700319 vprintk(fmt, args);
320 printk("\n");
321 va_end(args);
322
Mingming Cao617ba132006-10-11 01:20:53 -0700323 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700324}
325
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400326static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700327 char nbuf[16])
328{
329 char *errstr = NULL;
330
331 switch (errno) {
332 case -EIO:
333 errstr = "IO failure";
334 break;
335 case -ENOMEM:
336 errstr = "Out of memory";
337 break;
338 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700339 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700340 errstr = "Journal has aborted";
341 else
342 errstr = "Readonly filesystem";
343 break;
344 default:
345 /* If the caller passed in an extra buffer for unknown
346 * errors, textualise them now. Else we just return
347 * NULL. */
348 if (nbuf) {
349 /* Check for truncated error codes... */
350 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
351 errstr = nbuf;
352 }
353 break;
354 }
355
356 return errstr;
357}
358
Mingming Cao617ba132006-10-11 01:20:53 -0700359/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700360 * automatically and invokes the appropriate error response. */
361
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400362void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700363{
364 char nbuf[16];
365 const char *errstr;
366
367 /* Special case: if the error is EROFS, and we're not already
368 * inside a transaction, then there's really no point in logging
369 * an error. */
370 if (errno == -EROFS && journal_current_handle() == NULL &&
371 (sb->s_flags & MS_RDONLY))
372 return;
373
Mingming Cao617ba132006-10-11 01:20:53 -0700374 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400375 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
376 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700377
Mingming Cao617ba132006-10-11 01:20:53 -0700378 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700379}
380
381/*
Mingming Cao617ba132006-10-11 01:20:53 -0700382 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700383 * abort function may be used to deal with unrecoverable failures such
384 * as journal IO errors or ENOMEM at a critical moment in log management.
385 *
386 * We unconditionally force the filesystem into an ABORT|READONLY state,
387 * unless the error response on the fs has been set to panic in which
388 * case we take the easy way out and panic immediately.
389 */
390
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400391void ext4_abort(struct super_block *sb, const char *function,
392 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700393{
394 va_list args;
395
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400396 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700397
398 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400399 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700400 vprintk(fmt, args);
401 printk("\n");
402 va_end(args);
403
404 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700405 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700406
407 if (sb->s_flags & MS_RDONLY)
408 return;
409
410 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700411 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700412 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700413 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400414 if (EXT4_SB(sb)->s_journal)
415 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700416}
417
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400418void ext4_warning(struct super_block *sb, const char *function,
419 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700420{
421 va_list args;
422
423 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700424 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700425 sb->s_id, function);
426 vprintk(fmt, args);
427 printk("\n");
428 va_end(args);
429}
430
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500431void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
432 const char *function, const char *fmt, ...)
433__releases(bitlock)
434__acquires(bitlock)
435{
436 va_list args;
437 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
438
439 va_start(args, fmt);
440 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
441 vprintk(fmt, args);
442 printk("\n");
443 va_end(args);
444
445 if (test_opt(sb, ERRORS_CONT)) {
446 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
447 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
448 ext4_commit_super(sb, es, 0);
449 return;
450 }
451 ext4_unlock_group(sb, grp);
452 ext4_handle_error(sb);
453 /*
454 * We only get here in the ERRORS_RO case; relocking the group
455 * may be dangerous, but nothing bad will happen since the
456 * filesystem will have already been marked read/only and the
457 * journal has been aborted. We return 1 as a hint to callers
458 * who might what to use the return value from
459 * ext4_grp_locked_error() to distinguish beween the
460 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
461 * aggressively from the ext4 function in question, with a
462 * more appropriate error code.
463 */
464 ext4_lock_group(sb, grp);
465 return;
466}
467
468
Mingming Cao617ba132006-10-11 01:20:53 -0700469void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700470{
Mingming Cao617ba132006-10-11 01:20:53 -0700471 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700472
Mingming Cao617ba132006-10-11 01:20:53 -0700473 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474 return;
475
Harvey Harrison46e665e2008-04-17 10:38:59 -0400476 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700477 "updating to rev %d because of new feature flag, "
478 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700479 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700480
Mingming Cao617ba132006-10-11 01:20:53 -0700481 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
482 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
483 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700484 /* leave es->s_feature_*compat flags alone */
485 /* es->s_uuid will be set by e2fsck if empty */
486
487 /*
488 * The rest of the superblock fields should be zero, and if not it
489 * means they are likely already in use, so leave them alone. We
490 * can leave it up to e2fsck to clean up any inconsistencies there.
491 */
492}
493
494/*
495 * Open the external journal device
496 */
Mingming Cao617ba132006-10-11 01:20:53 -0700497static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700498{
499 struct block_device *bdev;
500 char b[BDEVNAME_SIZE];
501
502 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
503 if (IS_ERR(bdev))
504 goto fail;
505 return bdev;
506
507fail:
Theodore Ts'oabda1412009-01-06 00:20:32 -0500508 printk(KERN_ERR "EXT4-fs: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700509 __bdevname(dev, b), PTR_ERR(bdev));
510 return NULL;
511}
512
513/*
514 * Release the journal device
515 */
Mingming Cao617ba132006-10-11 01:20:53 -0700516static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700517{
518 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500519 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700520}
521
Mingming Cao617ba132006-10-11 01:20:53 -0700522static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700523{
524 struct block_device *bdev;
525 int ret = -ENODEV;
526
527 bdev = sbi->journal_bdev;
528 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700529 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700530 sbi->journal_bdev = NULL;
531 }
532 return ret;
533}
534
535static inline struct inode *orphan_list_entry(struct list_head *l)
536{
Mingming Cao617ba132006-10-11 01:20:53 -0700537 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700538}
539
Mingming Cao617ba132006-10-11 01:20:53 -0700540static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700541{
542 struct list_head *l;
543
544 printk(KERN_ERR "sb orphan head is %d\n",
545 le32_to_cpu(sbi->s_es->s_last_orphan));
546
547 printk(KERN_ERR "sb_info orphan list:\n");
548 list_for_each(l, &sbi->s_orphan) {
549 struct inode *inode = orphan_list_entry(l);
550 printk(KERN_ERR " "
551 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
552 inode->i_sb->s_id, inode->i_ino, inode,
553 inode->i_mode, inode->i_nlink,
554 NEXT_ORPHAN(inode));
555 }
556}
557
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400558static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700559{
Mingming Cao617ba132006-10-11 01:20:53 -0700560 struct ext4_sb_info *sbi = EXT4_SB(sb);
561 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400562 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700563
Alex Tomasc9de5602008-01-29 00:19:52 -0500564 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700565 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700566 ext4_xattr_put_super(sb);
Frank Mayhar03901312009-01-07 00:06:22 -0500567 if (sbi->s_journal) {
568 err = jbd2_journal_destroy(sbi->s_journal);
569 sbi->s_journal = NULL;
570 if (err < 0)
571 ext4_abort(sb, __func__,
572 "Couldn't clean up the journal");
573 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700574 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700575 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700576 es->s_state = cpu_to_le16(sbi->s_mount_state);
Mingming Cao617ba132006-10-11 01:20:53 -0700577 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700578 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400579 if (sbi->s_proc) {
580 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400581 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400582 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700583
584 for (i = 0; i < sbi->s_gdb_count; i++)
585 brelse(sbi->s_group_desc[i]);
586 kfree(sbi->s_group_desc);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400587 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700588 percpu_counter_destroy(&sbi->s_freeblocks_counter);
589 percpu_counter_destroy(&sbi->s_freeinodes_counter);
590 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400591 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700592 brelse(sbi->s_sbh);
593#ifdef CONFIG_QUOTA
594 for (i = 0; i < MAXQUOTAS; i++)
595 kfree(sbi->s_qf_names[i]);
596#endif
597
598 /* Debugging code just in case the in-memory inode orphan list
599 * isn't empty. The on-disk one can be non-empty if we've
600 * detected an error and taken the fs readonly, but the
601 * in-memory list had better be clean by this point. */
602 if (!list_empty(&sbi->s_orphan))
603 dump_orphan_list(sb, sbi);
604 J_ASSERT(list_empty(&sbi->s_orphan));
605
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700606 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700607 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
608 /*
609 * Invalidate the journal device's buffers. We don't want them
610 * floating about in memory - the physical journal device may
611 * hotswapped, and it breaks the `ro-after' testing code.
612 */
613 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700614 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700615 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700616 }
617 sb->s_fs_info = NULL;
Pekka Enberg705895b2009-02-15 18:07:52 -0500618 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700619 kfree(sbi);
620 return;
621}
622
Christoph Lametere18b8902006-12-06 20:33:20 -0800623static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700624
625/*
626 * Called inside transaction, so use GFP_NOFS
627 */
Mingming Cao617ba132006-10-11 01:20:53 -0700628static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700629{
Mingming Cao617ba132006-10-11 01:20:53 -0700630 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800632 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700633 if (!ei)
634 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400635#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700636 ei->i_acl = EXT4_ACL_NOT_CACHED;
637 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700638#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700639 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400640 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700641 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500642 INIT_LIST_HEAD(&ei->i_prealloc_list);
643 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500644 /*
645 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
646 * therefore it can be null here. Don't check it, just initialize
647 * jinode.
648 */
Jan Kara678aaf42008-07-11 19:27:31 -0400649 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400650 ei->i_reserved_data_blocks = 0;
651 ei->i_reserved_meta_blocks = 0;
652 ei->i_allocated_meta_blocks = 0;
653 ei->i_delalloc_reserved_flag = 0;
654 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700655 return &ei->vfs_inode;
656}
657
Mingming Cao617ba132006-10-11 01:20:53 -0700658static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700659{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700660 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
661 printk("EXT4 Inode %p: orphan list check failed!\n",
662 EXT4_I(inode));
663 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
664 EXT4_I(inode), sizeof(struct ext4_inode_info),
665 true);
666 dump_stack();
667 }
Mingming Cao617ba132006-10-11 01:20:53 -0700668 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700669}
670
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700671static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672{
Mingming Cao617ba132006-10-11 01:20:53 -0700673 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700674
Christoph Lametera35afb82007-05-16 22:10:57 -0700675 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400676#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700677 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700678#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500679 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700680 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700681}
682
683static int init_inodecache(void)
684{
Mingming Cao617ba132006-10-11 01:20:53 -0700685 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
686 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687 0, (SLAB_RECLAIM_ACCOUNT|
688 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900689 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700690 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691 return -ENOMEM;
692 return 0;
693}
694
695static void destroy_inodecache(void)
696{
Mingming Cao617ba132006-10-11 01:20:53 -0700697 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700698}
699
Mingming Cao617ba132006-10-11 01:20:53 -0700700static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700701{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400702#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700703 if (EXT4_I(inode)->i_acl &&
704 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
705 posix_acl_release(EXT4_I(inode)->i_acl);
706 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700707 }
Mingming Cao617ba132006-10-11 01:20:53 -0700708 if (EXT4_I(inode)->i_default_acl &&
709 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
710 posix_acl_release(EXT4_I(inode)->i_default_acl);
711 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700712 }
713#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400714 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500715 if (EXT4_JOURNAL(inode))
716 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400717 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700718}
719
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400720static inline void ext4_show_quota_options(struct seq_file *seq,
721 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700722{
723#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700724 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700725
726 if (sbi->s_jquota_fmt)
727 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400728 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700729
730 if (sbi->s_qf_names[USRQUOTA])
731 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
732
733 if (sbi->s_qf_names[GRPQUOTA])
734 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
735
Mingming Cao617ba132006-10-11 01:20:53 -0700736 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737 seq_puts(seq, ",usrquota");
738
Mingming Cao617ba132006-10-11 01:20:53 -0700739 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700740 seq_puts(seq, ",grpquota");
741#endif
742}
743
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700744/*
745 * Show an option if
746 * - it's set to a non-default value OR
747 * - if the per-sb default is different from the global default
748 */
Mingming Cao617ba132006-10-11 01:20:53 -0700749static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700750{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500751 int def_errors;
752 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700754 struct ext4_sb_info *sbi = EXT4_SB(sb);
755 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700756
757 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500758 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700759
760 if (sbi->s_sb_block != 1)
761 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
762 if (test_opt(sb, MINIX_DF))
763 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500764 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700765 seq_puts(seq, ",grpid");
766 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
767 seq_puts(seq, ",nogrpid");
768 if (sbi->s_resuid != EXT4_DEF_RESUID ||
769 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
770 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
771 }
772 if (sbi->s_resgid != EXT4_DEF_RESGID ||
773 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
774 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
775 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500776 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700777 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500778 def_errors == EXT4_ERRORS_CONTINUE) {
779 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700780 }
781 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500782 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500783 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500784 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700785 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500786 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700787 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500788 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700789 seq_puts(seq, ",debug");
790 if (test_opt(sb, OLDALLOC))
791 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400792#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500793 if (test_opt(sb, XATTR_USER) &&
794 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700795 seq_puts(seq, ",user_xattr");
796 if (!test_opt(sb, XATTR_USER) &&
797 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
798 seq_puts(seq, ",nouser_xattr");
799 }
800#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400801#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500802 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700803 seq_puts(seq, ",acl");
804 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
805 seq_puts(seq, ",noacl");
806#endif
807 if (!test_opt(sb, RESERVATION))
808 seq_puts(seq, ",noreservation");
Theodore Ts'o30773842009-01-03 20:27:38 -0500809 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700810 seq_printf(seq, ",commit=%u",
811 (unsigned) (sbi->s_commit_interval / HZ));
812 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500813 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
814 seq_printf(seq, ",min_batch_time=%u",
815 (unsigned) sbi->s_min_batch_time);
816 }
817 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
818 seq_printf(seq, ",max_batch_time=%u",
819 (unsigned) sbi->s_min_batch_time);
820 }
821
Eric Sandeen571640c2008-05-26 12:29:46 -0400822 /*
823 * We're changing the default of barrier mount option, so
824 * let's always display its mount state so it's clear what its
825 * status is.
826 */
827 seq_puts(seq, ",barrier=");
828 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400829 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
830 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700831 if (test_opt(sb, NOBH))
832 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500833 if (test_opt(sb, I_VERSION))
834 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400835 if (!test_opt(sb, DELALLOC))
836 seq_puts(seq, ",nodelalloc");
837
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700838
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500839 if (sbi->s_stripe)
840 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500841 /*
842 * journal mode get enabled in different ways
843 * So just print the value even if we didn't specify it
844 */
Mingming Cao617ba132006-10-11 01:20:53 -0700845 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700846 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700847 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700848 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700849 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700850 seq_puts(seq, ",data=writeback");
851
Theodore Ts'o240799c2008-10-09 23:53:47 -0400852 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
853 seq_printf(seq, ",inode_readahead_blks=%u",
854 sbi->s_inode_readahead_blks);
855
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400856 if (test_opt(sb, DATA_ERR_ABORT))
857 seq_puts(seq, ",data_err=abort");
858
Mingming Cao617ba132006-10-11 01:20:53 -0700859 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700860 return 0;
861}
862
863
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700864static struct inode *ext4_nfs_get_inode(struct super_block *sb,
865 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700866{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868
Mingming Cao617ba132006-10-11 01:20:53 -0700869 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700870 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700871 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700872 return ERR_PTR(-ESTALE);
873
874 /* iget isn't really right if the inode is currently unallocated!!
875 *
Mingming Cao617ba132006-10-11 01:20:53 -0700876 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700877 * deleted, so we should be safe.
878 *
879 * Currently we don't know the generation for parent directory, so
880 * a generation of 0 means "accept any"
881 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800882 inode = ext4_iget(sb, ino);
883 if (IS_ERR(inode))
884 return ERR_CAST(inode);
885 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700886 iput(inode);
887 return ERR_PTR(-ESTALE);
888 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700889
890 return inode;
891}
892
893static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
894 int fh_len, int fh_type)
895{
896 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
897 ext4_nfs_get_inode);
898}
899
900static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
901 int fh_len, int fh_type)
902{
903 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
904 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700905}
906
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500907/*
908 * Try to release metadata pages (indirect blocks, directories) which are
909 * mapped via the block device. Since these pages could have journal heads
910 * which would prevent try_to_free_buffers() from freeing them, we must use
911 * jbd2 layer's try_to_free_buffers() function to release them.
912 */
913static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
914{
915 journal_t *journal = EXT4_SB(sb)->s_journal;
916
917 WARN_ON(PageChecked(page));
918 if (!page_has_buffers(page))
919 return 0;
920 if (journal)
921 return jbd2_journal_try_to_free_buffers(journal, page,
922 wait & ~__GFP_WAIT);
923 return try_to_free_buffers(page);
924}
925
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700926#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400927#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400928#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700929
Mingming Cao617ba132006-10-11 01:20:53 -0700930static int ext4_write_dquot(struct dquot *dquot);
931static int ext4_acquire_dquot(struct dquot *dquot);
932static int ext4_release_dquot(struct dquot *dquot);
933static int ext4_mark_dquot_dirty(struct dquot *dquot);
934static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700935static int ext4_quota_on(struct super_block *sb, int type, int format_id,
936 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700937static int ext4_quota_on_mount(struct super_block *sb, int type);
938static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700939 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700940static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700941 const char *data, size_t len, loff_t off);
942
Mingming Cao617ba132006-10-11 01:20:53 -0700943static struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +0100944 .initialize = dquot_initialize,
945 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700946 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +0100947 .reserve_space = dquot_reserve_space,
948 .claim_space = dquot_claim_space,
949 .release_rsv = dquot_release_reserved_space,
950 .get_reserved_space = ext4_get_reserved_space,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700951 .alloc_inode = dquot_alloc_inode,
952 .free_space = dquot_free_space,
953 .free_inode = dquot_free_inode,
954 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700955 .write_dquot = ext4_write_dquot,
956 .acquire_dquot = ext4_acquire_dquot,
957 .release_dquot = ext4_release_dquot,
958 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +0100959 .write_info = ext4_write_info,
960 .alloc_dquot = dquot_alloc,
961 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700962};
963
Mingming Cao617ba132006-10-11 01:20:53 -0700964static struct quotactl_ops ext4_qctl_operations = {
965 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700966 .quota_off = vfs_quota_off,
967 .quota_sync = vfs_quota_sync,
968 .get_info = vfs_get_dqinfo,
969 .set_info = vfs_set_dqinfo,
970 .get_dqblk = vfs_get_dqblk,
971 .set_dqblk = vfs_set_dqblk
972};
973#endif
974
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800975static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700976 .alloc_inode = ext4_alloc_inode,
977 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700978 .write_inode = ext4_write_inode,
979 .dirty_inode = ext4_dirty_inode,
980 .delete_inode = ext4_delete_inode,
981 .put_super = ext4_put_super,
982 .write_super = ext4_write_super,
983 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800984 .freeze_fs = ext4_freeze,
985 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -0700986 .statfs = ext4_statfs,
987 .remount_fs = ext4_remount,
988 .clear_inode = ext4_clear_inode,
989 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700990#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -0700991 .quota_read = ext4_quota_read,
992 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700993#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500994 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700995};
996
Christoph Hellwig39655162007-10-21 16:42:17 -0700997static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700998 .fh_to_dentry = ext4_fh_to_dentry,
999 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001000 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001001};
1002
1003enum {
1004 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1005 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001006 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001007 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
1008 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001009 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001010 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001011 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001012 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001013 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1015 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
1016 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
Theodore Ts'o83982b62009-01-06 14:53:16 -05001017 Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001018 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001019 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020};
1021
Steven Whitehousea447c092008-10-13 10:46:57 +01001022static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001023 {Opt_bsd_df, "bsddf"},
1024 {Opt_minix_df, "minixdf"},
1025 {Opt_grpid, "grpid"},
1026 {Opt_grpid, "bsdgroups"},
1027 {Opt_nogrpid, "nogrpid"},
1028 {Opt_nogrpid, "sysvgroups"},
1029 {Opt_resgid, "resgid=%u"},
1030 {Opt_resuid, "resuid=%u"},
1031 {Opt_sb, "sb=%u"},
1032 {Opt_err_cont, "errors=continue"},
1033 {Opt_err_panic, "errors=panic"},
1034 {Opt_err_ro, "errors=remount-ro"},
1035 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001036 {Opt_debug, "debug"},
1037 {Opt_oldalloc, "oldalloc"},
1038 {Opt_orlov, "orlov"},
1039 {Opt_user_xattr, "user_xattr"},
1040 {Opt_nouser_xattr, "nouser_xattr"},
1041 {Opt_acl, "acl"},
1042 {Opt_noacl, "noacl"},
1043 {Opt_reservation, "reservation"},
1044 {Opt_noreservation, "noreservation"},
1045 {Opt_noload, "noload"},
1046 {Opt_nobh, "nobh"},
1047 {Opt_bh, "bh"},
1048 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001049 {Opt_min_batch_time, "min_batch_time=%u"},
1050 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001051 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001053 {Opt_journal_checksum, "journal_checksum"},
1054 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001055 {Opt_abort, "abort"},
1056 {Opt_data_journal, "data=journal"},
1057 {Opt_data_ordered, "data=ordered"},
1058 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001059 {Opt_data_err_abort, "data_err=abort"},
1060 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001061 {Opt_offusrjquota, "usrjquota="},
1062 {Opt_usrjquota, "usrjquota=%s"},
1063 {Opt_offgrpjquota, "grpjquota="},
1064 {Opt_grpjquota, "grpjquota=%s"},
1065 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1066 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1067 {Opt_grpquota, "grpquota"},
1068 {Opt_noquota, "noquota"},
1069 {Opt_quota, "quota"},
1070 {Opt_usrquota, "usrquota"},
1071 {Opt_barrier, "barrier=%u"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001072 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001073 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001075 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001076 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001077 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001078 {Opt_journal_ioprio, "journal_ioprio=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001079 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001080};
1081
Mingming Cao617ba132006-10-11 01:20:53 -07001082static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001083{
Mingming Cao617ba132006-10-11 01:20:53 -07001084 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001085 char *options = (char *) *data;
1086
1087 if (!options || strncmp(options, "sb=", 3) != 0)
1088 return 1; /* Default location */
1089 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001090 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001091 sb_block = simple_strtoul(options, &options, 0);
1092 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001093 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001094 (char *) *data);
1095 return 1;
1096 }
1097 if (*options == ',')
1098 options++;
1099 *data = (void *) options;
1100 return sb_block;
1101}
1102
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001103#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1104
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001105static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001106 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001107 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001108 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001109{
Mingming Cao617ba132006-10-11 01:20:53 -07001110 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001111 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001112 substring_t args[MAX_OPT_ARGS];
1113 int data_opt = 0;
1114 int option;
1115#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001116 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001117 char *qname;
1118#endif
1119
1120 if (!options)
1121 return 1;
1122
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001123 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001124 int token;
1125 if (!*p)
1126 continue;
1127
1128 token = match_token(p, tokens, args);
1129 switch (token) {
1130 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001131 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001132 break;
1133 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001134 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001135 break;
1136 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001137 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001138 break;
1139 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001140 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001141 break;
1142 case Opt_resuid:
1143 if (match_int(&args[0], &option))
1144 return 0;
1145 sbi->s_resuid = option;
1146 break;
1147 case Opt_resgid:
1148 if (match_int(&args[0], &option))
1149 return 0;
1150 sbi->s_resgid = option;
1151 break;
1152 case Opt_sb:
1153 /* handled by get_sb_block() instead of here */
1154 /* *sb_block = match_int(&args[0]); */
1155 break;
1156 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001157 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1158 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1159 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001160 break;
1161 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001162 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1163 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1164 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001165 break;
1166 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001167 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1168 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1169 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001170 break;
1171 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001172 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001173 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001174 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001175 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001176 break;
1177 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001178 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001179 break;
1180 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001181 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001183#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001184 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001185 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001186 break;
1187 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001188 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001189 break;
1190#else
1191 case Opt_user_xattr:
1192 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001193 printk(KERN_ERR "EXT4 (no)user_xattr options "
1194 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001195 break;
1196#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001197#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001198 case Opt_acl:
1199 set_opt(sbi->s_mount_opt, POSIX_ACL);
1200 break;
1201 case Opt_noacl:
1202 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1203 break;
1204#else
1205 case Opt_acl:
1206 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001207 printk(KERN_ERR "EXT4 (no)acl options "
1208 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001209 break;
1210#endif
1211 case Opt_reservation:
1212 set_opt(sbi->s_mount_opt, RESERVATION);
1213 break;
1214 case Opt_noreservation:
1215 clear_opt(sbi->s_mount_opt, RESERVATION);
1216 break;
1217 case Opt_journal_update:
1218 /* @@@ FIXME */
1219 /* Eventually we will want to be able to create
1220 a journal file here. For now, only allow the
1221 user to specify an existing inode to be the
1222 journal file. */
1223 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001224 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001225 "journal on remount\n");
1226 return 0;
1227 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001228 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001229 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001230 case Opt_journal_dev:
1231 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001232 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001233 "journal on remount\n");
1234 return 0;
1235 }
1236 if (match_int(&args[0], &option))
1237 return 0;
1238 *journal_devnum = option;
1239 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001240 case Opt_journal_checksum:
1241 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1242 break;
1243 case Opt_journal_async_commit:
1244 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1245 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1246 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001247 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001248 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001249 break;
1250 case Opt_commit:
1251 if (match_int(&args[0], &option))
1252 return 0;
1253 if (option < 0)
1254 return 0;
1255 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001256 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001257 sbi->s_commit_interval = HZ * option;
1258 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001259 case Opt_max_batch_time:
1260 if (match_int(&args[0], &option))
1261 return 0;
1262 if (option < 0)
1263 return 0;
1264 if (option == 0)
1265 option = EXT4_DEF_MAX_BATCH_TIME;
1266 sbi->s_max_batch_time = option;
1267 break;
1268 case Opt_min_batch_time:
1269 if (match_int(&args[0], &option))
1270 return 0;
1271 if (option < 0)
1272 return 0;
1273 sbi->s_min_batch_time = option;
1274 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001275 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001276 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001277 goto datacheck;
1278 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001279 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001280 goto datacheck;
1281 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001282 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001283 datacheck:
1284 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001285 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001286 != data_opt) {
1287 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001288 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001289 "mode on remount\n");
1290 return 0;
1291 }
1292 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001293 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001294 sbi->s_mount_opt |= data_opt;
1295 }
1296 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001297 case Opt_data_err_abort:
1298 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1299 break;
1300 case Opt_data_err_ignore:
1301 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1302 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001303#ifdef CONFIG_QUOTA
1304 case Opt_usrjquota:
1305 qtype = USRQUOTA;
1306 goto set_qf_name;
1307 case Opt_grpjquota:
1308 qtype = GRPQUOTA;
1309set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001310 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001311 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001312 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001313 "EXT4-fs: Cannot change journaled "
1314 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001315 return 0;
1316 }
1317 qname = match_strdup(&args[0]);
1318 if (!qname) {
1319 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001320 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001321 "storing quotafile name.\n");
1322 return 0;
1323 }
1324 if (sbi->s_qf_names[qtype] &&
1325 strcmp(sbi->s_qf_names[qtype], qname)) {
1326 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001327 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001328 "specified.\n", QTYPE2NAME(qtype));
1329 kfree(qname);
1330 return 0;
1331 }
1332 sbi->s_qf_names[qtype] = qname;
1333 if (strchr(sbi->s_qf_names[qtype], '/')) {
1334 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001335 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001336 "filesystem root.\n");
1337 kfree(sbi->s_qf_names[qtype]);
1338 sbi->s_qf_names[qtype] = NULL;
1339 return 0;
1340 }
1341 set_opt(sbi->s_mount_opt, QUOTA);
1342 break;
1343 case Opt_offusrjquota:
1344 qtype = USRQUOTA;
1345 goto clear_qf_name;
1346 case Opt_offgrpjquota:
1347 qtype = GRPQUOTA;
1348clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001349 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001350 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001351 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001352 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001353 "quota turned on.\n");
1354 return 0;
1355 }
1356 /*
1357 * The space will be released later when all options
1358 * are confirmed to be correct
1359 */
1360 sbi->s_qf_names[qtype] = NULL;
1361 break;
1362 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001363 qfmt = QFMT_VFS_OLD;
1364 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001365 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001366 qfmt = QFMT_VFS_V0;
1367set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001368 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001369 sbi->s_jquota_fmt != qfmt) {
1370 printk(KERN_ERR "EXT4-fs: Cannot change "
1371 "journaled quota options when "
1372 "quota turned on.\n");
1373 return 0;
1374 }
1375 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001376 break;
1377 case Opt_quota:
1378 case Opt_usrquota:
1379 set_opt(sbi->s_mount_opt, QUOTA);
1380 set_opt(sbi->s_mount_opt, USRQUOTA);
1381 break;
1382 case Opt_grpquota:
1383 set_opt(sbi->s_mount_opt, QUOTA);
1384 set_opt(sbi->s_mount_opt, GRPQUOTA);
1385 break;
1386 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001387 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001388 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001389 "options when quota turned on.\n");
1390 return 0;
1391 }
1392 clear_opt(sbi->s_mount_opt, QUOTA);
1393 clear_opt(sbi->s_mount_opt, USRQUOTA);
1394 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1395 break;
1396#else
1397 case Opt_quota:
1398 case Opt_usrquota:
1399 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001400 printk(KERN_ERR
1401 "EXT4-fs: quota options not supported.\n");
1402 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001403 case Opt_usrjquota:
1404 case Opt_grpjquota:
1405 case Opt_offusrjquota:
1406 case Opt_offgrpjquota:
1407 case Opt_jqfmt_vfsold:
1408 case Opt_jqfmt_vfsv0:
1409 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001410 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001411 "supported.\n");
1412 break;
1413 case Opt_noquota:
1414 break;
1415#endif
1416 case Opt_abort:
1417 set_opt(sbi->s_mount_opt, ABORT);
1418 break;
1419 case Opt_barrier:
1420 if (match_int(&args[0], &option))
1421 return 0;
1422 if (option)
1423 set_opt(sbi->s_mount_opt, BARRIER);
1424 else
1425 clear_opt(sbi->s_mount_opt, BARRIER);
1426 break;
1427 case Opt_ignore:
1428 break;
1429 case Opt_resize:
1430 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001431 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001432 "for remount\n");
1433 return 0;
1434 }
1435 if (match_int(&args[0], &option) != 0)
1436 return 0;
1437 *n_blocks_count = option;
1438 break;
1439 case Opt_nobh:
1440 set_opt(sbi->s_mount_opt, NOBH);
1441 break;
1442 case Opt_bh:
1443 clear_opt(sbi->s_mount_opt, NOBH);
1444 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001445 case Opt_i_version:
1446 set_opt(sbi->s_mount_opt, I_VERSION);
1447 sb->s_flags |= MS_I_VERSION;
1448 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001449 case Opt_nodelalloc:
1450 clear_opt(sbi->s_mount_opt, DELALLOC);
1451 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001452 case Opt_stripe:
1453 if (match_int(&args[0], &option))
1454 return 0;
1455 if (option < 0)
1456 return 0;
1457 sbi->s_stripe = option;
1458 break;
Alex Tomas64769242008-07-11 19:27:31 -04001459 case Opt_delalloc:
1460 set_opt(sbi->s_mount_opt, DELALLOC);
1461 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001462 case Opt_inode_readahead_blks:
1463 if (match_int(&args[0], &option))
1464 return 0;
1465 if (option < 0 || option > (1 << 30))
1466 return 0;
1467 sbi->s_inode_readahead_blks = option;
1468 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001469 case Opt_journal_ioprio:
1470 if (match_int(&args[0], &option))
1471 return 0;
1472 if (option < 0 || option > 7)
1473 break;
1474 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1475 option);
1476 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001477 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001478 printk(KERN_ERR
1479 "EXT4-fs: Unrecognized mount option \"%s\" "
1480 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001481 return 0;
1482 }
1483 }
1484#ifdef CONFIG_QUOTA
1485 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001486 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001487 sbi->s_qf_names[USRQUOTA])
1488 clear_opt(sbi->s_mount_opt, USRQUOTA);
1489
Mingming Cao617ba132006-10-11 01:20:53 -07001490 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001491 sbi->s_qf_names[GRPQUOTA])
1492 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1493
1494 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001495 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001496 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001497 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1498 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001499 "format mixing.\n");
1500 return 0;
1501 }
1502
1503 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001504 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001505 "not specified.\n");
1506 return 0;
1507 }
1508 } else {
1509 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001510 printk(KERN_ERR "EXT4-fs: journaled quota format "
1511 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001512 "enabled.\n");
1513 return 0;
1514 }
1515 }
1516#endif
1517 return 1;
1518}
1519
Mingming Cao617ba132006-10-11 01:20:53 -07001520static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001521 int read_only)
1522{
Mingming Cao617ba132006-10-11 01:20:53 -07001523 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001524 int res = 0;
1525
Mingming Cao617ba132006-10-11 01:20:53 -07001526 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001527 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1528 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001529 res = MS_RDONLY;
1530 }
1531 if (read_only)
1532 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001533 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001534 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1535 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001536 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001537 printk(KERN_WARNING
1538 "EXT4-fs warning: mounting fs with errors, "
1539 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001540 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1541 le16_to_cpu(es->s_mnt_count) >=
1542 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001543 printk(KERN_WARNING
1544 "EXT4-fs warning: maximal mount count reached, "
1545 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001546 else if (le32_to_cpu(es->s_checkinterval) &&
1547 (le32_to_cpu(es->s_lastcheck) +
1548 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001549 printk(KERN_WARNING
1550 "EXT4-fs warning: checktime reached, "
1551 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001552 if (!sbi->s_journal)
1553 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001554 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001555 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001556 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001557 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001558 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001559 if (sbi->s_journal)
1560 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001561
Mingming Cao617ba132006-10-11 01:20:53 -07001562 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001563 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001564 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001565 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1566 sb->s_blocksize,
1567 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001568 EXT4_BLOCKS_PER_GROUP(sb),
1569 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001570 sbi->s_mount_opt);
1571
Frank Mayhar03901312009-01-07 00:06:22 -05001572 if (EXT4_SB(sb)->s_journal) {
1573 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1574 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1575 "external", EXT4_SB(sb)->s_journal->j_devname);
1576 } else {
1577 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1578 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001579 return res;
1580}
1581
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001582static int ext4_fill_flex_info(struct super_block *sb)
1583{
1584 struct ext4_sb_info *sbi = EXT4_SB(sb);
1585 struct ext4_group_desc *gdp = NULL;
1586 struct buffer_head *bh;
1587 ext4_group_t flex_group_count;
1588 ext4_group_t flex_group;
1589 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001590 int i;
1591
1592 if (!sbi->s_es->s_log_groups_per_flex) {
1593 sbi->s_log_groups_per_flex = 0;
1594 return 1;
1595 }
1596
1597 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1598 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1599
Frederic Bohec62a11f2008-09-08 10:20:24 -04001600 /* We allocate both existing and potentially added groups */
1601 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001602 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1603 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001604 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001605 sizeof(struct flex_groups), GFP_KERNEL);
1606 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001607 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001608 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001609 goto failed;
1610 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001611
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001612 for (i = 0; i < sbi->s_groups_count; i++) {
1613 gdp = ext4_get_group_desc(sb, i, &bh);
1614
1615 flex_group = ext4_flex_group(sbi, i);
1616 sbi->s_flex_groups[flex_group].free_inodes +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001617 ext4_free_inodes_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001618 sbi->s_flex_groups[flex_group].free_blocks +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001619 ext4_free_blks_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001620 }
1621
1622 return 1;
1623failed:
1624 return 0;
1625}
1626
Andreas Dilger717d50e2007-10-16 18:38:25 -04001627__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1628 struct ext4_group_desc *gdp)
1629{
1630 __u16 crc = 0;
1631
1632 if (sbi->s_es->s_feature_ro_compat &
1633 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1634 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1635 __le32 le_group = cpu_to_le32(block_group);
1636
1637 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1638 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1639 crc = crc16(crc, (__u8 *)gdp, offset);
1640 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1641 /* for checksum of struct ext4_group_desc do the rest...*/
1642 if ((sbi->s_es->s_feature_incompat &
1643 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1644 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1645 crc = crc16(crc, (__u8 *)gdp + offset,
1646 le16_to_cpu(sbi->s_es->s_desc_size) -
1647 offset);
1648 }
1649
1650 return cpu_to_le16(crc);
1651}
1652
1653int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1654 struct ext4_group_desc *gdp)
1655{
1656 if ((sbi->s_es->s_feature_ro_compat &
1657 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1658 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1659 return 0;
1660
1661 return 1;
1662}
1663
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001664/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001665static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001666{
Mingming Cao617ba132006-10-11 01:20:53 -07001667 struct ext4_sb_info *sbi = EXT4_SB(sb);
1668 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1669 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001670 ext4_fsblk_t block_bitmap;
1671 ext4_fsblk_t inode_bitmap;
1672 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001673 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001674 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001675
Jose R. Santosce421582007-10-16 18:38:25 -04001676 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1677 flexbg_flag = 1;
1678
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001679 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001680
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001681 for (i = 0; i < sbi->s_groups_count; i++) {
1682 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1683
Jose R. Santosce421582007-10-16 18:38:25 -04001684 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001685 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001686 else
1687 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001688 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001689
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001690 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001691 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001692 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001693 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001694 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001695 return 0;
1696 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001697 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001698 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001699 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001700 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001701 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001702 return 0;
1703 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001704 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001705 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001706 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001707 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001708 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001709 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710 return 0;
1711 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001712 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001713 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001714 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001715 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001716 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1717 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001718 if (!(sb->s_flags & MS_RDONLY)) {
1719 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001720 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001721 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001722 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001723 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001724 if (!flexbg_flag)
1725 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001726 }
1727
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001728 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001729 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001730 return 1;
1731}
1732
Mingming Cao617ba132006-10-11 01:20:53 -07001733/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001734 * the superblock) which were deleted from all directories, but held open by
1735 * a process at the time of a crash. We walk the list and try to delete these
1736 * inodes at recovery time (only with a read-write filesystem).
1737 *
1738 * In order to keep the orphan inode chain consistent during traversal (in
1739 * case of crash during recovery), we link each inode into the superblock
1740 * orphan list_head and handle it the same way as an inode deletion during
1741 * normal operation (which journals the operations for us).
1742 *
1743 * We only do an iget() and an iput() on each inode, which is very safe if we
1744 * accidentally point at an in-use or already deleted inode. The worst that
1745 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001746 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001747 * e2fsck was run on this filesystem, and it must have already done the orphan
1748 * inode cleanup for us, so we can safely abort without any further action.
1749 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001750static void ext4_orphan_cleanup(struct super_block *sb,
1751 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001752{
1753 unsigned int s_flags = sb->s_flags;
1754 int nr_orphans = 0, nr_truncates = 0;
1755#ifdef CONFIG_QUOTA
1756 int i;
1757#endif
1758 if (!es->s_last_orphan) {
1759 jbd_debug(4, "no orphan inodes to clean up\n");
1760 return;
1761 }
1762
Eric Sandeena8f48a92006-12-06 20:40:13 -08001763 if (bdev_read_only(sb->s_bdev)) {
1764 printk(KERN_ERR "EXT4-fs: write access "
1765 "unavailable, skipping orphan cleanup.\n");
1766 return;
1767 }
1768
Mingming Cao617ba132006-10-11 01:20:53 -07001769 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001770 if (es->s_last_orphan)
1771 jbd_debug(1, "Errors on filesystem, "
1772 "clearing orphan list.\n");
1773 es->s_last_orphan = 0;
1774 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1775 return;
1776 }
1777
1778 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001779 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001780 sb->s_id);
1781 sb->s_flags &= ~MS_RDONLY;
1782 }
1783#ifdef CONFIG_QUOTA
1784 /* Needed for iput() to work correctly and not trash data */
1785 sb->s_flags |= MS_ACTIVE;
1786 /* Turn on quotas so that they are updated correctly */
1787 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001788 if (EXT4_SB(sb)->s_qf_names[i]) {
1789 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001790 if (ret < 0)
1791 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001792 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001793 "quota: error %d\n", ret);
1794 }
1795 }
1796#endif
1797
1798 while (es->s_last_orphan) {
1799 struct inode *inode;
1800
Josef Bacik97bd42b2008-04-29 22:04:56 -04001801 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1802 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001803 es->s_last_orphan = 0;
1804 break;
1805 }
1806
Mingming Cao617ba132006-10-11 01:20:53 -07001807 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001808 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001809 if (inode->i_nlink) {
1810 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001811 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001812 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001813 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001814 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001815 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001816 nr_truncates++;
1817 } else {
1818 printk(KERN_DEBUG
1819 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001820 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001821 jbd_debug(2, "deleting unreferenced inode %lu\n",
1822 inode->i_ino);
1823 nr_orphans++;
1824 }
1825 iput(inode); /* The delete magic happens here! */
1826 }
1827
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001828#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001829
1830 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001831 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001832 sb->s_id, PLURAL(nr_orphans));
1833 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001834 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001835 sb->s_id, PLURAL(nr_truncates));
1836#ifdef CONFIG_QUOTA
1837 /* Turn quotas off */
1838 for (i = 0; i < MAXQUOTAS; i++) {
1839 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001840 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001841 }
1842#endif
1843 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1844}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001845/*
1846 * Maximal extent format file size.
1847 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1848 * extent format containers, within a sector_t, and within i_blocks
1849 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1850 * so that won't be a limiting factor.
1851 *
1852 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1853 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001854static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001855{
1856 loff_t res;
1857 loff_t upper_limit = MAX_LFS_FILESIZE;
1858
1859 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001860 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001861 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001862 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001863 * i_block represent total blocks in 512 bytes
1864 * 32 == size of vfs inode i_blocks * 8
1865 */
1866 upper_limit = (1LL << 32) - 1;
1867
1868 /* total blocks in file system block size */
1869 upper_limit >>= (blkbits - 9);
1870 upper_limit <<= blkbits;
1871 }
1872
1873 /* 32-bit extent-start container, ee_block */
1874 res = 1LL << 32;
1875 res <<= blkbits;
1876 res -= 1;
1877
1878 /* Sanity check against vm- & vfs- imposed limits */
1879 if (res > upper_limit)
1880 res = upper_limit;
1881
1882 return res;
1883}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001884
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001885/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001886 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001887 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1888 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001889 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001890static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001891{
Mingming Cao617ba132006-10-11 01:20:53 -07001892 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001893 int meta_blocks;
1894 loff_t upper_limit;
1895 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001896 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001897 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001898 * does not exceed 2^48 -1
1899 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1900 * total number of 512 bytes blocks of the file
1901 */
1902
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001903 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001904 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001905 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001906 * implies the inode i_block represent total blocks in
1907 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001908 */
1909 upper_limit = (1LL << 32) - 1;
1910
1911 /* total blocks in file system block size */
1912 upper_limit >>= (bits - 9);
1913
1914 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001915 /*
1916 * We use 48 bit ext4_inode i_blocks
1917 * With EXT4_HUGE_FILE_FL set the i_blocks
1918 * represent total number of blocks in
1919 * file system block size
1920 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001921 upper_limit = (1LL << 48) - 1;
1922
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001923 }
1924
1925 /* indirect blocks */
1926 meta_blocks = 1;
1927 /* double indirect blocks */
1928 meta_blocks += 1 + (1LL << (bits-2));
1929 /* tripple indirect blocks */
1930 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1931
1932 upper_limit -= meta_blocks;
1933 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001934
1935 res += 1LL << (bits-2);
1936 res += 1LL << (2*(bits-2));
1937 res += 1LL << (3*(bits-2));
1938 res <<= bits;
1939 if (res > upper_limit)
1940 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001941
1942 if (res > MAX_LFS_FILESIZE)
1943 res = MAX_LFS_FILESIZE;
1944
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001945 return res;
1946}
1947
Mingming Cao617ba132006-10-11 01:20:53 -07001948static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001949 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001950{
Mingming Cao617ba132006-10-11 01:20:53 -07001951 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001952 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001953 int has_super = 0;
1954
1955 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1956
Mingming Cao617ba132006-10-11 01:20:53 -07001957 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001958 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001959 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001960 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001961 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001962 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001963 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001964}
1965
Alex Tomasc9de5602008-01-29 00:19:52 -05001966/**
1967 * ext4_get_stripe_size: Get the stripe size.
1968 * @sbi: In memory super block info
1969 *
1970 * If we have specified it via mount option, then
1971 * use the mount option value. If the value specified at mount time is
1972 * greater than the blocks per group use the super block value.
1973 * If the super block value is greater than blocks per group return 0.
1974 * Allocator needs it be less than blocks per group.
1975 *
1976 */
1977static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1978{
1979 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
1980 unsigned long stripe_width =
1981 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
1982
1983 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
1984 return sbi->s_stripe;
1985
1986 if (stripe_width <= sbi->s_blocks_per_group)
1987 return stripe_width;
1988
1989 if (stride <= sbi->s_blocks_per_group)
1990 return stride;
1991
1992 return 0;
1993}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001994
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001995static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04001996 __releases(kernel_lock)
1997 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05001998
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001999{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002000 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002001 struct ext4_super_block *es = NULL;
2002 struct ext4_sb_info *sbi;
2003 ext4_fsblk_t block;
2004 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002005 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002006 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002007 unsigned long journal_devnum = 0;
2008 unsigned long def_mount_opts;
2009 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002010 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002011 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002012 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002013 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002014 unsigned int db_count;
2015 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002016 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002017 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002018 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002019 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002020 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002021
2022 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2023 if (!sbi)
2024 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002025
2026 sbi->s_blockgroup_lock =
2027 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2028 if (!sbi->s_blockgroup_lock) {
2029 kfree(sbi);
2030 return -ENOMEM;
2031 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002032 sb->s_fs_info = sbi;
2033 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002034 sbi->s_resuid = EXT4_DEF_RESUID;
2035 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002036 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002037 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002038 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2039 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002040
2041 unlock_kernel();
2042
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002043 /* Cleanup superblock name */
2044 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2045 *cp = '!';
2046
Mingming Cao617ba132006-10-11 01:20:53 -07002047 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002048 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002049 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002050 goto out_fail;
2051 }
2052
2053 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002054 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002055 * block sizes. We need to calculate the offset from buffer start.
2056 */
Mingming Cao617ba132006-10-11 01:20:53 -07002057 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002058 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2059 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002060 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002061 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002062 }
2063
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002064 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002065 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002066 goto out_fail;
2067 }
2068 /*
2069 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002070 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002071 */
Mingming Cao617ba132006-10-11 01:20:53 -07002072 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002073 sbi->s_es = es;
2074 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002075 if (sb->s_magic != EXT4_SUPER_MAGIC)
2076 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002077 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002078
2079 /* Set defaults before we parse the mount options */
2080 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002081 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002082 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002083 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002084 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002085 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002086 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002087#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002088 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002089 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002090#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002091#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002092 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002093 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002094#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002095 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2096 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2097 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2098 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2099 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2100 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002101
Mingming Cao617ba132006-10-11 01:20:53 -07002102 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002103 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002104 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002105 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002106 else
2107 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002108
2109 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2110 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002111 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2112 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2113 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002114
2115 set_opt(sbi->s_mount_opt, RESERVATION);
Eric Sandeen571640c2008-05-26 12:29:46 -04002116 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002117
Mingming Cao1e2462f2007-07-18 09:00:55 -04002118 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002119 * enable delayed allocation by default
2120 * Use -o nodelalloc to turn it off
2121 */
2122 set_opt(sbi->s_mount_opt, DELALLOC);
2123
2124
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002125 if (!parse_options((char *) data, sb, &journal_devnum,
2126 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002127 goto failed_mount;
2128
2129 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002130 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002131
Mingming Cao617ba132006-10-11 01:20:53 -07002132 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2133 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2134 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2135 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002136 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002137 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002138 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002139
2140 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002141 * Check feature flags regardless of the revision level, since we
2142 * previously didn't change the revision level when setting the flags,
2143 * so there is a chance incompat flags are set on a rev 0 filesystem.
2144 */
Mingming Cao617ba132006-10-11 01:20:53 -07002145 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002146 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002147 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002148 "unsupported optional features (%x).\n", sb->s_id,
2149 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2150 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002151 goto failed_mount;
2152 }
Mingming Cao617ba132006-10-11 01:20:53 -07002153 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002154 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002155 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002156 "unsupported optional features (%x).\n", sb->s_id,
2157 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2158 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002159 goto failed_mount;
2160 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002161 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2162 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2163 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002164 /*
2165 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002166 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002167 */
2168 if (sizeof(root->i_blocks) < sizeof(u64) &&
2169 !(sb->s_flags & MS_RDONLY)) {
2170 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2171 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002172 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002173 goto failed_mount;
2174 }
2175 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002176 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2177
Mingming Cao617ba132006-10-11 01:20:53 -07002178 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2179 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002180 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002181 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002182 blocksize, sb->s_id);
2183 goto failed_mount;
2184 }
2185
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002186 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002187
2188 /* Validate the filesystem blocksize */
2189 if (!sb_set_blocksize(sb, blocksize)) {
2190 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2191 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002192 goto failed_mount;
2193 }
2194
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002195 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002196 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2197 offset = do_div(logical_sb_block, blocksize);
2198 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002199 if (!bh) {
2200 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002201 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002202 goto failed_mount;
2203 }
Mingming Cao617ba132006-10-11 01:20:53 -07002204 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002205 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002206 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002207 printk(KERN_ERR
2208 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002209 goto failed_mount;
2210 }
2211 }
2212
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002213 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2214 has_huge_files);
2215 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002216
Mingming Cao617ba132006-10-11 01:20:53 -07002217 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2218 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2219 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002220 } else {
2221 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2222 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002223 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002224 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002225 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002226 printk(KERN_ERR
2227 "EXT4-fs: unsupported inode size: %d\n",
2228 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002229 goto failed_mount;
2230 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002231 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2232 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002233 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002234 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2235 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002236 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002237 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002238 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002239 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002240 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002241 sbi->s_desc_size);
2242 goto failed_mount;
2243 }
2244 } else
2245 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002246 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002247 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002248 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002249 goto cantfind_ext4;
2250 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002251 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002252 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002253 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2254 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002255 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002256 sbi->s_sbh = bh;
2257 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002258 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2259 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002260 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002261 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2262 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002263 i = le32_to_cpu(es->s_flags);
2264 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2265 sbi->s_hash_unsigned = 3;
2266 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2267#ifdef __CHAR_UNSIGNED__
2268 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2269 sbi->s_hash_unsigned = 3;
2270#else
2271 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2272#endif
2273 sb->s_dirt = 1;
2274 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002275
2276 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002277 printk(KERN_ERR
2278 "EXT4-fs: #blocks per group too big: %lu\n",
2279 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002280 goto failed_mount;
2281 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002282 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002283 printk(KERN_ERR
2284 "EXT4-fs: #inodes per group too big: %lu\n",
2285 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002286 goto failed_mount;
2287 }
2288
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002289 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002290 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002291 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002292 " too large to mount safely\n", sb->s_id);
2293 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002294 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002295 "enabled\n");
2296 goto failed_mount;
2297 }
2298
Mingming Cao617ba132006-10-11 01:20:53 -07002299 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2300 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002301
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002302 /*
2303 * It makes no sense for the first data block to be beyond the end
2304 * of the filesystem.
2305 */
2306 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2307 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2308 "block %u is beyond end of filesystem (%llu)\n",
2309 le32_to_cpu(es->s_first_data_block),
2310 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002311 goto failed_mount;
2312 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002313 blocks_count = (ext4_blocks_count(es) -
2314 le32_to_cpu(es->s_first_data_block) +
2315 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2316 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002317 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2318 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2319 "(block count %llu, first data block %u, "
2320 "blocks per group %lu)\n", sbi->s_groups_count,
2321 ext4_blocks_count(es),
2322 le32_to_cpu(es->s_first_data_block),
2323 EXT4_BLOCKS_PER_GROUP(sb));
2324 goto failed_mount;
2325 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002326 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002327 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2328 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002329 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002330 GFP_KERNEL);
2331 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002332 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002333 goto failed_mount;
2334 }
2335
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002336#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002337 if (ext4_proc_root)
2338 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
2339
Theodore Ts'o240799c2008-10-09 23:53:47 -04002340 if (sbi->s_proc)
2341 proc_create_data("inode_readahead_blks", 0644, sbi->s_proc,
2342 &ext4_ui_proc_fops,
2343 &sbi->s_inode_readahead_blks);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002344#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002345
Pekka Enberg705895b2009-02-15 18:07:52 -05002346 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002347
2348 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002349 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002350 sbi->s_group_desc[i] = sb_bread(sb, block);
2351 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002352 printk(KERN_ERR "EXT4-fs: "
2353 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002354 db_count = i;
2355 goto failed_mount2;
2356 }
2357 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002358 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002359 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002360 goto failed_mount2;
2361 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002362 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2363 if (!ext4_fill_flex_info(sb)) {
2364 printk(KERN_ERR
2365 "EXT4-fs: unable to initialize "
2366 "flex_bg meta info!\n");
2367 goto failed_mount2;
2368 }
2369
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002370 sbi->s_gdb_count = db_count;
2371 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2372 spin_lock_init(&sbi->s_next_gen_lock);
2373
Peter Zijlstra833f4072007-10-16 23:25:45 -07002374 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2375 ext4_count_free_blocks(sb));
2376 if (!err) {
2377 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2378 ext4_count_free_inodes(sb));
2379 }
2380 if (!err) {
2381 err = percpu_counter_init(&sbi->s_dirs_counter,
2382 ext4_count_dirs(sb));
2383 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002384 if (!err) {
2385 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2386 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002387 if (err) {
2388 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2389 goto failed_mount3;
2390 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002391
Alex Tomasc9de5602008-01-29 00:19:52 -05002392 sbi->s_stripe = ext4_get_stripe_size(sbi);
2393
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002394 /*
2395 * set up enough so that it can read an inode
2396 */
Mingming Cao617ba132006-10-11 01:20:53 -07002397 sb->s_op = &ext4_sops;
2398 sb->s_export_op = &ext4_export_ops;
2399 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002400#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002401 sb->s_qcop = &ext4_qctl_operations;
2402 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002403#endif
2404 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2405
2406 sb->s_root = NULL;
2407
2408 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002409 EXT4_HAS_INCOMPAT_FEATURE(sb,
2410 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002411
2412 /*
2413 * The first inode we look at is the journal inode. Don't try
2414 * root first: it may be modified in the journal!
2415 */
2416 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002417 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2418 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002419 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002420 if (!(sb->s_flags & MS_RDONLY) &&
2421 EXT4_SB(sb)->s_journal->j_failed_commit) {
2422 printk(KERN_CRIT "EXT4-fs error (device %s): "
2423 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002424 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002425 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002426 if (test_opt(sb, ERRORS_RO)) {
2427 printk(KERN_CRIT
2428 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002429 sb->s_flags |= MS_RDONLY;
2430 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2431 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2432 }
2433 if (test_opt(sb, ERRORS_PANIC)) {
2434 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2435 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2436 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002437 goto failed_mount4;
2438 }
2439 }
Frank Mayhar03901312009-01-07 00:06:22 -05002440 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2441 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2442 printk(KERN_ERR "EXT4-fs: required journal recovery "
2443 "suppressed and not mounted read-only\n");
2444 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002445 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002446 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2447 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2448 sbi->s_journal = NULL;
2449 needs_recovery = 0;
2450 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451 }
2452
Jose R. Santoseb40a092007-07-18 08:37:25 -04002453 if (ext4_blocks_count(es) > 0xffffffffULL &&
2454 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2455 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002456 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002457 goto failed_mount4;
2458 }
2459
Girish Shilamkar818d2762008-01-28 23:58:27 -05002460 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2461 jbd2_journal_set_features(sbi->s_journal,
2462 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2463 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2464 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2465 jbd2_journal_set_features(sbi->s_journal,
2466 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2467 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2468 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2469 } else {
2470 jbd2_journal_clear_features(sbi->s_journal,
2471 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2472 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2473 }
2474
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475 /* We have now updated the journal if required, so we can
2476 * validate the data journaling mode. */
2477 switch (test_opt(sb, DATA_FLAGS)) {
2478 case 0:
2479 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002480 * capabilities: ORDERED_DATA if the journal can
2481 * cope, else JOURNAL_DATA
2482 */
Mingming Caodab291a2006-10-11 01:21:01 -07002483 if (jbd2_journal_check_available_features
2484 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002485 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2486 else
2487 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2488 break;
2489
Mingming Cao617ba132006-10-11 01:20:53 -07002490 case EXT4_MOUNT_ORDERED_DATA:
2491 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002492 if (!jbd2_journal_check_available_features
2493 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002494 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002495 "requested data journaling mode\n");
2496 goto failed_mount4;
2497 }
2498 default:
2499 break;
2500 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002501 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002502
Frank Mayhar03901312009-01-07 00:06:22 -05002503no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002504
2505 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002506 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2507 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002508 "its supported only with writeback mode\n");
2509 clear_opt(sbi->s_mount_opt, NOBH);
2510 }
2511 }
2512 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002513 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002514 * so we can safely mount the rest of the filesystem now.
2515 */
2516
David Howells1d1fe1e2008-02-07 00:15:37 -08002517 root = ext4_iget(sb, EXT4_ROOT_INO);
2518 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002519 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002520 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002521 goto failed_mount4;
2522 }
2523 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002524 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002525 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002526 goto failed_mount4;
2527 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002528 sb->s_root = d_alloc_root(root);
2529 if (!sb->s_root) {
2530 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2531 iput(root);
2532 ret = -ENOMEM;
2533 goto failed_mount4;
2534 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002535
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002536 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002537
2538 /* determine the minimum size of new large inodes, if present */
2539 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2540 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2541 EXT4_GOOD_OLD_INODE_SIZE;
2542 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2543 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2544 if (sbi->s_want_extra_isize <
2545 le16_to_cpu(es->s_want_extra_isize))
2546 sbi->s_want_extra_isize =
2547 le16_to_cpu(es->s_want_extra_isize);
2548 if (sbi->s_want_extra_isize <
2549 le16_to_cpu(es->s_min_extra_isize))
2550 sbi->s_want_extra_isize =
2551 le16_to_cpu(es->s_min_extra_isize);
2552 }
2553 }
2554 /* Check if enough inode space is available */
2555 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2556 sbi->s_inode_size) {
2557 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2558 EXT4_GOOD_OLD_INODE_SIZE;
2559 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2560 "available.\n");
2561 }
2562
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002563 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2564 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2565 "requested data journaling mode\n");
2566 clear_opt(sbi->s_mount_opt, DELALLOC);
2567 } else if (test_opt(sb, DELALLOC))
2568 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2569
2570 ext4_ext_init(sb);
2571 err = ext4_mb_init(sb, needs_recovery);
2572 if (err) {
2573 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2574 err);
2575 goto failed_mount4;
2576 }
2577
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002578 /*
2579 * akpm: core read_super() calls in here with the superblock locked.
2580 * That deadlocks, because orphan cleanup needs to lock the superblock
2581 * in numerous places. Here we just pop the lock - it's relatively
2582 * harmless, because we are now ready to accept write_super() requests,
2583 * and aviro says that's the only reason for hanging onto the
2584 * superblock lock.
2585 */
Mingming Cao617ba132006-10-11 01:20:53 -07002586 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2587 ext4_orphan_cleanup(sb, es);
2588 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002589 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002590 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002591 ext4_mark_recovery_complete(sb, es);
2592 }
2593 if (EXT4_SB(sb)->s_journal) {
2594 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2595 descr = " journalled data mode";
2596 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2597 descr = " ordered data mode";
2598 else
2599 descr = " writeback data mode";
2600 } else
2601 descr = "out journal";
2602
2603 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2604 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002605
2606 lock_kernel();
2607 return 0;
2608
Mingming Cao617ba132006-10-11 01:20:53 -07002609cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002610 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002611 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002612 sb->s_id);
2613 goto failed_mount;
2614
2615failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002616 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2617 if (sbi->s_journal) {
2618 jbd2_journal_destroy(sbi->s_journal);
2619 sbi->s_journal = NULL;
2620 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002621failed_mount3:
2622 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2623 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2624 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002625 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002626failed_mount2:
2627 for (i = 0; i < db_count; i++)
2628 brelse(sbi->s_group_desc[i]);
2629 kfree(sbi->s_group_desc);
2630failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002631 if (sbi->s_proc) {
2632 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002633 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002634 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002635#ifdef CONFIG_QUOTA
2636 for (i = 0; i < MAXQUOTAS; i++)
2637 kfree(sbi->s_qf_names[i]);
2638#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002639 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002640 brelse(bh);
2641out_fail:
2642 sb->s_fs_info = NULL;
2643 kfree(sbi);
2644 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002645 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002646}
2647
2648/*
2649 * Setup any per-fs journal parameters now. We'll do this both on
2650 * initial mount, once the journal has been initialised but before we've
2651 * done any recovery; and again on any subsequent remount.
2652 */
Mingming Cao617ba132006-10-11 01:20:53 -07002653static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002654{
Mingming Cao617ba132006-10-11 01:20:53 -07002655 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002656
Theodore Ts'o30773842009-01-03 20:27:38 -05002657 journal->j_commit_interval = sbi->s_commit_interval;
2658 journal->j_min_batch_time = sbi->s_min_batch_time;
2659 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002660
2661 spin_lock(&journal->j_state_lock);
2662 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002663 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002664 else
Mingming Caodab291a2006-10-11 01:21:01 -07002665 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002666 if (test_opt(sb, DATA_ERR_ABORT))
2667 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2668 else
2669 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002670 spin_unlock(&journal->j_state_lock);
2671}
2672
Mingming Cao617ba132006-10-11 01:20:53 -07002673static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002674 unsigned int journal_inum)
2675{
2676 struct inode *journal_inode;
2677 journal_t *journal;
2678
Frank Mayhar03901312009-01-07 00:06:22 -05002679 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2680
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002681 /* First, test for the existence of a valid inode on disk. Bad
2682 * things happen if we iget() an unused inode, as the subsequent
2683 * iput() will try to delete it. */
2684
David Howells1d1fe1e2008-02-07 00:15:37 -08002685 journal_inode = ext4_iget(sb, journal_inum);
2686 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002687 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002688 return NULL;
2689 }
2690 if (!journal_inode->i_nlink) {
2691 make_bad_inode(journal_inode);
2692 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002693 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002694 return NULL;
2695 }
2696
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002697 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002698 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002699 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002700 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002701 iput(journal_inode);
2702 return NULL;
2703 }
2704
Mingming Caodab291a2006-10-11 01:21:01 -07002705 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002706 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002707 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002708 iput(journal_inode);
2709 return NULL;
2710 }
2711 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002712 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002713 return journal;
2714}
2715
Mingming Cao617ba132006-10-11 01:20:53 -07002716static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002717 dev_t j_dev)
2718{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002719 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002720 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002721 ext4_fsblk_t start;
2722 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002723 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002724 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002725 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002726 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002727 struct block_device *bdev;
2728
Frank Mayhar03901312009-01-07 00:06:22 -05002729 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2730
Mingming Cao617ba132006-10-11 01:20:53 -07002731 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002732 if (bdev == NULL)
2733 return NULL;
2734
2735 if (bd_claim(bdev, sb)) {
2736 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05002737 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002738 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002739 return NULL;
2740 }
2741
2742 blocksize = sb->s_blocksize;
2743 hblock = bdev_hardsect_size(bdev);
2744 if (blocksize < hblock) {
2745 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002746 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002747 goto out_bdev;
2748 }
2749
Mingming Cao617ba132006-10-11 01:20:53 -07002750 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2751 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002752 set_blocksize(bdev, blocksize);
2753 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002754 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002755 "external journal\n");
2756 goto out_bdev;
2757 }
2758
Mingming Cao617ba132006-10-11 01:20:53 -07002759 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2760 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002761 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002762 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2763 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002764 "bad superblock\n");
2765 brelse(bh);
2766 goto out_bdev;
2767 }
2768
Mingming Cao617ba132006-10-11 01:20:53 -07002769 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2770 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002771 brelse(bh);
2772 goto out_bdev;
2773 }
2774
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002775 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002776 start = sb_block + 1;
2777 brelse(bh); /* we're done with the superblock */
2778
Mingming Caodab291a2006-10-11 01:21:01 -07002779 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002780 start, len, blocksize);
2781 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002782 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002783 goto out_bdev;
2784 }
2785 journal->j_private = sb;
2786 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2787 wait_on_buffer(journal->j_sb_buffer);
2788 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002789 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002790 goto out_journal;
2791 }
2792 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002793 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002794 "user (unsupported) - %d\n",
2795 be32_to_cpu(journal->j_superblock->s_nr_users));
2796 goto out_journal;
2797 }
Mingming Cao617ba132006-10-11 01:20:53 -07002798 EXT4_SB(sb)->journal_bdev = bdev;
2799 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002800 return journal;
2801out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07002802 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002803out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07002804 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002805 return NULL;
2806}
2807
Mingming Cao617ba132006-10-11 01:20:53 -07002808static int ext4_load_journal(struct super_block *sb,
2809 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002810 unsigned long journal_devnum)
2811{
2812 journal_t *journal;
2813 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
2814 dev_t journal_dev;
2815 int err = 0;
2816 int really_read_only;
2817
Frank Mayhar03901312009-01-07 00:06:22 -05002818 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2819
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002820 if (journal_devnum &&
2821 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002822 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002823 "numbers have changed\n");
2824 journal_dev = new_decode_dev(journal_devnum);
2825 } else
2826 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
2827
2828 really_read_only = bdev_read_only(sb->s_bdev);
2829
2830 /*
2831 * Are we loading a blank journal or performing recovery after a
2832 * crash? For recovery, we need to check in advance whether we
2833 * can get read-write access to the device.
2834 */
2835
Mingming Cao617ba132006-10-11 01:20:53 -07002836 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002837 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002838 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002839 "required on readonly filesystem.\n");
2840 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07002841 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002842 "unavailable, cannot proceed.\n");
2843 return -EROFS;
2844 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002845 printk(KERN_INFO "EXT4-fs: write access will "
2846 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002847 }
2848 }
2849
2850 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07002851 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002852 "and inode journals!\n");
2853 return -EINVAL;
2854 }
2855
2856 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07002857 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002858 return -EINVAL;
2859 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002860 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002861 return -EINVAL;
2862 }
2863
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002864 if (journal->j_flags & JBD2_BARRIER)
2865 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
2866 else
2867 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
2868
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002869 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07002870 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002871 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002872 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002873 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002874 return err;
2875 }
2876 }
2877
Mingming Cao617ba132006-10-11 01:20:53 -07002878 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07002879 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002880 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07002881 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002882
2883 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002884 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002885 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002886 return err;
2887 }
2888
Mingming Cao617ba132006-10-11 01:20:53 -07002889 EXT4_SB(sb)->s_journal = journal;
2890 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002891
2892 if (journal_devnum &&
2893 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2894 es->s_journal_dev = cpu_to_le32(journal_devnum);
2895 sb->s_dirt = 1;
2896
2897 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07002898 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002899 }
2900
2901 return 0;
2902}
2903
Takashi Satoc4be0c12009-01-09 16:40:58 -08002904static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002905 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002906{
Mingming Cao617ba132006-10-11 01:20:53 -07002907 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08002908 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002909
2910 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08002911 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04002912 if (buffer_write_io_error(sbh)) {
2913 /*
2914 * Oh, dear. A previous attempt to write the
2915 * superblock failed. This could happen because the
2916 * USB device was yanked out. Or it could happen to
2917 * be a transient write error and maybe the block will
2918 * be remapped. Nothing we can do but to retry the
2919 * write and hope for the best.
2920 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05002921 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04002922 "superblock detected for %s.\n", sb->s_id);
2923 clear_buffer_write_io_error(sbh);
2924 set_buffer_uptodate(sbh);
2925 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002926 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002927 es->s_kbytes_written =
2928 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
2929 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2930 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05002931 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
2932 &EXT4_SB(sb)->s_freeblocks_counter));
2933 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
2934 &EXT4_SB(sb)->s_freeinodes_counter));
2935
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002936 BUFFER_TRACE(sbh, "marking dirty");
2937 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002938 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08002939 error = sync_dirty_buffer(sbh);
2940 if (error)
2941 return error;
2942
2943 error = buffer_write_io_error(sbh);
2944 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002945 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04002946 "superblock for %s.\n", sb->s_id);
2947 clear_buffer_write_io_error(sbh);
2948 set_buffer_uptodate(sbh);
2949 }
2950 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08002951 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002952}
2953
2954
2955/*
2956 * Have we just finished recovery? If so, and if we are mounting (or
2957 * remounting) the filesystem readonly, then we will end up with a
2958 * consistent fs on disk. Record that fact.
2959 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002960static void ext4_mark_recovery_complete(struct super_block *sb,
2961 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002962{
Mingming Cao617ba132006-10-11 01:20:53 -07002963 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002964
Frank Mayhar03901312009-01-07 00:06:22 -05002965 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2966 BUG_ON(journal != NULL);
2967 return;
2968 }
Mingming Caodab291a2006-10-11 01:21:01 -07002969 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002970 if (jbd2_journal_flush(journal) < 0)
2971 goto out;
2972
Jan Kara32c37732007-07-15 23:41:09 -07002973 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002974 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002975 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002976 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002977 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002978 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979 }
Jan Kara32c37732007-07-15 23:41:09 -07002980 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002981
2982out:
Mingming Caodab291a2006-10-11 01:21:01 -07002983 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002984}
2985
2986/*
2987 * If we are mounting (or read-write remounting) a filesystem whose journal
2988 * has recorded an error from a previous lifetime, move that error to the
2989 * main filesystem now.
2990 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002991static void ext4_clear_journal_err(struct super_block *sb,
2992 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002993{
2994 journal_t *journal;
2995 int j_errno;
2996 const char *errstr;
2997
Frank Mayhar03901312009-01-07 00:06:22 -05002998 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2999
Mingming Cao617ba132006-10-11 01:20:53 -07003000 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003001
3002 /*
3003 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003004 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003005 */
3006
Mingming Caodab291a2006-10-11 01:21:01 -07003007 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003008 if (j_errno) {
3009 char nbuf[16];
3010
Mingming Cao617ba132006-10-11 01:20:53 -07003011 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003012 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003013 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003014 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003015 "filesystem check.");
3016
Mingming Cao617ba132006-10-11 01:20:53 -07003017 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3018 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003019 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003020
Mingming Caodab291a2006-10-11 01:21:01 -07003021 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003022 }
3023}
3024
3025/*
3026 * Force the running and committing transactions to commit,
3027 * and wait on the commit.
3028 */
Mingming Cao617ba132006-10-11 01:20:53 -07003029int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003030{
3031 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003032 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003033
3034 if (sb->s_flags & MS_RDONLY)
3035 return 0;
3036
Mingming Cao617ba132006-10-11 01:20:53 -07003037 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003038 if (journal) {
3039 sb->s_dirt = 0;
3040 ret = ext4_journal_force_commit(journal);
3041 }
3042
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003043 return ret;
3044}
3045
3046/*
Mingming Cao617ba132006-10-11 01:20:53 -07003047 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003048 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003049 * point. (We can probably nuke this function altogether, and remove
3050 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003051 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003052static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003053{
Frank Mayhar03901312009-01-07 00:06:22 -05003054 if (EXT4_SB(sb)->s_journal) {
3055 if (mutex_trylock(&sb->s_lock) != 0)
3056 BUG();
3057 sb->s_dirt = 0;
3058 } else {
3059 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3060 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003061}
3062
Mingming Cao617ba132006-10-11 01:20:53 -07003063static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003064{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003065 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003066 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003067
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003068 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003069 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003070 if (EXT4_SB(sb)->s_journal) {
Jan Kara9eddacf2009-02-10 06:46:05 -05003071 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal,
3072 &target)) {
3073 if (wait)
3074 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal,
3075 target);
3076 }
Frank Mayhar03901312009-01-07 00:06:22 -05003077 } else {
3078 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
3079 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003080 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003081}
3082
3083/*
3084 * LVM calls this function before a (read-only) snapshot is created. This
3085 * gives us a chance to flush the journal completely and mark the fs clean.
3086 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003087static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003088{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003089 int error = 0;
3090 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003091 sb->s_dirt = 0;
3092
3093 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003094 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003095
Frank Mayhar03901312009-01-07 00:06:22 -05003096 if (journal) {
3097 /* Now we set up the journal barrier. */
3098 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003099
Frank Mayhar03901312009-01-07 00:06:22 -05003100 /*
3101 * We don't want to clear needs_recovery flag when we
3102 * failed to flush the journal.
3103 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003104 error = jbd2_journal_flush(journal);
3105 if (error < 0)
3106 goto out;
Frank Mayhar03901312009-01-07 00:06:22 -05003107 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003108
3109 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003110 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003111 error = ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3112 if (error)
3113 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003114 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003115 return 0;
3116out:
3117 jbd2_journal_unlock_updates(journal);
3118 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003119}
3120
3121/*
3122 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3123 * flag here, even though the filesystem is not technically dirty yet.
3124 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003125static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003126{
Frank Mayhar03901312009-01-07 00:06:22 -05003127 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003128 lock_super(sb);
3129 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003130 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3131 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003132 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003133 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003134 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003135 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003136}
3137
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003138static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003139{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003140 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003141 struct ext4_sb_info *sbi = EXT4_SB(sb);
3142 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003143 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003144 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003145 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003146 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003147 int err;
3148#ifdef CONFIG_QUOTA
3149 int i;
3150#endif
3151
3152 /* Store the original options */
3153 old_sb_flags = sb->s_flags;
3154 old_opts.s_mount_opt = sbi->s_mount_opt;
3155 old_opts.s_resuid = sbi->s_resuid;
3156 old_opts.s_resgid = sbi->s_resgid;
3157 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003158 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3159 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003160#ifdef CONFIG_QUOTA
3161 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3162 for (i = 0; i < MAXQUOTAS; i++)
3163 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3164#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003165 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3166 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167
3168 /*
3169 * Allow the "check" option to be passed as a remount option.
3170 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003171 if (!parse_options(data, sb, NULL, &journal_ioprio,
3172 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003173 err = -EINVAL;
3174 goto restore_opts;
3175 }
3176
Mingming Cao617ba132006-10-11 01:20:53 -07003177 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003178 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003179
3180 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003181 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003182
3183 es = sbi->s_es;
3184
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003185 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003186 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003187 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3188 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003189
3190 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003191 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003192 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003193 err = -EROFS;
3194 goto restore_opts;
3195 }
3196
3197 if (*flags & MS_RDONLY) {
3198 /*
3199 * First of all, the unconditional stuff we have to do
3200 * to disable replay of the journal when we next remount
3201 */
3202 sb->s_flags |= MS_RDONLY;
3203
3204 /*
3205 * OK, test if we are remounting a valid rw partition
3206 * readonly, and if so set the rdonly flag and then
3207 * mark the partition as valid again.
3208 */
Mingming Cao617ba132006-10-11 01:20:53 -07003209 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3210 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003211 es->s_state = cpu_to_le16(sbi->s_mount_state);
3212
Jan Kara32c37732007-07-15 23:41:09 -07003213 /*
3214 * We have to unlock super so that we can wait for
3215 * transactions.
3216 */
Frank Mayhar03901312009-01-07 00:06:22 -05003217 if (sbi->s_journal) {
3218 unlock_super(sb);
3219 ext4_mark_recovery_complete(sb, es);
3220 lock_super(sb);
3221 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003222 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003223 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003224 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3225 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3226 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003227 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003228 "optional features (%x).\n", sb->s_id,
3229 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3230 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003231 err = -EROFS;
3232 goto restore_opts;
3233 }
Eric Sandeenead65962007-02-10 01:46:08 -08003234
3235 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003236 * Make sure the group descriptor checksums
3237 * are sane. If they aren't, refuse to
3238 * remount r/w.
3239 */
3240 for (g = 0; g < sbi->s_groups_count; g++) {
3241 struct ext4_group_desc *gdp =
3242 ext4_get_group_desc(sb, g, NULL);
3243
3244 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3245 printk(KERN_ERR
3246 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003247 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003248 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3249 le16_to_cpu(gdp->bg_checksum));
3250 err = -EINVAL;
3251 goto restore_opts;
3252 }
3253 }
3254
3255 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003256 * If we have an unprocessed orphan list hanging
3257 * around from a previously readonly bdev mount,
3258 * require a full umount/remount for now.
3259 */
3260 if (es->s_last_orphan) {
3261 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3262 "remount RDWR because of unprocessed "
3263 "orphan inode list. Please "
3264 "umount/remount instead.\n",
3265 sb->s_id);
3266 err = -EINVAL;
3267 goto restore_opts;
3268 }
3269
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003270 /*
3271 * Mounting a RDONLY partition read-write, so reread
3272 * and store the current valid flag. (It may have
3273 * been changed by e2fsck since we originally mounted
3274 * the partition.)
3275 */
Frank Mayhar03901312009-01-07 00:06:22 -05003276 if (sbi->s_journal)
3277 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003278 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003279 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003281 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003282 sb->s_flags &= ~MS_RDONLY;
3283 }
3284 }
Frank Mayhar03901312009-01-07 00:06:22 -05003285 if (sbi->s_journal == NULL)
3286 ext4_commit_super(sb, es, 1);
3287
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003288#ifdef CONFIG_QUOTA
3289 /* Release old quota file names */
3290 for (i = 0; i < MAXQUOTAS; i++)
3291 if (old_opts.s_qf_names[i] &&
3292 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3293 kfree(old_opts.s_qf_names[i]);
3294#endif
3295 return 0;
3296restore_opts:
3297 sb->s_flags = old_sb_flags;
3298 sbi->s_mount_opt = old_opts.s_mount_opt;
3299 sbi->s_resuid = old_opts.s_resuid;
3300 sbi->s_resgid = old_opts.s_resgid;
3301 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003302 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3303 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003304#ifdef CONFIG_QUOTA
3305 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3306 for (i = 0; i < MAXQUOTAS; i++) {
3307 if (sbi->s_qf_names[i] &&
3308 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3309 kfree(sbi->s_qf_names[i]);
3310 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3311 }
3312#endif
3313 return err;
3314}
3315
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003316static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003317{
3318 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003319 struct ext4_sb_info *sbi = EXT4_SB(sb);
3320 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003321 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003322
Badari Pulavarty5e700302007-07-15 23:42:00 -07003323 if (test_opt(sb, MINIX_DF)) {
3324 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003325 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003326 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003327 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003328 smp_rmb();
3329
3330 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003331 * Compute the overhead (FS structures). This is constant
3332 * for a given filesystem unless the number of block groups
3333 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003334 */
3335
3336 /*
3337 * All of the blocks before first_data_block are
3338 * overhead
3339 */
3340 overhead = le32_to_cpu(es->s_first_data_block);
3341
3342 /*
3343 * Add the overhead attributed to the superblock and
3344 * block group descriptors. If the sparse superblocks
3345 * feature is turned on, then not all groups have this.
3346 */
3347 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003348 overhead += ext4_bg_has_super(sb, i) +
3349 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003350 cond_resched();
3351 }
3352
3353 /*
3354 * Every block group has an inode bitmap, a block
3355 * bitmap, and an inode table.
3356 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003357 overhead += ngroups * (2 + sbi->s_itb_per_group);
3358 sbi->s_overhead_last = overhead;
3359 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003360 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003361 }
3362
Mingming Cao617ba132006-10-11 01:20:53 -07003363 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003364 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003365 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003366 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3367 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003368 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003369 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3370 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003371 buf->f_bavail = 0;
3372 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003373 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003374 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003375 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003376 fsid = le64_to_cpup((void *)es->s_uuid) ^
3377 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3378 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3379 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003380 return 0;
3381}
3382
3383/* Helper function for writing quotas on sync - we need to start transaction before quota file
3384 * is locked for write. Otherwise the are possible deadlocks:
3385 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003386 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003387 * jbd2_journal_start() write_dquot()
3388 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003389 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003390 *
3391 */
3392
3393#ifdef CONFIG_QUOTA
3394
3395static inline struct inode *dquot_to_inode(struct dquot *dquot)
3396{
3397 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3398}
3399
Mingming Cao617ba132006-10-11 01:20:53 -07003400static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003401{
3402 int ret, err;
3403 handle_t *handle;
3404 struct inode *inode;
3405
3406 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003407 handle = ext4_journal_start(inode,
3408 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003409 if (IS_ERR(handle))
3410 return PTR_ERR(handle);
3411 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003412 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003413 if (!ret)
3414 ret = err;
3415 return ret;
3416}
3417
Mingming Cao617ba132006-10-11 01:20:53 -07003418static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003419{
3420 int ret, err;
3421 handle_t *handle;
3422
Mingming Cao617ba132006-10-11 01:20:53 -07003423 handle = ext4_journal_start(dquot_to_inode(dquot),
3424 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003425 if (IS_ERR(handle))
3426 return PTR_ERR(handle);
3427 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003428 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003429 if (!ret)
3430 ret = err;
3431 return ret;
3432}
3433
Mingming Cao617ba132006-10-11 01:20:53 -07003434static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003435{
3436 int ret, err;
3437 handle_t *handle;
3438
Mingming Cao617ba132006-10-11 01:20:53 -07003439 handle = ext4_journal_start(dquot_to_inode(dquot),
3440 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003441 if (IS_ERR(handle)) {
3442 /* Release dquot anyway to avoid endless cycle in dqput() */
3443 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003444 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003445 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003446 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003447 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003448 if (!ret)
3449 ret = err;
3450 return ret;
3451}
3452
Mingming Cao617ba132006-10-11 01:20:53 -07003453static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003454{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003455 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003456 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3457 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003458 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003459 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003460 } else {
3461 return dquot_mark_dquot_dirty(dquot);
3462 }
3463}
3464
Mingming Cao617ba132006-10-11 01:20:53 -07003465static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466{
3467 int ret, err;
3468 handle_t *handle;
3469
3470 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003471 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 if (IS_ERR(handle))
3473 return PTR_ERR(handle);
3474 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003475 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003476 if (!ret)
3477 ret = err;
3478 return ret;
3479}
3480
3481/*
3482 * Turn on quotas during mount time - we need to find
3483 * the quota file and such...
3484 */
Mingming Cao617ba132006-10-11 01:20:53 -07003485static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003486{
Mingming Cao617ba132006-10-11 01:20:53 -07003487 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3488 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003489}
3490
3491/*
3492 * Standard function to be called on quota_on
3493 */
Mingming Cao617ba132006-10-11 01:20:53 -07003494static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003495 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003496{
3497 int err;
Al Viro82646132008-08-02 00:57:06 -04003498 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003499
3500 if (!test_opt(sb, QUOTA))
3501 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003502 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003503 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003504 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003505
Al Viro82646132008-08-02 00:57:06 -04003506 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003507 if (err)
3508 return err;
Jan Kara06235432008-05-13 19:11:51 -04003509
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003510 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003511 if (path.mnt->mnt_sb != sb) {
3512 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003513 return -EXDEV;
3514 }
Jan Kara06235432008-05-13 19:11:51 -04003515 /* Journaling quota? */
3516 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003517 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003518 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003519 printk(KERN_WARNING
3520 "EXT4-fs: Quota file not on filesystem root. "
3521 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003522 }
Jan Kara06235432008-05-13 19:11:51 -04003523
3524 /*
3525 * When we journal data on quota file, we have to flush journal to see
3526 * all updates to the file when we bypass pagecache...
3527 */
Frank Mayhar03901312009-01-07 00:06:22 -05003528 if (EXT4_SB(sb)->s_journal &&
3529 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003530 /*
3531 * We don't need to lock updates but journal_flush() could
3532 * otherwise be livelocked...
3533 */
3534 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003535 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003536 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003537 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003538 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003539 return err;
3540 }
Jan Kara06235432008-05-13 19:11:51 -04003541 }
3542
Al Viro82646132008-08-02 00:57:06 -04003543 err = vfs_quota_on_path(sb, type, format_id, &path);
3544 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003545 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003546}
3547
3548/* Read data from quotafile - avoid pagecache and such because we cannot afford
3549 * acquiring the locks... As quota files are never truncated and quota code
3550 * itself serializes the operations (and noone else should touch the files)
3551 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003552static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003553 size_t len, loff_t off)
3554{
3555 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003556 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557 int err = 0;
3558 int offset = off & (sb->s_blocksize - 1);
3559 int tocopy;
3560 size_t toread;
3561 struct buffer_head *bh;
3562 loff_t i_size = i_size_read(inode);
3563
3564 if (off > i_size)
3565 return 0;
3566 if (off+len > i_size)
3567 len = i_size-off;
3568 toread = len;
3569 while (toread > 0) {
3570 tocopy = sb->s_blocksize - offset < toread ?
3571 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003572 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003573 if (err)
3574 return err;
3575 if (!bh) /* A hole? */
3576 memset(data, 0, tocopy);
3577 else
3578 memcpy(data, bh->b_data+offset, tocopy);
3579 brelse(bh);
3580 offset = 0;
3581 toread -= tocopy;
3582 data += tocopy;
3583 blk++;
3584 }
3585 return len;
3586}
3587
3588/* Write to quotafile (we know the transaction is already started and has
3589 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003590static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003591 const char *data, size_t len, loff_t off)
3592{
3593 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003594 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003595 int err = 0;
3596 int offset = off & (sb->s_blocksize - 1);
3597 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003598 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003599 size_t towrite = len;
3600 struct buffer_head *bh;
3601 handle_t *handle = journal_current_handle();
3602
Frank Mayhar03901312009-01-07 00:06:22 -05003603 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003604 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003605 " cancelled because transaction is not started.\n",
3606 (unsigned long long)off, (unsigned long long)len);
3607 return -EIO;
3608 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003609 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3610 while (towrite > 0) {
3611 tocopy = sb->s_blocksize - offset < towrite ?
3612 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003613 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003614 if (!bh)
3615 goto out;
3616 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003617 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003618 if (err) {
3619 brelse(bh);
3620 goto out;
3621 }
3622 }
3623 lock_buffer(bh);
3624 memcpy(bh->b_data+offset, data, tocopy);
3625 flush_dcache_page(bh->b_page);
3626 unlock_buffer(bh);
3627 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003628 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003629 else {
3630 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003631 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003632 mark_buffer_dirty(bh);
3633 }
3634 brelse(bh);
3635 if (err)
3636 goto out;
3637 offset = 0;
3638 towrite -= tocopy;
3639 data += tocopy;
3640 blk++;
3641 }
3642out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003643 if (len == towrite) {
3644 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003645 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003646 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003647 if (inode->i_size < off+len-towrite) {
3648 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003649 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003650 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003651 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003652 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003653 mutex_unlock(&inode->i_mutex);
3654 return len - towrite;
3655}
3656
3657#endif
3658
Mingming Cao617ba132006-10-11 01:20:53 -07003659static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003660 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3661{
Mingming Cao617ba132006-10-11 01:20:53 -07003662 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003663}
3664
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003665#ifdef CONFIG_PROC_FS
3666static int ext4_ui_proc_show(struct seq_file *m, void *v)
3667{
3668 unsigned int *p = m->private;
3669
3670 seq_printf(m, "%u\n", *p);
3671 return 0;
3672}
3673
3674static int ext4_ui_proc_open(struct inode *inode, struct file *file)
3675{
3676 return single_open(file, ext4_ui_proc_show, PDE(inode)->data);
3677}
3678
3679static ssize_t ext4_ui_proc_write(struct file *file, const char __user *buf,
3680 size_t cnt, loff_t *ppos)
3681{
Roel Kluin23475e22008-11-26 02:23:19 -05003682 unsigned long *p = PDE(file->f_path.dentry->d_inode)->data;
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003683 char str[32];
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003684
3685 if (cnt >= sizeof(str))
3686 return -EINVAL;
3687 if (copy_from_user(str, buf, cnt))
3688 return -EFAULT;
Roel Kluin23475e22008-11-26 02:23:19 -05003689
3690 *p = simple_strtoul(str, NULL, 0);
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003691 return cnt;
3692}
3693
3694const struct file_operations ext4_ui_proc_fops = {
3695 .owner = THIS_MODULE,
3696 .open = ext4_ui_proc_open,
3697 .read = seq_read,
3698 .llseek = seq_lseek,
3699 .release = single_release,
3700 .write = ext4_ui_proc_write,
3701};
3702#endif
3703
Theodore Ts'o03010a32008-10-10 20:02:48 -04003704static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003705 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003706 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003707 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003708 .kill_sb = kill_block_super,
3709 .fs_flags = FS_REQUIRES_DEV,
3710};
3711
Theodore Ts'o03010a32008-10-10 20:02:48 -04003712#ifdef CONFIG_EXT4DEV_COMPAT
3713static int ext4dev_get_sb(struct file_system_type *fs_type,
3714 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3715{
3716 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3717 "to mount using ext4\n");
3718 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3719 "will go away by 2.6.31\n");
3720 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3721}
3722
3723static struct file_system_type ext4dev_fs_type = {
3724 .owner = THIS_MODULE,
3725 .name = "ext4dev",
3726 .get_sb = ext4dev_get_sb,
3727 .kill_sb = kill_block_super,
3728 .fs_flags = FS_REQUIRES_DEV,
3729};
3730MODULE_ALIAS("ext4dev");
3731#endif
3732
Mingming Cao617ba132006-10-11 01:20:53 -07003733static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003734{
Alex Tomasc9de5602008-01-29 00:19:52 -05003735 int err;
3736
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003737 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003738 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003739 if (err)
3740 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003741
3742 err = init_ext4_xattr();
3743 if (err)
3744 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003745 err = init_inodecache();
3746 if (err)
3747 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003748 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003749 if (err)
3750 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003751#ifdef CONFIG_EXT4DEV_COMPAT
3752 err = register_filesystem(&ext4dev_fs_type);
3753 if (err) {
3754 unregister_filesystem(&ext4_fs_type);
3755 goto out;
3756 }
3757#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003758 return 0;
3759out:
3760 destroy_inodecache();
3761out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003762 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003763out2:
3764 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003765 return err;
3766}
3767
Mingming Cao617ba132006-10-11 01:20:53 -07003768static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003769{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003770 unregister_filesystem(&ext4_fs_type);
3771#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003772 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003773#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003774 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003775 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003776 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003777 remove_proc_entry("fs/ext4", NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003778}
3779
3780MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05003781MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003782MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003783module_init(init_ext4_fs)
3784module_exit(exit_ext4_fs)