blob: 45d07cf9df347536c1e109943b7cc816e1465c49 [file] [log] [blame]
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001/*
Mingming Cao617ba132006-10-11 01:20:53 -07002 * linux/fs/ext4/super.c
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003 *
4 * Copyright (C) 1992, 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
8 *
9 * from
10 *
11 * linux/fs/minix/inode.c
12 *
13 * Copyright (C) 1991, 1992 Linus Torvalds
14 *
15 * Big-endian to little-endian byte-swapping/bitmaps by
16 * David S. Miller (davem@caip.rutgers.edu), 1995
17 */
18
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
Mingming Caodab291a2006-10-11 01:21:01 -070023#include <linux/jbd2.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070024#include <linux/slab.h>
25#include <linux/init.h>
26#include <linux/blkdev.h>
27#include <linux/parser.h>
28#include <linux/smp_lock.h>
29#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070030#include <linux/exportfs.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070031#include <linux/vfs.h>
32#include <linux/random.h>
33#include <linux/mount.h>
34#include <linux/namei.h>
35#include <linux/quotaops.h>
36#include <linux/seq_file.h>
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040037#include <linux/proc_fs.h>
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040038#include <linux/ctype.h>
Theodore Ts'oede86cc2008-10-05 20:50:06 -040039#include <linux/marker.h>
Vignesh Babu13305932007-07-18 09:11:02 -040040#include <linux/log2.h>
Andreas Dilger717d50e2007-10-16 18:38:25 -040041#include <linux/crc16.h>
Dave Kleikampac27a0e2006-10-11 01:20:50 -070042#include <asm/uaccess.h>
43
Christoph Hellwig3dcf5452008-04-29 18:13:32 -040044#include "ext4.h"
45#include "ext4_jbd2.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070046#include "xattr.h"
47#include "acl.h"
48#include "namei.h"
Andreas Dilger717d50e2007-10-16 18:38:25 -040049#include "group.h"
Dave Kleikampac27a0e2006-10-11 01:20:50 -070050
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040051struct proc_dir_entry *ext4_proc_root;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -040052static struct kset *ext4_kset;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -040053
Mingming Cao617ba132006-10-11 01:20:53 -070054static int ext4_load_journal(struct super_block *, struct ext4_super_block *,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070055 unsigned long journal_devnum);
Takashi Satoc4be0c12009-01-09 16:40:58 -080056static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040057 struct ext4_super_block *es, int sync);
58static void ext4_mark_recovery_complete(struct super_block *sb,
59 struct ext4_super_block *es);
60static void ext4_clear_journal_err(struct super_block *sb,
61 struct ext4_super_block *es);
Mingming Cao617ba132006-10-11 01:20:53 -070062static int ext4_sync_fs(struct super_block *sb, int wait);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040063static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -070064 char nbuf[16]);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040065static int ext4_remount(struct super_block *sb, int *flags, char *data);
66static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080067static int ext4_unfreeze(struct super_block *sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -040068static void ext4_write_super(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080069static int ext4_freeze(struct super_block *sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -070070
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070071
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070072ext4_fsblk_t ext4_block_bitmap(struct super_block *sb,
73 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070074{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040075 return le32_to_cpu(bg->bg_block_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070076 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -040077 (ext4_fsblk_t)le32_to_cpu(bg->bg_block_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070078}
79
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070080ext4_fsblk_t ext4_inode_bitmap(struct super_block *sb,
81 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070082{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040083 return le32_to_cpu(bg->bg_inode_bitmap_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070084 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040085 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_bitmap_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070086}
87
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070088ext4_fsblk_t ext4_inode_table(struct super_block *sb,
89 struct ext4_group_desc *bg)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070090{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040091 return le32_to_cpu(bg->bg_inode_table_lo) |
Alexandre Ratchov8fadc142006-10-11 01:21:15 -070092 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -040093 (ext4_fsblk_t)le32_to_cpu(bg->bg_inode_table_hi) << 32 : 0);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -070094}
95
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -050096__u32 ext4_free_blks_count(struct super_block *sb,
97 struct ext4_group_desc *bg)
98{
99 return le16_to_cpu(bg->bg_free_blocks_count_lo) |
100 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
101 (__u32)le16_to_cpu(bg->bg_free_blocks_count_hi) << 16 : 0);
102}
103
104__u32 ext4_free_inodes_count(struct super_block *sb,
105 struct ext4_group_desc *bg)
106{
107 return le16_to_cpu(bg->bg_free_inodes_count_lo) |
108 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
109 (__u32)le16_to_cpu(bg->bg_free_inodes_count_hi) << 16 : 0);
110}
111
112__u32 ext4_used_dirs_count(struct super_block *sb,
113 struct ext4_group_desc *bg)
114{
115 return le16_to_cpu(bg->bg_used_dirs_count_lo) |
116 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
117 (__u32)le16_to_cpu(bg->bg_used_dirs_count_hi) << 16 : 0);
118}
119
120__u32 ext4_itable_unused_count(struct super_block *sb,
121 struct ext4_group_desc *bg)
122{
123 return le16_to_cpu(bg->bg_itable_unused_lo) |
124 (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT ?
125 (__u32)le16_to_cpu(bg->bg_itable_unused_hi) << 16 : 0);
126}
127
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700128void ext4_block_bitmap_set(struct super_block *sb,
129 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700130{
Aneesh Kumar K.V3a145892007-10-16 18:38:25 -0400131 bg->bg_block_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700132 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
133 bg->bg_block_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700134}
135
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700136void ext4_inode_bitmap_set(struct super_block *sb,
137 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700138{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400139 bg->bg_inode_bitmap_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700140 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
141 bg->bg_inode_bitmap_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700142}
143
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700144void ext4_inode_table_set(struct super_block *sb,
145 struct ext4_group_desc *bg, ext4_fsblk_t blk)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700146{
Aneesh Kumar K.V5272f832007-10-16 18:38:25 -0400147 bg->bg_inode_table_lo = cpu_to_le32((u32)blk);
Alexandre Ratchov8fadc142006-10-11 01:21:15 -0700148 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
149 bg->bg_inode_table_hi = cpu_to_le32(blk >> 32);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -0700150}
151
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -0500152void ext4_free_blks_set(struct super_block *sb,
153 struct ext4_group_desc *bg, __u32 count)
154{
155 bg->bg_free_blocks_count_lo = cpu_to_le16((__u16)count);
156 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
157 bg->bg_free_blocks_count_hi = cpu_to_le16(count >> 16);
158}
159
160void ext4_free_inodes_set(struct super_block *sb,
161 struct ext4_group_desc *bg, __u32 count)
162{
163 bg->bg_free_inodes_count_lo = cpu_to_le16((__u16)count);
164 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
165 bg->bg_free_inodes_count_hi = cpu_to_le16(count >> 16);
166}
167
168void ext4_used_dirs_set(struct super_block *sb,
169 struct ext4_group_desc *bg, __u32 count)
170{
171 bg->bg_used_dirs_count_lo = cpu_to_le16((__u16)count);
172 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
173 bg->bg_used_dirs_count_hi = cpu_to_le16(count >> 16);
174}
175
176void ext4_itable_unused_set(struct super_block *sb,
177 struct ext4_group_desc *bg, __u32 count)
178{
179 bg->bg_itable_unused_lo = cpu_to_le16((__u16)count);
180 if (EXT4_DESC_SIZE(sb) >= EXT4_MIN_DESC_SIZE_64BIT)
181 bg->bg_itable_unused_hi = cpu_to_le16(count >> 16);
182}
183
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700184/*
Mingming Caodab291a2006-10-11 01:21:01 -0700185 * Wrappers for jbd2_journal_start/end.
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700186 *
187 * The only special thing we need to do here is to make sure that all
188 * journal_end calls result in the superblock being marked dirty, so
189 * that sync() will call the filesystem's write_super callback if
190 * appropriate.
191 */
Mingming Cao617ba132006-10-11 01:20:53 -0700192handle_t *ext4_journal_start_sb(struct super_block *sb, int nblocks)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700193{
194 journal_t *journal;
195
196 if (sb->s_flags & MS_RDONLY)
197 return ERR_PTR(-EROFS);
198
199 /* Special case here: if the journal has aborted behind our
200 * backs (eg. EIO in the commit thread), then we still need to
201 * take the FS itself readonly cleanly. */
Mingming Cao617ba132006-10-11 01:20:53 -0700202 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -0500203 if (journal) {
204 if (is_journal_aborted(journal)) {
205 ext4_abort(sb, __func__,
206 "Detected aborted journal");
207 return ERR_PTR(-EROFS);
208 }
209 return jbd2_journal_start(journal, nblocks);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700210 }
Frank Mayhar03901312009-01-07 00:06:22 -0500211 /*
212 * We're not journaling, return the appropriate indication.
213 */
214 current->journal_info = EXT4_NOJOURNAL_HANDLE;
215 return current->journal_info;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700216}
217
218/*
219 * The only special thing we need to do here is to make sure that all
Mingming Caodab291a2006-10-11 01:21:01 -0700220 * jbd2_journal_stop calls result in the superblock being marked dirty, so
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700221 * that sync() will call the filesystem's write_super callback if
222 * appropriate.
223 */
Mingming Cao617ba132006-10-11 01:20:53 -0700224int __ext4_journal_stop(const char *where, handle_t *handle)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700225{
226 struct super_block *sb;
227 int err;
228 int rc;
229
Frank Mayhar03901312009-01-07 00:06:22 -0500230 if (!ext4_handle_valid(handle)) {
231 /*
232 * Do this here since we don't call jbd2_journal_stop() in
233 * no-journal mode.
234 */
235 current->journal_info = NULL;
236 return 0;
237 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700238 sb = handle->h_transaction->t_journal->j_private;
239 err = handle->h_err;
Mingming Caodab291a2006-10-11 01:21:01 -0700240 rc = jbd2_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700241
242 if (!err)
243 err = rc;
244 if (err)
Mingming Cao617ba132006-10-11 01:20:53 -0700245 __ext4_std_error(sb, where, err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700246 return err;
247}
248
Mingming Cao617ba132006-10-11 01:20:53 -0700249void ext4_journal_abort_handle(const char *caller, const char *err_fn,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700250 struct buffer_head *bh, handle_t *handle, int err)
251{
252 char nbuf[16];
Mingming Cao617ba132006-10-11 01:20:53 -0700253 const char *errstr = ext4_decode_error(NULL, err, nbuf);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700254
Frank Mayhar03901312009-01-07 00:06:22 -0500255 BUG_ON(!ext4_handle_valid(handle));
256
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700257 if (bh)
258 BUFFER_TRACE(bh, "abort");
259
260 if (!handle->h_err)
261 handle->h_err = err;
262
263 if (is_handle_aborted(handle))
264 return;
265
266 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
267 caller, errstr, err_fn);
268
Mingming Caodab291a2006-10-11 01:21:01 -0700269 jbd2_journal_abort_handle(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700270}
271
272/* Deal with the reporting of failure conditions on a filesystem such as
273 * inconsistencies detected or read IO failures.
274 *
275 * On ext2, we can store the error state of the filesystem in the
Mingming Cao617ba132006-10-11 01:20:53 -0700276 * superblock. That is not possible on ext4, because we may have other
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700277 * write ordering constraints on the superblock which prevent us from
278 * writing it out straight away; and given that the journal is about to
279 * be aborted, we can't rely on the current, or future, transactions to
280 * write out the superblock safely.
281 *
Mingming Caodab291a2006-10-11 01:21:01 -0700282 * We'll just use the jbd2_journal_abort() error code to record an error in
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700283 * the journal instead. On recovery, the journal will compain about
284 * that error until we've noted it down and cleared it.
285 */
286
Mingming Cao617ba132006-10-11 01:20:53 -0700287static void ext4_handle_error(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700288{
Mingming Cao617ba132006-10-11 01:20:53 -0700289 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700290
Mingming Cao617ba132006-10-11 01:20:53 -0700291 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
292 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700293
294 if (sb->s_flags & MS_RDONLY)
295 return;
296
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400297 if (!test_opt(sb, ERRORS_CONT)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700298 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700299
Mingming Cao617ba132006-10-11 01:20:53 -0700300 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700301 if (journal)
Mingming Caodab291a2006-10-11 01:21:01 -0700302 jbd2_journal_abort(journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700303 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400304 if (test_opt(sb, ERRORS_RO)) {
305 printk(KERN_CRIT "Remounting filesystem read-only\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700306 sb->s_flags |= MS_RDONLY;
307 }
Mingming Cao617ba132006-10-11 01:20:53 -0700308 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700309 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700310 panic("EXT4-fs (device %s): panic forced after error\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700311 sb->s_id);
312}
313
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400314void ext4_error(struct super_block *sb, const char *function,
315 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700316{
317 va_list args;
318
319 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400320 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700321 vprintk(fmt, args);
322 printk("\n");
323 va_end(args);
324
Mingming Cao617ba132006-10-11 01:20:53 -0700325 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700326}
327
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400328static const char *ext4_decode_error(struct super_block *sb, int errno,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700329 char nbuf[16])
330{
331 char *errstr = NULL;
332
333 switch (errno) {
334 case -EIO:
335 errstr = "IO failure";
336 break;
337 case -ENOMEM:
338 errstr = "Out of memory";
339 break;
340 case -EROFS:
Mingming Caodab291a2006-10-11 01:21:01 -0700341 if (!sb || EXT4_SB(sb)->s_journal->j_flags & JBD2_ABORT)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700342 errstr = "Journal has aborted";
343 else
344 errstr = "Readonly filesystem";
345 break;
346 default:
347 /* If the caller passed in an extra buffer for unknown
348 * errors, textualise them now. Else we just return
349 * NULL. */
350 if (nbuf) {
351 /* Check for truncated error codes... */
352 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
353 errstr = nbuf;
354 }
355 break;
356 }
357
358 return errstr;
359}
360
Mingming Cao617ba132006-10-11 01:20:53 -0700361/* __ext4_std_error decodes expected errors from journaling functions
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700362 * automatically and invokes the appropriate error response. */
363
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400364void __ext4_std_error(struct super_block *sb, const char *function, int errno)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700365{
366 char nbuf[16];
367 const char *errstr;
368
369 /* Special case: if the error is EROFS, and we're not already
370 * inside a transaction, then there's really no point in logging
371 * an error. */
372 if (errno == -EROFS && journal_current_handle() == NULL &&
373 (sb->s_flags & MS_RDONLY))
374 return;
375
Mingming Cao617ba132006-10-11 01:20:53 -0700376 errstr = ext4_decode_error(sb, errno, nbuf);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400377 printk(KERN_CRIT "EXT4-fs error (device %s) in %s: %s\n",
378 sb->s_id, function, errstr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700379
Mingming Cao617ba132006-10-11 01:20:53 -0700380 ext4_handle_error(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700381}
382
383/*
Mingming Cao617ba132006-10-11 01:20:53 -0700384 * ext4_abort is a much stronger failure handler than ext4_error. The
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700385 * abort function may be used to deal with unrecoverable failures such
386 * as journal IO errors or ENOMEM at a critical moment in log management.
387 *
388 * We unconditionally force the filesystem into an ABORT|READONLY state,
389 * unless the error response on the fs has been set to panic in which
390 * case we take the easy way out and panic immediately.
391 */
392
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400393void ext4_abort(struct super_block *sb, const char *function,
394 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700395{
396 va_list args;
397
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400398 printk(KERN_CRIT "ext4_abort called.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700399
400 va_start(args, fmt);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400401 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700402 vprintk(fmt, args);
403 printk("\n");
404 va_end(args);
405
406 if (test_opt(sb, ERRORS_PANIC))
Mingming Cao617ba132006-10-11 01:20:53 -0700407 panic("EXT4-fs panic from previous error\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700408
409 if (sb->s_flags & MS_RDONLY)
410 return;
411
412 printk(KERN_CRIT "Remounting filesystem read-only\n");
Mingming Cao617ba132006-10-11 01:20:53 -0700413 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700414 sb->s_flags |= MS_RDONLY;
Mingming Cao617ba132006-10-11 01:20:53 -0700415 EXT4_SB(sb)->s_mount_opt |= EXT4_MOUNT_ABORT;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400416 if (EXT4_SB(sb)->s_journal)
417 jbd2_journal_abort(EXT4_SB(sb)->s_journal, -EIO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700418}
419
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400420void ext4_warning(struct super_block *sb, const char *function,
421 const char *fmt, ...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700422{
423 va_list args;
424
425 va_start(args, fmt);
Mingming Cao617ba132006-10-11 01:20:53 -0700426 printk(KERN_WARNING "EXT4-fs warning (device %s): %s: ",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700427 sb->s_id, function);
428 vprintk(fmt, args);
429 printk("\n");
430 va_end(args);
431}
432
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -0500433void ext4_grp_locked_error(struct super_block *sb, ext4_group_t grp,
434 const char *function, const char *fmt, ...)
435__releases(bitlock)
436__acquires(bitlock)
437{
438 va_list args;
439 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
440
441 va_start(args, fmt);
442 printk(KERN_CRIT "EXT4-fs error (device %s): %s: ", sb->s_id, function);
443 vprintk(fmt, args);
444 printk("\n");
445 va_end(args);
446
447 if (test_opt(sb, ERRORS_CONT)) {
448 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
449 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
450 ext4_commit_super(sb, es, 0);
451 return;
452 }
453 ext4_unlock_group(sb, grp);
454 ext4_handle_error(sb);
455 /*
456 * We only get here in the ERRORS_RO case; relocking the group
457 * may be dangerous, but nothing bad will happen since the
458 * filesystem will have already been marked read/only and the
459 * journal has been aborted. We return 1 as a hint to callers
460 * who might what to use the return value from
461 * ext4_grp_locked_error() to distinguish beween the
462 * ERRORS_CONT and ERRORS_RO case, and perhaps return more
463 * aggressively from the ext4 function in question, with a
464 * more appropriate error code.
465 */
466 ext4_lock_group(sb, grp);
467 return;
468}
469
470
Mingming Cao617ba132006-10-11 01:20:53 -0700471void ext4_update_dynamic_rev(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700472{
Mingming Cao617ba132006-10-11 01:20:53 -0700473 struct ext4_super_block *es = EXT4_SB(sb)->s_es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700474
Mingming Cao617ba132006-10-11 01:20:53 -0700475 if (le32_to_cpu(es->s_rev_level) > EXT4_GOOD_OLD_REV)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700476 return;
477
Harvey Harrison46e665e2008-04-17 10:38:59 -0400478 ext4_warning(sb, __func__,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700479 "updating to rev %d because of new feature flag, "
480 "running e2fsck is recommended",
Mingming Cao617ba132006-10-11 01:20:53 -0700481 EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700482
Mingming Cao617ba132006-10-11 01:20:53 -0700483 es->s_first_ino = cpu_to_le32(EXT4_GOOD_OLD_FIRST_INO);
484 es->s_inode_size = cpu_to_le16(EXT4_GOOD_OLD_INODE_SIZE);
485 es->s_rev_level = cpu_to_le32(EXT4_DYNAMIC_REV);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700486 /* leave es->s_feature_*compat flags alone */
487 /* es->s_uuid will be set by e2fsck if empty */
488
489 /*
490 * The rest of the superblock fields should be zero, and if not it
491 * means they are likely already in use, so leave them alone. We
492 * can leave it up to e2fsck to clean up any inconsistencies there.
493 */
494}
495
496/*
497 * Open the external journal device
498 */
Mingming Cao617ba132006-10-11 01:20:53 -0700499static struct block_device *ext4_blkdev_get(dev_t dev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700500{
501 struct block_device *bdev;
502 char b[BDEVNAME_SIZE];
503
504 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
505 if (IS_ERR(bdev))
506 goto fail;
507 return bdev;
508
509fail:
Theodore Ts'oabda1412009-01-06 00:20:32 -0500510 printk(KERN_ERR "EXT4-fs: failed to open journal device %s: %ld\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700511 __bdevname(dev, b), PTR_ERR(bdev));
512 return NULL;
513}
514
515/*
516 * Release the journal device
517 */
Mingming Cao617ba132006-10-11 01:20:53 -0700518static int ext4_blkdev_put(struct block_device *bdev)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700519{
520 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500521 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700522}
523
Mingming Cao617ba132006-10-11 01:20:53 -0700524static int ext4_blkdev_remove(struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700525{
526 struct block_device *bdev;
527 int ret = -ENODEV;
528
529 bdev = sbi->journal_bdev;
530 if (bdev) {
Mingming Cao617ba132006-10-11 01:20:53 -0700531 ret = ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700532 sbi->journal_bdev = NULL;
533 }
534 return ret;
535}
536
537static inline struct inode *orphan_list_entry(struct list_head *l)
538{
Mingming Cao617ba132006-10-11 01:20:53 -0700539 return &list_entry(l, struct ext4_inode_info, i_orphan)->vfs_inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700540}
541
Mingming Cao617ba132006-10-11 01:20:53 -0700542static void dump_orphan_list(struct super_block *sb, struct ext4_sb_info *sbi)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700543{
544 struct list_head *l;
545
546 printk(KERN_ERR "sb orphan head is %d\n",
547 le32_to_cpu(sbi->s_es->s_last_orphan));
548
549 printk(KERN_ERR "sb_info orphan list:\n");
550 list_for_each(l, &sbi->s_orphan) {
551 struct inode *inode = orphan_list_entry(l);
552 printk(KERN_ERR " "
553 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
554 inode->i_sb->s_id, inode->i_ino, inode,
555 inode->i_mode, inode->i_nlink,
556 NEXT_ORPHAN(inode));
557 }
558}
559
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400560static void ext4_put_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700561{
Mingming Cao617ba132006-10-11 01:20:53 -0700562 struct ext4_sb_info *sbi = EXT4_SB(sb);
563 struct ext4_super_block *es = sbi->s_es;
Hidehiro Kawaief2cabf2008-10-27 22:53:05 -0400564 int i, err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700565
Alex Tomasc9de5602008-01-29 00:19:52 -0500566 ext4_mb_release(sb);
Alex Tomasa86c6182006-10-11 01:21:03 -0700567 ext4_ext_release(sb);
Mingming Cao617ba132006-10-11 01:20:53 -0700568 ext4_xattr_put_super(sb);
Frank Mayhar03901312009-01-07 00:06:22 -0500569 if (sbi->s_journal) {
570 err = jbd2_journal_destroy(sbi->s_journal);
571 sbi->s_journal = NULL;
572 if (err < 0)
573 ext4_abort(sb, __func__,
574 "Couldn't clean up the journal");
575 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700576 if (!(sb->s_flags & MS_RDONLY)) {
Mingming Cao617ba132006-10-11 01:20:53 -0700577 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700578 es->s_state = cpu_to_le16(sbi->s_mount_state);
Mingming Cao617ba132006-10-11 01:20:53 -0700579 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700580 }
Theodore Ts'o240799c2008-10-09 23:53:47 -0400581 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400582 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400583 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400584 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700585
586 for (i = 0; i < sbi->s_gdb_count; i++)
587 brelse(sbi->s_group_desc[i]);
588 kfree(sbi->s_group_desc);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400589 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700590 percpu_counter_destroy(&sbi->s_freeblocks_counter);
591 percpu_counter_destroy(&sbi->s_freeinodes_counter);
592 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400593 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700594 brelse(sbi->s_sbh);
595#ifdef CONFIG_QUOTA
596 for (i = 0; i < MAXQUOTAS; i++)
597 kfree(sbi->s_qf_names[i]);
598#endif
599
600 /* Debugging code just in case the in-memory inode orphan list
601 * isn't empty. The on-disk one can be non-empty if we've
602 * detected an error and taken the fs readonly, but the
603 * in-memory list had better be clean by this point. */
604 if (!list_empty(&sbi->s_orphan))
605 dump_orphan_list(sb, sbi);
606 J_ASSERT(list_empty(&sbi->s_orphan));
607
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700608 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700609 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
610 /*
611 * Invalidate the journal device's buffers. We don't want them
612 * floating about in memory - the physical journal device may
613 * hotswapped, and it breaks the `ro-after' testing code.
614 */
615 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700616 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700617 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700618 }
619 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400620 /*
621 * Now that we are completely done shutting down the
622 * superblock, we need to actually destroy the kobject.
623 */
624 unlock_kernel();
625 unlock_super(sb);
626 kobject_put(&sbi->s_kobj);
627 wait_for_completion(&sbi->s_kobj_unregister);
628 lock_super(sb);
629 lock_kernel();
Pekka Enberg705895b2009-02-15 18:07:52 -0500630 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700631 kfree(sbi);
632 return;
633}
634
Christoph Lametere18b8902006-12-06 20:33:20 -0800635static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700636
637/*
638 * Called inside transaction, so use GFP_NOFS
639 */
Mingming Cao617ba132006-10-11 01:20:53 -0700640static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700641{
Mingming Cao617ba132006-10-11 01:20:53 -0700642 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700643
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800644 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700645 if (!ei)
646 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400647#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700648 ei->i_acl = EXT4_ACL_NOT_CACHED;
649 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700650#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400652 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700653 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500654 INIT_LIST_HEAD(&ei->i_prealloc_list);
655 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500656 /*
657 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
658 * therefore it can be null here. Don't check it, just initialize
659 * jinode.
660 */
Jan Kara678aaf42008-07-11 19:27:31 -0400661 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400662 ei->i_reserved_data_blocks = 0;
663 ei->i_reserved_meta_blocks = 0;
664 ei->i_allocated_meta_blocks = 0;
665 ei->i_delalloc_reserved_flag = 0;
666 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700667 return &ei->vfs_inode;
668}
669
Mingming Cao617ba132006-10-11 01:20:53 -0700670static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700671{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700672 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
673 printk("EXT4 Inode %p: orphan list check failed!\n",
674 EXT4_I(inode));
675 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
676 EXT4_I(inode), sizeof(struct ext4_inode_info),
677 true);
678 dump_stack();
679 }
Mingming Cao617ba132006-10-11 01:20:53 -0700680 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700681}
682
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700683static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700684{
Mingming Cao617ba132006-10-11 01:20:53 -0700685 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700686
Christoph Lametera35afb82007-05-16 22:10:57 -0700687 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400688#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700689 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700690#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500691 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700692 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700693}
694
695static int init_inodecache(void)
696{
Mingming Cao617ba132006-10-11 01:20:53 -0700697 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
698 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700699 0, (SLAB_RECLAIM_ACCOUNT|
700 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900701 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700702 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700703 return -ENOMEM;
704 return 0;
705}
706
707static void destroy_inodecache(void)
708{
Mingming Cao617ba132006-10-11 01:20:53 -0700709 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700710}
711
Mingming Cao617ba132006-10-11 01:20:53 -0700712static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700713{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400714#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700715 if (EXT4_I(inode)->i_acl &&
716 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
717 posix_acl_release(EXT4_I(inode)->i_acl);
718 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700719 }
Mingming Cao617ba132006-10-11 01:20:53 -0700720 if (EXT4_I(inode)->i_default_acl &&
721 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
722 posix_acl_release(EXT4_I(inode)->i_default_acl);
723 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700724 }
725#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400726 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500727 if (EXT4_JOURNAL(inode))
728 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400729 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700730}
731
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400732static inline void ext4_show_quota_options(struct seq_file *seq,
733 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700734{
735#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700736 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700737
738 if (sbi->s_jquota_fmt)
739 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400740 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700741
742 if (sbi->s_qf_names[USRQUOTA])
743 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
744
745 if (sbi->s_qf_names[GRPQUOTA])
746 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
747
Mingming Cao617ba132006-10-11 01:20:53 -0700748 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700749 seq_puts(seq, ",usrquota");
750
Mingming Cao617ba132006-10-11 01:20:53 -0700751 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700752 seq_puts(seq, ",grpquota");
753#endif
754}
755
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700756/*
757 * Show an option if
758 * - it's set to a non-default value OR
759 * - if the per-sb default is different from the global default
760 */
Mingming Cao617ba132006-10-11 01:20:53 -0700761static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700762{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500763 int def_errors;
764 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700765 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700766 struct ext4_sb_info *sbi = EXT4_SB(sb);
767 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700768
769 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500770 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700771
772 if (sbi->s_sb_block != 1)
773 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
774 if (test_opt(sb, MINIX_DF))
775 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500776 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700777 seq_puts(seq, ",grpid");
778 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
779 seq_puts(seq, ",nogrpid");
780 if (sbi->s_resuid != EXT4_DEF_RESUID ||
781 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
782 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
783 }
784 if (sbi->s_resgid != EXT4_DEF_RESGID ||
785 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
786 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
787 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500788 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700789 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500790 def_errors == EXT4_ERRORS_CONTINUE) {
791 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700792 }
793 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500794 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500795 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500796 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700797 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500798 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700799 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500800 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700801 seq_puts(seq, ",debug");
802 if (test_opt(sb, OLDALLOC))
803 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400804#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500805 if (test_opt(sb, XATTR_USER) &&
806 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700807 seq_puts(seq, ",user_xattr");
808 if (!test_opt(sb, XATTR_USER) &&
809 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
810 seq_puts(seq, ",nouser_xattr");
811 }
812#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400813#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500814 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700815 seq_puts(seq, ",acl");
816 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
817 seq_puts(seq, ",noacl");
818#endif
Theodore Ts'o30773842009-01-03 20:27:38 -0500819 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700820 seq_printf(seq, ",commit=%u",
821 (unsigned) (sbi->s_commit_interval / HZ));
822 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500823 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
824 seq_printf(seq, ",min_batch_time=%u",
825 (unsigned) sbi->s_min_batch_time);
826 }
827 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
828 seq_printf(seq, ",max_batch_time=%u",
829 (unsigned) sbi->s_min_batch_time);
830 }
831
Eric Sandeen571640c2008-05-26 12:29:46 -0400832 /*
833 * We're changing the default of barrier mount option, so
834 * let's always display its mount state so it's clear what its
835 * status is.
836 */
837 seq_puts(seq, ",barrier=");
838 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400839 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
840 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700841 if (test_opt(sb, NOBH))
842 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500843 if (test_opt(sb, I_VERSION))
844 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400845 if (!test_opt(sb, DELALLOC))
846 seq_puts(seq, ",nodelalloc");
847
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700848
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500849 if (sbi->s_stripe)
850 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500851 /*
852 * journal mode get enabled in different ways
853 * So just print the value even if we didn't specify it
854 */
Mingming Cao617ba132006-10-11 01:20:53 -0700855 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700856 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700857 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700858 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700859 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700860 seq_puts(seq, ",data=writeback");
861
Theodore Ts'o240799c2008-10-09 23:53:47 -0400862 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
863 seq_printf(seq, ",inode_readahead_blks=%u",
864 sbi->s_inode_readahead_blks);
865
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400866 if (test_opt(sb, DATA_ERR_ABORT))
867 seq_puts(seq, ",data_err=abort");
868
Theodore Ts'oafd46722009-03-16 23:12:23 -0400869 if (test_opt(sb, NO_AUTO_DA_ALLOC))
870 seq_puts(seq, ",auto_da_alloc=0");
871
Mingming Cao617ba132006-10-11 01:20:53 -0700872 ext4_show_quota_options(seq, sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700873 return 0;
874}
875
876
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700877static struct inode *ext4_nfs_get_inode(struct super_block *sb,
878 u64 ino, u32 generation)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700879{
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700880 struct inode *inode;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700881
Mingming Cao617ba132006-10-11 01:20:53 -0700882 if (ino < EXT4_FIRST_INO(sb) && ino != EXT4_ROOT_INO)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700883 return ERR_PTR(-ESTALE);
Mingming Cao617ba132006-10-11 01:20:53 -0700884 if (ino > le32_to_cpu(EXT4_SB(sb)->s_es->s_inodes_count))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700885 return ERR_PTR(-ESTALE);
886
887 /* iget isn't really right if the inode is currently unallocated!!
888 *
Mingming Cao617ba132006-10-11 01:20:53 -0700889 * ext4_read_inode will return a bad_inode if the inode had been
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700890 * deleted, so we should be safe.
891 *
892 * Currently we don't know the generation for parent directory, so
893 * a generation of 0 means "accept any"
894 */
David Howells1d1fe1e2008-02-07 00:15:37 -0800895 inode = ext4_iget(sb, ino);
896 if (IS_ERR(inode))
897 return ERR_CAST(inode);
898 if (generation && inode->i_generation != generation) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700899 iput(inode);
900 return ERR_PTR(-ESTALE);
901 }
Christoph Hellwig1b961ac2007-10-21 16:42:08 -0700902
903 return inode;
904}
905
906static struct dentry *ext4_fh_to_dentry(struct super_block *sb, struct fid *fid,
907 int fh_len, int fh_type)
908{
909 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
910 ext4_nfs_get_inode);
911}
912
913static struct dentry *ext4_fh_to_parent(struct super_block *sb, struct fid *fid,
914 int fh_len, int fh_type)
915{
916 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
917 ext4_nfs_get_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700918}
919
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -0500920/*
921 * Try to release metadata pages (indirect blocks, directories) which are
922 * mapped via the block device. Since these pages could have journal heads
923 * which would prevent try_to_free_buffers() from freeing them, we must use
924 * jbd2 layer's try_to_free_buffers() function to release them.
925 */
926static int bdev_try_to_free_page(struct super_block *sb, struct page *page, gfp_t wait)
927{
928 journal_t *journal = EXT4_SB(sb)->s_journal;
929
930 WARN_ON(PageChecked(page));
931 if (!page_has_buffers(page))
932 return 0;
933 if (journal)
934 return jbd2_journal_try_to_free_buffers(journal, page,
935 wait & ~__GFP_WAIT);
936 return try_to_free_buffers(page);
937}
938
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700939#ifdef CONFIG_QUOTA
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400940#define QTYPE2NAME(t) ((t) == USRQUOTA ? "user" : "group")
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400941#define QTYPE2MOPT(on, t) ((t) == USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700942
Mingming Cao617ba132006-10-11 01:20:53 -0700943static int ext4_write_dquot(struct dquot *dquot);
944static int ext4_acquire_dquot(struct dquot *dquot);
945static int ext4_release_dquot(struct dquot *dquot);
946static int ext4_mark_dquot_dirty(struct dquot *dquot);
947static int ext4_write_info(struct super_block *sb, int type);
Jan Kara6f28e082008-04-28 02:14:34 -0700948static int ext4_quota_on(struct super_block *sb, int type, int format_id,
949 char *path, int remount);
Mingming Cao617ba132006-10-11 01:20:53 -0700950static int ext4_quota_on_mount(struct super_block *sb, int type);
951static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700952 size_t len, loff_t off);
Mingming Cao617ba132006-10-11 01:20:53 -0700953static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700954 const char *data, size_t len, loff_t off);
955
Mingming Cao617ba132006-10-11 01:20:53 -0700956static struct dquot_operations ext4_quota_operations = {
Jan Karaedf72452009-01-12 19:05:26 +0100957 .initialize = dquot_initialize,
958 .drop = dquot_drop,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700959 .alloc_space = dquot_alloc_space,
Mingming Cao60e58e02009-01-22 18:13:05 +0100960 .reserve_space = dquot_reserve_space,
961 .claim_space = dquot_claim_space,
962 .release_rsv = dquot_release_reserved_space,
963 .get_reserved_space = ext4_get_reserved_space,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700964 .alloc_inode = dquot_alloc_inode,
965 .free_space = dquot_free_space,
966 .free_inode = dquot_free_inode,
967 .transfer = dquot_transfer,
Mingming Cao617ba132006-10-11 01:20:53 -0700968 .write_dquot = ext4_write_dquot,
969 .acquire_dquot = ext4_acquire_dquot,
970 .release_dquot = ext4_release_dquot,
971 .mark_dirty = ext4_mark_dquot_dirty,
Jan Karaa5b5ee32008-11-25 15:31:35 +0100972 .write_info = ext4_write_info,
973 .alloc_dquot = dquot_alloc,
974 .destroy_dquot = dquot_destroy,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700975};
976
Mingming Cao617ba132006-10-11 01:20:53 -0700977static struct quotactl_ops ext4_qctl_operations = {
978 .quota_on = ext4_quota_on,
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700979 .quota_off = vfs_quota_off,
980 .quota_sync = vfs_quota_sync,
981 .get_info = vfs_get_dqinfo,
982 .set_info = vfs_set_dqinfo,
983 .get_dqblk = vfs_get_dqblk,
984 .set_dqblk = vfs_set_dqblk
985};
986#endif
987
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800988static const struct super_operations ext4_sops = {
Mingming Cao617ba132006-10-11 01:20:53 -0700989 .alloc_inode = ext4_alloc_inode,
990 .destroy_inode = ext4_destroy_inode,
Mingming Cao617ba132006-10-11 01:20:53 -0700991 .write_inode = ext4_write_inode,
992 .dirty_inode = ext4_dirty_inode,
993 .delete_inode = ext4_delete_inode,
994 .put_super = ext4_put_super,
995 .write_super = ext4_write_super,
996 .sync_fs = ext4_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800997 .freeze_fs = ext4_freeze,
998 .unfreeze_fs = ext4_unfreeze,
Mingming Cao617ba132006-10-11 01:20:53 -0700999 .statfs = ext4_statfs,
1000 .remount_fs = ext4_remount,
1001 .clear_inode = ext4_clear_inode,
1002 .show_options = ext4_show_options,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001003#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07001004 .quota_read = ext4_quota_read,
1005 .quota_write = ext4_quota_write,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001006#endif
Toshiyuki Okajimac39a7f82009-01-05 22:38:48 -05001007 .bdev_try_to_free_page = bdev_try_to_free_page,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001008};
1009
Christoph Hellwig39655162007-10-21 16:42:17 -07001010static const struct export_operations ext4_export_ops = {
Christoph Hellwig1b961ac2007-10-21 16:42:08 -07001011 .fh_to_dentry = ext4_fh_to_dentry,
1012 .fh_to_parent = ext4_fh_to_parent,
Mingming Cao617ba132006-10-11 01:20:53 -07001013 .get_parent = ext4_get_parent,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001014};
1015
1016enum {
1017 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
1018 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001019 Opt_nouid32, Opt_debug, Opt_oldalloc, Opt_orlov,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001020 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Theodore Ts'oafd46722009-03-16 23:12:23 -04001021 Opt_auto_da_alloc, Opt_noload, Opt_nobh, Opt_bh,
Theodore Ts'o30773842009-01-03 20:27:38 -05001022 Opt_commit, Opt_min_batch_time, Opt_max_batch_time,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001023 Opt_journal_update, Opt_journal_dev,
Girish Shilamkar818d2762008-01-28 23:58:27 -05001024 Opt_journal_checksum, Opt_journal_async_commit,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001025 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001026 Opt_data_err_abort, Opt_data_err_ignore,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001027 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
1028 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
1029 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
Theodore Ts'o83982b62009-01-06 14:53:16 -05001030 Opt_grpquota, Opt_i_version,
Theodore Ts'o01436ef2008-10-17 07:22:35 -04001031 Opt_stripe, Opt_delalloc, Opt_nodelalloc,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001032 Opt_inode_readahead_blks, Opt_journal_ioprio
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001033};
1034
Steven Whitehousea447c092008-10-13 10:46:57 +01001035static const match_table_t tokens = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001036 {Opt_bsd_df, "bsddf"},
1037 {Opt_minix_df, "minixdf"},
1038 {Opt_grpid, "grpid"},
1039 {Opt_grpid, "bsdgroups"},
1040 {Opt_nogrpid, "nogrpid"},
1041 {Opt_nogrpid, "sysvgroups"},
1042 {Opt_resgid, "resgid=%u"},
1043 {Opt_resuid, "resuid=%u"},
1044 {Opt_sb, "sb=%u"},
1045 {Opt_err_cont, "errors=continue"},
1046 {Opt_err_panic, "errors=panic"},
1047 {Opt_err_ro, "errors=remount-ro"},
1048 {Opt_nouid32, "nouid32"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001049 {Opt_debug, "debug"},
1050 {Opt_oldalloc, "oldalloc"},
1051 {Opt_orlov, "orlov"},
1052 {Opt_user_xattr, "user_xattr"},
1053 {Opt_nouser_xattr, "nouser_xattr"},
1054 {Opt_acl, "acl"},
1055 {Opt_noacl, "noacl"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001056 {Opt_noload, "noload"},
1057 {Opt_nobh, "nobh"},
1058 {Opt_bh, "bh"},
1059 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001060 {Opt_min_batch_time, "min_batch_time=%u"},
1061 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001062 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001063 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001064 {Opt_journal_checksum, "journal_checksum"},
1065 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001066 {Opt_abort, "abort"},
1067 {Opt_data_journal, "data=journal"},
1068 {Opt_data_ordered, "data=ordered"},
1069 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001070 {Opt_data_err_abort, "data_err=abort"},
1071 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001072 {Opt_offusrjquota, "usrjquota="},
1073 {Opt_usrjquota, "usrjquota=%s"},
1074 {Opt_offgrpjquota, "grpjquota="},
1075 {Opt_grpjquota, "grpjquota=%s"},
1076 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1077 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1078 {Opt_grpquota, "grpquota"},
1079 {Opt_noquota, "noquota"},
1080 {Opt_quota, "quota"},
1081 {Opt_usrquota, "usrquota"},
1082 {Opt_barrier, "barrier=%u"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001083 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001084 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001085 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001086 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001087 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001088 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001089 {Opt_journal_ioprio, "journal_ioprio=%u"},
Theodore Ts'oafd46722009-03-16 23:12:23 -04001090 {Opt_auto_da_alloc, "auto_da_alloc=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001091 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001092};
1093
Mingming Cao617ba132006-10-11 01:20:53 -07001094static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001095{
Mingming Cao617ba132006-10-11 01:20:53 -07001096 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001097 char *options = (char *) *data;
1098
1099 if (!options || strncmp(options, "sb=", 3) != 0)
1100 return 1; /* Default location */
1101 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001102 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001103 sb_block = simple_strtoul(options, &options, 0);
1104 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001105 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001106 (char *) *data);
1107 return 1;
1108 }
1109 if (*options == ',')
1110 options++;
1111 *data = (void *) options;
1112 return sb_block;
1113}
1114
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001115#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1116
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001117static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001118 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001119 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001120 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001121{
Mingming Cao617ba132006-10-11 01:20:53 -07001122 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001123 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001124 substring_t args[MAX_OPT_ARGS];
1125 int data_opt = 0;
1126 int option;
1127#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001128 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001129 char *qname;
1130#endif
1131
1132 if (!options)
1133 return 1;
1134
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001135 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001136 int token;
1137 if (!*p)
1138 continue;
1139
1140 token = match_token(p, tokens, args);
1141 switch (token) {
1142 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001143 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001144 break;
1145 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001146 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001147 break;
1148 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001149 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001150 break;
1151 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001152 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001153 break;
1154 case Opt_resuid:
1155 if (match_int(&args[0], &option))
1156 return 0;
1157 sbi->s_resuid = option;
1158 break;
1159 case Opt_resgid:
1160 if (match_int(&args[0], &option))
1161 return 0;
1162 sbi->s_resgid = option;
1163 break;
1164 case Opt_sb:
1165 /* handled by get_sb_block() instead of here */
1166 /* *sb_block = match_int(&args[0]); */
1167 break;
1168 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001169 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1170 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1171 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001172 break;
1173 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001174 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1175 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1176 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001177 break;
1178 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001179 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1180 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1181 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001182 break;
1183 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001184 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001185 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001186 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001187 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001188 break;
1189 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001190 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001191 break;
1192 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001193 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001194 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001195#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001196 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001197 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001198 break;
1199 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001200 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001201 break;
1202#else
1203 case Opt_user_xattr:
1204 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001205 printk(KERN_ERR "EXT4 (no)user_xattr options "
1206 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001207 break;
1208#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001209#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001210 case Opt_acl:
1211 set_opt(sbi->s_mount_opt, POSIX_ACL);
1212 break;
1213 case Opt_noacl:
1214 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1215 break;
1216#else
1217 case Opt_acl:
1218 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001219 printk(KERN_ERR "EXT4 (no)acl options "
1220 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001221 break;
1222#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001223 case Opt_journal_update:
1224 /* @@@ FIXME */
1225 /* Eventually we will want to be able to create
1226 a journal file here. For now, only allow the
1227 user to specify an existing inode to be the
1228 journal file. */
1229 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001230 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001231 "journal on remount\n");
1232 return 0;
1233 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001234 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001235 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001236 case Opt_journal_dev:
1237 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001238 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001239 "journal on remount\n");
1240 return 0;
1241 }
1242 if (match_int(&args[0], &option))
1243 return 0;
1244 *journal_devnum = option;
1245 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001246 case Opt_journal_checksum:
1247 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1248 break;
1249 case Opt_journal_async_commit:
1250 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1251 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1252 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001253 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001254 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001255 break;
1256 case Opt_commit:
1257 if (match_int(&args[0], &option))
1258 return 0;
1259 if (option < 0)
1260 return 0;
1261 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001262 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001263 sbi->s_commit_interval = HZ * option;
1264 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001265 case Opt_max_batch_time:
1266 if (match_int(&args[0], &option))
1267 return 0;
1268 if (option < 0)
1269 return 0;
1270 if (option == 0)
1271 option = EXT4_DEF_MAX_BATCH_TIME;
1272 sbi->s_max_batch_time = option;
1273 break;
1274 case Opt_min_batch_time:
1275 if (match_int(&args[0], &option))
1276 return 0;
1277 if (option < 0)
1278 return 0;
1279 sbi->s_min_batch_time = option;
1280 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001281 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001282 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001283 goto datacheck;
1284 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001285 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001286 goto datacheck;
1287 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001288 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001289 datacheck:
1290 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001291 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001292 != data_opt) {
1293 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001294 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001295 "mode on remount\n");
1296 return 0;
1297 }
1298 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001299 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001300 sbi->s_mount_opt |= data_opt;
1301 }
1302 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001303 case Opt_data_err_abort:
1304 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1305 break;
1306 case Opt_data_err_ignore:
1307 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1308 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001309#ifdef CONFIG_QUOTA
1310 case Opt_usrjquota:
1311 qtype = USRQUOTA;
1312 goto set_qf_name;
1313 case Opt_grpjquota:
1314 qtype = GRPQUOTA;
1315set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001316 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001317 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001318 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001319 "EXT4-fs: Cannot change journaled "
1320 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001321 return 0;
1322 }
1323 qname = match_strdup(&args[0]);
1324 if (!qname) {
1325 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001326 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001327 "storing quotafile name.\n");
1328 return 0;
1329 }
1330 if (sbi->s_qf_names[qtype] &&
1331 strcmp(sbi->s_qf_names[qtype], qname)) {
1332 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001333 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001334 "specified.\n", QTYPE2NAME(qtype));
1335 kfree(qname);
1336 return 0;
1337 }
1338 sbi->s_qf_names[qtype] = qname;
1339 if (strchr(sbi->s_qf_names[qtype], '/')) {
1340 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001341 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001342 "filesystem root.\n");
1343 kfree(sbi->s_qf_names[qtype]);
1344 sbi->s_qf_names[qtype] = NULL;
1345 return 0;
1346 }
1347 set_opt(sbi->s_mount_opt, QUOTA);
1348 break;
1349 case Opt_offusrjquota:
1350 qtype = USRQUOTA;
1351 goto clear_qf_name;
1352 case Opt_offgrpjquota:
1353 qtype = GRPQUOTA;
1354clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001355 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001356 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001357 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001358 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001359 "quota turned on.\n");
1360 return 0;
1361 }
1362 /*
1363 * The space will be released later when all options
1364 * are confirmed to be correct
1365 */
1366 sbi->s_qf_names[qtype] = NULL;
1367 break;
1368 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001369 qfmt = QFMT_VFS_OLD;
1370 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001371 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001372 qfmt = QFMT_VFS_V0;
1373set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001374 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001375 sbi->s_jquota_fmt != qfmt) {
1376 printk(KERN_ERR "EXT4-fs: Cannot change "
1377 "journaled quota options when "
1378 "quota turned on.\n");
1379 return 0;
1380 }
1381 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001382 break;
1383 case Opt_quota:
1384 case Opt_usrquota:
1385 set_opt(sbi->s_mount_opt, QUOTA);
1386 set_opt(sbi->s_mount_opt, USRQUOTA);
1387 break;
1388 case Opt_grpquota:
1389 set_opt(sbi->s_mount_opt, QUOTA);
1390 set_opt(sbi->s_mount_opt, GRPQUOTA);
1391 break;
1392 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001393 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001394 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001395 "options when quota turned on.\n");
1396 return 0;
1397 }
1398 clear_opt(sbi->s_mount_opt, QUOTA);
1399 clear_opt(sbi->s_mount_opt, USRQUOTA);
1400 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1401 break;
1402#else
1403 case Opt_quota:
1404 case Opt_usrquota:
1405 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001406 printk(KERN_ERR
1407 "EXT4-fs: quota options not supported.\n");
1408 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001409 case Opt_usrjquota:
1410 case Opt_grpjquota:
1411 case Opt_offusrjquota:
1412 case Opt_offgrpjquota:
1413 case Opt_jqfmt_vfsold:
1414 case Opt_jqfmt_vfsv0:
1415 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001416 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001417 "supported.\n");
1418 break;
1419 case Opt_noquota:
1420 break;
1421#endif
1422 case Opt_abort:
1423 set_opt(sbi->s_mount_opt, ABORT);
1424 break;
1425 case Opt_barrier:
1426 if (match_int(&args[0], &option))
1427 return 0;
1428 if (option)
1429 set_opt(sbi->s_mount_opt, BARRIER);
1430 else
1431 clear_opt(sbi->s_mount_opt, BARRIER);
1432 break;
1433 case Opt_ignore:
1434 break;
1435 case Opt_resize:
1436 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001437 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001438 "for remount\n");
1439 return 0;
1440 }
1441 if (match_int(&args[0], &option) != 0)
1442 return 0;
1443 *n_blocks_count = option;
1444 break;
1445 case Opt_nobh:
1446 set_opt(sbi->s_mount_opt, NOBH);
1447 break;
1448 case Opt_bh:
1449 clear_opt(sbi->s_mount_opt, NOBH);
1450 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001451 case Opt_i_version:
1452 set_opt(sbi->s_mount_opt, I_VERSION);
1453 sb->s_flags |= MS_I_VERSION;
1454 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001455 case Opt_nodelalloc:
1456 clear_opt(sbi->s_mount_opt, DELALLOC);
1457 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001458 case Opt_stripe:
1459 if (match_int(&args[0], &option))
1460 return 0;
1461 if (option < 0)
1462 return 0;
1463 sbi->s_stripe = option;
1464 break;
Alex Tomas64769242008-07-11 19:27:31 -04001465 case Opt_delalloc:
1466 set_opt(sbi->s_mount_opt, DELALLOC);
1467 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001468 case Opt_inode_readahead_blks:
1469 if (match_int(&args[0], &option))
1470 return 0;
1471 if (option < 0 || option > (1 << 30))
1472 return 0;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001473 if (option & (option - 1)) {
1474 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1475 " must be a power of 2\n");
1476 return 0;
1477 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001478 sbi->s_inode_readahead_blks = option;
1479 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001480 case Opt_journal_ioprio:
1481 if (match_int(&args[0], &option))
1482 return 0;
1483 if (option < 0 || option > 7)
1484 break;
1485 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1486 option);
1487 break;
Theodore Ts'oafd46722009-03-16 23:12:23 -04001488 case Opt_auto_da_alloc:
1489 if (match_int(&args[0], &option))
1490 return 0;
1491 if (option)
1492 clear_opt(sbi->s_mount_opt, NO_AUTO_DA_ALLOC);
1493 else
1494 set_opt(sbi->s_mount_opt,NO_AUTO_DA_ALLOC);
1495 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001496 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001497 printk(KERN_ERR
1498 "EXT4-fs: Unrecognized mount option \"%s\" "
1499 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001500 return 0;
1501 }
1502 }
1503#ifdef CONFIG_QUOTA
1504 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001505 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001506 sbi->s_qf_names[USRQUOTA])
1507 clear_opt(sbi->s_mount_opt, USRQUOTA);
1508
Mingming Cao617ba132006-10-11 01:20:53 -07001509 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001510 sbi->s_qf_names[GRPQUOTA])
1511 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1512
1513 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001514 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001515 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001516 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1517 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001518 "format mixing.\n");
1519 return 0;
1520 }
1521
1522 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001523 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001524 "not specified.\n");
1525 return 0;
1526 }
1527 } else {
1528 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001529 printk(KERN_ERR "EXT4-fs: journaled quota format "
1530 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001531 "enabled.\n");
1532 return 0;
1533 }
1534 }
1535#endif
1536 return 1;
1537}
1538
Mingming Cao617ba132006-10-11 01:20:53 -07001539static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001540 int read_only)
1541{
Mingming Cao617ba132006-10-11 01:20:53 -07001542 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001543 int res = 0;
1544
Mingming Cao617ba132006-10-11 01:20:53 -07001545 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001546 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1547 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001548 res = MS_RDONLY;
1549 }
1550 if (read_only)
1551 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001552 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001553 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1554 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001555 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001556 printk(KERN_WARNING
1557 "EXT4-fs warning: mounting fs with errors, "
1558 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001559 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1560 le16_to_cpu(es->s_mnt_count) >=
1561 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001562 printk(KERN_WARNING
1563 "EXT4-fs warning: maximal mount count reached, "
1564 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001565 else if (le32_to_cpu(es->s_checkinterval) &&
1566 (le32_to_cpu(es->s_lastcheck) +
1567 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001568 printk(KERN_WARNING
1569 "EXT4-fs warning: checktime reached, "
1570 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001571 if (!sbi->s_journal)
1572 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001573 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001574 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001575 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001576 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001577 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001578 if (sbi->s_journal)
1579 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001580
Mingming Cao617ba132006-10-11 01:20:53 -07001581 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001582 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001583 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001584 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1585 sb->s_blocksize,
1586 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001587 EXT4_BLOCKS_PER_GROUP(sb),
1588 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001589 sbi->s_mount_opt);
1590
Frank Mayhar03901312009-01-07 00:06:22 -05001591 if (EXT4_SB(sb)->s_journal) {
1592 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1593 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1594 "external", EXT4_SB(sb)->s_journal->j_devname);
1595 } else {
1596 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1597 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001598 return res;
1599}
1600
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001601static int ext4_fill_flex_info(struct super_block *sb)
1602{
1603 struct ext4_sb_info *sbi = EXT4_SB(sb);
1604 struct ext4_group_desc *gdp = NULL;
1605 struct buffer_head *bh;
1606 ext4_group_t flex_group_count;
1607 ext4_group_t flex_group;
1608 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001609 int i;
1610
1611 if (!sbi->s_es->s_log_groups_per_flex) {
1612 sbi->s_log_groups_per_flex = 0;
1613 return 1;
1614 }
1615
1616 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1617 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1618
Frederic Bohec62a11f2008-09-08 10:20:24 -04001619 /* We allocate both existing and potentially added groups */
1620 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001621 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1622 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001623 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001624 sizeof(struct flex_groups), GFP_KERNEL);
1625 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001626 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001627 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001628 goto failed;
1629 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001630
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001631 for (i = 0; i < sbi->s_groups_count; i++) {
1632 gdp = ext4_get_group_desc(sb, i, &bh);
1633
1634 flex_group = ext4_flex_group(sbi, i);
Theodore Ts'o9f24e422009-03-04 19:09:10 -05001635 atomic_set(&sbi->s_flex_groups[flex_group].free_inodes,
1636 ext4_free_inodes_count(sb, gdp));
1637 atomic_set(&sbi->s_flex_groups[flex_group].free_blocks,
1638 ext4_free_blks_count(sb, gdp));
Theodore Ts'o7d39db12009-03-04 19:31:53 -05001639 atomic_set(&sbi->s_flex_groups[flex_group].used_dirs,
1640 ext4_used_dirs_count(sb, gdp));
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001641 }
1642
1643 return 1;
1644failed:
1645 return 0;
1646}
1647
Andreas Dilger717d50e2007-10-16 18:38:25 -04001648__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1649 struct ext4_group_desc *gdp)
1650{
1651 __u16 crc = 0;
1652
1653 if (sbi->s_es->s_feature_ro_compat &
1654 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1655 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1656 __le32 le_group = cpu_to_le32(block_group);
1657
1658 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1659 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1660 crc = crc16(crc, (__u8 *)gdp, offset);
1661 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1662 /* for checksum of struct ext4_group_desc do the rest...*/
1663 if ((sbi->s_es->s_feature_incompat &
1664 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1665 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1666 crc = crc16(crc, (__u8 *)gdp + offset,
1667 le16_to_cpu(sbi->s_es->s_desc_size) -
1668 offset);
1669 }
1670
1671 return cpu_to_le16(crc);
1672}
1673
1674int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1675 struct ext4_group_desc *gdp)
1676{
1677 if ((sbi->s_es->s_feature_ro_compat &
1678 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1679 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1680 return 0;
1681
1682 return 1;
1683}
1684
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001685/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001686static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001687{
Mingming Cao617ba132006-10-11 01:20:53 -07001688 struct ext4_sb_info *sbi = EXT4_SB(sb);
1689 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1690 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001691 ext4_fsblk_t block_bitmap;
1692 ext4_fsblk_t inode_bitmap;
1693 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001694 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001695 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001696
Jose R. Santosce421582007-10-16 18:38:25 -04001697 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1698 flexbg_flag = 1;
1699
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001700 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001701
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001702 for (i = 0; i < sbi->s_groups_count; i++) {
1703 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1704
Jose R. Santosce421582007-10-16 18:38:25 -04001705 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001706 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001707 else
1708 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001709 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001710
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001711 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001712 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001713 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001714 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001715 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001716 return 0;
1717 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001718 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001719 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001720 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001721 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001722 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001723 return 0;
1724 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001725 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001726 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001727 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001728 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001729 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001730 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001731 return 0;
1732 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001733 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001734 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001735 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001736 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001737 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1738 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001739 if (!(sb->s_flags & MS_RDONLY)) {
1740 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001741 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001742 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001743 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001744 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001745 if (!flexbg_flag)
1746 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001747 }
1748
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001749 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001750 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001751 return 1;
1752}
1753
Mingming Cao617ba132006-10-11 01:20:53 -07001754/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001755 * the superblock) which were deleted from all directories, but held open by
1756 * a process at the time of a crash. We walk the list and try to delete these
1757 * inodes at recovery time (only with a read-write filesystem).
1758 *
1759 * In order to keep the orphan inode chain consistent during traversal (in
1760 * case of crash during recovery), we link each inode into the superblock
1761 * orphan list_head and handle it the same way as an inode deletion during
1762 * normal operation (which journals the operations for us).
1763 *
1764 * We only do an iget() and an iput() on each inode, which is very safe if we
1765 * accidentally point at an in-use or already deleted inode. The worst that
1766 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001767 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001768 * e2fsck was run on this filesystem, and it must have already done the orphan
1769 * inode cleanup for us, so we can safely abort without any further action.
1770 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001771static void ext4_orphan_cleanup(struct super_block *sb,
1772 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001773{
1774 unsigned int s_flags = sb->s_flags;
1775 int nr_orphans = 0, nr_truncates = 0;
1776#ifdef CONFIG_QUOTA
1777 int i;
1778#endif
1779 if (!es->s_last_orphan) {
1780 jbd_debug(4, "no orphan inodes to clean up\n");
1781 return;
1782 }
1783
Eric Sandeena8f48a92006-12-06 20:40:13 -08001784 if (bdev_read_only(sb->s_bdev)) {
1785 printk(KERN_ERR "EXT4-fs: write access "
1786 "unavailable, skipping orphan cleanup.\n");
1787 return;
1788 }
1789
Mingming Cao617ba132006-10-11 01:20:53 -07001790 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001791 if (es->s_last_orphan)
1792 jbd_debug(1, "Errors on filesystem, "
1793 "clearing orphan list.\n");
1794 es->s_last_orphan = 0;
1795 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1796 return;
1797 }
1798
1799 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001800 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001801 sb->s_id);
1802 sb->s_flags &= ~MS_RDONLY;
1803 }
1804#ifdef CONFIG_QUOTA
1805 /* Needed for iput() to work correctly and not trash data */
1806 sb->s_flags |= MS_ACTIVE;
1807 /* Turn on quotas so that they are updated correctly */
1808 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001809 if (EXT4_SB(sb)->s_qf_names[i]) {
1810 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001811 if (ret < 0)
1812 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001813 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001814 "quota: error %d\n", ret);
1815 }
1816 }
1817#endif
1818
1819 while (es->s_last_orphan) {
1820 struct inode *inode;
1821
Josef Bacik97bd42b2008-04-29 22:04:56 -04001822 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1823 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001824 es->s_last_orphan = 0;
1825 break;
1826 }
1827
Mingming Cao617ba132006-10-11 01:20:53 -07001828 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001829 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001830 if (inode->i_nlink) {
1831 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001832 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001833 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001834 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001835 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001836 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001837 nr_truncates++;
1838 } else {
1839 printk(KERN_DEBUG
1840 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001841 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001842 jbd_debug(2, "deleting unreferenced inode %lu\n",
1843 inode->i_ino);
1844 nr_orphans++;
1845 }
1846 iput(inode); /* The delete magic happens here! */
1847 }
1848
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001849#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001850
1851 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001852 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001853 sb->s_id, PLURAL(nr_orphans));
1854 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001855 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001856 sb->s_id, PLURAL(nr_truncates));
1857#ifdef CONFIG_QUOTA
1858 /* Turn quotas off */
1859 for (i = 0; i < MAXQUOTAS; i++) {
1860 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001861 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001862 }
1863#endif
1864 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1865}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001866/*
1867 * Maximal extent format file size.
1868 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1869 * extent format containers, within a sector_t, and within i_blocks
1870 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1871 * so that won't be a limiting factor.
1872 *
1873 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1874 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001875static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001876{
1877 loff_t res;
1878 loff_t upper_limit = MAX_LFS_FILESIZE;
1879
1880 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001881 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001882 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001883 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001884 * i_block represent total blocks in 512 bytes
1885 * 32 == size of vfs inode i_blocks * 8
1886 */
1887 upper_limit = (1LL << 32) - 1;
1888
1889 /* total blocks in file system block size */
1890 upper_limit >>= (blkbits - 9);
1891 upper_limit <<= blkbits;
1892 }
1893
1894 /* 32-bit extent-start container, ee_block */
1895 res = 1LL << 32;
1896 res <<= blkbits;
1897 res -= 1;
1898
1899 /* Sanity check against vm- & vfs- imposed limits */
1900 if (res > upper_limit)
1901 res = upper_limit;
1902
1903 return res;
1904}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001905
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001906/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001907 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001908 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1909 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001910 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001911static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001912{
Mingming Cao617ba132006-10-11 01:20:53 -07001913 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001914 int meta_blocks;
1915 loff_t upper_limit;
1916 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001917 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001918 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001919 * does not exceed 2^48 -1
1920 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1921 * total number of 512 bytes blocks of the file
1922 */
1923
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001924 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001925 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001926 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001927 * implies the inode i_block represent total blocks in
1928 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001929 */
1930 upper_limit = (1LL << 32) - 1;
1931
1932 /* total blocks in file system block size */
1933 upper_limit >>= (bits - 9);
1934
1935 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001936 /*
1937 * We use 48 bit ext4_inode i_blocks
1938 * With EXT4_HUGE_FILE_FL set the i_blocks
1939 * represent total number of blocks in
1940 * file system block size
1941 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001942 upper_limit = (1LL << 48) - 1;
1943
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001944 }
1945
1946 /* indirect blocks */
1947 meta_blocks = 1;
1948 /* double indirect blocks */
1949 meta_blocks += 1 + (1LL << (bits-2));
1950 /* tripple indirect blocks */
1951 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1952
1953 upper_limit -= meta_blocks;
1954 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001955
1956 res += 1LL << (bits-2);
1957 res += 1LL << (2*(bits-2));
1958 res += 1LL << (3*(bits-2));
1959 res <<= bits;
1960 if (res > upper_limit)
1961 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001962
1963 if (res > MAX_LFS_FILESIZE)
1964 res = MAX_LFS_FILESIZE;
1965
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001966 return res;
1967}
1968
Mingming Cao617ba132006-10-11 01:20:53 -07001969static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001970 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001971{
Mingming Cao617ba132006-10-11 01:20:53 -07001972 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001973 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001974 int has_super = 0;
1975
1976 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1977
Mingming Cao617ba132006-10-11 01:20:53 -07001978 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001979 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001980 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001981 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001982 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001983 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001984 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001985}
1986
Alex Tomasc9de5602008-01-29 00:19:52 -05001987/**
1988 * ext4_get_stripe_size: Get the stripe size.
1989 * @sbi: In memory super block info
1990 *
1991 * If we have specified it via mount option, then
1992 * use the mount option value. If the value specified at mount time is
1993 * greater than the blocks per group use the super block value.
1994 * If the super block value is greater than blocks per group return 0.
1995 * Allocator needs it be less than blocks per group.
1996 *
1997 */
1998static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1999{
2000 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
2001 unsigned long stripe_width =
2002 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2003
2004 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2005 return sbi->s_stripe;
2006
2007 if (stripe_width <= sbi->s_blocks_per_group)
2008 return stripe_width;
2009
2010 if (stride <= sbi->s_blocks_per_group)
2011 return stride;
2012
2013 return 0;
2014}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002015
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002016/* sysfs supprt */
2017
2018struct ext4_attr {
2019 struct attribute attr;
2020 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2021 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2022 const char *, size_t);
2023 int offset;
2024};
2025
2026static int parse_strtoul(const char *buf,
2027 unsigned long max, unsigned long *value)
2028{
2029 char *endp;
2030
2031 while (*buf && isspace(*buf))
2032 buf++;
2033 *value = simple_strtoul(buf, &endp, 0);
2034 while (*endp && isspace(*endp))
2035 endp++;
2036 if (*endp || *value > max)
2037 return -EINVAL;
2038
2039 return 0;
2040}
2041
2042static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2043 struct ext4_sb_info *sbi,
2044 char *buf)
2045{
2046 return snprintf(buf, PAGE_SIZE, "%llu\n",
2047 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2048}
2049
2050static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2051 struct ext4_sb_info *sbi, char *buf)
2052{
2053 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2054
2055 return snprintf(buf, PAGE_SIZE, "%lu\n",
2056 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2057 sbi->s_sectors_written_start) >> 1);
2058}
2059
2060static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2061 struct ext4_sb_info *sbi, char *buf)
2062{
2063 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2064
2065 return snprintf(buf, PAGE_SIZE, "%llu\n",
2066 sbi->s_kbytes_written +
2067 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2068 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2069}
2070
2071static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2072 struct ext4_sb_info *sbi,
2073 const char *buf, size_t count)
2074{
2075 unsigned long t;
2076
2077 if (parse_strtoul(buf, 0x40000000, &t))
2078 return -EINVAL;
2079
2080 /* inode_readahead_blks must be a power of 2 */
2081 if (t & (t-1))
2082 return -EINVAL;
2083
2084 sbi->s_inode_readahead_blks = t;
2085 return count;
2086}
2087
2088static ssize_t sbi_ui_show(struct ext4_attr *a,
2089 struct ext4_sb_info *sbi, char *buf)
2090{
2091 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2092
2093 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2094}
2095
2096static ssize_t sbi_ui_store(struct ext4_attr *a,
2097 struct ext4_sb_info *sbi,
2098 const char *buf, size_t count)
2099{
2100 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2101 unsigned long t;
2102
2103 if (parse_strtoul(buf, 0xffffffff, &t))
2104 return -EINVAL;
2105 *ui = t;
2106 return count;
2107}
2108
2109#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2110static struct ext4_attr ext4_attr_##_name = { \
2111 .attr = {.name = __stringify(_name), .mode = _mode }, \
2112 .show = _show, \
2113 .store = _store, \
2114 .offset = offsetof(struct ext4_sb_info, _elname), \
2115}
2116#define EXT4_ATTR(name, mode, show, store) \
2117static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2118
2119#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2120#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2121#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2122 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2123#define ATTR_LIST(name) &ext4_attr_##name.attr
2124
2125EXT4_RO_ATTR(delayed_allocation_blocks);
2126EXT4_RO_ATTR(session_write_kbytes);
2127EXT4_RO_ATTR(lifetime_write_kbytes);
2128EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2129 inode_readahead_blks_store, s_inode_readahead_blks);
2130EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2131EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2132EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2133EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2134EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2135EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2136
2137static struct attribute *ext4_attrs[] = {
2138 ATTR_LIST(delayed_allocation_blocks),
2139 ATTR_LIST(session_write_kbytes),
2140 ATTR_LIST(lifetime_write_kbytes),
2141 ATTR_LIST(inode_readahead_blks),
2142 ATTR_LIST(mb_stats),
2143 ATTR_LIST(mb_max_to_scan),
2144 ATTR_LIST(mb_min_to_scan),
2145 ATTR_LIST(mb_order2_req),
2146 ATTR_LIST(mb_stream_req),
2147 ATTR_LIST(mb_group_prealloc),
2148 NULL,
2149};
2150
2151static ssize_t ext4_attr_show(struct kobject *kobj,
2152 struct attribute *attr, char *buf)
2153{
2154 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2155 s_kobj);
2156 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2157
2158 return a->show ? a->show(a, sbi, buf) : 0;
2159}
2160
2161static ssize_t ext4_attr_store(struct kobject *kobj,
2162 struct attribute *attr,
2163 const char *buf, size_t len)
2164{
2165 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2166 s_kobj);
2167 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2168
2169 return a->store ? a->store(a, sbi, buf, len) : 0;
2170}
2171
2172static void ext4_sb_release(struct kobject *kobj)
2173{
2174 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2175 s_kobj);
2176 complete(&sbi->s_kobj_unregister);
2177}
2178
2179
2180static struct sysfs_ops ext4_attr_ops = {
2181 .show = ext4_attr_show,
2182 .store = ext4_attr_store,
2183};
2184
2185static struct kobj_type ext4_ktype = {
2186 .default_attrs = ext4_attrs,
2187 .sysfs_ops = &ext4_attr_ops,
2188 .release = ext4_sb_release,
2189};
2190
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002191static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002192 __releases(kernel_lock)
2193 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002194
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002195{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002196 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002197 struct ext4_super_block *es = NULL;
2198 struct ext4_sb_info *sbi;
2199 ext4_fsblk_t block;
2200 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002201 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002202 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002203 unsigned long journal_devnum = 0;
2204 unsigned long def_mount_opts;
2205 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002206 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002207 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002208 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002209 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002210 unsigned int db_count;
2211 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002212 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002213 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002214 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002215 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002216 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002217
2218 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2219 if (!sbi)
2220 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002221
2222 sbi->s_blockgroup_lock =
2223 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2224 if (!sbi->s_blockgroup_lock) {
2225 kfree(sbi);
2226 return -ENOMEM;
2227 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002228 sb->s_fs_info = sbi;
2229 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002230 sbi->s_resuid = EXT4_DEF_RESUID;
2231 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002232 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002233 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002234 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2235 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002236
2237 unlock_kernel();
2238
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002239 /* Cleanup superblock name */
2240 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2241 *cp = '!';
2242
Mingming Cao617ba132006-10-11 01:20:53 -07002243 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002244 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002245 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002246 goto out_fail;
2247 }
2248
2249 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002250 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002251 * block sizes. We need to calculate the offset from buffer start.
2252 */
Mingming Cao617ba132006-10-11 01:20:53 -07002253 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002254 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2255 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002256 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002257 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002258 }
2259
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002260 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002261 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002262 goto out_fail;
2263 }
2264 /*
2265 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002266 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002267 */
Mingming Cao617ba132006-10-11 01:20:53 -07002268 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002269 sbi->s_es = es;
2270 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002271 if (sb->s_magic != EXT4_SUPER_MAGIC)
2272 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002273 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002274
2275 /* Set defaults before we parse the mount options */
2276 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002277 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002278 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002279 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002280 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002281 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002282 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002283#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002284 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002285 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002286#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002287#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002288 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002289 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002290#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002291 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2292 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2293 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2294 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2295 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2296 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002297
Mingming Cao617ba132006-10-11 01:20:53 -07002298 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002299 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002300 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002301 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002302 else
2303 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002304
2305 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2306 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002307 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2308 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2309 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002310
Eric Sandeen571640c2008-05-26 12:29:46 -04002311 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002312
Mingming Cao1e2462f2007-07-18 09:00:55 -04002313 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002314 * enable delayed allocation by default
2315 * Use -o nodelalloc to turn it off
2316 */
2317 set_opt(sbi->s_mount_opt, DELALLOC);
2318
2319
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002320 if (!parse_options((char *) data, sb, &journal_devnum,
2321 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002322 goto failed_mount;
2323
2324 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002325 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002326
Mingming Cao617ba132006-10-11 01:20:53 -07002327 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2328 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2329 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2330 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002331 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002332 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002333 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002334
2335 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002336 * Check feature flags regardless of the revision level, since we
2337 * previously didn't change the revision level when setting the flags,
2338 * so there is a chance incompat flags are set on a rev 0 filesystem.
2339 */
Mingming Cao617ba132006-10-11 01:20:53 -07002340 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002341 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002342 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002343 "unsupported optional features (%x).\n", sb->s_id,
2344 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2345 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002346 goto failed_mount;
2347 }
Mingming Cao617ba132006-10-11 01:20:53 -07002348 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002349 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002350 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002351 "unsupported optional features (%x).\n", sb->s_id,
2352 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2353 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002354 goto failed_mount;
2355 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002356 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2357 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2358 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002359 /*
2360 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002361 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002362 */
2363 if (sizeof(root->i_blocks) < sizeof(u64) &&
2364 !(sb->s_flags & MS_RDONLY)) {
2365 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2366 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002367 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002368 goto failed_mount;
2369 }
2370 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002371 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2372
Mingming Cao617ba132006-10-11 01:20:53 -07002373 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2374 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002375 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002376 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002377 blocksize, sb->s_id);
2378 goto failed_mount;
2379 }
2380
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002381 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002382
2383 /* Validate the filesystem blocksize */
2384 if (!sb_set_blocksize(sb, blocksize)) {
2385 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2386 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002387 goto failed_mount;
2388 }
2389
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002390 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002391 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2392 offset = do_div(logical_sb_block, blocksize);
2393 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002394 if (!bh) {
2395 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002396 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002397 goto failed_mount;
2398 }
Mingming Cao617ba132006-10-11 01:20:53 -07002399 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002400 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002401 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002402 printk(KERN_ERR
2403 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002404 goto failed_mount;
2405 }
2406 }
2407
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002408 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2409 has_huge_files);
2410 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002411
Mingming Cao617ba132006-10-11 01:20:53 -07002412 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2413 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2414 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002415 } else {
2416 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2417 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002418 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002419 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002420 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002421 printk(KERN_ERR
2422 "EXT4-fs: unsupported inode size: %d\n",
2423 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002424 goto failed_mount;
2425 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002426 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2427 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002428 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002429 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2430 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002431 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002432 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002433 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002434 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002435 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002436 sbi->s_desc_size);
2437 goto failed_mount;
2438 }
2439 } else
2440 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002441 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002442 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002443 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002444 goto cantfind_ext4;
2445 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002446 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002447 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002448 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2449 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002450 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002451 sbi->s_sbh = bh;
2452 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002453 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2454 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002455 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002456 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2457 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002458 i = le32_to_cpu(es->s_flags);
2459 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2460 sbi->s_hash_unsigned = 3;
2461 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2462#ifdef __CHAR_UNSIGNED__
2463 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2464 sbi->s_hash_unsigned = 3;
2465#else
2466 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2467#endif
2468 sb->s_dirt = 1;
2469 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002470
2471 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002472 printk(KERN_ERR
2473 "EXT4-fs: #blocks per group too big: %lu\n",
2474 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475 goto failed_mount;
2476 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002477 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002478 printk(KERN_ERR
2479 "EXT4-fs: #inodes per group too big: %lu\n",
2480 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002481 goto failed_mount;
2482 }
2483
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002484 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002485 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002486 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002487 " too large to mount safely\n", sb->s_id);
2488 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002489 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002490 "enabled\n");
2491 goto failed_mount;
2492 }
2493
Mingming Cao617ba132006-10-11 01:20:53 -07002494 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2495 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002496
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002497 /*
2498 * It makes no sense for the first data block to be beyond the end
2499 * of the filesystem.
2500 */
2501 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2502 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2503 "block %u is beyond end of filesystem (%llu)\n",
2504 le32_to_cpu(es->s_first_data_block),
2505 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002506 goto failed_mount;
2507 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002508 blocks_count = (ext4_blocks_count(es) -
2509 le32_to_cpu(es->s_first_data_block) +
2510 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2511 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002512 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2513 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2514 "(block count %llu, first data block %u, "
2515 "blocks per group %lu)\n", sbi->s_groups_count,
2516 ext4_blocks_count(es),
2517 le32_to_cpu(es->s_first_data_block),
2518 EXT4_BLOCKS_PER_GROUP(sb));
2519 goto failed_mount;
2520 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002521 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002522 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2523 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002524 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002525 GFP_KERNEL);
2526 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002527 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002528 goto failed_mount;
2529 }
2530
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002531#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002532 if (ext4_proc_root)
2533 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002534#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002535
Pekka Enberg705895b2009-02-15 18:07:52 -05002536 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002537
2538 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002539 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002540 sbi->s_group_desc[i] = sb_bread(sb, block);
2541 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002542 printk(KERN_ERR "EXT4-fs: "
2543 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002544 db_count = i;
2545 goto failed_mount2;
2546 }
2547 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002548 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002549 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002550 goto failed_mount2;
2551 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002552 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2553 if (!ext4_fill_flex_info(sb)) {
2554 printk(KERN_ERR
2555 "EXT4-fs: unable to initialize "
2556 "flex_bg meta info!\n");
2557 goto failed_mount2;
2558 }
2559
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002560 sbi->s_gdb_count = db_count;
2561 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2562 spin_lock_init(&sbi->s_next_gen_lock);
2563
Peter Zijlstra833f4072007-10-16 23:25:45 -07002564 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2565 ext4_count_free_blocks(sb));
2566 if (!err) {
2567 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2568 ext4_count_free_inodes(sb));
2569 }
2570 if (!err) {
2571 err = percpu_counter_init(&sbi->s_dirs_counter,
2572 ext4_count_dirs(sb));
2573 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002574 if (!err) {
2575 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2576 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002577 if (err) {
2578 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2579 goto failed_mount3;
2580 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002581
Alex Tomasc9de5602008-01-29 00:19:52 -05002582 sbi->s_stripe = ext4_get_stripe_size(sbi);
2583
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002584 /*
2585 * set up enough so that it can read an inode
2586 */
Mingming Cao617ba132006-10-11 01:20:53 -07002587 sb->s_op = &ext4_sops;
2588 sb->s_export_op = &ext4_export_ops;
2589 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002590#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002591 sb->s_qcop = &ext4_qctl_operations;
2592 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002593#endif
2594 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2595
2596 sb->s_root = NULL;
2597
2598 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002599 EXT4_HAS_INCOMPAT_FEATURE(sb,
2600 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002601
2602 /*
2603 * The first inode we look at is the journal inode. Don't try
2604 * root first: it may be modified in the journal!
2605 */
2606 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002607 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2608 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002609 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002610 if (!(sb->s_flags & MS_RDONLY) &&
2611 EXT4_SB(sb)->s_journal->j_failed_commit) {
2612 printk(KERN_CRIT "EXT4-fs error (device %s): "
2613 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002614 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002615 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002616 if (test_opt(sb, ERRORS_RO)) {
2617 printk(KERN_CRIT
2618 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002619 sb->s_flags |= MS_RDONLY;
2620 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2621 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2622 }
2623 if (test_opt(sb, ERRORS_PANIC)) {
2624 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2625 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2626 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002627 goto failed_mount4;
2628 }
2629 }
Frank Mayhar03901312009-01-07 00:06:22 -05002630 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2631 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2632 printk(KERN_ERR "EXT4-fs: required journal recovery "
2633 "suppressed and not mounted read-only\n");
2634 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002635 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002636 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2637 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2638 sbi->s_journal = NULL;
2639 needs_recovery = 0;
2640 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002641 }
2642
Jose R. Santoseb40a092007-07-18 08:37:25 -04002643 if (ext4_blocks_count(es) > 0xffffffffULL &&
2644 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2645 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002646 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002647 goto failed_mount4;
2648 }
2649
Girish Shilamkar818d2762008-01-28 23:58:27 -05002650 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2651 jbd2_journal_set_features(sbi->s_journal,
2652 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2653 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2654 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2655 jbd2_journal_set_features(sbi->s_journal,
2656 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2657 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2658 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2659 } else {
2660 jbd2_journal_clear_features(sbi->s_journal,
2661 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2662 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2663 }
2664
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002665 /* We have now updated the journal if required, so we can
2666 * validate the data journaling mode. */
2667 switch (test_opt(sb, DATA_FLAGS)) {
2668 case 0:
2669 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002670 * capabilities: ORDERED_DATA if the journal can
2671 * cope, else JOURNAL_DATA
2672 */
Mingming Caodab291a2006-10-11 01:21:01 -07002673 if (jbd2_journal_check_available_features
2674 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002675 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2676 else
2677 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2678 break;
2679
Mingming Cao617ba132006-10-11 01:20:53 -07002680 case EXT4_MOUNT_ORDERED_DATA:
2681 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002682 if (!jbd2_journal_check_available_features
2683 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002684 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002685 "requested data journaling mode\n");
2686 goto failed_mount4;
2687 }
2688 default:
2689 break;
2690 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002691 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002692
Frank Mayhar03901312009-01-07 00:06:22 -05002693no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002694
2695 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002696 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2697 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002698 "its supported only with writeback mode\n");
2699 clear_opt(sbi->s_mount_opt, NOBH);
2700 }
2701 }
2702 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002703 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002704 * so we can safely mount the rest of the filesystem now.
2705 */
2706
David Howells1d1fe1e2008-02-07 00:15:37 -08002707 root = ext4_iget(sb, EXT4_ROOT_INO);
2708 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002709 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002710 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002711 goto failed_mount4;
2712 }
2713 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002714 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002715 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002716 goto failed_mount4;
2717 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002718 sb->s_root = d_alloc_root(root);
2719 if (!sb->s_root) {
2720 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2721 iput(root);
2722 ret = -ENOMEM;
2723 goto failed_mount4;
2724 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002725
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002726 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002727
2728 /* determine the minimum size of new large inodes, if present */
2729 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2730 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2731 EXT4_GOOD_OLD_INODE_SIZE;
2732 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2733 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2734 if (sbi->s_want_extra_isize <
2735 le16_to_cpu(es->s_want_extra_isize))
2736 sbi->s_want_extra_isize =
2737 le16_to_cpu(es->s_want_extra_isize);
2738 if (sbi->s_want_extra_isize <
2739 le16_to_cpu(es->s_min_extra_isize))
2740 sbi->s_want_extra_isize =
2741 le16_to_cpu(es->s_min_extra_isize);
2742 }
2743 }
2744 /* Check if enough inode space is available */
2745 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2746 sbi->s_inode_size) {
2747 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2748 EXT4_GOOD_OLD_INODE_SIZE;
2749 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2750 "available.\n");
2751 }
2752
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002753 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2754 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2755 "requested data journaling mode\n");
2756 clear_opt(sbi->s_mount_opt, DELALLOC);
2757 } else if (test_opt(sb, DELALLOC))
2758 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2759
2760 ext4_ext_init(sb);
2761 err = ext4_mb_init(sb, needs_recovery);
2762 if (err) {
2763 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2764 err);
2765 goto failed_mount4;
2766 }
2767
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002768 sbi->s_kobj.kset = ext4_kset;
2769 init_completion(&sbi->s_kobj_unregister);
2770 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2771 "%s", sb->s_id);
2772 if (err) {
2773 ext4_mb_release(sb);
2774 ext4_ext_release(sb);
2775 goto failed_mount4;
2776 };
2777
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002778 /*
2779 * akpm: core read_super() calls in here with the superblock locked.
2780 * That deadlocks, because orphan cleanup needs to lock the superblock
2781 * in numerous places. Here we just pop the lock - it's relatively
2782 * harmless, because we are now ready to accept write_super() requests,
2783 * and aviro says that's the only reason for hanging onto the
2784 * superblock lock.
2785 */
Mingming Cao617ba132006-10-11 01:20:53 -07002786 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2787 ext4_orphan_cleanup(sb, es);
2788 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002789 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002790 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002791 ext4_mark_recovery_complete(sb, es);
2792 }
2793 if (EXT4_SB(sb)->s_journal) {
2794 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2795 descr = " journalled data mode";
2796 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2797 descr = " ordered data mode";
2798 else
2799 descr = " writeback data mode";
2800 } else
2801 descr = "out journal";
2802
2803 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2804 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002805
2806 lock_kernel();
2807 return 0;
2808
Mingming Cao617ba132006-10-11 01:20:53 -07002809cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002810 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002811 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002812 sb->s_id);
2813 goto failed_mount;
2814
2815failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002816 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2817 if (sbi->s_journal) {
2818 jbd2_journal_destroy(sbi->s_journal);
2819 sbi->s_journal = NULL;
2820 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002821failed_mount3:
2822 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2823 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2824 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002825 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002826failed_mount2:
2827 for (i = 0; i < db_count; i++)
2828 brelse(sbi->s_group_desc[i]);
2829 kfree(sbi->s_group_desc);
2830failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002831 if (sbi->s_proc) {
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002832 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002833 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002834#ifdef CONFIG_QUOTA
2835 for (i = 0; i < MAXQUOTAS; i++)
2836 kfree(sbi->s_qf_names[i]);
2837#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002838 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002839 brelse(bh);
2840out_fail:
2841 sb->s_fs_info = NULL;
2842 kfree(sbi);
2843 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002844 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002845}
2846
2847/*
2848 * Setup any per-fs journal parameters now. We'll do this both on
2849 * initial mount, once the journal has been initialised but before we've
2850 * done any recovery; and again on any subsequent remount.
2851 */
Mingming Cao617ba132006-10-11 01:20:53 -07002852static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002853{
Mingming Cao617ba132006-10-11 01:20:53 -07002854 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002855
Theodore Ts'o30773842009-01-03 20:27:38 -05002856 journal->j_commit_interval = sbi->s_commit_interval;
2857 journal->j_min_batch_time = sbi->s_min_batch_time;
2858 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002859
2860 spin_lock(&journal->j_state_lock);
2861 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002862 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002863 else
Mingming Caodab291a2006-10-11 01:21:01 -07002864 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002865 if (test_opt(sb, DATA_ERR_ABORT))
2866 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2867 else
2868 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002869 spin_unlock(&journal->j_state_lock);
2870}
2871
Mingming Cao617ba132006-10-11 01:20:53 -07002872static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002873 unsigned int journal_inum)
2874{
2875 struct inode *journal_inode;
2876 journal_t *journal;
2877
Frank Mayhar03901312009-01-07 00:06:22 -05002878 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2879
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002880 /* First, test for the existence of a valid inode on disk. Bad
2881 * things happen if we iget() an unused inode, as the subsequent
2882 * iput() will try to delete it. */
2883
David Howells1d1fe1e2008-02-07 00:15:37 -08002884 journal_inode = ext4_iget(sb, journal_inum);
2885 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002886 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002887 return NULL;
2888 }
2889 if (!journal_inode->i_nlink) {
2890 make_bad_inode(journal_inode);
2891 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002892 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002893 return NULL;
2894 }
2895
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002896 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002897 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002898 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002899 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002900 iput(journal_inode);
2901 return NULL;
2902 }
2903
Mingming Caodab291a2006-10-11 01:21:01 -07002904 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002905 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002906 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002907 iput(journal_inode);
2908 return NULL;
2909 }
2910 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002911 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002912 return journal;
2913}
2914
Mingming Cao617ba132006-10-11 01:20:53 -07002915static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916 dev_t j_dev)
2917{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002918 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002919 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002920 ext4_fsblk_t start;
2921 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002922 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002923 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002924 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002925 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002926 struct block_device *bdev;
2927
Frank Mayhar03901312009-01-07 00:06:22 -05002928 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2929
Mingming Cao617ba132006-10-11 01:20:53 -07002930 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002931 if (bdev == NULL)
2932 return NULL;
2933
2934 if (bd_claim(bdev, sb)) {
2935 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05002936 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002937 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002938 return NULL;
2939 }
2940
2941 blocksize = sb->s_blocksize;
2942 hblock = bdev_hardsect_size(bdev);
2943 if (blocksize < hblock) {
2944 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002945 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002946 goto out_bdev;
2947 }
2948
Mingming Cao617ba132006-10-11 01:20:53 -07002949 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2950 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002951 set_blocksize(bdev, blocksize);
2952 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002953 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002954 "external journal\n");
2955 goto out_bdev;
2956 }
2957
Mingming Cao617ba132006-10-11 01:20:53 -07002958 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2959 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002960 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002961 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2962 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002963 "bad superblock\n");
2964 brelse(bh);
2965 goto out_bdev;
2966 }
2967
Mingming Cao617ba132006-10-11 01:20:53 -07002968 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2969 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002970 brelse(bh);
2971 goto out_bdev;
2972 }
2973
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002974 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002975 start = sb_block + 1;
2976 brelse(bh); /* we're done with the superblock */
2977
Mingming Caodab291a2006-10-11 01:21:01 -07002978 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979 start, len, blocksize);
2980 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002981 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002982 goto out_bdev;
2983 }
2984 journal->j_private = sb;
2985 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2986 wait_on_buffer(journal->j_sb_buffer);
2987 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002988 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002989 goto out_journal;
2990 }
2991 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002992 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002993 "user (unsupported) - %d\n",
2994 be32_to_cpu(journal->j_superblock->s_nr_users));
2995 goto out_journal;
2996 }
Mingming Cao617ba132006-10-11 01:20:53 -07002997 EXT4_SB(sb)->journal_bdev = bdev;
2998 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002999 return journal;
3000out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003001 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003002out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003003 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003004 return NULL;
3005}
3006
Mingming Cao617ba132006-10-11 01:20:53 -07003007static int ext4_load_journal(struct super_block *sb,
3008 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003009 unsigned long journal_devnum)
3010{
3011 journal_t *journal;
3012 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3013 dev_t journal_dev;
3014 int err = 0;
3015 int really_read_only;
3016
Frank Mayhar03901312009-01-07 00:06:22 -05003017 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3018
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003019 if (journal_devnum &&
3020 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003021 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003022 "numbers have changed\n");
3023 journal_dev = new_decode_dev(journal_devnum);
3024 } else
3025 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3026
3027 really_read_only = bdev_read_only(sb->s_bdev);
3028
3029 /*
3030 * Are we loading a blank journal or performing recovery after a
3031 * crash? For recovery, we need to check in advance whether we
3032 * can get read-write access to the device.
3033 */
3034
Mingming Cao617ba132006-10-11 01:20:53 -07003035 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003036 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003037 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003038 "required on readonly filesystem.\n");
3039 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07003040 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003041 "unavailable, cannot proceed.\n");
3042 return -EROFS;
3043 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003044 printk(KERN_INFO "EXT4-fs: write access will "
3045 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003046 }
3047 }
3048
3049 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07003050 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003051 "and inode journals!\n");
3052 return -EINVAL;
3053 }
3054
3055 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003056 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003057 return -EINVAL;
3058 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003059 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003060 return -EINVAL;
3061 }
3062
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003063 if (journal->j_flags & JBD2_BARRIER)
3064 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3065 else
3066 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3067
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003068 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003069 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003070 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003071 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003072 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003073 return err;
3074 }
3075 }
3076
Mingming Cao617ba132006-10-11 01:20:53 -07003077 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003078 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003079 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003080 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003081
3082 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003083 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003084 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003085 return err;
3086 }
3087
Mingming Cao617ba132006-10-11 01:20:53 -07003088 EXT4_SB(sb)->s_journal = journal;
3089 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003090
3091 if (journal_devnum &&
3092 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3093 es->s_journal_dev = cpu_to_le32(journal_devnum);
3094 sb->s_dirt = 1;
3095
3096 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07003097 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003098 }
3099
3100 return 0;
3101}
3102
Takashi Satoc4be0c12009-01-09 16:40:58 -08003103static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003104 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003105{
Mingming Cao617ba132006-10-11 01:20:53 -07003106 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003107 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003108
3109 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003110 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003111 if (buffer_write_io_error(sbh)) {
3112 /*
3113 * Oh, dear. A previous attempt to write the
3114 * superblock failed. This could happen because the
3115 * USB device was yanked out. Or it could happen to
3116 * be a transient write error and maybe the block will
3117 * be remapped. Nothing we can do but to retry the
3118 * write and hope for the best.
3119 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05003120 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003121 "superblock detected for %s.\n", sb->s_id);
3122 clear_buffer_write_io_error(sbh);
3123 set_buffer_uptodate(sbh);
3124 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003125 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003126 es->s_kbytes_written =
3127 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3128 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3129 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003130 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3131 &EXT4_SB(sb)->s_freeblocks_counter));
3132 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3133 &EXT4_SB(sb)->s_freeinodes_counter));
3134
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003135 BUFFER_TRACE(sbh, "marking dirty");
3136 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003137 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003138 error = sync_dirty_buffer(sbh);
3139 if (error)
3140 return error;
3141
3142 error = buffer_write_io_error(sbh);
3143 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05003144 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003145 "superblock for %s.\n", sb->s_id);
3146 clear_buffer_write_io_error(sbh);
3147 set_buffer_uptodate(sbh);
3148 }
3149 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003150 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003151}
3152
3153
3154/*
3155 * Have we just finished recovery? If so, and if we are mounting (or
3156 * remounting) the filesystem readonly, then we will end up with a
3157 * consistent fs on disk. Record that fact.
3158 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003159static void ext4_mark_recovery_complete(struct super_block *sb,
3160 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003161{
Mingming Cao617ba132006-10-11 01:20:53 -07003162 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003163
Frank Mayhar03901312009-01-07 00:06:22 -05003164 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3165 BUG_ON(journal != NULL);
3166 return;
3167 }
Mingming Caodab291a2006-10-11 01:21:01 -07003168 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003169 if (jbd2_journal_flush(journal) < 0)
3170 goto out;
3171
Jan Kara32c37732007-07-15 23:41:09 -07003172 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07003173 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003174 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003175 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003176 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003177 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003178 }
Jan Kara32c37732007-07-15 23:41:09 -07003179 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003180
3181out:
Mingming Caodab291a2006-10-11 01:21:01 -07003182 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003183}
3184
3185/*
3186 * If we are mounting (or read-write remounting) a filesystem whose journal
3187 * has recorded an error from a previous lifetime, move that error to the
3188 * main filesystem now.
3189 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003190static void ext4_clear_journal_err(struct super_block *sb,
3191 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003192{
3193 journal_t *journal;
3194 int j_errno;
3195 const char *errstr;
3196
Frank Mayhar03901312009-01-07 00:06:22 -05003197 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3198
Mingming Cao617ba132006-10-11 01:20:53 -07003199 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003200
3201 /*
3202 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003203 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003204 */
3205
Mingming Caodab291a2006-10-11 01:21:01 -07003206 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003207 if (j_errno) {
3208 char nbuf[16];
3209
Mingming Cao617ba132006-10-11 01:20:53 -07003210 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003211 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003212 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003213 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003214 "filesystem check.");
3215
Mingming Cao617ba132006-10-11 01:20:53 -07003216 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3217 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003218 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003219
Mingming Caodab291a2006-10-11 01:21:01 -07003220 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003221 }
3222}
3223
3224/*
3225 * Force the running and committing transactions to commit,
3226 * and wait on the commit.
3227 */
Mingming Cao617ba132006-10-11 01:20:53 -07003228int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003229{
3230 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003231 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003232
3233 if (sb->s_flags & MS_RDONLY)
3234 return 0;
3235
Mingming Cao617ba132006-10-11 01:20:53 -07003236 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003237 if (journal) {
3238 sb->s_dirt = 0;
3239 ret = ext4_journal_force_commit(journal);
3240 }
3241
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003242 return ret;
3243}
3244
3245/*
Mingming Cao617ba132006-10-11 01:20:53 -07003246 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003247 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003248 * point. (We can probably nuke this function altogether, and remove
3249 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003250 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003251static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003252{
Frank Mayhar03901312009-01-07 00:06:22 -05003253 if (EXT4_SB(sb)->s_journal) {
3254 if (mutex_trylock(&sb->s_lock) != 0)
3255 BUG();
3256 sb->s_dirt = 0;
3257 } else {
3258 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3259 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003260}
3261
Mingming Cao617ba132006-10-11 01:20:53 -07003262static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003263{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003264 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003265 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003266
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003267 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003268 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003269 if (EXT4_SB(sb)->s_journal) {
Jan Kara9eddacf2009-02-10 06:46:05 -05003270 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal,
3271 &target)) {
3272 if (wait)
3273 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal,
3274 target);
3275 }
Frank Mayhar03901312009-01-07 00:06:22 -05003276 } else {
3277 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
3278 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003279 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003280}
3281
3282/*
3283 * LVM calls this function before a (read-only) snapshot is created. This
3284 * gives us a chance to flush the journal completely and mark the fs clean.
3285 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003286static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003287{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003288 int error = 0;
3289 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003290 sb->s_dirt = 0;
3291
3292 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003293 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003294
Frank Mayhar03901312009-01-07 00:06:22 -05003295 if (journal) {
3296 /* Now we set up the journal barrier. */
3297 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003298
Frank Mayhar03901312009-01-07 00:06:22 -05003299 /*
3300 * We don't want to clear needs_recovery flag when we
3301 * failed to flush the journal.
3302 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003303 error = jbd2_journal_flush(journal);
3304 if (error < 0)
3305 goto out;
Frank Mayhar03901312009-01-07 00:06:22 -05003306 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003307
3308 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003309 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003310 error = ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3311 if (error)
3312 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003313 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003314 return 0;
3315out:
3316 jbd2_journal_unlock_updates(journal);
3317 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003318}
3319
3320/*
3321 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3322 * flag here, even though the filesystem is not technically dirty yet.
3323 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003324static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003325{
Frank Mayhar03901312009-01-07 00:06:22 -05003326 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003327 lock_super(sb);
3328 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003329 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3330 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003332 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003333 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003334 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003335}
3336
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003337static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003338{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003339 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003340 struct ext4_sb_info *sbi = EXT4_SB(sb);
3341 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003342 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003343 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003344 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003345 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003346 int err;
3347#ifdef CONFIG_QUOTA
3348 int i;
3349#endif
3350
3351 /* Store the original options */
3352 old_sb_flags = sb->s_flags;
3353 old_opts.s_mount_opt = sbi->s_mount_opt;
3354 old_opts.s_resuid = sbi->s_resuid;
3355 old_opts.s_resgid = sbi->s_resgid;
3356 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003357 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3358 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003359#ifdef CONFIG_QUOTA
3360 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3361 for (i = 0; i < MAXQUOTAS; i++)
3362 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3363#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003364 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3365 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003366
3367 /*
3368 * Allow the "check" option to be passed as a remount option.
3369 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003370 if (!parse_options(data, sb, NULL, &journal_ioprio,
3371 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003372 err = -EINVAL;
3373 goto restore_opts;
3374 }
3375
Mingming Cao617ba132006-10-11 01:20:53 -07003376 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003377 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003378
3379 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003380 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003381
3382 es = sbi->s_es;
3383
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003384 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003385 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003386 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3387 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003388
3389 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003390 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003391 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003392 err = -EROFS;
3393 goto restore_opts;
3394 }
3395
3396 if (*flags & MS_RDONLY) {
3397 /*
3398 * First of all, the unconditional stuff we have to do
3399 * to disable replay of the journal when we next remount
3400 */
3401 sb->s_flags |= MS_RDONLY;
3402
3403 /*
3404 * OK, test if we are remounting a valid rw partition
3405 * readonly, and if so set the rdonly flag and then
3406 * mark the partition as valid again.
3407 */
Mingming Cao617ba132006-10-11 01:20:53 -07003408 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3409 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003410 es->s_state = cpu_to_le16(sbi->s_mount_state);
3411
Jan Kara32c37732007-07-15 23:41:09 -07003412 /*
3413 * We have to unlock super so that we can wait for
3414 * transactions.
3415 */
Frank Mayhar03901312009-01-07 00:06:22 -05003416 if (sbi->s_journal) {
3417 unlock_super(sb);
3418 ext4_mark_recovery_complete(sb, es);
3419 lock_super(sb);
3420 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003421 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003422 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003423 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3424 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3425 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003426 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003427 "optional features (%x).\n", sb->s_id,
3428 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3429 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003430 err = -EROFS;
3431 goto restore_opts;
3432 }
Eric Sandeenead65962007-02-10 01:46:08 -08003433
3434 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003435 * Make sure the group descriptor checksums
3436 * are sane. If they aren't, refuse to
3437 * remount r/w.
3438 */
3439 for (g = 0; g < sbi->s_groups_count; g++) {
3440 struct ext4_group_desc *gdp =
3441 ext4_get_group_desc(sb, g, NULL);
3442
3443 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3444 printk(KERN_ERR
3445 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003446 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003447 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3448 le16_to_cpu(gdp->bg_checksum));
3449 err = -EINVAL;
3450 goto restore_opts;
3451 }
3452 }
3453
3454 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003455 * If we have an unprocessed orphan list hanging
3456 * around from a previously readonly bdev mount,
3457 * require a full umount/remount for now.
3458 */
3459 if (es->s_last_orphan) {
3460 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3461 "remount RDWR because of unprocessed "
3462 "orphan inode list. Please "
3463 "umount/remount instead.\n",
3464 sb->s_id);
3465 err = -EINVAL;
3466 goto restore_opts;
3467 }
3468
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003469 /*
3470 * Mounting a RDONLY partition read-write, so reread
3471 * and store the current valid flag. (It may have
3472 * been changed by e2fsck since we originally mounted
3473 * the partition.)
3474 */
Frank Mayhar03901312009-01-07 00:06:22 -05003475 if (sbi->s_journal)
3476 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003477 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003478 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003479 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003480 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003481 sb->s_flags &= ~MS_RDONLY;
3482 }
3483 }
Frank Mayhar03901312009-01-07 00:06:22 -05003484 if (sbi->s_journal == NULL)
3485 ext4_commit_super(sb, es, 1);
3486
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003487#ifdef CONFIG_QUOTA
3488 /* Release old quota file names */
3489 for (i = 0; i < MAXQUOTAS; i++)
3490 if (old_opts.s_qf_names[i] &&
3491 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3492 kfree(old_opts.s_qf_names[i]);
3493#endif
3494 return 0;
3495restore_opts:
3496 sb->s_flags = old_sb_flags;
3497 sbi->s_mount_opt = old_opts.s_mount_opt;
3498 sbi->s_resuid = old_opts.s_resuid;
3499 sbi->s_resgid = old_opts.s_resgid;
3500 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003501 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3502 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003503#ifdef CONFIG_QUOTA
3504 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3505 for (i = 0; i < MAXQUOTAS; i++) {
3506 if (sbi->s_qf_names[i] &&
3507 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3508 kfree(sbi->s_qf_names[i]);
3509 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3510 }
3511#endif
3512 return err;
3513}
3514
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003515static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003516{
3517 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003518 struct ext4_sb_info *sbi = EXT4_SB(sb);
3519 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003520 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003521
Badari Pulavarty5e700302007-07-15 23:42:00 -07003522 if (test_opt(sb, MINIX_DF)) {
3523 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003524 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003525 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003526 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003527 smp_rmb();
3528
3529 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003530 * Compute the overhead (FS structures). This is constant
3531 * for a given filesystem unless the number of block groups
3532 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003533 */
3534
3535 /*
3536 * All of the blocks before first_data_block are
3537 * overhead
3538 */
3539 overhead = le32_to_cpu(es->s_first_data_block);
3540
3541 /*
3542 * Add the overhead attributed to the superblock and
3543 * block group descriptors. If the sparse superblocks
3544 * feature is turned on, then not all groups have this.
3545 */
3546 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003547 overhead += ext4_bg_has_super(sb, i) +
3548 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003549 cond_resched();
3550 }
3551
3552 /*
3553 * Every block group has an inode bitmap, a block
3554 * bitmap, and an inode table.
3555 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003556 overhead += ngroups * (2 + sbi->s_itb_per_group);
3557 sbi->s_overhead_last = overhead;
3558 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003559 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003560 }
3561
Mingming Cao617ba132006-10-11 01:20:53 -07003562 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003563 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003564 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003565 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3566 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003567 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003568 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3569 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003570 buf->f_bavail = 0;
3571 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003572 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003573 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003574 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003575 fsid = le64_to_cpup((void *)es->s_uuid) ^
3576 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3577 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3578 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003579 return 0;
3580}
3581
3582/* Helper function for writing quotas on sync - we need to start transaction before quota file
3583 * is locked for write. Otherwise the are possible deadlocks:
3584 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003585 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003586 * jbd2_journal_start() write_dquot()
3587 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003588 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003589 *
3590 */
3591
3592#ifdef CONFIG_QUOTA
3593
3594static inline struct inode *dquot_to_inode(struct dquot *dquot)
3595{
3596 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3597}
3598
Mingming Cao617ba132006-10-11 01:20:53 -07003599static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003600{
3601 int ret, err;
3602 handle_t *handle;
3603 struct inode *inode;
3604
3605 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003606 handle = ext4_journal_start(inode,
3607 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003608 if (IS_ERR(handle))
3609 return PTR_ERR(handle);
3610 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003611 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003612 if (!ret)
3613 ret = err;
3614 return ret;
3615}
3616
Mingming Cao617ba132006-10-11 01:20:53 -07003617static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003618{
3619 int ret, err;
3620 handle_t *handle;
3621
Mingming Cao617ba132006-10-11 01:20:53 -07003622 handle = ext4_journal_start(dquot_to_inode(dquot),
3623 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003624 if (IS_ERR(handle))
3625 return PTR_ERR(handle);
3626 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003627 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003628 if (!ret)
3629 ret = err;
3630 return ret;
3631}
3632
Mingming Cao617ba132006-10-11 01:20:53 -07003633static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003634{
3635 int ret, err;
3636 handle_t *handle;
3637
Mingming Cao617ba132006-10-11 01:20:53 -07003638 handle = ext4_journal_start(dquot_to_inode(dquot),
3639 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003640 if (IS_ERR(handle)) {
3641 /* Release dquot anyway to avoid endless cycle in dqput() */
3642 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003643 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003644 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003645 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003646 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003647 if (!ret)
3648 ret = err;
3649 return ret;
3650}
3651
Mingming Cao617ba132006-10-11 01:20:53 -07003652static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003653{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003654 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003655 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3656 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003657 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003658 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003659 } else {
3660 return dquot_mark_dquot_dirty(dquot);
3661 }
3662}
3663
Mingming Cao617ba132006-10-11 01:20:53 -07003664static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003665{
3666 int ret, err;
3667 handle_t *handle;
3668
3669 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003670 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003671 if (IS_ERR(handle))
3672 return PTR_ERR(handle);
3673 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003674 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003675 if (!ret)
3676 ret = err;
3677 return ret;
3678}
3679
3680/*
3681 * Turn on quotas during mount time - we need to find
3682 * the quota file and such...
3683 */
Mingming Cao617ba132006-10-11 01:20:53 -07003684static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003685{
Mingming Cao617ba132006-10-11 01:20:53 -07003686 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3687 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003688}
3689
3690/*
3691 * Standard function to be called on quota_on
3692 */
Mingming Cao617ba132006-10-11 01:20:53 -07003693static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003694 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003695{
3696 int err;
Al Viro82646132008-08-02 00:57:06 -04003697 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003698
3699 if (!test_opt(sb, QUOTA))
3700 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003701 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003702 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003703 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003704
Al Viro82646132008-08-02 00:57:06 -04003705 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003706 if (err)
3707 return err;
Jan Kara06235432008-05-13 19:11:51 -04003708
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003709 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003710 if (path.mnt->mnt_sb != sb) {
3711 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003712 return -EXDEV;
3713 }
Jan Kara06235432008-05-13 19:11:51 -04003714 /* Journaling quota? */
3715 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003716 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003717 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003718 printk(KERN_WARNING
3719 "EXT4-fs: Quota file not on filesystem root. "
3720 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003721 }
Jan Kara06235432008-05-13 19:11:51 -04003722
3723 /*
3724 * When we journal data on quota file, we have to flush journal to see
3725 * all updates to the file when we bypass pagecache...
3726 */
Frank Mayhar03901312009-01-07 00:06:22 -05003727 if (EXT4_SB(sb)->s_journal &&
3728 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003729 /*
3730 * We don't need to lock updates but journal_flush() could
3731 * otherwise be livelocked...
3732 */
3733 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003734 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003735 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003736 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003737 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003738 return err;
3739 }
Jan Kara06235432008-05-13 19:11:51 -04003740 }
3741
Al Viro82646132008-08-02 00:57:06 -04003742 err = vfs_quota_on_path(sb, type, format_id, &path);
3743 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003744 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003745}
3746
3747/* Read data from quotafile - avoid pagecache and such because we cannot afford
3748 * acquiring the locks... As quota files are never truncated and quota code
3749 * itself serializes the operations (and noone else should touch the files)
3750 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003751static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003752 size_t len, loff_t off)
3753{
3754 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003755 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003756 int err = 0;
3757 int offset = off & (sb->s_blocksize - 1);
3758 int tocopy;
3759 size_t toread;
3760 struct buffer_head *bh;
3761 loff_t i_size = i_size_read(inode);
3762
3763 if (off > i_size)
3764 return 0;
3765 if (off+len > i_size)
3766 len = i_size-off;
3767 toread = len;
3768 while (toread > 0) {
3769 tocopy = sb->s_blocksize - offset < toread ?
3770 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003771 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003772 if (err)
3773 return err;
3774 if (!bh) /* A hole? */
3775 memset(data, 0, tocopy);
3776 else
3777 memcpy(data, bh->b_data+offset, tocopy);
3778 brelse(bh);
3779 offset = 0;
3780 toread -= tocopy;
3781 data += tocopy;
3782 blk++;
3783 }
3784 return len;
3785}
3786
3787/* Write to quotafile (we know the transaction is already started and has
3788 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003789static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003790 const char *data, size_t len, loff_t off)
3791{
3792 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003793 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003794 int err = 0;
3795 int offset = off & (sb->s_blocksize - 1);
3796 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003797 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003798 size_t towrite = len;
3799 struct buffer_head *bh;
3800 handle_t *handle = journal_current_handle();
3801
Frank Mayhar03901312009-01-07 00:06:22 -05003802 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003803 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003804 " cancelled because transaction is not started.\n",
3805 (unsigned long long)off, (unsigned long long)len);
3806 return -EIO;
3807 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003808 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3809 while (towrite > 0) {
3810 tocopy = sb->s_blocksize - offset < towrite ?
3811 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003812 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003813 if (!bh)
3814 goto out;
3815 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003816 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003817 if (err) {
3818 brelse(bh);
3819 goto out;
3820 }
3821 }
3822 lock_buffer(bh);
3823 memcpy(bh->b_data+offset, data, tocopy);
3824 flush_dcache_page(bh->b_page);
3825 unlock_buffer(bh);
3826 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003827 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003828 else {
3829 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003830 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003831 mark_buffer_dirty(bh);
3832 }
3833 brelse(bh);
3834 if (err)
3835 goto out;
3836 offset = 0;
3837 towrite -= tocopy;
3838 data += tocopy;
3839 blk++;
3840 }
3841out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003842 if (len == towrite) {
3843 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003844 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003845 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003846 if (inode->i_size < off+len-towrite) {
3847 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003848 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003849 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003850 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003851 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003852 mutex_unlock(&inode->i_mutex);
3853 return len - towrite;
3854}
3855
3856#endif
3857
Mingming Cao617ba132006-10-11 01:20:53 -07003858static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003859 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3860{
Mingming Cao617ba132006-10-11 01:20:53 -07003861 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003862}
3863
Theodore Ts'o03010a32008-10-10 20:02:48 -04003864static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003865 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003866 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003867 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003868 .kill_sb = kill_block_super,
3869 .fs_flags = FS_REQUIRES_DEV,
3870};
3871
Theodore Ts'o03010a32008-10-10 20:02:48 -04003872#ifdef CONFIG_EXT4DEV_COMPAT
3873static int ext4dev_get_sb(struct file_system_type *fs_type,
3874 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3875{
3876 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3877 "to mount using ext4\n");
3878 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3879 "will go away by 2.6.31\n");
3880 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3881}
3882
3883static struct file_system_type ext4dev_fs_type = {
3884 .owner = THIS_MODULE,
3885 .name = "ext4dev",
3886 .get_sb = ext4dev_get_sb,
3887 .kill_sb = kill_block_super,
3888 .fs_flags = FS_REQUIRES_DEV,
3889};
3890MODULE_ALIAS("ext4dev");
3891#endif
3892
Mingming Cao617ba132006-10-11 01:20:53 -07003893static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003894{
Alex Tomasc9de5602008-01-29 00:19:52 -05003895 int err;
3896
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003897 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3898 if (!ext4_kset)
3899 return -ENOMEM;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003900 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003901 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003902 if (err)
3903 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003904
3905 err = init_ext4_xattr();
3906 if (err)
3907 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003908 err = init_inodecache();
3909 if (err)
3910 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003911 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003912 if (err)
3913 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003914#ifdef CONFIG_EXT4DEV_COMPAT
3915 err = register_filesystem(&ext4dev_fs_type);
3916 if (err) {
3917 unregister_filesystem(&ext4_fs_type);
3918 goto out;
3919 }
3920#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003921 return 0;
3922out:
3923 destroy_inodecache();
3924out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003925 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003926out2:
3927 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003928 return err;
3929}
3930
Mingming Cao617ba132006-10-11 01:20:53 -07003931static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003932{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003933 unregister_filesystem(&ext4_fs_type);
3934#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003935 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003936#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003937 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003938 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003939 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003940 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003941 kset_unregister(ext4_kset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003942}
3943
3944MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05003945MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003946MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003947module_init(init_ext4_fs)
3948module_exit(exit_ext4_fs)