blob: 517c90ad25bd793cfa9e965ea1c6a43b1cbab5dc [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);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040054static void ext4_commit_super(struct super_block *sb,
55 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);
Mingming Cao617ba132006-10-11 01:20:53 -070065static void ext4_unlockfs(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040066static void ext4_write_super(struct super_block *sb);
Mingming Cao617ba132006-10-11 01:20:53 -070067static void ext4_write_super_lockfs(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:
Mingming Cao617ba132006-10-11 01:20:53 -0700508 printk(KERN_ERR "EXT4: 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;
618 kfree(sbi);
619 return;
620}
621
Christoph Lametere18b8902006-12-06 20:33:20 -0800622static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700623
624/*
625 * Called inside transaction, so use GFP_NOFS
626 */
Mingming Cao617ba132006-10-11 01:20:53 -0700627static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700628{
Mingming Cao617ba132006-10-11 01:20:53 -0700629 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700630
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800631 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700632 if (!ei)
633 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400634#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700635 ei->i_acl = EXT4_ACL_NOT_CACHED;
636 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700638 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400639 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700640 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500641 INIT_LIST_HEAD(&ei->i_prealloc_list);
642 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500643 /*
644 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
645 * therefore it can be null here. Don't check it, just initialize
646 * jinode.
647 */
Jan Kara678aaf42008-07-11 19:27:31 -0400648 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400649 ei->i_reserved_data_blocks = 0;
650 ei->i_reserved_meta_blocks = 0;
651 ei->i_allocated_meta_blocks = 0;
652 ei->i_delalloc_reserved_flag = 0;
653 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700654 return &ei->vfs_inode;
655}
656
Mingming Cao617ba132006-10-11 01:20:53 -0700657static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700658{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700659 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
660 printk("EXT4 Inode %p: orphan list check failed!\n",
661 EXT4_I(inode));
662 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
663 EXT4_I(inode), sizeof(struct ext4_inode_info),
664 true);
665 dump_stack();
666 }
Mingming Cao617ba132006-10-11 01:20:53 -0700667 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700668}
669
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700670static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671{
Mingming Cao617ba132006-10-11 01:20:53 -0700672 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700673
Christoph Lametera35afb82007-05-16 22:10:57 -0700674 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400675#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700676 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700677#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500678 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700679 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700680}
681
682static int init_inodecache(void)
683{
Mingming Cao617ba132006-10-11 01:20:53 -0700684 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
685 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686 0, (SLAB_RECLAIM_ACCOUNT|
687 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900688 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700689 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690 return -ENOMEM;
691 return 0;
692}
693
694static void destroy_inodecache(void)
695{
Mingming Cao617ba132006-10-11 01:20:53 -0700696 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700697}
698
Mingming Cao617ba132006-10-11 01:20:53 -0700699static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700700{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400701#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700702 if (EXT4_I(inode)->i_acl &&
703 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
704 posix_acl_release(EXT4_I(inode)->i_acl);
705 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700706 }
Mingming Cao617ba132006-10-11 01:20:53 -0700707 if (EXT4_I(inode)->i_default_acl &&
708 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
709 posix_acl_release(EXT4_I(inode)->i_default_acl);
710 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700711 }
712#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400713 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500714 if (EXT4_JOURNAL(inode))
715 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400716 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700717}
718
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400719static inline void ext4_show_quota_options(struct seq_file *seq,
720 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700721{
722#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700723 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724
725 if (sbi->s_jquota_fmt)
726 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400727 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700728
729 if (sbi->s_qf_names[USRQUOTA])
730 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
731
732 if (sbi->s_qf_names[GRPQUOTA])
733 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
734
Mingming Cao617ba132006-10-11 01:20:53 -0700735 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700736 seq_puts(seq, ",usrquota");
737
Mingming Cao617ba132006-10-11 01:20:53 -0700738 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700739 seq_puts(seq, ",grpquota");
740#endif
741}
742
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700743/*
744 * Show an option if
745 * - it's set to a non-default value OR
746 * - if the per-sb default is different from the global default
747 */
Mingming Cao617ba132006-10-11 01:20:53 -0700748static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700749{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500750 int def_errors;
751 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700753 struct ext4_sb_info *sbi = EXT4_SB(sb);
754 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700755
756 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500757 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700758
759 if (sbi->s_sb_block != 1)
760 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
761 if (test_opt(sb, MINIX_DF))
762 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500763 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700764 seq_puts(seq, ",grpid");
765 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
766 seq_puts(seq, ",nogrpid");
767 if (sbi->s_resuid != EXT4_DEF_RESUID ||
768 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
769 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
770 }
771 if (sbi->s_resgid != EXT4_DEF_RESGID ||
772 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
773 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
774 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500775 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700776 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500777 def_errors == EXT4_ERRORS_CONTINUE) {
778 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700779 }
780 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500781 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500782 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500783 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700784 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500785 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700786 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500787 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700788 seq_puts(seq, ",debug");
789 if (test_opt(sb, OLDALLOC))
790 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400791#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500792 if (test_opt(sb, XATTR_USER) &&
793 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700794 seq_puts(seq, ",user_xattr");
795 if (!test_opt(sb, XATTR_USER) &&
796 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
797 seq_puts(seq, ",nouser_xattr");
798 }
799#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400800#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500801 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700802 seq_puts(seq, ",acl");
803 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
804 seq_puts(seq, ",noacl");
805#endif
806 if (!test_opt(sb, RESERVATION))
807 seq_puts(seq, ",noreservation");
Theodore Ts'o30773842009-01-03 20:27:38 -0500808 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700809 seq_printf(seq, ",commit=%u",
810 (unsigned) (sbi->s_commit_interval / HZ));
811 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500812 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
813 seq_printf(seq, ",min_batch_time=%u",
814 (unsigned) sbi->s_min_batch_time);
815 }
816 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
817 seq_printf(seq, ",max_batch_time=%u",
818 (unsigned) sbi->s_min_batch_time);
819 }
820
Eric Sandeen571640c2008-05-26 12:29:46 -0400821 /*
822 * We're changing the default of barrier mount option, so
823 * let's always display its mount state so it's clear what its
824 * status is.
825 */
826 seq_puts(seq, ",barrier=");
827 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400828 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
829 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700830 if (test_opt(sb, NOBH))
831 seq_puts(seq, ",nobh");
832 if (!test_opt(sb, EXTENTS))
833 seq_puts(seq, ",noextents");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500834 if (test_opt(sb, I_VERSION))
835 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400836 if (!test_opt(sb, DELALLOC))
837 seq_puts(seq, ",nodelalloc");
838
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700839
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500840 if (sbi->s_stripe)
841 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500842 /*
843 * journal mode get enabled in different ways
844 * So just print the value even if we didn't specify it
845 */
Mingming Cao617ba132006-10-11 01:20:53 -0700846 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700847 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700848 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700849 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700850 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700851 seq_puts(seq, ",data=writeback");
852
Theodore Ts'o240799c2008-10-09 23:53:47 -0400853 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
854 seq_printf(seq, ",inode_readahead_blks=%u",
855 sbi->s_inode_readahead_blks);
856
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400857 if (test_opt(sb, DATA_ERR_ABORT))
858 seq_puts(seq, ",data_err=abort");
859
Mingming Cao617ba132006-10-11 01:20:53 -0700860 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861 return 0;
862}
863
864
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700865static struct inode *ext4_nfs_get_inode(struct super_block *sb,
866 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700867{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700868 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700869
Mingming Cao617ba132006-10-11 01:20:53 -0700870 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700871 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700872 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873 return ERR_PTR(-ESTALE);
874
875 /* iget isn't really right if the inode is currently unallocated!!
876 *
Mingming Cao617ba132006-10-11 01:20:53 -0700877 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700878 * deleted, so we should be safe.
879 *
880 * Currently we don't know the generation for parent directory, so
881 * a generation of 0 means "accept any"
882 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800883 inode = ext4_iget(sb, ino);
884 if (IS_ERR(inode))
885 return ERR_CAST(inode);
886 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700887 iput(inode);
888 return ERR_PTR(-ESTALE);
889 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700890
891 return inode;
892}
893
894static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
895 int fh_len, int fh_type)
896{
897 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
898 ext4_nfs_get_inode);
899}
900
901static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
902 int fh_len, int fh_type)
903{
904 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
905 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700906}
907
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500908/*
909 * Try to release metadata pages (indirect blocks, directories) which are
910 * mapped via the block device. Since these pages could have journal heads
911 * which would prevent try_to_free_buffers() from freeing them, we must use
912 * jbd2 layer's try_to_free_buffers() function to release them.
913 */
914static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
915{
916 journal_t *journal = EXT4_SB(sb)->s_journal;
917
918 WARN_ON(PageChecked(page));
919 if (!page_has_buffers(page))
920 return 0;
921 if (journal)
922 return jbd2_journal_try_to_free_buffers(journal, page,
923 wait & ~__GFP_WAIT);
924 return try_to_free_buffers(page);
925}
926
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700927#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400928#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400929#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700930
Mingming Cao617ba132006-10-11 01:20:53 -0700931static int ext4_dquot_initialize(struct inode *inode, int type);
932static int ext4_dquot_drop(struct inode *inode);
933static int ext4_write_dquot(struct dquot *dquot);
934static int ext4_acquire_dquot(struct dquot *dquot);
935static int ext4_release_dquot(struct dquot *dquot);
936static int ext4_mark_dquot_dirty(struct dquot *dquot);
937static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700938static int ext4_quota_on(struct super_block *sb, int type, int format_id,
939 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700940static int ext4_quota_on_mount(struct super_block *sb, int type);
941static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700943static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700944 const char *data, size_t len, loff_t off);
945
Mingming Cao617ba132006-10-11 01:20:53 -0700946static struct dquot_operations ext4_quota_operations = {
947 .initialize = ext4_dquot_initialize,
948 .drop = ext4_dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700949 .alloc_space = dquot_alloc_space,
950 .alloc_inode = dquot_alloc_inode,
951 .free_space = dquot_free_space,
952 .free_inode = dquot_free_inode,
953 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700954 .write_dquot = ext4_write_dquot,
955 .acquire_dquot = ext4_acquire_dquot,
956 .release_dquot = ext4_release_dquot,
957 .mark_dirty = ext4_mark_dquot_dirty,
958 .write_info = ext4_write_info
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700959};
960
Mingming Cao617ba132006-10-11 01:20:53 -0700961static struct quotactl_ops ext4_qctl_operations = {
962 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700963 .quota_off = vfs_quota_off,
964 .quota_sync = vfs_quota_sync,
965 .get_info = vfs_get_dqinfo,
966 .set_info = vfs_set_dqinfo,
967 .get_dqblk = vfs_get_dqblk,
968 .set_dqblk = vfs_set_dqblk
969};
970#endif
971
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800972static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700973 .alloc_inode = ext4_alloc_inode,
974 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700975 .write_inode = ext4_write_inode,
976 .dirty_inode = ext4_dirty_inode,
977 .delete_inode = ext4_delete_inode,
978 .put_super = ext4_put_super,
979 .write_super = ext4_write_super,
980 .sync_fs = ext4_sync_fs,
981 .write_super_lockfs = ext4_write_super_lockfs,
982 .unlockfs = ext4_unlockfs,
983 .statfs = ext4_statfs,
984 .remount_fs = ext4_remount,
985 .clear_inode = ext4_clear_inode,
986 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700987#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -0700988 .quota_read = ext4_quota_read,
989 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700990#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500991 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700992};
993
Christoph Hellwig39655162007-10-21 16:42:17 -0700994static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700995 .fh_to_dentry = ext4_fh_to_dentry,
996 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -0700997 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700998};
999
1000enum {
1001 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1002 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001003 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001004 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
1005 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001006 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001007 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001008 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001009 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001010 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001011 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1012 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
1013 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001014 Opt_grpquota, Opt_extents, Opt_noextents, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001015 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001016 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001017};
1018
Steven Whitehousea447c092008-10-13 10:46:57 +01001019static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020 {Opt_bsd_df, "bsddf"},
1021 {Opt_minix_df, "minixdf"},
1022 {Opt_grpid, "grpid"},
1023 {Opt_grpid, "bsdgroups"},
1024 {Opt_nogrpid, "nogrpid"},
1025 {Opt_nogrpid, "sysvgroups"},
1026 {Opt_resgid, "resgid=%u"},
1027 {Opt_resuid, "resuid=%u"},
1028 {Opt_sb, "sb=%u"},
1029 {Opt_err_cont, "errors=continue"},
1030 {Opt_err_panic, "errors=panic"},
1031 {Opt_err_ro, "errors=remount-ro"},
1032 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001033 {Opt_debug, "debug"},
1034 {Opt_oldalloc, "oldalloc"},
1035 {Opt_orlov, "orlov"},
1036 {Opt_user_xattr, "user_xattr"},
1037 {Opt_nouser_xattr, "nouser_xattr"},
1038 {Opt_acl, "acl"},
1039 {Opt_noacl, "noacl"},
1040 {Opt_reservation, "reservation"},
1041 {Opt_noreservation, "noreservation"},
1042 {Opt_noload, "noload"},
1043 {Opt_nobh, "nobh"},
1044 {Opt_bh, "bh"},
1045 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001046 {Opt_min_batch_time, "min_batch_time=%u"},
1047 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001048 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001049 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001050 {Opt_journal_checksum, "journal_checksum"},
1051 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001052 {Opt_abort, "abort"},
1053 {Opt_data_journal, "data=journal"},
1054 {Opt_data_ordered, "data=ordered"},
1055 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001056 {Opt_data_err_abort, "data_err=abort"},
1057 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001058 {Opt_offusrjquota, "usrjquota="},
1059 {Opt_usrjquota, "usrjquota=%s"},
1060 {Opt_offgrpjquota, "grpjquota="},
1061 {Opt_grpjquota, "grpjquota=%s"},
1062 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1063 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1064 {Opt_grpquota, "grpquota"},
1065 {Opt_noquota, "noquota"},
1066 {Opt_quota, "quota"},
1067 {Opt_usrquota, "usrquota"},
1068 {Opt_barrier, "barrier=%u"},
Alex Tomasa86c6182006-10-11 01:21:03 -07001069 {Opt_extents, "extents"},
Mingming Cao1e2462f2007-07-18 09:00:55 -04001070 {Opt_noextents, "noextents"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001071 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001072 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001073 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001074 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001075 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001076 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001077 {Opt_journal_ioprio, "journal_ioprio=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001078 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001079};
1080
Mingming Cao617ba132006-10-11 01:20:53 -07001081static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001082{
Mingming Cao617ba132006-10-11 01:20:53 -07001083 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001084 char *options = (char *) *data;
1085
1086 if (!options || strncmp(options, "sb=", 3) != 0)
1087 return 1; /* Default location */
1088 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001089 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001090 sb_block = simple_strtoul(options, &options, 0);
1091 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001092 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093 (char *) *data);
1094 return 1;
1095 }
1096 if (*options == ',')
1097 options++;
1098 *data = (void *) options;
1099 return sb_block;
1100}
1101
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001102#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1103
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001104static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001105 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001106 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001107 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001108{
Mingming Cao617ba132006-10-11 01:20:53 -07001109 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001110 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001111 substring_t args[MAX_OPT_ARGS];
1112 int data_opt = 0;
1113 int option;
1114#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001115 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001116 char *qname;
1117#endif
Aneesh Kumar K.Vc07651b2008-07-11 19:27:31 -04001118 ext4_fsblk_t last_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001119
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 Karadfc5d032008-05-13 19:11:51 -04001310 if ((sb_any_quota_enabled(sb) ||
1311 sb_any_quota_suspended(sb)) &&
1312 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001313 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001314 "EXT4-fs: Cannot change journaled "
1315 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001316 return 0;
1317 }
1318 qname = match_strdup(&args[0]);
1319 if (!qname) {
1320 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001321 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001322 "storing quotafile name.\n");
1323 return 0;
1324 }
1325 if (sbi->s_qf_names[qtype] &&
1326 strcmp(sbi->s_qf_names[qtype], qname)) {
1327 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001328 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001329 "specified.\n", QTYPE2NAME(qtype));
1330 kfree(qname);
1331 return 0;
1332 }
1333 sbi->s_qf_names[qtype] = qname;
1334 if (strchr(sbi->s_qf_names[qtype], '/')) {
1335 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001336 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001337 "filesystem root.\n");
1338 kfree(sbi->s_qf_names[qtype]);
1339 sbi->s_qf_names[qtype] = NULL;
1340 return 0;
1341 }
1342 set_opt(sbi->s_mount_opt, QUOTA);
1343 break;
1344 case Opt_offusrjquota:
1345 qtype = USRQUOTA;
1346 goto clear_qf_name;
1347 case Opt_offgrpjquota:
1348 qtype = GRPQUOTA;
1349clear_qf_name:
Jan Karadfc5d032008-05-13 19:11:51 -04001350 if ((sb_any_quota_enabled(sb) ||
1351 sb_any_quota_suspended(sb)) &&
1352 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001353 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001354 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001355 "quota turned on.\n");
1356 return 0;
1357 }
1358 /*
1359 * The space will be released later when all options
1360 * are confirmed to be correct
1361 */
1362 sbi->s_qf_names[qtype] = NULL;
1363 break;
1364 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001365 qfmt = QFMT_VFS_OLD;
1366 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001367 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001368 qfmt = QFMT_VFS_V0;
1369set_qf_format:
1370 if ((sb_any_quota_enabled(sb) ||
1371 sb_any_quota_suspended(sb)) &&
1372 sbi->s_jquota_fmt != qfmt) {
1373 printk(KERN_ERR "EXT4-fs: Cannot change "
1374 "journaled quota options when "
1375 "quota turned on.\n");
1376 return 0;
1377 }
1378 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001379 break;
1380 case Opt_quota:
1381 case Opt_usrquota:
1382 set_opt(sbi->s_mount_opt, QUOTA);
1383 set_opt(sbi->s_mount_opt, USRQUOTA);
1384 break;
1385 case Opt_grpquota:
1386 set_opt(sbi->s_mount_opt, QUOTA);
1387 set_opt(sbi->s_mount_opt, GRPQUOTA);
1388 break;
1389 case Opt_noquota:
1390 if (sb_any_quota_enabled(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001391 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001392 "options when quota turned on.\n");
1393 return 0;
1394 }
1395 clear_opt(sbi->s_mount_opt, QUOTA);
1396 clear_opt(sbi->s_mount_opt, USRQUOTA);
1397 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1398 break;
1399#else
1400 case Opt_quota:
1401 case Opt_usrquota:
1402 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001403 printk(KERN_ERR
1404 "EXT4-fs: quota options not supported.\n");
1405 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001406 case Opt_usrjquota:
1407 case Opt_grpjquota:
1408 case Opt_offusrjquota:
1409 case Opt_offgrpjquota:
1410 case Opt_jqfmt_vfsold:
1411 case Opt_jqfmt_vfsv0:
1412 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001413 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001414 "supported.\n");
1415 break;
1416 case Opt_noquota:
1417 break;
1418#endif
1419 case Opt_abort:
1420 set_opt(sbi->s_mount_opt, ABORT);
1421 break;
1422 case Opt_barrier:
1423 if (match_int(&args[0], &option))
1424 return 0;
1425 if (option)
1426 set_opt(sbi->s_mount_opt, BARRIER);
1427 else
1428 clear_opt(sbi->s_mount_opt, BARRIER);
1429 break;
1430 case Opt_ignore:
1431 break;
1432 case Opt_resize:
1433 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001434 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001435 "for remount\n");
1436 return 0;
1437 }
1438 if (match_int(&args[0], &option) != 0)
1439 return 0;
1440 *n_blocks_count = option;
1441 break;
1442 case Opt_nobh:
1443 set_opt(sbi->s_mount_opt, NOBH);
1444 break;
1445 case Opt_bh:
1446 clear_opt(sbi->s_mount_opt, NOBH);
1447 break;
Alex Tomasa86c6182006-10-11 01:21:03 -07001448 case Opt_extents:
Eric Sandeene4079a12008-07-11 19:27:31 -04001449 if (!EXT4_HAS_INCOMPAT_FEATURE(sb,
1450 EXT4_FEATURE_INCOMPAT_EXTENTS)) {
1451 ext4_warning(sb, __func__,
1452 "extents feature not enabled "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05001453 "on this filesystem, use tune2fs");
Eric Sandeene4079a12008-07-11 19:27:31 -04001454 return 0;
1455 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001456 set_opt(sbi->s_mount_opt, EXTENTS);
Alex Tomasa86c6182006-10-11 01:21:03 -07001457 break;
Mingming Cao1e2462f2007-07-18 09:00:55 -04001458 case Opt_noextents:
Aneesh Kumar K.Vc07651b2008-07-11 19:27:31 -04001459 /*
1460 * When e2fsprogs support resizing an already existing
1461 * ext3 file system to greater than 2**32 we need to
1462 * add support to block allocator to handle growing
1463 * already existing block mapped inode so that blocks
1464 * allocated for them fall within 2**32
1465 */
1466 last_block = ext4_blocks_count(sbi->s_es) - 1;
1467 if (last_block > 0xffffffffULL) {
1468 printk(KERN_ERR "EXT4-fs: Filesystem too "
1469 "large to mount with "
1470 "-o noextents options\n");
1471 return 0;
1472 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001473 clear_opt(sbi->s_mount_opt, EXTENTS);
Mingming Cao1e2462f2007-07-18 09:00:55 -04001474 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001475 case Opt_i_version:
1476 set_opt(sbi->s_mount_opt, I_VERSION);
1477 sb->s_flags |= MS_I_VERSION;
1478 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001479 case Opt_nodelalloc:
1480 clear_opt(sbi->s_mount_opt, DELALLOC);
1481 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001482 case Opt_stripe:
1483 if (match_int(&args[0], &option))
1484 return 0;
1485 if (option < 0)
1486 return 0;
1487 sbi->s_stripe = option;
1488 break;
Alex Tomas64769242008-07-11 19:27:31 -04001489 case Opt_delalloc:
1490 set_opt(sbi->s_mount_opt, DELALLOC);
1491 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001492 case Opt_inode_readahead_blks:
1493 if (match_int(&args[0], &option))
1494 return 0;
1495 if (option < 0 || option > (1 << 30))
1496 return 0;
1497 sbi->s_inode_readahead_blks = option;
1498 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001499 case Opt_journal_ioprio:
1500 if (match_int(&args[0], &option))
1501 return 0;
1502 if (option < 0 || option > 7)
1503 break;
1504 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1505 option);
1506 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001507 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001508 printk(KERN_ERR
1509 "EXT4-fs: Unrecognized mount option \"%s\" "
1510 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001511 return 0;
1512 }
1513 }
1514#ifdef CONFIG_QUOTA
1515 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001516 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001517 sbi->s_qf_names[USRQUOTA])
1518 clear_opt(sbi->s_mount_opt, USRQUOTA);
1519
Mingming Cao617ba132006-10-11 01:20:53 -07001520 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001521 sbi->s_qf_names[GRPQUOTA])
1522 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1523
1524 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001525 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001526 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001527 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1528 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001529 "format mixing.\n");
1530 return 0;
1531 }
1532
1533 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001534 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001535 "not specified.\n");
1536 return 0;
1537 }
1538 } else {
1539 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001540 printk(KERN_ERR "EXT4-fs: journaled quota format "
1541 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001542 "enabled.\n");
1543 return 0;
1544 }
1545 }
1546#endif
1547 return 1;
1548}
1549
Mingming Cao617ba132006-10-11 01:20:53 -07001550static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001551 int read_only)
1552{
Mingming Cao617ba132006-10-11 01:20:53 -07001553 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001554 int res = 0;
1555
Mingming Cao617ba132006-10-11 01:20:53 -07001556 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001557 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1558 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559 res = MS_RDONLY;
1560 }
1561 if (read_only)
1562 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001563 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001564 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1565 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001566 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001567 printk(KERN_WARNING
1568 "EXT4-fs warning: mounting fs with errors, "
1569 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001570 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1571 le16_to_cpu(es->s_mnt_count) >=
1572 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001573 printk(KERN_WARNING
1574 "EXT4-fs warning: maximal mount count reached, "
1575 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001576 else if (le32_to_cpu(es->s_checkinterval) &&
1577 (le32_to_cpu(es->s_lastcheck) +
1578 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001579 printk(KERN_WARNING
1580 "EXT4-fs warning: checktime reached, "
1581 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001582 if (!sbi->s_journal)
1583 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001584 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001585 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001586 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001587 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001588 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001589 if (sbi->s_journal)
1590 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001591
Mingming Cao617ba132006-10-11 01:20:53 -07001592 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001593 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001594 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001595 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1596 sb->s_blocksize,
1597 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001598 EXT4_BLOCKS_PER_GROUP(sb),
1599 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001600 sbi->s_mount_opt);
1601
Frank Mayhar03901312009-01-07 00:06:22 -05001602 if (EXT4_SB(sb)->s_journal) {
1603 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1604 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1605 "external", EXT4_SB(sb)->s_journal->j_devname);
1606 } else {
1607 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1608 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001609 return res;
1610}
1611
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001612static int ext4_fill_flex_info(struct super_block *sb)
1613{
1614 struct ext4_sb_info *sbi = EXT4_SB(sb);
1615 struct ext4_group_desc *gdp = NULL;
1616 struct buffer_head *bh;
1617 ext4_group_t flex_group_count;
1618 ext4_group_t flex_group;
1619 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001620 int i;
1621
1622 if (!sbi->s_es->s_log_groups_per_flex) {
1623 sbi->s_log_groups_per_flex = 0;
1624 return 1;
1625 }
1626
1627 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1628 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1629
Frederic Bohec62a11f2008-09-08 10:20:24 -04001630 /* We allocate both existing and potentially added groups */
1631 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001632 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1633 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001634 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001635 sizeof(struct flex_groups), GFP_KERNEL);
1636 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001637 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001638 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001639 goto failed;
1640 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001641
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001642 for (i = 0; i < sbi->s_groups_count; i++) {
1643 gdp = ext4_get_group_desc(sb, i, &bh);
1644
1645 flex_group = ext4_flex_group(sbi, i);
1646 sbi->s_flex_groups[flex_group].free_inodes +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001647 ext4_free_inodes_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001648 sbi->s_flex_groups[flex_group].free_blocks +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001649 ext4_free_blks_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001650 }
1651
1652 return 1;
1653failed:
1654 return 0;
1655}
1656
Andreas Dilger717d50e2007-10-16 18:38:25 -04001657__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1658 struct ext4_group_desc *gdp)
1659{
1660 __u16 crc = 0;
1661
1662 if (sbi->s_es->s_feature_ro_compat &
1663 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1664 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1665 __le32 le_group = cpu_to_le32(block_group);
1666
1667 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1668 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1669 crc = crc16(crc, (__u8 *)gdp, offset);
1670 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1671 /* for checksum of struct ext4_group_desc do the rest...*/
1672 if ((sbi->s_es->s_feature_incompat &
1673 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1674 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1675 crc = crc16(crc, (__u8 *)gdp + offset,
1676 le16_to_cpu(sbi->s_es->s_desc_size) -
1677 offset);
1678 }
1679
1680 return cpu_to_le16(crc);
1681}
1682
1683int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1684 struct ext4_group_desc *gdp)
1685{
1686 if ((sbi->s_es->s_feature_ro_compat &
1687 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1688 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1689 return 0;
1690
1691 return 1;
1692}
1693
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001694/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001695static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001696{
Mingming Cao617ba132006-10-11 01:20:53 -07001697 struct ext4_sb_info *sbi = EXT4_SB(sb);
1698 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1699 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001700 ext4_fsblk_t block_bitmap;
1701 ext4_fsblk_t inode_bitmap;
1702 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001703 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001704 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001705
Jose R. Santosce421582007-10-16 18:38:25 -04001706 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1707 flexbg_flag = 1;
1708
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001709 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001711 for (i = 0; i < sbi->s_groups_count; i++) {
1712 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1713
Jose R. Santosce421582007-10-16 18:38:25 -04001714 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001715 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001716 else
1717 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001718 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001719
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001720 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001721 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001722 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001723 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001724 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001725 return 0;
1726 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001727 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001728 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001729 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001730 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001731 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001732 return 0;
1733 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001734 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001735 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001736 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001737 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001738 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001739 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001740 return 0;
1741 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001742 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001743 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001744 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001745 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001746 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1747 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001748 if (!(sb->s_flags & MS_RDONLY)) {
1749 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001750 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001751 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001752 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001753 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001754 if (!flexbg_flag)
1755 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001756 }
1757
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001758 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001759 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001760 return 1;
1761}
1762
Mingming Cao617ba132006-10-11 01:20:53 -07001763/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001764 * the superblock) which were deleted from all directories, but held open by
1765 * a process at the time of a crash. We walk the list and try to delete these
1766 * inodes at recovery time (only with a read-write filesystem).
1767 *
1768 * In order to keep the orphan inode chain consistent during traversal (in
1769 * case of crash during recovery), we link each inode into the superblock
1770 * orphan list_head and handle it the same way as an inode deletion during
1771 * normal operation (which journals the operations for us).
1772 *
1773 * We only do an iget() and an iput() on each inode, which is very safe if we
1774 * accidentally point at an in-use or already deleted inode. The worst that
1775 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001776 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001777 * e2fsck was run on this filesystem, and it must have already done the orphan
1778 * inode cleanup for us, so we can safely abort without any further action.
1779 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001780static void ext4_orphan_cleanup(struct super_block *sb,
1781 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001782{
1783 unsigned int s_flags = sb->s_flags;
1784 int nr_orphans = 0, nr_truncates = 0;
1785#ifdef CONFIG_QUOTA
1786 int i;
1787#endif
1788 if (!es->s_last_orphan) {
1789 jbd_debug(4, "no orphan inodes to clean up\n");
1790 return;
1791 }
1792
Eric Sandeena8f48a92006-12-06 20:40:13 -08001793 if (bdev_read_only(sb->s_bdev)) {
1794 printk(KERN_ERR "EXT4-fs: write access "
1795 "unavailable, skipping orphan cleanup.\n");
1796 return;
1797 }
1798
Mingming Cao617ba132006-10-11 01:20:53 -07001799 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001800 if (es->s_last_orphan)
1801 jbd_debug(1, "Errors on filesystem, "
1802 "clearing orphan list.\n");
1803 es->s_last_orphan = 0;
1804 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1805 return;
1806 }
1807
1808 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001809 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001810 sb->s_id);
1811 sb->s_flags &= ~MS_RDONLY;
1812 }
1813#ifdef CONFIG_QUOTA
1814 /* Needed for iput() to work correctly and not trash data */
1815 sb->s_flags |= MS_ACTIVE;
1816 /* Turn on quotas so that they are updated correctly */
1817 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001818 if (EXT4_SB(sb)->s_qf_names[i]) {
1819 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001820 if (ret < 0)
1821 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001822 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001823 "quota: error %d\n", ret);
1824 }
1825 }
1826#endif
1827
1828 while (es->s_last_orphan) {
1829 struct inode *inode;
1830
Josef Bacik97bd42b2008-04-29 22:04:56 -04001831 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1832 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001833 es->s_last_orphan = 0;
1834 break;
1835 }
1836
Mingming Cao617ba132006-10-11 01:20:53 -07001837 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001838 DQUOT_INIT(inode);
1839 if (inode->i_nlink) {
1840 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001841 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001842 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001843 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001844 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001845 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001846 nr_truncates++;
1847 } else {
1848 printk(KERN_DEBUG
1849 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001850 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001851 jbd_debug(2, "deleting unreferenced inode %lu\n",
1852 inode->i_ino);
1853 nr_orphans++;
1854 }
1855 iput(inode); /* The delete magic happens here! */
1856 }
1857
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001858#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001859
1860 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001861 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001862 sb->s_id, PLURAL(nr_orphans));
1863 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001864 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001865 sb->s_id, PLURAL(nr_truncates));
1866#ifdef CONFIG_QUOTA
1867 /* Turn quotas off */
1868 for (i = 0; i < MAXQUOTAS; i++) {
1869 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001870 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001871 }
1872#endif
1873 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1874}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001875/*
1876 * Maximal extent format file size.
1877 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1878 * extent format containers, within a sector_t, and within i_blocks
1879 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1880 * so that won't be a limiting factor.
1881 *
1882 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1883 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001884static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001885{
1886 loff_t res;
1887 loff_t upper_limit = MAX_LFS_FILESIZE;
1888
1889 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001890 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001891 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001892 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001893 * i_block represent total blocks in 512 bytes
1894 * 32 == size of vfs inode i_blocks * 8
1895 */
1896 upper_limit = (1LL << 32) - 1;
1897
1898 /* total blocks in file system block size */
1899 upper_limit >>= (blkbits - 9);
1900 upper_limit <<= blkbits;
1901 }
1902
1903 /* 32-bit extent-start container, ee_block */
1904 res = 1LL << 32;
1905 res <<= blkbits;
1906 res -= 1;
1907
1908 /* Sanity check against vm- & vfs- imposed limits */
1909 if (res > upper_limit)
1910 res = upper_limit;
1911
1912 return res;
1913}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001914
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001915/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001916 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001917 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1918 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001919 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001920static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001921{
Mingming Cao617ba132006-10-11 01:20:53 -07001922 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001923 int meta_blocks;
1924 loff_t upper_limit;
1925 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001926 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001927 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001928 * does not exceed 2^48 -1
1929 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1930 * total number of 512 bytes blocks of the file
1931 */
1932
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001933 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001934 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001935 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001936 * implies the inode i_block represent total blocks in
1937 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001938 */
1939 upper_limit = (1LL << 32) - 1;
1940
1941 /* total blocks in file system block size */
1942 upper_limit >>= (bits - 9);
1943
1944 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001945 /*
1946 * We use 48 bit ext4_inode i_blocks
1947 * With EXT4_HUGE_FILE_FL set the i_blocks
1948 * represent total number of blocks in
1949 * file system block size
1950 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001951 upper_limit = (1LL << 48) - 1;
1952
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001953 }
1954
1955 /* indirect blocks */
1956 meta_blocks = 1;
1957 /* double indirect blocks */
1958 meta_blocks += 1 + (1LL << (bits-2));
1959 /* tripple indirect blocks */
1960 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1961
1962 upper_limit -= meta_blocks;
1963 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001964
1965 res += 1LL << (bits-2);
1966 res += 1LL << (2*(bits-2));
1967 res += 1LL << (3*(bits-2));
1968 res <<= bits;
1969 if (res > upper_limit)
1970 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001971
1972 if (res > MAX_LFS_FILESIZE)
1973 res = MAX_LFS_FILESIZE;
1974
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001975 return res;
1976}
1977
Mingming Cao617ba132006-10-11 01:20:53 -07001978static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001979 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001980{
Mingming Cao617ba132006-10-11 01:20:53 -07001981 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001982 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983 int has_super = 0;
1984
1985 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1986
Mingming Cao617ba132006-10-11 01:20:53 -07001987 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001988 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001989 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001990 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001991 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001992 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001993 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001994}
1995
Alex Tomasc9de5602008-01-29 00:19:52 -05001996/**
1997 * ext4_get_stripe_size: Get the stripe size.
1998 * @sbi: In memory super block info
1999 *
2000 * If we have specified it via mount option, then
2001 * use the mount option value. If the value specified at mount time is
2002 * greater than the blocks per group use the super block value.
2003 * If the super block value is greater than blocks per group return 0.
2004 * Allocator needs it be less than blocks per group.
2005 *
2006 */
2007static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
2008{
2009 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2010 unsigned long stripe_width =
2011 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2012
2013 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2014 return sbi->s_stripe;
2015
2016 if (stripe_width <= sbi->s_blocks_per_group)
2017 return stripe_width;
2018
2019 if (stride <= sbi->s_blocks_per_group)
2020 return stride;
2021
2022 return 0;
2023}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002024
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002025static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002026 __releases(kernel_lock)
2027 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002028
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002029{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002030 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002031 struct ext4_super_block *es = NULL;
2032 struct ext4_sb_info *sbi;
2033 ext4_fsblk_t block;
2034 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002035 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002036 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002037 unsigned long journal_devnum = 0;
2038 unsigned long def_mount_opts;
2039 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002040 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002041 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002042 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002043 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002044 unsigned int db_count;
2045 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002046 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002047 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002048 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002049 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002050 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002051
2052 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2053 if (!sbi)
2054 return -ENOMEM;
2055 sb->s_fs_info = sbi;
2056 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002057 sbi->s_resuid = EXT4_DEF_RESUID;
2058 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002059 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002060 sbi->s_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002061
2062 unlock_kernel();
2063
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002064 /* Cleanup superblock name */
2065 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2066 *cp = '!';
2067
Mingming Cao617ba132006-10-11 01:20:53 -07002068 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002069 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002070 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002071 goto out_fail;
2072 }
2073
2074 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002075 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002076 * block sizes. We need to calculate the offset from buffer start.
2077 */
Mingming Cao617ba132006-10-11 01:20:53 -07002078 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002079 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2080 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002081 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002082 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002083 }
2084
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002085 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002086 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002087 goto out_fail;
2088 }
2089 /*
2090 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002091 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002092 */
Mingming Cao617ba132006-10-11 01:20:53 -07002093 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002094 sbi->s_es = es;
2095 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002096 if (sb->s_magic != EXT4_SUPER_MAGIC)
2097 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002098
2099 /* Set defaults before we parse the mount options */
2100 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002101 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002102 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002103 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002104 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002105 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002106 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002107#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002108 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002109 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002110#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002111#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002112 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002113 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002114#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002115 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2116 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2117 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2118 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2119 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2120 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002121
Mingming Cao617ba132006-10-11 01:20:53 -07002122 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002123 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002124 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002125 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002126 else
2127 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002128
2129 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2130 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002131 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2132 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2133 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002134
2135 set_opt(sbi->s_mount_opt, RESERVATION);
Eric Sandeen571640c2008-05-26 12:29:46 -04002136 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002137
Mingming Cao1e2462f2007-07-18 09:00:55 -04002138 /*
2139 * turn on extents feature by default in ext4 filesystem
Eric Sandeene4079a12008-07-11 19:27:31 -04002140 * only if feature flag already set by mkfs or tune2fs.
2141 * Use -o noextents to turn it off
Mingming Cao1e2462f2007-07-18 09:00:55 -04002142 */
Eric Sandeene4079a12008-07-11 19:27:31 -04002143 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_EXTENTS))
2144 set_opt(sbi->s_mount_opt, EXTENTS);
2145 else
2146 ext4_warning(sb, __func__,
2147 "extents feature not enabled on this filesystem, "
Theodore Ts'ofde4d952009-01-05 22:17:35 -05002148 "use tune2fs.");
Mingming Cao1e2462f2007-07-18 09:00:55 -04002149
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002150 /*
2151 * enable delayed allocation by default
2152 * Use -o nodelalloc to turn it off
2153 */
2154 set_opt(sbi->s_mount_opt, DELALLOC);
2155
2156
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002157 if (!parse_options((char *) data, sb, &journal_devnum,
2158 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002159 goto failed_mount;
2160
2161 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002162 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002163
Mingming Cao617ba132006-10-11 01:20:53 -07002164 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2165 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2166 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2167 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002168 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002169 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002170 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002171
2172 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002173 * Check feature flags regardless of the revision level, since we
2174 * previously didn't change the revision level when setting the flags,
2175 * so there is a chance incompat flags are set on a rev 0 filesystem.
2176 */
Mingming Cao617ba132006-10-11 01:20:53 -07002177 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002178 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002179 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002180 "unsupported optional features (%x).\n", sb->s_id,
2181 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2182 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002183 goto failed_mount;
2184 }
Mingming Cao617ba132006-10-11 01:20:53 -07002185 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002186 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002187 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002188 "unsupported optional features (%x).\n", sb->s_id,
2189 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2190 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002191 goto failed_mount;
2192 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002193 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2194 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2195 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002196 /*
2197 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002198 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002199 */
2200 if (sizeof(root->i_blocks) < sizeof(u64) &&
2201 !(sb->s_flags & MS_RDONLY)) {
2202 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2203 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002204 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002205 goto failed_mount;
2206 }
2207 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002208 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2209
Mingming Cao617ba132006-10-11 01:20:53 -07002210 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2211 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002212 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002213 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002214 blocksize, sb->s_id);
2215 goto failed_mount;
2216 }
2217
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002218 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002219
2220 /* Validate the filesystem blocksize */
2221 if (!sb_set_blocksize(sb, blocksize)) {
2222 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2223 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002224 goto failed_mount;
2225 }
2226
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002227 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002228 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2229 offset = do_div(logical_sb_block, blocksize);
2230 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002231 if (!bh) {
2232 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002233 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002234 goto failed_mount;
2235 }
Mingming Cao617ba132006-10-11 01:20:53 -07002236 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002237 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002238 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002239 printk(KERN_ERR
2240 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002241 goto failed_mount;
2242 }
2243 }
2244
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002245 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2246 has_huge_files);
2247 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002248
Mingming Cao617ba132006-10-11 01:20:53 -07002249 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2250 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2251 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002252 } else {
2253 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2254 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002255 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002256 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002257 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002258 printk(KERN_ERR
2259 "EXT4-fs: unsupported inode size: %d\n",
2260 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002261 goto failed_mount;
2262 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002263 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2264 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002265 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002266 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2267 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002268 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002269 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002270 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002271 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002272 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002273 sbi->s_desc_size);
2274 goto failed_mount;
2275 }
2276 } else
2277 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002278 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002279 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002280 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002281 goto cantfind_ext4;
2282 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002283 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002284 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002285 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2286 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002287 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002288 sbi->s_sbh = bh;
2289 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002290 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2291 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002292 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002293 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2294 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002295 i = le32_to_cpu(es->s_flags);
2296 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2297 sbi->s_hash_unsigned = 3;
2298 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2299#ifdef __CHAR_UNSIGNED__
2300 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2301 sbi->s_hash_unsigned = 3;
2302#else
2303 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2304#endif
2305 sb->s_dirt = 1;
2306 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002307
2308 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002309 printk(KERN_ERR
2310 "EXT4-fs: #blocks per group too big: %lu\n",
2311 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002312 goto failed_mount;
2313 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002314 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002315 printk(KERN_ERR
2316 "EXT4-fs: #inodes per group too big: %lu\n",
2317 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002318 goto failed_mount;
2319 }
2320
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002321 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002322 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002323 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002324 " too large to mount safely\n", sb->s_id);
2325 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002326 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002327 "enabled\n");
2328 goto failed_mount;
2329 }
2330
Mingming Cao617ba132006-10-11 01:20:53 -07002331 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2332 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002333
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002334 /*
2335 * It makes no sense for the first data block to be beyond the end
2336 * of the filesystem.
2337 */
2338 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2339 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2340 "block %u is beyond end of filesystem (%llu)\n",
2341 le32_to_cpu(es->s_first_data_block),
2342 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002343 goto failed_mount;
2344 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002345 blocks_count = (ext4_blocks_count(es) -
2346 le32_to_cpu(es->s_first_data_block) +
2347 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2348 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002349 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2350 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2351 "(block count %llu, first data block %u, "
2352 "blocks per group %lu)\n", sbi->s_groups_count,
2353 ext4_blocks_count(es),
2354 le32_to_cpu(es->s_first_data_block),
2355 EXT4_BLOCKS_PER_GROUP(sb));
2356 goto failed_mount;
2357 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002358 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002359 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2360 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002361 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002362 GFP_KERNEL);
2363 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002364 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002365 goto failed_mount;
2366 }
2367
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002368#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002369 if (ext4_proc_root)
2370 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
2371
Theodore Ts'o240799c2008-10-09 23:53:47 -04002372 if (sbi->s_proc)
2373 proc_create_data("inode_readahead_blks", 0644, sbi->s_proc,
2374 &ext4_ui_proc_fops,
2375 &sbi->s_inode_readahead_blks);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002376#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002377
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002378 bgl_lock_init(&sbi->s_blockgroup_lock);
2379
2380 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002381 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002382 sbi->s_group_desc[i] = sb_bread(sb, block);
2383 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002384 printk(KERN_ERR "EXT4-fs: "
2385 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002386 db_count = i;
2387 goto failed_mount2;
2388 }
2389 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002390 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002391 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002392 goto failed_mount2;
2393 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002394 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2395 if (!ext4_fill_flex_info(sb)) {
2396 printk(KERN_ERR
2397 "EXT4-fs: unable to initialize "
2398 "flex_bg meta info!\n");
2399 goto failed_mount2;
2400 }
2401
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002402 sbi->s_gdb_count = db_count;
2403 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2404 spin_lock_init(&sbi->s_next_gen_lock);
2405
Peter Zijlstra833f4072007-10-16 23:25:45 -07002406 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2407 ext4_count_free_blocks(sb));
2408 if (!err) {
2409 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2410 ext4_count_free_inodes(sb));
2411 }
2412 if (!err) {
2413 err = percpu_counter_init(&sbi->s_dirs_counter,
2414 ext4_count_dirs(sb));
2415 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002416 if (!err) {
2417 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2418 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002419 if (err) {
2420 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2421 goto failed_mount3;
2422 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002423
Alex Tomasc9de5602008-01-29 00:19:52 -05002424 sbi->s_stripe = ext4_get_stripe_size(sbi);
2425
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002426 /*
2427 * set up enough so that it can read an inode
2428 */
Mingming Cao617ba132006-10-11 01:20:53 -07002429 sb->s_op = &ext4_sops;
2430 sb->s_export_op = &ext4_export_ops;
2431 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002432#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002433 sb->s_qcop = &ext4_qctl_operations;
2434 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002435#endif
2436 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2437
2438 sb->s_root = NULL;
2439
2440 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002441 EXT4_HAS_INCOMPAT_FEATURE(sb,
2442 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002443
2444 /*
2445 * The first inode we look at is the journal inode. Don't try
2446 * root first: it may be modified in the journal!
2447 */
2448 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002449 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2450 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002452 if (!(sb->s_flags & MS_RDONLY) &&
2453 EXT4_SB(sb)->s_journal->j_failed_commit) {
2454 printk(KERN_CRIT "EXT4-fs error (device %s): "
2455 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002456 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002457 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002458 if (test_opt(sb, ERRORS_RO)) {
2459 printk(KERN_CRIT
2460 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002461 sb->s_flags |= MS_RDONLY;
2462 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2463 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2464 }
2465 if (test_opt(sb, ERRORS_PANIC)) {
2466 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2467 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2468 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002469 goto failed_mount4;
2470 }
2471 }
Frank Mayhar03901312009-01-07 00:06:22 -05002472 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2473 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2474 printk(KERN_ERR "EXT4-fs: required journal recovery "
2475 "suppressed and not mounted read-only\n");
2476 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002477 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002478 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2479 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2480 sbi->s_journal = NULL;
2481 needs_recovery = 0;
2482 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002483 }
2484
Jose R. Santoseb40a092007-07-18 08:37:25 -04002485 if (ext4_blocks_count(es) > 0xffffffffULL &&
2486 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2487 JBD2_FEATURE_INCOMPAT_64BIT)) {
2488 printk(KERN_ERR "ext4: Failed to set 64-bit journal feature\n");
2489 goto failed_mount4;
2490 }
2491
Girish Shilamkar818d2762008-01-28 23:58:27 -05002492 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2493 jbd2_journal_set_features(sbi->s_journal,
2494 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2495 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2496 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2497 jbd2_journal_set_features(sbi->s_journal,
2498 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2499 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2500 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2501 } else {
2502 jbd2_journal_clear_features(sbi->s_journal,
2503 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2504 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2505 }
2506
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002507 /* We have now updated the journal if required, so we can
2508 * validate the data journaling mode. */
2509 switch (test_opt(sb, DATA_FLAGS)) {
2510 case 0:
2511 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002512 * capabilities: ORDERED_DATA if the journal can
2513 * cope, else JOURNAL_DATA
2514 */
Mingming Caodab291a2006-10-11 01:21:01 -07002515 if (jbd2_journal_check_available_features
2516 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002517 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2518 else
2519 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2520 break;
2521
Mingming Cao617ba132006-10-11 01:20:53 -07002522 case EXT4_MOUNT_ORDERED_DATA:
2523 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002524 if (!jbd2_journal_check_available_features
2525 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002526 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002527 "requested data journaling mode\n");
2528 goto failed_mount4;
2529 }
2530 default:
2531 break;
2532 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002533 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002534
Frank Mayhar03901312009-01-07 00:06:22 -05002535no_journal:
2536
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002537 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002538 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2539 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002540 "its supported only with writeback mode\n");
2541 clear_opt(sbi->s_mount_opt, NOBH);
2542 }
2543 }
2544 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002545 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002546 * so we can safely mount the rest of the filesystem now.
2547 */
2548
David Howells1d1fe1e2008-02-07 00:15:37 -08002549 root = ext4_iget(sb, EXT4_ROOT_INO);
2550 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002551 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002552 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553 goto failed_mount4;
2554 }
2555 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002556 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002557 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002558 goto failed_mount4;
2559 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002560 sb->s_root = d_alloc_root(root);
2561 if (!sb->s_root) {
2562 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2563 iput(root);
2564 ret = -ENOMEM;
2565 goto failed_mount4;
2566 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002567
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002568 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002569
2570 /* determine the minimum size of new large inodes, if present */
2571 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2572 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2573 EXT4_GOOD_OLD_INODE_SIZE;
2574 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2575 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2576 if (sbi->s_want_extra_isize <
2577 le16_to_cpu(es->s_want_extra_isize))
2578 sbi->s_want_extra_isize =
2579 le16_to_cpu(es->s_want_extra_isize);
2580 if (sbi->s_want_extra_isize <
2581 le16_to_cpu(es->s_min_extra_isize))
2582 sbi->s_want_extra_isize =
2583 le16_to_cpu(es->s_min_extra_isize);
2584 }
2585 }
2586 /* Check if enough inode space is available */
2587 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2588 sbi->s_inode_size) {
2589 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2590 EXT4_GOOD_OLD_INODE_SIZE;
2591 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2592 "available.\n");
2593 }
2594
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002595 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2596 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2597 "requested data journaling mode\n");
2598 clear_opt(sbi->s_mount_opt, DELALLOC);
2599 } else if (test_opt(sb, DELALLOC))
2600 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2601
2602 ext4_ext_init(sb);
2603 err = ext4_mb_init(sb, needs_recovery);
2604 if (err) {
2605 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2606 err);
2607 goto failed_mount4;
2608 }
2609
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002610 /*
2611 * akpm: core read_super() calls in here with the superblock locked.
2612 * That deadlocks, because orphan cleanup needs to lock the superblock
2613 * in numerous places. Here we just pop the lock - it's relatively
2614 * harmless, because we are now ready to accept write_super() requests,
2615 * and aviro says that's the only reason for hanging onto the
2616 * superblock lock.
2617 */
Mingming Cao617ba132006-10-11 01:20:53 -07002618 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2619 ext4_orphan_cleanup(sb, es);
2620 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002621 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002622 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002623 ext4_mark_recovery_complete(sb, es);
2624 }
2625 if (EXT4_SB(sb)->s_journal) {
2626 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2627 descr = " journalled data mode";
2628 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2629 descr = " ordered data mode";
2630 else
2631 descr = " writeback data mode";
2632 } else
2633 descr = "out journal";
2634
2635 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2636 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002637
2638 lock_kernel();
2639 return 0;
2640
Mingming Cao617ba132006-10-11 01:20:53 -07002641cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002642 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002643 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002644 sb->s_id);
2645 goto failed_mount;
2646
2647failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002648 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2649 if (sbi->s_journal) {
2650 jbd2_journal_destroy(sbi->s_journal);
2651 sbi->s_journal = NULL;
2652 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002653failed_mount3:
2654 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2655 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2656 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002657 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002658failed_mount2:
2659 for (i = 0; i < db_count; i++)
2660 brelse(sbi->s_group_desc[i]);
2661 kfree(sbi->s_group_desc);
2662failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002663 if (sbi->s_proc) {
2664 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002665 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002666 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002667#ifdef CONFIG_QUOTA
2668 for (i = 0; i < MAXQUOTAS; i++)
2669 kfree(sbi->s_qf_names[i]);
2670#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002671 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002672 brelse(bh);
2673out_fail:
2674 sb->s_fs_info = NULL;
2675 kfree(sbi);
2676 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002677 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002678}
2679
2680/*
2681 * Setup any per-fs journal parameters now. We'll do this both on
2682 * initial mount, once the journal has been initialised but before we've
2683 * done any recovery; and again on any subsequent remount.
2684 */
Mingming Cao617ba132006-10-11 01:20:53 -07002685static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002686{
Mingming Cao617ba132006-10-11 01:20:53 -07002687 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002688
Theodore Ts'o30773842009-01-03 20:27:38 -05002689 journal->j_commit_interval = sbi->s_commit_interval;
2690 journal->j_min_batch_time = sbi->s_min_batch_time;
2691 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692
2693 spin_lock(&journal->j_state_lock);
2694 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002695 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002696 else
Mingming Caodab291a2006-10-11 01:21:01 -07002697 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002698 if (test_opt(sb, DATA_ERR_ABORT))
2699 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2700 else
2701 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002702 spin_unlock(&journal->j_state_lock);
2703}
2704
Mingming Cao617ba132006-10-11 01:20:53 -07002705static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002706 unsigned int journal_inum)
2707{
2708 struct inode *journal_inode;
2709 journal_t *journal;
2710
Frank Mayhar03901312009-01-07 00:06:22 -05002711 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2712
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002713 /* First, test for the existence of a valid inode on disk. Bad
2714 * things happen if we iget() an unused inode, as the subsequent
2715 * iput() will try to delete it. */
2716
David Howells1d1fe1e2008-02-07 00:15:37 -08002717 journal_inode = ext4_iget(sb, journal_inum);
2718 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002719 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002720 return NULL;
2721 }
2722 if (!journal_inode->i_nlink) {
2723 make_bad_inode(journal_inode);
2724 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002725 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002726 return NULL;
2727 }
2728
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002729 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002730 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002731 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002732 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002733 iput(journal_inode);
2734 return NULL;
2735 }
2736
Mingming Caodab291a2006-10-11 01:21:01 -07002737 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002738 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002739 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002740 iput(journal_inode);
2741 return NULL;
2742 }
2743 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002744 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002745 return journal;
2746}
2747
Mingming Cao617ba132006-10-11 01:20:53 -07002748static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002749 dev_t j_dev)
2750{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002751 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002752 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002753 ext4_fsblk_t start;
2754 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002755 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002756 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002757 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002758 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002759 struct block_device *bdev;
2760
Frank Mayhar03901312009-01-07 00:06:22 -05002761 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2762
Mingming Cao617ba132006-10-11 01:20:53 -07002763 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002764 if (bdev == NULL)
2765 return NULL;
2766
2767 if (bd_claim(bdev, sb)) {
2768 printk(KERN_ERR
Dave Kleikamp8c55e202007-05-24 13:04:54 -04002769 "EXT4: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002770 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002771 return NULL;
2772 }
2773
2774 blocksize = sb->s_blocksize;
2775 hblock = bdev_hardsect_size(bdev);
2776 if (blocksize < hblock) {
2777 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002778 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002779 goto out_bdev;
2780 }
2781
Mingming Cao617ba132006-10-11 01:20:53 -07002782 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2783 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002784 set_blocksize(bdev, blocksize);
2785 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002786 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002787 "external journal\n");
2788 goto out_bdev;
2789 }
2790
Mingming Cao617ba132006-10-11 01:20:53 -07002791 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2792 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002793 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002794 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2795 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002796 "bad superblock\n");
2797 brelse(bh);
2798 goto out_bdev;
2799 }
2800
Mingming Cao617ba132006-10-11 01:20:53 -07002801 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2802 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002803 brelse(bh);
2804 goto out_bdev;
2805 }
2806
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002807 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002808 start = sb_block + 1;
2809 brelse(bh); /* we're done with the superblock */
2810
Mingming Caodab291a2006-10-11 01:21:01 -07002811 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002812 start, len, blocksize);
2813 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002814 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002815 goto out_bdev;
2816 }
2817 journal->j_private = sb;
2818 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2819 wait_on_buffer(journal->j_sb_buffer);
2820 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002821 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002822 goto out_journal;
2823 }
2824 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002825 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002826 "user (unsupported) - %d\n",
2827 be32_to_cpu(journal->j_superblock->s_nr_users));
2828 goto out_journal;
2829 }
Mingming Cao617ba132006-10-11 01:20:53 -07002830 EXT4_SB(sb)->journal_bdev = bdev;
2831 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002832 return journal;
2833out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07002834 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002835out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07002836 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002837 return NULL;
2838}
2839
Mingming Cao617ba132006-10-11 01:20:53 -07002840static int ext4_load_journal(struct super_block *sb,
2841 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002842 unsigned long journal_devnum)
2843{
2844 journal_t *journal;
2845 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
2846 dev_t journal_dev;
2847 int err = 0;
2848 int really_read_only;
2849
Frank Mayhar03901312009-01-07 00:06:22 -05002850 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2851
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002852 if (journal_devnum &&
2853 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002854 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002855 "numbers have changed\n");
2856 journal_dev = new_decode_dev(journal_devnum);
2857 } else
2858 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
2859
2860 really_read_only = bdev_read_only(sb->s_bdev);
2861
2862 /*
2863 * Are we loading a blank journal or performing recovery after a
2864 * crash? For recovery, we need to check in advance whether we
2865 * can get read-write access to the device.
2866 */
2867
Mingming Cao617ba132006-10-11 01:20:53 -07002868 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002869 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002870 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002871 "required on readonly filesystem.\n");
2872 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07002873 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002874 "unavailable, cannot proceed.\n");
2875 return -EROFS;
2876 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002877 printk(KERN_INFO "EXT4-fs: write access will "
2878 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002879 }
2880 }
2881
2882 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07002883 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002884 "and inode journals!\n");
2885 return -EINVAL;
2886 }
2887
2888 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07002889 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002890 return -EINVAL;
2891 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07002892 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002893 return -EINVAL;
2894 }
2895
Theodore Ts'o4776004f2008-09-08 23:00:52 -04002896 if (journal->j_flags & JBD2_BARRIER)
2897 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
2898 else
2899 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
2900
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002901 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07002902 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002903 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002904 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002905 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002906 return err;
2907 }
2908 }
2909
Mingming Cao617ba132006-10-11 01:20:53 -07002910 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07002911 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07002913 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002914
2915 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07002916 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07002917 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002918 return err;
2919 }
2920
Mingming Cao617ba132006-10-11 01:20:53 -07002921 EXT4_SB(sb)->s_journal = journal;
2922 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923
2924 if (journal_devnum &&
2925 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2926 es->s_journal_dev = cpu_to_le32(journal_devnum);
2927 sb->s_dirt = 1;
2928
2929 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07002930 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002931 }
2932
2933 return 0;
2934}
2935
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002936static void ext4_commit_super(struct super_block *sb,
2937 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002938{
Mingming Cao617ba132006-10-11 01:20:53 -07002939 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002940
2941 if (!sbh)
2942 return;
Theodore Ts'o914258b2008-10-06 21:35:40 -04002943 if (buffer_write_io_error(sbh)) {
2944 /*
2945 * Oh, dear. A previous attempt to write the
2946 * superblock failed. This could happen because the
2947 * USB device was yanked out. Or it could happen to
2948 * be a transient write error and maybe the block will
2949 * be remapped. Nothing we can do but to retry the
2950 * write and hope for the best.
2951 */
2952 printk(KERN_ERR "ext4: previous I/O error to "
2953 "superblock detected for %s.\n", sb->s_id);
2954 clear_buffer_write_io_error(sbh);
2955 set_buffer_uptodate(sbh);
2956 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002957 es->s_wtime = cpu_to_le32(get_seconds());
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05002958 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
2959 &EXT4_SB(sb)->s_freeblocks_counter));
2960 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
2961 &EXT4_SB(sb)->s_freeinodes_counter));
2962
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963 BUFFER_TRACE(sbh, "marking dirty");
2964 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002965 if (sync) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002966 sync_dirty_buffer(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04002967 if (buffer_write_io_error(sbh)) {
2968 printk(KERN_ERR "ext4: I/O error while writing "
2969 "superblock for %s.\n", sb->s_id);
2970 clear_buffer_write_io_error(sbh);
2971 set_buffer_uptodate(sbh);
2972 }
2973 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002974}
2975
2976
2977/*
2978 * Have we just finished recovery? If so, and if we are mounting (or
2979 * remounting) the filesystem readonly, then we will end up with a
2980 * consistent fs on disk. Record that fact.
2981 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002982static void ext4_mark_recovery_complete(struct super_block *sb,
2983 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002984{
Mingming Cao617ba132006-10-11 01:20:53 -07002985 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986
Frank Mayhar03901312009-01-07 00:06:22 -05002987 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2988 BUG_ON(journal != NULL);
2989 return;
2990 }
Mingming Caodab291a2006-10-11 01:21:01 -07002991 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04002992 if (jbd2_journal_flush(journal) < 0)
2993 goto out;
2994
Jan Kara32c37732007-07-15 23:41:09 -07002995 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07002996 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002997 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07002998 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002999 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003000 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003001 }
Jan Kara32c37732007-07-15 23:41:09 -07003002 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003003
3004out:
Mingming Caodab291a2006-10-11 01:21:01 -07003005 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003006}
3007
3008/*
3009 * If we are mounting (or read-write remounting) a filesystem whose journal
3010 * has recorded an error from a previous lifetime, move that error to the
3011 * main filesystem now.
3012 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003013static void ext4_clear_journal_err(struct super_block *sb,
3014 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003015{
3016 journal_t *journal;
3017 int j_errno;
3018 const char *errstr;
3019
Frank Mayhar03901312009-01-07 00:06:22 -05003020 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3021
Mingming Cao617ba132006-10-11 01:20:53 -07003022 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003023
3024 /*
3025 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003026 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003027 */
3028
Mingming Caodab291a2006-10-11 01:21:01 -07003029 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003030 if (j_errno) {
3031 char nbuf[16];
3032
Mingming Cao617ba132006-10-11 01:20:53 -07003033 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003034 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003035 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003036 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003037 "filesystem check.");
3038
Mingming Cao617ba132006-10-11 01:20:53 -07003039 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3040 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003041 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003042
Mingming Caodab291a2006-10-11 01:21:01 -07003043 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003044 }
3045}
3046
3047/*
3048 * Force the running and committing transactions to commit,
3049 * and wait on the commit.
3050 */
Mingming Cao617ba132006-10-11 01:20:53 -07003051int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003052{
3053 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003054 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003055
3056 if (sb->s_flags & MS_RDONLY)
3057 return 0;
3058
Mingming Cao617ba132006-10-11 01:20:53 -07003059 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003060 if (journal) {
3061 sb->s_dirt = 0;
3062 ret = ext4_journal_force_commit(journal);
3063 }
3064
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003065 return ret;
3066}
3067
3068/*
Mingming Cao617ba132006-10-11 01:20:53 -07003069 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003070 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003071 * point. (We can probably nuke this function altogether, and remove
3072 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003073 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003074static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003075{
Frank Mayhar03901312009-01-07 00:06:22 -05003076 if (EXT4_SB(sb)->s_journal) {
3077 if (mutex_trylock(&sb->s_lock) != 0)
3078 BUG();
3079 sb->s_dirt = 0;
3080 } else {
3081 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3082 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003083}
3084
Mingming Cao617ba132006-10-11 01:20:53 -07003085static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003086{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003087 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003088
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003089 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003090 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003091 if (EXT4_SB(sb)->s_journal) {
3092 if (wait)
3093 ret = ext4_force_commit(sb);
3094 else
3095 jbd2_journal_start_commit(EXT4_SB(sb)->s_journal, NULL);
3096 } else {
3097 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
3098 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003099 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003100}
3101
3102/*
3103 * LVM calls this function before a (read-only) snapshot is created. This
3104 * gives us a chance to flush the journal completely and mark the fs clean.
3105 */
Mingming Cao617ba132006-10-11 01:20:53 -07003106static void ext4_write_super_lockfs(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003107{
3108 sb->s_dirt = 0;
3109
3110 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003111 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003112
Frank Mayhar03901312009-01-07 00:06:22 -05003113 if (journal) {
3114 /* Now we set up the journal barrier. */
3115 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003116
Frank Mayhar03901312009-01-07 00:06:22 -05003117 /*
3118 * We don't want to clear needs_recovery flag when we
3119 * failed to flush the journal.
3120 */
3121 if (jbd2_journal_flush(journal) < 0)
3122 return;
3123 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003124
3125 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003126 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3127 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003128 }
3129}
3130
3131/*
3132 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3133 * flag here, even though the filesystem is not technically dirty yet.
3134 */
Mingming Cao617ba132006-10-11 01:20:53 -07003135static void ext4_unlockfs(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003136{
Frank Mayhar03901312009-01-07 00:06:22 -05003137 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003138 lock_super(sb);
3139 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003140 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3141 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003142 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003143 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003144 }
3145}
3146
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003147static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003148{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003149 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003150 struct ext4_sb_info *sbi = EXT4_SB(sb);
3151 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003152 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003153 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003154 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003155 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003156 int err;
3157#ifdef CONFIG_QUOTA
3158 int i;
3159#endif
3160
3161 /* Store the original options */
3162 old_sb_flags = sb->s_flags;
3163 old_opts.s_mount_opt = sbi->s_mount_opt;
3164 old_opts.s_resuid = sbi->s_resuid;
3165 old_opts.s_resgid = sbi->s_resgid;
3166 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003167 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3168 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003169#ifdef CONFIG_QUOTA
3170 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3171 for (i = 0; i < MAXQUOTAS; i++)
3172 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3173#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003174 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3175 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003176
3177 /*
3178 * Allow the "check" option to be passed as a remount option.
3179 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003180 if (!parse_options(data, sb, NULL, &journal_ioprio,
3181 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003182 err = -EINVAL;
3183 goto restore_opts;
3184 }
3185
Mingming Cao617ba132006-10-11 01:20:53 -07003186 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003187 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003188
3189 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003190 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003191
3192 es = sbi->s_es;
3193
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003194 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003195 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003196 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3197 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003198
3199 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003200 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003201 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003202 err = -EROFS;
3203 goto restore_opts;
3204 }
3205
3206 if (*flags & MS_RDONLY) {
3207 /*
3208 * First of all, the unconditional stuff we have to do
3209 * to disable replay of the journal when we next remount
3210 */
3211 sb->s_flags |= MS_RDONLY;
3212
3213 /*
3214 * OK, test if we are remounting a valid rw partition
3215 * readonly, and if so set the rdonly flag and then
3216 * mark the partition as valid again.
3217 */
Mingming Cao617ba132006-10-11 01:20:53 -07003218 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3219 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003220 es->s_state = cpu_to_le16(sbi->s_mount_state);
3221
Jan Kara32c37732007-07-15 23:41:09 -07003222 /*
3223 * We have to unlock super so that we can wait for
3224 * transactions.
3225 */
Frank Mayhar03901312009-01-07 00:06:22 -05003226 if (sbi->s_journal) {
3227 unlock_super(sb);
3228 ext4_mark_recovery_complete(sb, es);
3229 lock_super(sb);
3230 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003231 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003232 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003233 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3234 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3235 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003236 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003237 "optional features (%x).\n", sb->s_id,
3238 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3239 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003240 err = -EROFS;
3241 goto restore_opts;
3242 }
Eric Sandeenead65962007-02-10 01:46:08 -08003243
3244 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003245 * Make sure the group descriptor checksums
3246 * are sane. If they aren't, refuse to
3247 * remount r/w.
3248 */
3249 for (g = 0; g < sbi->s_groups_count; g++) {
3250 struct ext4_group_desc *gdp =
3251 ext4_get_group_desc(sb, g, NULL);
3252
3253 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3254 printk(KERN_ERR
3255 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003256 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003257 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3258 le16_to_cpu(gdp->bg_checksum));
3259 err = -EINVAL;
3260 goto restore_opts;
3261 }
3262 }
3263
3264 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003265 * If we have an unprocessed orphan list hanging
3266 * around from a previously readonly bdev mount,
3267 * require a full umount/remount for now.
3268 */
3269 if (es->s_last_orphan) {
3270 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3271 "remount RDWR because of unprocessed "
3272 "orphan inode list. Please "
3273 "umount/remount instead.\n",
3274 sb->s_id);
3275 err = -EINVAL;
3276 goto restore_opts;
3277 }
3278
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003279 /*
3280 * Mounting a RDONLY partition read-write, so reread
3281 * and store the current valid flag. (It may have
3282 * been changed by e2fsck since we originally mounted
3283 * the partition.)
3284 */
Frank Mayhar03901312009-01-07 00:06:22 -05003285 if (sbi->s_journal)
3286 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003288 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003289 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003290 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291 sb->s_flags &= ~MS_RDONLY;
3292 }
3293 }
Frank Mayhar03901312009-01-07 00:06:22 -05003294 if (sbi->s_journal == NULL)
3295 ext4_commit_super(sb, es, 1);
3296
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003297#ifdef CONFIG_QUOTA
3298 /* Release old quota file names */
3299 for (i = 0; i < MAXQUOTAS; i++)
3300 if (old_opts.s_qf_names[i] &&
3301 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3302 kfree(old_opts.s_qf_names[i]);
3303#endif
3304 return 0;
3305restore_opts:
3306 sb->s_flags = old_sb_flags;
3307 sbi->s_mount_opt = old_opts.s_mount_opt;
3308 sbi->s_resuid = old_opts.s_resuid;
3309 sbi->s_resgid = old_opts.s_resgid;
3310 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003311 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3312 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003313#ifdef CONFIG_QUOTA
3314 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3315 for (i = 0; i < MAXQUOTAS; i++) {
3316 if (sbi->s_qf_names[i] &&
3317 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3318 kfree(sbi->s_qf_names[i]);
3319 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3320 }
3321#endif
3322 return err;
3323}
3324
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003325static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003326{
3327 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003328 struct ext4_sb_info *sbi = EXT4_SB(sb);
3329 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003330 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331
Badari Pulavarty5e700302007-07-15 23:42:00 -07003332 if (test_opt(sb, MINIX_DF)) {
3333 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003334 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003335 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003336 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003337 smp_rmb();
3338
3339 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003340 * Compute the overhead (FS structures). This is constant
3341 * for a given filesystem unless the number of block groups
3342 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003343 */
3344
3345 /*
3346 * All of the blocks before first_data_block are
3347 * overhead
3348 */
3349 overhead = le32_to_cpu(es->s_first_data_block);
3350
3351 /*
3352 * Add the overhead attributed to the superblock and
3353 * block group descriptors. If the sparse superblocks
3354 * feature is turned on, then not all groups have this.
3355 */
3356 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003357 overhead += ext4_bg_has_super(sb, i) +
3358 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003359 cond_resched();
3360 }
3361
3362 /*
3363 * Every block group has an inode bitmap, a block
3364 * bitmap, and an inode table.
3365 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003366 overhead += ngroups * (2 + sbi->s_itb_per_group);
3367 sbi->s_overhead_last = overhead;
3368 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003369 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003370 }
3371
Mingming Cao617ba132006-10-11 01:20:53 -07003372 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003373 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003374 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003375 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3376 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003377 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003378 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3379 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003380 buf->f_bavail = 0;
3381 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003382 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003383 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003384 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003385 fsid = le64_to_cpup((void *)es->s_uuid) ^
3386 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3387 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3388 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003389 return 0;
3390}
3391
3392/* Helper function for writing quotas on sync - we need to start transaction before quota file
3393 * is locked for write. Otherwise the are possible deadlocks:
3394 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003395 * ext4_create() quota_sync()
Mingming Caodab291a2006-10-11 01:21:01 -07003396 * jbd2_journal_start() write_dquot()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003397 * DQUOT_INIT() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003398 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003399 *
3400 */
3401
3402#ifdef CONFIG_QUOTA
3403
3404static inline struct inode *dquot_to_inode(struct dquot *dquot)
3405{
3406 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3407}
3408
Mingming Cao617ba132006-10-11 01:20:53 -07003409static int ext4_dquot_initialize(struct inode *inode, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003410{
3411 handle_t *handle;
3412 int ret, err;
3413
3414 /* We may create quota structure so we need to reserve enough blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003415 handle = ext4_journal_start(inode, 2*EXT4_QUOTA_INIT_BLOCKS(inode->i_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003416 if (IS_ERR(handle))
3417 return PTR_ERR(handle);
3418 ret = dquot_initialize(inode, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003419 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003420 if (!ret)
3421 ret = err;
3422 return ret;
3423}
3424
Mingming Cao617ba132006-10-11 01:20:53 -07003425static int ext4_dquot_drop(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003426{
3427 handle_t *handle;
3428 int ret, err;
3429
3430 /* We may delete quota structure so we need to reserve enough blocks */
Mingming Cao617ba132006-10-11 01:20:53 -07003431 handle = ext4_journal_start(inode, 2*EXT4_QUOTA_DEL_BLOCKS(inode->i_sb));
Jan Kara2887df12008-04-29 22:02:07 -04003432 if (IS_ERR(handle)) {
3433 /*
3434 * We call dquot_drop() anyway to at least release references
3435 * to quota structures so that umount does not hang.
3436 */
3437 dquot_drop(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003438 return PTR_ERR(handle);
Jan Kara2887df12008-04-29 22:02:07 -04003439 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003440 ret = dquot_drop(inode);
Mingming Cao617ba132006-10-11 01:20:53 -07003441 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003442 if (!ret)
3443 ret = err;
3444 return ret;
3445}
3446
Mingming Cao617ba132006-10-11 01:20:53 -07003447static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003448{
3449 int ret, err;
3450 handle_t *handle;
3451 struct inode *inode;
3452
3453 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003454 handle = ext4_journal_start(inode,
3455 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003456 if (IS_ERR(handle))
3457 return PTR_ERR(handle);
3458 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003459 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003460 if (!ret)
3461 ret = err;
3462 return ret;
3463}
3464
Mingming Cao617ba132006-10-11 01:20:53 -07003465static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003466{
3467 int ret, err;
3468 handle_t *handle;
3469
Mingming Cao617ba132006-10-11 01:20:53 -07003470 handle = ext4_journal_start(dquot_to_inode(dquot),
3471 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003472 if (IS_ERR(handle))
3473 return PTR_ERR(handle);
3474 ret = dquot_acquire(dquot);
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
Mingming Cao617ba132006-10-11 01:20:53 -07003481static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003482{
3483 int ret, err;
3484 handle_t *handle;
3485
Mingming Cao617ba132006-10-11 01:20:53 -07003486 handle = ext4_journal_start(dquot_to_inode(dquot),
3487 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003488 if (IS_ERR(handle)) {
3489 /* Release dquot anyway to avoid endless cycle in dqput() */
3490 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003491 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003492 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003493 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003494 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003495 if (!ret)
3496 ret = err;
3497 return ret;
3498}
3499
Mingming Cao617ba132006-10-11 01:20:53 -07003500static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003501{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003502 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003503 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3504 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003505 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003506 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003507 } else {
3508 return dquot_mark_dquot_dirty(dquot);
3509 }
3510}
3511
Mingming Cao617ba132006-10-11 01:20:53 -07003512static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003513{
3514 int ret, err;
3515 handle_t *handle;
3516
3517 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003518 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003519 if (IS_ERR(handle))
3520 return PTR_ERR(handle);
3521 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003522 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003523 if (!ret)
3524 ret = err;
3525 return ret;
3526}
3527
3528/*
3529 * Turn on quotas during mount time - we need to find
3530 * the quota file and such...
3531 */
Mingming Cao617ba132006-10-11 01:20:53 -07003532static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003533{
Mingming Cao617ba132006-10-11 01:20:53 -07003534 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3535 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003536}
3537
3538/*
3539 * Standard function to be called on quota_on
3540 */
Mingming Cao617ba132006-10-11 01:20:53 -07003541static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003542 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003543{
3544 int err;
Al Viro82646132008-08-02 00:57:06 -04003545 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003546
3547 if (!test_opt(sb, QUOTA))
3548 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003549 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003550 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003551 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003552
Al Viro82646132008-08-02 00:57:06 -04003553 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003554 if (err)
3555 return err;
Jan Kara06235432008-05-13 19:11:51 -04003556
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003557 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003558 if (path.mnt->mnt_sb != sb) {
3559 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560 return -EXDEV;
3561 }
Jan Kara06235432008-05-13 19:11:51 -04003562 /* Journaling quota? */
3563 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003564 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003565 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003566 printk(KERN_WARNING
3567 "EXT4-fs: Quota file not on filesystem root. "
3568 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003569 }
Jan Kara06235432008-05-13 19:11:51 -04003570
3571 /*
3572 * When we journal data on quota file, we have to flush journal to see
3573 * all updates to the file when we bypass pagecache...
3574 */
Frank Mayhar03901312009-01-07 00:06:22 -05003575 if (EXT4_SB(sb)->s_journal &&
3576 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003577 /*
3578 * We don't need to lock updates but journal_flush() could
3579 * otherwise be livelocked...
3580 */
3581 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003582 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003583 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003584 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003585 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003586 return err;
3587 }
Jan Kara06235432008-05-13 19:11:51 -04003588 }
3589
Al Viro82646132008-08-02 00:57:06 -04003590 err = vfs_quota_on_path(sb, type, format_id, &path);
3591 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003592 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003593}
3594
3595/* Read data from quotafile - avoid pagecache and such because we cannot afford
3596 * acquiring the locks... As quota files are never truncated and quota code
3597 * itself serializes the operations (and noone else should touch the files)
3598 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003599static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003600 size_t len, loff_t off)
3601{
3602 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003603 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003604 int err = 0;
3605 int offset = off & (sb->s_blocksize - 1);
3606 int tocopy;
3607 size_t toread;
3608 struct buffer_head *bh;
3609 loff_t i_size = i_size_read(inode);
3610
3611 if (off > i_size)
3612 return 0;
3613 if (off+len > i_size)
3614 len = i_size-off;
3615 toread = len;
3616 while (toread > 0) {
3617 tocopy = sb->s_blocksize - offset < toread ?
3618 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003619 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003620 if (err)
3621 return err;
3622 if (!bh) /* A hole? */
3623 memset(data, 0, tocopy);
3624 else
3625 memcpy(data, bh->b_data+offset, tocopy);
3626 brelse(bh);
3627 offset = 0;
3628 toread -= tocopy;
3629 data += tocopy;
3630 blk++;
3631 }
3632 return len;
3633}
3634
3635/* Write to quotafile (we know the transaction is already started and has
3636 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003637static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003638 const char *data, size_t len, loff_t off)
3639{
3640 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003641 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003642 int err = 0;
3643 int offset = off & (sb->s_blocksize - 1);
3644 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003645 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003646 size_t towrite = len;
3647 struct buffer_head *bh;
3648 handle_t *handle = journal_current_handle();
3649
Frank Mayhar03901312009-01-07 00:06:22 -05003650 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003651 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003652 " cancelled because transaction is not started.\n",
3653 (unsigned long long)off, (unsigned long long)len);
3654 return -EIO;
3655 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003656 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3657 while (towrite > 0) {
3658 tocopy = sb->s_blocksize - offset < towrite ?
3659 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003660 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003661 if (!bh)
3662 goto out;
3663 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003664 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003665 if (err) {
3666 brelse(bh);
3667 goto out;
3668 }
3669 }
3670 lock_buffer(bh);
3671 memcpy(bh->b_data+offset, data, tocopy);
3672 flush_dcache_page(bh->b_page);
3673 unlock_buffer(bh);
3674 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003675 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003676 else {
3677 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003678 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003679 mark_buffer_dirty(bh);
3680 }
3681 brelse(bh);
3682 if (err)
3683 goto out;
3684 offset = 0;
3685 towrite -= tocopy;
3686 data += tocopy;
3687 blk++;
3688 }
3689out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003690 if (len == towrite) {
3691 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003693 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003694 if (inode->i_size < off+len-towrite) {
3695 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003696 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003697 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003698 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003699 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003700 mutex_unlock(&inode->i_mutex);
3701 return len - towrite;
3702}
3703
3704#endif
3705
Mingming Cao617ba132006-10-11 01:20:53 -07003706static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003707 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3708{
Mingming Cao617ba132006-10-11 01:20:53 -07003709 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710}
3711
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003712#ifdef CONFIG_PROC_FS
3713static int ext4_ui_proc_show(struct seq_file *m, void *v)
3714{
3715 unsigned int *p = m->private;
3716
3717 seq_printf(m, "%u\n", *p);
3718 return 0;
3719}
3720
3721static int ext4_ui_proc_open(struct inode *inode, struct file *file)
3722{
3723 return single_open(file, ext4_ui_proc_show, PDE(inode)->data);
3724}
3725
3726static ssize_t ext4_ui_proc_write(struct file *file, const char __user *buf,
3727 size_t cnt, loff_t *ppos)
3728{
Roel Kluin23475e22008-11-26 02:23:19 -05003729 unsigned long *p = PDE(file->f_path.dentry->d_inode)->data;
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003730 char str[32];
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003731
3732 if (cnt >= sizeof(str))
3733 return -EINVAL;
3734 if (copy_from_user(str, buf, cnt))
3735 return -EFAULT;
Roel Kluin23475e22008-11-26 02:23:19 -05003736
3737 *p = simple_strtoul(str, NULL, 0);
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003738 return cnt;
3739}
3740
3741const struct file_operations ext4_ui_proc_fops = {
3742 .owner = THIS_MODULE,
3743 .open = ext4_ui_proc_open,
3744 .read = seq_read,
3745 .llseek = seq_lseek,
3746 .release = single_release,
3747 .write = ext4_ui_proc_write,
3748};
3749#endif
3750
Theodore Ts'o03010a32008-10-10 20:02:48 -04003751static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003752 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003753 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003754 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003755 .kill_sb = kill_block_super,
3756 .fs_flags = FS_REQUIRES_DEV,
3757};
3758
Theodore Ts'o03010a32008-10-10 20:02:48 -04003759#ifdef CONFIG_EXT4DEV_COMPAT
3760static int ext4dev_get_sb(struct file_system_type *fs_type,
3761 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3762{
3763 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3764 "to mount using ext4\n");
3765 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3766 "will go away by 2.6.31\n");
3767 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3768}
3769
3770static struct file_system_type ext4dev_fs_type = {
3771 .owner = THIS_MODULE,
3772 .name = "ext4dev",
3773 .get_sb = ext4dev_get_sb,
3774 .kill_sb = kill_block_super,
3775 .fs_flags = FS_REQUIRES_DEV,
3776};
3777MODULE_ALIAS("ext4dev");
3778#endif
3779
Mingming Cao617ba132006-10-11 01:20:53 -07003780static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003781{
Alex Tomasc9de5602008-01-29 00:19:52 -05003782 int err;
3783
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003784 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003785 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003786 if (err)
3787 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003788
3789 err = init_ext4_xattr();
3790 if (err)
3791 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003792 err = init_inodecache();
3793 if (err)
3794 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003795 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003796 if (err)
3797 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003798#ifdef CONFIG_EXT4DEV_COMPAT
3799 err = register_filesystem(&ext4dev_fs_type);
3800 if (err) {
3801 unregister_filesystem(&ext4_fs_type);
3802 goto out;
3803 }
3804#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003805 return 0;
3806out:
3807 destroy_inodecache();
3808out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003809 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003810out2:
3811 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003812 return err;
3813}
3814
Mingming Cao617ba132006-10-11 01:20:53 -07003815static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003816{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003817 unregister_filesystem(&ext4_fs_type);
3818#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003819 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003820#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003821 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003822 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003823 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003824 remove_proc_entry("fs/ext4", NULL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003825}
3826
3827MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Mingming Cao617ba132006-10-11 01:20:53 -07003828MODULE_DESCRIPTION("Fourth Extended Filesystem with extents");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003829MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003830module_init(init_ext4_fs)
3831module_exit(exit_ext4_fs)