blob: 2883d4318c228d9d4cc87a7132ec30b1eeeec394 [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) {
582 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -0400583 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -0400584 }
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400585 kobject_del(&sbi->s_kobj);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700586
587 for (i = 0; i < sbi->s_gdb_count; i++)
588 brelse(sbi->s_group_desc[i]);
589 kfree(sbi->s_group_desc);
Jose R. Santos772cb7c2008-07-11 19:27:31 -0400590 kfree(sbi->s_flex_groups);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700591 percpu_counter_destroy(&sbi->s_freeblocks_counter);
592 percpu_counter_destroy(&sbi->s_freeinodes_counter);
593 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -0400594 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700595 brelse(sbi->s_sbh);
596#ifdef CONFIG_QUOTA
597 for (i = 0; i < MAXQUOTAS; i++)
598 kfree(sbi->s_qf_names[i]);
599#endif
600
601 /* Debugging code just in case the in-memory inode orphan list
602 * isn't empty. The on-disk one can be non-empty if we've
603 * detected an error and taken the fs readonly, but the
604 * in-memory list had better be clean by this point. */
605 if (!list_empty(&sbi->s_orphan))
606 dump_orphan_list(sb, sbi);
607 J_ASSERT(list_empty(&sbi->s_orphan));
608
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700609 invalidate_bdev(sb->s_bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700610 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
611 /*
612 * Invalidate the journal device's buffers. We don't want them
613 * floating about in memory - the physical journal device may
614 * hotswapped, and it breaks the `ro-after' testing code.
615 */
616 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700617 invalidate_bdev(sbi->journal_bdev);
Mingming Cao617ba132006-10-11 01:20:53 -0700618 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700619 }
620 sb->s_fs_info = NULL;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -0400621 /*
622 * Now that we are completely done shutting down the
623 * superblock, we need to actually destroy the kobject.
624 */
625 unlock_kernel();
626 unlock_super(sb);
627 kobject_put(&sbi->s_kobj);
628 wait_for_completion(&sbi->s_kobj_unregister);
629 lock_super(sb);
630 lock_kernel();
Pekka Enberg705895b2009-02-15 18:07:52 -0500631 kfree(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700632 kfree(sbi);
633 return;
634}
635
Christoph Lametere18b8902006-12-06 20:33:20 -0800636static struct kmem_cache *ext4_inode_cachep;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700637
638/*
639 * Called inside transaction, so use GFP_NOFS
640 */
Mingming Cao617ba132006-10-11 01:20:53 -0700641static struct inode *ext4_alloc_inode(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700642{
Mingming Cao617ba132006-10-11 01:20:53 -0700643 struct ext4_inode_info *ei;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700644
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800645 ei = kmem_cache_alloc(ext4_inode_cachep, GFP_NOFS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700646 if (!ei)
647 return NULL;
Theodore Ts'o03010a32008-10-10 20:02:48 -0400648#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700649 ei->i_acl = EXT4_ACL_NOT_CACHED;
650 ei->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700651#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700652 ei->vfs_inode.i_version = 1;
Aneesh Kumar K.V91246c02008-08-19 21:14:52 -0400653 ei->vfs_inode.i_data.writeback_index = 0;
Alex Tomasa86c6182006-10-11 01:21:03 -0700654 memset(&ei->i_cached_extent, 0, sizeof(struct ext4_ext_cache));
Alex Tomasc9de5602008-01-29 00:19:52 -0500655 INIT_LIST_HEAD(&ei->i_prealloc_list);
656 spin_lock_init(&ei->i_prealloc_lock);
Frank Mayhar03901312009-01-07 00:06:22 -0500657 /*
658 * Note: We can be called before EXT4_SB(sb)->s_journal is set,
659 * therefore it can be null here. Don't check it, just initialize
660 * jinode.
661 */
Jan Kara678aaf42008-07-11 19:27:31 -0400662 jbd2_journal_init_jbd_inode(&ei->jinode, &ei->vfs_inode);
Mingming Caod2a17632008-07-14 17:52:37 -0400663 ei->i_reserved_data_blocks = 0;
664 ei->i_reserved_meta_blocks = 0;
665 ei->i_allocated_meta_blocks = 0;
666 ei->i_delalloc_reserved_flag = 0;
667 spin_lock_init(&(ei->i_block_reservation_lock));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700668 return &ei->vfs_inode;
669}
670
Mingming Cao617ba132006-10-11 01:20:53 -0700671static void ext4_destroy_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700672{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700673 if (!list_empty(&(EXT4_I(inode)->i_orphan))) {
674 printk("EXT4 Inode %p: orphan list check failed!\n",
675 EXT4_I(inode));
676 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
677 EXT4_I(inode), sizeof(struct ext4_inode_info),
678 true);
679 dump_stack();
680 }
Mingming Cao617ba132006-10-11 01:20:53 -0700681 kmem_cache_free(ext4_inode_cachep, EXT4_I(inode));
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700682}
683
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700684static void init_once(void *foo)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700685{
Mingming Cao617ba132006-10-11 01:20:53 -0700686 struct ext4_inode_info *ei = (struct ext4_inode_info *) foo;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700687
Christoph Lametera35afb82007-05-16 22:10:57 -0700688 INIT_LIST_HEAD(&ei->i_orphan);
Theodore Ts'o03010a32008-10-10 20:02:48 -0400689#ifdef CONFIG_EXT4_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700690 init_rwsem(&ei->xattr_sem);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700691#endif
Aneesh Kumar K.V0e855ac2008-01-28 23:58:26 -0500692 init_rwsem(&ei->i_data_sem);
Christoph Lametera35afb82007-05-16 22:10:57 -0700693 inode_init_once(&ei->vfs_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700694}
695
696static int init_inodecache(void)
697{
Mingming Cao617ba132006-10-11 01:20:53 -0700698 ext4_inode_cachep = kmem_cache_create("ext4_inode_cache",
699 sizeof(struct ext4_inode_info),
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700700 0, (SLAB_RECLAIM_ACCOUNT|
701 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900702 init_once);
Mingming Cao617ba132006-10-11 01:20:53 -0700703 if (ext4_inode_cachep == NULL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700704 return -ENOMEM;
705 return 0;
706}
707
708static void destroy_inodecache(void)
709{
Mingming Cao617ba132006-10-11 01:20:53 -0700710 kmem_cache_destroy(ext4_inode_cachep);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700711}
712
Mingming Cao617ba132006-10-11 01:20:53 -0700713static void ext4_clear_inode(struct inode *inode)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700714{
Theodore Ts'o03010a32008-10-10 20:02:48 -0400715#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -0700716 if (EXT4_I(inode)->i_acl &&
717 EXT4_I(inode)->i_acl != EXT4_ACL_NOT_CACHED) {
718 posix_acl_release(EXT4_I(inode)->i_acl);
719 EXT4_I(inode)->i_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700720 }
Mingming Cao617ba132006-10-11 01:20:53 -0700721 if (EXT4_I(inode)->i_default_acl &&
722 EXT4_I(inode)->i_default_acl != EXT4_ACL_NOT_CACHED) {
723 posix_acl_release(EXT4_I(inode)->i_default_acl);
724 EXT4_I(inode)->i_default_acl = EXT4_ACL_NOT_CACHED;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700725 }
726#endif
Theodore Ts'oc2ea3fd2008-10-10 09:40:52 -0400727 ext4_discard_preallocations(inode);
Frank Mayhar03901312009-01-07 00:06:22 -0500728 if (EXT4_JOURNAL(inode))
729 jbd2_journal_release_jbd_inode(EXT4_SB(inode->i_sb)->s_journal,
Jan Kara678aaf42008-07-11 19:27:31 -0400730 &EXT4_I(inode)->jinode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700731}
732
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -0400733static inline void ext4_show_quota_options(struct seq_file *seq,
734 struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700735{
736#if defined(CONFIG_QUOTA)
Mingming Cao617ba132006-10-11 01:20:53 -0700737 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700738
739 if (sbi->s_jquota_fmt)
740 seq_printf(seq, ",jqfmt=%s",
Theodore Ts'oaf5bc922008-09-08 22:25:24 -0400741 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold" : "vfsv0");
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700742
743 if (sbi->s_qf_names[USRQUOTA])
744 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
745
746 if (sbi->s_qf_names[GRPQUOTA])
747 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
748
Mingming Cao617ba132006-10-11 01:20:53 -0700749 if (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700750 seq_puts(seq, ",usrquota");
751
Mingming Cao617ba132006-10-11 01:20:53 -0700752 if (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700753 seq_puts(seq, ",grpquota");
754#endif
755}
756
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700757/*
758 * Show an option if
759 * - it's set to a non-default value OR
760 * - if the per-sb default is different from the global default
761 */
Mingming Cao617ba132006-10-11 01:20:53 -0700762static int ext4_show_options(struct seq_file *seq, struct vfsmount *vfs)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700763{
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500764 int def_errors;
765 unsigned long def_mount_opts;
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700766 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700767 struct ext4_sb_info *sbi = EXT4_SB(sb);
768 struct ext4_super_block *es = sbi->s_es;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700769
770 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500771 def_errors = le16_to_cpu(es->s_errors);
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700772
773 if (sbi->s_sb_block != 1)
774 seq_printf(seq, ",sb=%llu", sbi->s_sb_block);
775 if (test_opt(sb, MINIX_DF))
776 seq_puts(seq, ",minixdf");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500777 if (test_opt(sb, GRPID) && !(def_mount_opts & EXT4_DEFM_BSDGROUPS))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700778 seq_puts(seq, ",grpid");
779 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT4_DEFM_BSDGROUPS))
780 seq_puts(seq, ",nogrpid");
781 if (sbi->s_resuid != EXT4_DEF_RESUID ||
782 le16_to_cpu(es->s_def_resuid) != EXT4_DEF_RESUID) {
783 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
784 }
785 if (sbi->s_resgid != EXT4_DEF_RESGID ||
786 le16_to_cpu(es->s_def_resgid) != EXT4_DEF_RESGID) {
787 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
788 }
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500789 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700790 if (def_errors == EXT4_ERRORS_PANIC ||
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500791 def_errors == EXT4_ERRORS_CONTINUE) {
792 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700793 }
794 }
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500795 if (test_opt(sb, ERRORS_CONT) && def_errors != EXT4_ERRORS_CONTINUE)
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -0500796 seq_puts(seq, ",errors=continue");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500797 if (test_opt(sb, ERRORS_PANIC) && def_errors != EXT4_ERRORS_PANIC)
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700798 seq_puts(seq, ",errors=panic");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500799 if (test_opt(sb, NO_UID32) && !(def_mount_opts & EXT4_DEFM_UID16))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700800 seq_puts(seq, ",nouid32");
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500801 if (test_opt(sb, DEBUG) && !(def_mount_opts & EXT4_DEFM_DEBUG))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700802 seq_puts(seq, ",debug");
803 if (test_opt(sb, OLDALLOC))
804 seq_puts(seq, ",oldalloc");
Theodore Ts'o03010a32008-10-10 20:02:48 -0400805#ifdef CONFIG_EXT4_FS_XATTR
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500806 if (test_opt(sb, XATTR_USER) &&
807 !(def_mount_opts & EXT4_DEFM_XATTR_USER))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700808 seq_puts(seq, ",user_xattr");
809 if (!test_opt(sb, XATTR_USER) &&
810 (def_mount_opts & EXT4_DEFM_XATTR_USER)) {
811 seq_puts(seq, ",nouser_xattr");
812 }
813#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -0400814#ifdef CONFIG_EXT4_FS_POSIX_ACL
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500815 if (test_opt(sb, POSIX_ACL) && !(def_mount_opts & EXT4_DEFM_ACL))
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700816 seq_puts(seq, ",acl");
817 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT4_DEFM_ACL))
818 seq_puts(seq, ",noacl");
819#endif
820 if (!test_opt(sb, RESERVATION))
821 seq_puts(seq, ",noreservation");
Theodore Ts'o30773842009-01-03 20:27:38 -0500822 if (sbi->s_commit_interval != JBD2_DEFAULT_MAX_COMMIT_AGE*HZ) {
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700823 seq_printf(seq, ",commit=%u",
824 (unsigned) (sbi->s_commit_interval / HZ));
825 }
Theodore Ts'o30773842009-01-03 20:27:38 -0500826 if (sbi->s_min_batch_time != EXT4_DEF_MIN_BATCH_TIME) {
827 seq_printf(seq, ",min_batch_time=%u",
828 (unsigned) sbi->s_min_batch_time);
829 }
830 if (sbi->s_max_batch_time != EXT4_DEF_MAX_BATCH_TIME) {
831 seq_printf(seq, ",max_batch_time=%u",
832 (unsigned) sbi->s_min_batch_time);
833 }
834
Eric Sandeen571640c2008-05-26 12:29:46 -0400835 /*
836 * We're changing the default of barrier mount option, so
837 * let's always display its mount state so it's clear what its
838 * status is.
839 */
840 seq_puts(seq, ",barrier=");
841 seq_puts(seq, test_opt(sb, BARRIER) ? "1" : "0");
Theodore Ts'ocd0b6a32008-05-26 10:28:28 -0400842 if (test_opt(sb, JOURNAL_ASYNC_COMMIT))
843 seq_puts(seq, ",journal_async_commit");
Miklos Szeredid9c9bef12007-10-16 23:26:27 -0700844 if (test_opt(sb, NOBH))
845 seq_puts(seq, ",nobh");
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -0500846 if (test_opt(sb, I_VERSION))
847 seq_puts(seq, ",i_version");
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -0400848 if (!test_opt(sb, DELALLOC))
849 seq_puts(seq, ",nodelalloc");
850
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700851
Miklos Szeredicb45bbe2008-01-28 23:58:27 -0500852 if (sbi->s_stripe)
853 seq_printf(seq, ",stripe=%lu", sbi->s_stripe);
Aneesh Kumar K.Vaa22df22008-01-28 23:58:27 -0500854 /*
855 * journal mode get enabled in different ways
856 * So just print the value even if we didn't specify it
857 */
Mingming Cao617ba132006-10-11 01:20:53 -0700858 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700859 seq_puts(seq, ",data=journal");
Mingming Cao617ba132006-10-11 01:20:53 -0700860 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700861 seq_puts(seq, ",data=ordered");
Mingming Cao617ba132006-10-11 01:20:53 -0700862 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)
Dave Kleikampac27a0e2006-10-11 01:20:50 -0700863 seq_puts(seq, ",data=writeback");
864
Theodore Ts'o240799c2008-10-09 23:53:47 -0400865 if (sbi->s_inode_readahead_blks != EXT4_DEF_INODE_READAHEAD_BLKS)
866 seq_printf(seq, ",inode_readahead_blks=%u",
867 sbi->s_inode_readahead_blks);
868
Hidehiro Kawai5bf56832008-10-10 22:12:43 -0400869 if (test_opt(sb, DATA_ERR_ABORT))
870 seq_puts(seq, ",data_err=abort");
871
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,
1021 Opt_reservation, Opt_noreservation, 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"},
1056 {Opt_reservation, "reservation"},
1057 {Opt_noreservation, "noreservation"},
1058 {Opt_noload, "noload"},
1059 {Opt_nobh, "nobh"},
1060 {Opt_bh, "bh"},
1061 {Opt_commit, "commit=%u"},
Theodore Ts'o30773842009-01-03 20:27:38 -05001062 {Opt_min_batch_time, "min_batch_time=%u"},
1063 {Opt_max_batch_time, "max_batch_time=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001064 {Opt_journal_update, "journal=update"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001065 {Opt_journal_dev, "journal_dev=%u"},
Girish Shilamkar818d2762008-01-28 23:58:27 -05001066 {Opt_journal_checksum, "journal_checksum"},
1067 {Opt_journal_async_commit, "journal_async_commit"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001068 {Opt_abort, "abort"},
1069 {Opt_data_journal, "data=journal"},
1070 {Opt_data_ordered, "data=ordered"},
1071 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001072 {Opt_data_err_abort, "data_err=abort"},
1073 {Opt_data_err_ignore, "data_err=ignore"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001074 {Opt_offusrjquota, "usrjquota="},
1075 {Opt_usrjquota, "usrjquota=%s"},
1076 {Opt_offgrpjquota, "grpjquota="},
1077 {Opt_grpjquota, "grpjquota=%s"},
1078 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
1079 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
1080 {Opt_grpquota, "grpquota"},
1081 {Opt_noquota, "noquota"},
1082 {Opt_quota, "quota"},
1083 {Opt_usrquota, "usrquota"},
1084 {Opt_barrier, "barrier=%u"},
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001085 {Opt_i_version, "i_version"},
Alex Tomasc9de5602008-01-29 00:19:52 -05001086 {Opt_stripe, "stripe=%u"},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001087 {Opt_resize, "resize"},
Alex Tomas64769242008-07-11 19:27:31 -04001088 {Opt_delalloc, "delalloc"},
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001089 {Opt_nodelalloc, "nodelalloc"},
Theodore Ts'o240799c2008-10-09 23:53:47 -04001090 {Opt_inode_readahead_blks, "inode_readahead_blks=%u"},
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001091 {Opt_journal_ioprio, "journal_ioprio=%u"},
Josef Bacikf3f12fa2008-04-29 22:05:28 -04001092 {Opt_err, NULL},
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001093};
1094
Mingming Cao617ba132006-10-11 01:20:53 -07001095static ext4_fsblk_t get_sb_block(void **data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001096{
Mingming Cao617ba132006-10-11 01:20:53 -07001097 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001098 char *options = (char *) *data;
1099
1100 if (!options || strncmp(options, "sb=", 3) != 0)
1101 return 1; /* Default location */
1102 options += 3;
Mingming Cao617ba132006-10-11 01:20:53 -07001103 /*todo: use simple_strtoll with >32bit ext4 */
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001104 sb_block = simple_strtoul(options, &options, 0);
1105 if (*options && *options != ',') {
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001106 printk(KERN_ERR "EXT4-fs: Invalid sb specification: %s\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001107 (char *) *data);
1108 return 1;
1109 }
1110 if (*options == ',')
1111 options++;
1112 *data = (void *) options;
1113 return sb_block;
1114}
1115
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001116#define DEFAULT_JOURNAL_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 3))
1117
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001118static int parse_options(char *options, struct super_block *sb,
Theodore Ts'oc3191062009-01-06 11:14:25 -05001119 unsigned long *journal_devnum,
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001120 unsigned int *journal_ioprio,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001121 ext4_fsblk_t *n_blocks_count, int is_remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001122{
Mingming Cao617ba132006-10-11 01:20:53 -07001123 struct ext4_sb_info *sbi = EXT4_SB(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001124 char *p;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001125 substring_t args[MAX_OPT_ARGS];
1126 int data_opt = 0;
1127 int option;
1128#ifdef CONFIG_QUOTA
Jan Karadfc5d032008-05-13 19:11:51 -04001129 int qtype, qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001130 char *qname;
1131#endif
1132
1133 if (!options)
1134 return 1;
1135
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001136 while ((p = strsep(&options, ",")) != NULL) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001137 int token;
1138 if (!*p)
1139 continue;
1140
1141 token = match_token(p, tokens, args);
1142 switch (token) {
1143 case Opt_bsd_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001144 clear_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001145 break;
1146 case Opt_minix_df:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001147 set_opt(sbi->s_mount_opt, MINIX_DF);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001148 break;
1149 case Opt_grpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001150 set_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001151 break;
1152 case Opt_nogrpid:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001153 clear_opt(sbi->s_mount_opt, GRPID);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001154 break;
1155 case Opt_resuid:
1156 if (match_int(&args[0], &option))
1157 return 0;
1158 sbi->s_resuid = option;
1159 break;
1160 case Opt_resgid:
1161 if (match_int(&args[0], &option))
1162 return 0;
1163 sbi->s_resgid = option;
1164 break;
1165 case Opt_sb:
1166 /* handled by get_sb_block() instead of here */
1167 /* *sb_block = match_int(&args[0]); */
1168 break;
1169 case Opt_err_panic:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001170 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1171 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1172 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001173 break;
1174 case Opt_err_ro:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001175 clear_opt(sbi->s_mount_opt, ERRORS_CONT);
1176 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1177 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001178 break;
1179 case Opt_err_cont:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001180 clear_opt(sbi->s_mount_opt, ERRORS_RO);
1181 clear_opt(sbi->s_mount_opt, ERRORS_PANIC);
1182 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001183 break;
1184 case Opt_nouid32:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001185 set_opt(sbi->s_mount_opt, NO_UID32);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001186 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001187 case Opt_debug:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001188 set_opt(sbi->s_mount_opt, DEBUG);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001189 break;
1190 case Opt_oldalloc:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001191 set_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001192 break;
1193 case Opt_orlov:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001194 clear_opt(sbi->s_mount_opt, OLDALLOC);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001195 break;
Theodore Ts'o03010a32008-10-10 20:02:48 -04001196#ifdef CONFIG_EXT4_FS_XATTR
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001197 case Opt_user_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001198 set_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001199 break;
1200 case Opt_nouser_xattr:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001201 clear_opt(sbi->s_mount_opt, XATTR_USER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001202 break;
1203#else
1204 case Opt_user_xattr:
1205 case Opt_nouser_xattr:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001206 printk(KERN_ERR "EXT4 (no)user_xattr options "
1207 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001208 break;
1209#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04001210#ifdef CONFIG_EXT4_FS_POSIX_ACL
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001211 case Opt_acl:
1212 set_opt(sbi->s_mount_opt, POSIX_ACL);
1213 break;
1214 case Opt_noacl:
1215 clear_opt(sbi->s_mount_opt, POSIX_ACL);
1216 break;
1217#else
1218 case Opt_acl:
1219 case Opt_noacl:
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001220 printk(KERN_ERR "EXT4 (no)acl options "
1221 "not supported\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001222 break;
1223#endif
1224 case Opt_reservation:
1225 set_opt(sbi->s_mount_opt, RESERVATION);
1226 break;
1227 case Opt_noreservation:
1228 clear_opt(sbi->s_mount_opt, RESERVATION);
1229 break;
1230 case Opt_journal_update:
1231 /* @@@ FIXME */
1232 /* Eventually we will want to be able to create
1233 a journal file here. For now, only allow the
1234 user to specify an existing inode to be the
1235 journal file. */
1236 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001237 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001238 "journal on remount\n");
1239 return 0;
1240 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001241 set_opt(sbi->s_mount_opt, UPDATE_JOURNAL);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001242 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001243 case Opt_journal_dev:
1244 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001245 printk(KERN_ERR "EXT4-fs: cannot specify "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001246 "journal on remount\n");
1247 return 0;
1248 }
1249 if (match_int(&args[0], &option))
1250 return 0;
1251 *journal_devnum = option;
1252 break;
Girish Shilamkar818d2762008-01-28 23:58:27 -05001253 case Opt_journal_checksum:
1254 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1255 break;
1256 case Opt_journal_async_commit:
1257 set_opt(sbi->s_mount_opt, JOURNAL_ASYNC_COMMIT);
1258 set_opt(sbi->s_mount_opt, JOURNAL_CHECKSUM);
1259 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001260 case Opt_noload:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001261 set_opt(sbi->s_mount_opt, NOLOAD);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001262 break;
1263 case Opt_commit:
1264 if (match_int(&args[0], &option))
1265 return 0;
1266 if (option < 0)
1267 return 0;
1268 if (option == 0)
Mingming Caocd02ff02007-10-16 18:38:25 -04001269 option = JBD2_DEFAULT_MAX_COMMIT_AGE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001270 sbi->s_commit_interval = HZ * option;
1271 break;
Theodore Ts'o30773842009-01-03 20:27:38 -05001272 case Opt_max_batch_time:
1273 if (match_int(&args[0], &option))
1274 return 0;
1275 if (option < 0)
1276 return 0;
1277 if (option == 0)
1278 option = EXT4_DEF_MAX_BATCH_TIME;
1279 sbi->s_max_batch_time = option;
1280 break;
1281 case Opt_min_batch_time:
1282 if (match_int(&args[0], &option))
1283 return 0;
1284 if (option < 0)
1285 return 0;
1286 sbi->s_min_batch_time = option;
1287 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001288 case Opt_data_journal:
Mingming Cao617ba132006-10-11 01:20:53 -07001289 data_opt = EXT4_MOUNT_JOURNAL_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001290 goto datacheck;
1291 case Opt_data_ordered:
Mingming Cao617ba132006-10-11 01:20:53 -07001292 data_opt = EXT4_MOUNT_ORDERED_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001293 goto datacheck;
1294 case Opt_data_writeback:
Mingming Cao617ba132006-10-11 01:20:53 -07001295 data_opt = EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001296 datacheck:
1297 if (is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001298 if ((sbi->s_mount_opt & EXT4_MOUNT_DATA_FLAGS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001299 != data_opt) {
1300 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001301 "EXT4-fs: cannot change data "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001302 "mode on remount\n");
1303 return 0;
1304 }
1305 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07001306 sbi->s_mount_opt &= ~EXT4_MOUNT_DATA_FLAGS;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001307 sbi->s_mount_opt |= data_opt;
1308 }
1309 break;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04001310 case Opt_data_err_abort:
1311 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1312 break;
1313 case Opt_data_err_ignore:
1314 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1315 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001316#ifdef CONFIG_QUOTA
1317 case Opt_usrjquota:
1318 qtype = USRQUOTA;
1319 goto set_qf_name;
1320 case Opt_grpjquota:
1321 qtype = GRPQUOTA;
1322set_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001323 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001324 !sbi->s_qf_names[qtype]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001325 printk(KERN_ERR
Theodore Ts'o4776004f2008-09-08 23:00:52 -04001326 "EXT4-fs: Cannot change journaled "
1327 "quota options when quota turned on.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001328 return 0;
1329 }
1330 qname = match_strdup(&args[0]);
1331 if (!qname) {
1332 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001333 "EXT4-fs: not enough memory for "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001334 "storing quotafile name.\n");
1335 return 0;
1336 }
1337 if (sbi->s_qf_names[qtype] &&
1338 strcmp(sbi->s_qf_names[qtype], qname)) {
1339 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001340 "EXT4-fs: %s quota file already "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001341 "specified.\n", QTYPE2NAME(qtype));
1342 kfree(qname);
1343 return 0;
1344 }
1345 sbi->s_qf_names[qtype] = qname;
1346 if (strchr(sbi->s_qf_names[qtype], '/')) {
1347 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07001348 "EXT4-fs: quotafile must be on "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001349 "filesystem root.\n");
1350 kfree(sbi->s_qf_names[qtype]);
1351 sbi->s_qf_names[qtype] = NULL;
1352 return 0;
1353 }
1354 set_opt(sbi->s_mount_opt, QUOTA);
1355 break;
1356 case Opt_offusrjquota:
1357 qtype = USRQUOTA;
1358 goto clear_qf_name;
1359 case Opt_offgrpjquota:
1360 qtype = GRPQUOTA;
1361clear_qf_name:
Jan Kara17bd13b2008-08-20 18:14:35 +02001362 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001363 sbi->s_qf_names[qtype]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001364 printk(KERN_ERR "EXT4-fs: Cannot change "
Jan Kara2c8be6b2008-05-13 21:27:55 -04001365 "journaled quota options when "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001366 "quota turned on.\n");
1367 return 0;
1368 }
1369 /*
1370 * The space will be released later when all options
1371 * are confirmed to be correct
1372 */
1373 sbi->s_qf_names[qtype] = NULL;
1374 break;
1375 case Opt_jqfmt_vfsold:
Jan Karadfc5d032008-05-13 19:11:51 -04001376 qfmt = QFMT_VFS_OLD;
1377 goto set_qf_format;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001378 case Opt_jqfmt_vfsv0:
Jan Karadfc5d032008-05-13 19:11:51 -04001379 qfmt = QFMT_VFS_V0;
1380set_qf_format:
Jan Kara17bd13b2008-08-20 18:14:35 +02001381 if (sb_any_quota_loaded(sb) &&
Jan Karadfc5d032008-05-13 19:11:51 -04001382 sbi->s_jquota_fmt != qfmt) {
1383 printk(KERN_ERR "EXT4-fs: Cannot change "
1384 "journaled quota options when "
1385 "quota turned on.\n");
1386 return 0;
1387 }
1388 sbi->s_jquota_fmt = qfmt;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001389 break;
1390 case Opt_quota:
1391 case Opt_usrquota:
1392 set_opt(sbi->s_mount_opt, QUOTA);
1393 set_opt(sbi->s_mount_opt, USRQUOTA);
1394 break;
1395 case Opt_grpquota:
1396 set_opt(sbi->s_mount_opt, QUOTA);
1397 set_opt(sbi->s_mount_opt, GRPQUOTA);
1398 break;
1399 case Opt_noquota:
Jan Kara17bd13b2008-08-20 18:14:35 +02001400 if (sb_any_quota_loaded(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07001401 printk(KERN_ERR "EXT4-fs: Cannot change quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001402 "options when quota turned on.\n");
1403 return 0;
1404 }
1405 clear_opt(sbi->s_mount_opt, QUOTA);
1406 clear_opt(sbi->s_mount_opt, USRQUOTA);
1407 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1408 break;
1409#else
1410 case Opt_quota:
1411 case Opt_usrquota:
1412 case Opt_grpquota:
Jan Karacd59e7b2008-05-13 19:11:51 -04001413 printk(KERN_ERR
1414 "EXT4-fs: quota options not supported.\n");
1415 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001416 case Opt_usrjquota:
1417 case Opt_grpjquota:
1418 case Opt_offusrjquota:
1419 case Opt_offgrpjquota:
1420 case Opt_jqfmt_vfsold:
1421 case Opt_jqfmt_vfsv0:
1422 printk(KERN_ERR
Jan Karacd59e7b2008-05-13 19:11:51 -04001423 "EXT4-fs: journaled quota options not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001424 "supported.\n");
1425 break;
1426 case Opt_noquota:
1427 break;
1428#endif
1429 case Opt_abort:
1430 set_opt(sbi->s_mount_opt, ABORT);
1431 break;
1432 case Opt_barrier:
1433 if (match_int(&args[0], &option))
1434 return 0;
1435 if (option)
1436 set_opt(sbi->s_mount_opt, BARRIER);
1437 else
1438 clear_opt(sbi->s_mount_opt, BARRIER);
1439 break;
1440 case Opt_ignore:
1441 break;
1442 case Opt_resize:
1443 if (!is_remount) {
Mingming Cao617ba132006-10-11 01:20:53 -07001444 printk("EXT4-fs: resize option only available "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001445 "for remount\n");
1446 return 0;
1447 }
1448 if (match_int(&args[0], &option) != 0)
1449 return 0;
1450 *n_blocks_count = option;
1451 break;
1452 case Opt_nobh:
1453 set_opt(sbi->s_mount_opt, NOBH);
1454 break;
1455 case Opt_bh:
1456 clear_opt(sbi->s_mount_opt, NOBH);
1457 break;
Jean Noel Cordenner25ec56b2008-01-28 23:58:27 -05001458 case Opt_i_version:
1459 set_opt(sbi->s_mount_opt, I_VERSION);
1460 sb->s_flags |= MS_I_VERSION;
1461 break;
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04001462 case Opt_nodelalloc:
1463 clear_opt(sbi->s_mount_opt, DELALLOC);
1464 break;
Alex Tomasc9de5602008-01-29 00:19:52 -05001465 case Opt_stripe:
1466 if (match_int(&args[0], &option))
1467 return 0;
1468 if (option < 0)
1469 return 0;
1470 sbi->s_stripe = option;
1471 break;
Alex Tomas64769242008-07-11 19:27:31 -04001472 case Opt_delalloc:
1473 set_opt(sbi->s_mount_opt, DELALLOC);
1474 break;
Theodore Ts'o240799c2008-10-09 23:53:47 -04001475 case Opt_inode_readahead_blks:
1476 if (match_int(&args[0], &option))
1477 return 0;
1478 if (option < 0 || option > (1 << 30))
1479 return 0;
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04001480 if (option & (option - 1)) {
1481 printk(KERN_ERR "EXT4-fs: inode_readahead_blks"
1482 " must be a power of 2\n");
1483 return 0;
1484 }
Theodore Ts'o240799c2008-10-09 23:53:47 -04001485 sbi->s_inode_readahead_blks = option;
1486 break;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05001487 case Opt_journal_ioprio:
1488 if (match_int(&args[0], &option))
1489 return 0;
1490 if (option < 0 || option > 7)
1491 break;
1492 *journal_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE,
1493 option);
1494 break;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001495 default:
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001496 printk(KERN_ERR
1497 "EXT4-fs: Unrecognized mount option \"%s\" "
1498 "or missing value\n", p);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001499 return 0;
1500 }
1501 }
1502#ifdef CONFIG_QUOTA
1503 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
Mingming Cao617ba132006-10-11 01:20:53 -07001504 if ((sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001505 sbi->s_qf_names[USRQUOTA])
1506 clear_opt(sbi->s_mount_opt, USRQUOTA);
1507
Mingming Cao617ba132006-10-11 01:20:53 -07001508 if ((sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001509 sbi->s_qf_names[GRPQUOTA])
1510 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1511
1512 if ((sbi->s_qf_names[USRQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001513 (sbi->s_mount_opt & EXT4_MOUNT_GRPQUOTA)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001514 (sbi->s_qf_names[GRPQUOTA] &&
Mingming Cao617ba132006-10-11 01:20:53 -07001515 (sbi->s_mount_opt & EXT4_MOUNT_USRQUOTA))) {
1516 printk(KERN_ERR "EXT4-fs: old and new quota "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001517 "format mixing.\n");
1518 return 0;
1519 }
1520
1521 if (!sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001522 printk(KERN_ERR "EXT4-fs: journaled quota format "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001523 "not specified.\n");
1524 return 0;
1525 }
1526 } else {
1527 if (sbi->s_jquota_fmt) {
Jan Kara2c8be6b2008-05-13 21:27:55 -04001528 printk(KERN_ERR "EXT4-fs: journaled quota format "
1529 "specified with no journaling "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001530 "enabled.\n");
1531 return 0;
1532 }
1533 }
1534#endif
1535 return 1;
1536}
1537
Mingming Cao617ba132006-10-11 01:20:53 -07001538static int ext4_setup_super(struct super_block *sb, struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001539 int read_only)
1540{
Mingming Cao617ba132006-10-11 01:20:53 -07001541 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001542 int res = 0;
1543
Mingming Cao617ba132006-10-11 01:20:53 -07001544 if (le32_to_cpu(es->s_rev_level) > EXT4_MAX_SUPP_REV) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001545 printk(KERN_ERR "EXT4-fs warning: revision level too high, "
1546 "forcing read-only mode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001547 res = MS_RDONLY;
1548 }
1549 if (read_only)
1550 return res;
Mingming Cao617ba132006-10-11 01:20:53 -07001551 if (!(sbi->s_mount_state & EXT4_VALID_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001552 printk(KERN_WARNING "EXT4-fs warning: mounting unchecked fs, "
1553 "running e2fsck is recommended\n");
Mingming Cao617ba132006-10-11 01:20:53 -07001554 else if ((sbi->s_mount_state & EXT4_ERROR_FS))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001555 printk(KERN_WARNING
1556 "EXT4-fs warning: mounting fs with errors, "
1557 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001558 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1559 le16_to_cpu(es->s_mnt_count) >=
1560 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001561 printk(KERN_WARNING
1562 "EXT4-fs warning: maximal mount count reached, "
1563 "running e2fsck is recommended\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001564 else if (le32_to_cpu(es->s_checkinterval) &&
1565 (le32_to_cpu(es->s_lastcheck) +
1566 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001567 printk(KERN_WARNING
1568 "EXT4-fs warning: checktime reached, "
1569 "running e2fsck is recommended\n");
Frank Mayhar03901312009-01-07 00:06:22 -05001570 if (!sbi->s_journal)
1571 es->s_state &= cpu_to_le16(~EXT4_VALID_FS);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001572 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
Mingming Cao617ba132006-10-11 01:20:53 -07001573 es->s_max_mnt_count = cpu_to_le16(EXT4_DFL_MAX_MNT_COUNT);
Marcin Slusarze8546d02008-04-17 10:38:59 -04001574 le16_add_cpu(&es->s_mnt_count, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001575 es->s_mtime = cpu_to_le32(get_seconds());
Mingming Cao617ba132006-10-11 01:20:53 -07001576 ext4_update_dynamic_rev(sb);
Frank Mayhar03901312009-01-07 00:06:22 -05001577 if (sbi->s_journal)
1578 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001579
Mingming Cao617ba132006-10-11 01:20:53 -07001580 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001581 if (test_opt(sb, DEBUG))
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001582 printk(KERN_INFO "[EXT4 FS bs=%lu, gc=%u, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001583 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1584 sb->s_blocksize,
1585 sbi->s_groups_count,
Mingming Cao617ba132006-10-11 01:20:53 -07001586 EXT4_BLOCKS_PER_GROUP(sb),
1587 EXT4_INODES_PER_GROUP(sb),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001588 sbi->s_mount_opt);
1589
Frank Mayhar03901312009-01-07 00:06:22 -05001590 if (EXT4_SB(sb)->s_journal) {
1591 printk(KERN_INFO "EXT4 FS on %s, %s journal on %s\n",
1592 sb->s_id, EXT4_SB(sb)->s_journal->j_inode ? "internal" :
1593 "external", EXT4_SB(sb)->s_journal->j_devname);
1594 } else {
1595 printk(KERN_INFO "EXT4 FS on %s, no journal\n", sb->s_id);
1596 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001597 return res;
1598}
1599
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001600static int ext4_fill_flex_info(struct super_block *sb)
1601{
1602 struct ext4_sb_info *sbi = EXT4_SB(sb);
1603 struct ext4_group_desc *gdp = NULL;
1604 struct buffer_head *bh;
1605 ext4_group_t flex_group_count;
1606 ext4_group_t flex_group;
1607 int groups_per_flex = 0;
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001608 int i;
1609
1610 if (!sbi->s_es->s_log_groups_per_flex) {
1611 sbi->s_log_groups_per_flex = 0;
1612 return 1;
1613 }
1614
1615 sbi->s_log_groups_per_flex = sbi->s_es->s_log_groups_per_flex;
1616 groups_per_flex = 1 << sbi->s_log_groups_per_flex;
1617
Frederic Bohec62a11f2008-09-08 10:20:24 -04001618 /* We allocate both existing and potentially added groups */
1619 flex_group_count = ((sbi->s_groups_count + groups_per_flex - 1) +
Aneesh Kumar K.Vd94e99a2008-11-04 09:11:26 -05001620 ((le16_to_cpu(sbi->s_es->s_reserved_gdt_blocks) + 1) <<
1621 EXT4_DESC_PER_BLOCK_BITS(sb))) / groups_per_flex;
Li Zefanec05e862008-07-24 12:49:59 -04001622 sbi->s_flex_groups = kzalloc(flex_group_count *
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001623 sizeof(struct flex_groups), GFP_KERNEL);
1624 if (sbi->s_flex_groups == NULL) {
Li Zefanec05e862008-07-24 12:49:59 -04001625 printk(KERN_ERR "EXT4-fs: not enough memory for "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001626 "%u flex groups\n", flex_group_count);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001627 goto failed;
1628 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001629
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001630 for (i = 0; i < sbi->s_groups_count; i++) {
1631 gdp = ext4_get_group_desc(sb, i, &bh);
1632
1633 flex_group = ext4_flex_group(sbi, i);
1634 sbi->s_flex_groups[flex_group].free_inodes +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001635 ext4_free_inodes_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001636 sbi->s_flex_groups[flex_group].free_blocks +=
Aneesh Kumar K.V560671a2009-01-05 22:20:24 -05001637 ext4_free_blks_count(sb, gdp);
Jose R. Santos772cb7c2008-07-11 19:27:31 -04001638 }
1639
1640 return 1;
1641failed:
1642 return 0;
1643}
1644
Andreas Dilger717d50e2007-10-16 18:38:25 -04001645__le16 ext4_group_desc_csum(struct ext4_sb_info *sbi, __u32 block_group,
1646 struct ext4_group_desc *gdp)
1647{
1648 __u16 crc = 0;
1649
1650 if (sbi->s_es->s_feature_ro_compat &
1651 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) {
1652 int offset = offsetof(struct ext4_group_desc, bg_checksum);
1653 __le32 le_group = cpu_to_le32(block_group);
1654
1655 crc = crc16(~0, sbi->s_es->s_uuid, sizeof(sbi->s_es->s_uuid));
1656 crc = crc16(crc, (__u8 *)&le_group, sizeof(le_group));
1657 crc = crc16(crc, (__u8 *)gdp, offset);
1658 offset += sizeof(gdp->bg_checksum); /* skip checksum */
1659 /* for checksum of struct ext4_group_desc do the rest...*/
1660 if ((sbi->s_es->s_feature_incompat &
1661 cpu_to_le32(EXT4_FEATURE_INCOMPAT_64BIT)) &&
1662 offset < le16_to_cpu(sbi->s_es->s_desc_size))
1663 crc = crc16(crc, (__u8 *)gdp + offset,
1664 le16_to_cpu(sbi->s_es->s_desc_size) -
1665 offset);
1666 }
1667
1668 return cpu_to_le16(crc);
1669}
1670
1671int ext4_group_desc_csum_verify(struct ext4_sb_info *sbi, __u32 block_group,
1672 struct ext4_group_desc *gdp)
1673{
1674 if ((sbi->s_es->s_feature_ro_compat &
1675 cpu_to_le32(EXT4_FEATURE_RO_COMPAT_GDT_CSUM)) &&
1676 (gdp->bg_checksum != ext4_group_desc_csum(sbi, block_group, gdp)))
1677 return 0;
1678
1679 return 1;
1680}
1681
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001682/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001683static int ext4_check_descriptors(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001684{
Mingming Cao617ba132006-10-11 01:20:53 -07001685 struct ext4_sb_info *sbi = EXT4_SB(sb);
1686 ext4_fsblk_t first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
1687 ext4_fsblk_t last_block;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001688 ext4_fsblk_t block_bitmap;
1689 ext4_fsblk_t inode_bitmap;
1690 ext4_fsblk_t inode_table;
Jose R. Santosce421582007-10-16 18:38:25 -04001691 int flexbg_flag = 0;
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001692 ext4_group_t i;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001693
Jose R. Santosce421582007-10-16 18:38:25 -04001694 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
1695 flexbg_flag = 1;
1696
Theodore Ts'oaf5bc922008-09-08 22:25:24 -04001697 ext4_debug("Checking group descriptors");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001698
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001699 for (i = 0; i < sbi->s_groups_count; i++) {
1700 struct ext4_group_desc *gdp = ext4_get_group_desc(sb, i, NULL);
1701
Jose R. Santosce421582007-10-16 18:38:25 -04001702 if (i == sbi->s_groups_count - 1 || flexbg_flag)
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001703 last_block = ext4_blocks_count(sbi->s_es) - 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001704 else
1705 last_block = first_block +
Mingming Cao617ba132006-10-11 01:20:53 -07001706 (EXT4_BLOCKS_PER_GROUP(sb) - 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001707
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001708 block_bitmap = ext4_block_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001709 if (block_bitmap < first_block || block_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001710 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001711 "Block bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001712 "(block %llu)!\n", i, block_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001713 return 0;
1714 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001715 inode_bitmap = ext4_inode_bitmap(sb, gdp);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001716 if (inode_bitmap < first_block || inode_bitmap > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001717 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001718 "Inode bitmap for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001719 "(block %llu)!\n", i, inode_bitmap);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001720 return 0;
1721 }
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07001722 inode_table = ext4_inode_table(sb, gdp);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001723 if (inode_table < first_block ||
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001724 inode_table + sbi->s_itb_per_group - 1 > last_block) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001725 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001726 "Inode table for group %u not in group "
Eric Sesterhenn51282732008-10-17 09:16:19 -04001727 "(block %llu)!\n", i, inode_table);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001728 return 0;
1729 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001730 spin_lock(sb_bgl_lock(sbi, i));
Andreas Dilger717d50e2007-10-16 18:38:25 -04001731 if (!ext4_group_desc_csum_verify(sbi, i, gdp)) {
Josef Bacikc19204b2008-04-29 22:00:28 -04001732 printk(KERN_ERR "EXT4-fs: ext4_check_descriptors: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05001733 "Checksum for group %u failed (%u!=%u)\n",
Josef Bacikc19204b2008-04-29 22:00:28 -04001734 i, le16_to_cpu(ext4_group_desc_csum(sbi, i,
1735 gdp)), le16_to_cpu(gdp->bg_checksum));
Li Zefan7ee1ec42008-09-08 10:47:19 -04001736 if (!(sb->s_flags & MS_RDONLY)) {
1737 spin_unlock(sb_bgl_lock(sbi, i));
Theodore Ts'o8a266462008-07-26 14:34:21 -04001738 return 0;
Li Zefan7ee1ec42008-09-08 10:47:19 -04001739 }
Andreas Dilger717d50e2007-10-16 18:38:25 -04001740 }
Eric Sandeenb5f10ee2008-08-02 21:21:08 -04001741 spin_unlock(sb_bgl_lock(sbi, i));
Jose R. Santosce421582007-10-16 18:38:25 -04001742 if (!flexbg_flag)
1743 first_block += EXT4_BLOCKS_PER_GROUP(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001744 }
1745
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07001746 ext4_free_blocks_count_set(sbi->s_es, ext4_count_free_blocks(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001747 sbi->s_es->s_free_inodes_count = cpu_to_le32(ext4_count_free_inodes(sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001748 return 1;
1749}
1750
Mingming Cao617ba132006-10-11 01:20:53 -07001751/* ext4_orphan_cleanup() walks a singly-linked list of inodes (starting at
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001752 * the superblock) which were deleted from all directories, but held open by
1753 * a process at the time of a crash. We walk the list and try to delete these
1754 * inodes at recovery time (only with a read-write filesystem).
1755 *
1756 * In order to keep the orphan inode chain consistent during traversal (in
1757 * case of crash during recovery), we link each inode into the superblock
1758 * orphan list_head and handle it the same way as an inode deletion during
1759 * normal operation (which journals the operations for us).
1760 *
1761 * We only do an iget() and an iput() on each inode, which is very safe if we
1762 * accidentally point at an in-use or already deleted inode. The worst that
1763 * can happen in this case is that we get a "bit already cleared" message from
Mingming Cao617ba132006-10-11 01:20:53 -07001764 * ext4_free_inode(). The only reason we would point at a wrong inode is if
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001765 * e2fsck was run on this filesystem, and it must have already done the orphan
1766 * inode cleanup for us, so we can safely abort without any further action.
1767 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001768static void ext4_orphan_cleanup(struct super_block *sb,
1769 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001770{
1771 unsigned int s_flags = sb->s_flags;
1772 int nr_orphans = 0, nr_truncates = 0;
1773#ifdef CONFIG_QUOTA
1774 int i;
1775#endif
1776 if (!es->s_last_orphan) {
1777 jbd_debug(4, "no orphan inodes to clean up\n");
1778 return;
1779 }
1780
Eric Sandeena8f48a92006-12-06 20:40:13 -08001781 if (bdev_read_only(sb->s_bdev)) {
1782 printk(KERN_ERR "EXT4-fs: write access "
1783 "unavailable, skipping orphan cleanup.\n");
1784 return;
1785 }
1786
Mingming Cao617ba132006-10-11 01:20:53 -07001787 if (EXT4_SB(sb)->s_mount_state & EXT4_ERROR_FS) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001788 if (es->s_last_orphan)
1789 jbd_debug(1, "Errors on filesystem, "
1790 "clearing orphan list.\n");
1791 es->s_last_orphan = 0;
1792 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1793 return;
1794 }
1795
1796 if (s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07001797 printk(KERN_INFO "EXT4-fs: %s: orphan cleanup on readonly fs\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001798 sb->s_id);
1799 sb->s_flags &= ~MS_RDONLY;
1800 }
1801#ifdef CONFIG_QUOTA
1802 /* Needed for iput() to work correctly and not trash data */
1803 sb->s_flags |= MS_ACTIVE;
1804 /* Turn on quotas so that they are updated correctly */
1805 for (i = 0; i < MAXQUOTAS; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07001806 if (EXT4_SB(sb)->s_qf_names[i]) {
1807 int ret = ext4_quota_on_mount(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001808 if (ret < 0)
1809 printk(KERN_ERR
Jan Kara2c8be6b2008-05-13 21:27:55 -04001810 "EXT4-fs: Cannot turn on journaled "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001811 "quota: error %d\n", ret);
1812 }
1813 }
1814#endif
1815
1816 while (es->s_last_orphan) {
1817 struct inode *inode;
1818
Josef Bacik97bd42b2008-04-29 22:04:56 -04001819 inode = ext4_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1820 if (IS_ERR(inode)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001821 es->s_last_orphan = 0;
1822 break;
1823 }
1824
Mingming Cao617ba132006-10-11 01:20:53 -07001825 list_add(&EXT4_I(inode)->i_orphan, &EXT4_SB(sb)->s_orphan);
Jan Karaa269eb12009-01-26 17:04:39 +01001826 vfs_dq_init(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001827 if (inode->i_nlink) {
1828 printk(KERN_DEBUG
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001829 "%s: truncating inode %lu to %lld bytes\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001830 __func__, inode->i_ino, inode->i_size);
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04001831 jbd_debug(2, "truncating inode %lu to %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001832 inode->i_ino, inode->i_size);
Mingming Cao617ba132006-10-11 01:20:53 -07001833 ext4_truncate(inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001834 nr_truncates++;
1835 } else {
1836 printk(KERN_DEBUG
1837 "%s: deleting unreferenced inode %lu\n",
Harvey Harrison46e665e2008-04-17 10:38:59 -04001838 __func__, inode->i_ino);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001839 jbd_debug(2, "deleting unreferenced inode %lu\n",
1840 inode->i_ino);
1841 nr_orphans++;
1842 }
1843 iput(inode); /* The delete magic happens here! */
1844 }
1845
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04001846#define PLURAL(x) (x), ((x) == 1) ? "" : "s"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001847
1848 if (nr_orphans)
Mingming Cao617ba132006-10-11 01:20:53 -07001849 printk(KERN_INFO "EXT4-fs: %s: %d orphan inode%s deleted\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001850 sb->s_id, PLURAL(nr_orphans));
1851 if (nr_truncates)
Mingming Cao617ba132006-10-11 01:20:53 -07001852 printk(KERN_INFO "EXT4-fs: %s: %d truncate%s cleaned up\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001853 sb->s_id, PLURAL(nr_truncates));
1854#ifdef CONFIG_QUOTA
1855 /* Turn quotas off */
1856 for (i = 0; i < MAXQUOTAS; i++) {
1857 if (sb_dqopt(sb)->files[i])
Jan Kara6f28e082008-04-28 02:14:34 -07001858 vfs_quota_off(sb, i, 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001859 }
1860#endif
1861 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1862}
Eric Sandeencd2291a2008-01-28 23:58:27 -05001863/*
1864 * Maximal extent format file size.
1865 * Resulting logical blkno at s_maxbytes must fit in our on-disk
1866 * extent format containers, within a sector_t, and within i_blocks
1867 * in the vfs. ext4 inode has 48 bits of i_block in fsblock units,
1868 * so that won't be a limiting factor.
1869 *
1870 * Note, this does *not* consider any metadata overhead for vfs i_blocks.
1871 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001872static loff_t ext4_max_size(int blkbits, int has_huge_files)
Eric Sandeencd2291a2008-01-28 23:58:27 -05001873{
1874 loff_t res;
1875 loff_t upper_limit = MAX_LFS_FILESIZE;
1876
1877 /* small i_blocks in vfs inode? */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001878 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Eric Sandeencd2291a2008-01-28 23:58:27 -05001879 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001880 * CONFIG_LBD is not enabled implies the inode
Eric Sandeencd2291a2008-01-28 23:58:27 -05001881 * i_block represent total blocks in 512 bytes
1882 * 32 == size of vfs inode i_blocks * 8
1883 */
1884 upper_limit = (1LL << 32) - 1;
1885
1886 /* total blocks in file system block size */
1887 upper_limit >>= (blkbits - 9);
1888 upper_limit <<= blkbits;
1889 }
1890
1891 /* 32-bit extent-start container, ee_block */
1892 res = 1LL << 32;
1893 res <<= blkbits;
1894 res -= 1;
1895
1896 /* Sanity check against vm- & vfs- imposed limits */
1897 if (res > upper_limit)
1898 res = upper_limit;
1899
1900 return res;
1901}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001902
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001903/*
Eric Sandeencd2291a2008-01-28 23:58:27 -05001904 * Maximal bitmap file size. There is a direct, and {,double-,triple-}indirect
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001905 * block limit, and also a limit of (2^48 - 1) 512-byte sectors in i_blocks.
1906 * We need to be 1 filesystem block less than the 2^48 sector limit.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001907 */
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001908static loff_t ext4_max_bitmap_size(int bits, int has_huge_files)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001909{
Mingming Cao617ba132006-10-11 01:20:53 -07001910 loff_t res = EXT4_NDIR_BLOCKS;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001911 int meta_blocks;
1912 loff_t upper_limit;
1913 /* This is calculated to be the largest file size for a
Eric Sandeencd2291a2008-01-28 23:58:27 -05001914 * dense, bitmapped file such that the total number of
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001915 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001916 * does not exceed 2^48 -1
1917 * __u32 i_blocks_lo and _u16 i_blocks_high representing the
1918 * total number of 512 bytes blocks of the file
1919 */
1920
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001921 if (!has_huge_files || sizeof(blkcnt_t) < sizeof(u64)) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001922 /*
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01001923 * !has_huge_files or CONFIG_LBD is not enabled
Theodore Ts'of287a1a2008-10-16 22:50:48 -04001924 * implies the inode i_block represent total blocks in
1925 * 512 bytes 32 == size of vfs inode i_blocks * 8
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001926 */
1927 upper_limit = (1LL << 32) - 1;
1928
1929 /* total blocks in file system block size */
1930 upper_limit >>= (bits - 9);
1931
1932 } else {
Aneesh Kumar K.V8180a562008-01-28 23:58:27 -05001933 /*
1934 * We use 48 bit ext4_inode i_blocks
1935 * With EXT4_HUGE_FILE_FL set the i_blocks
1936 * represent total number of blocks in
1937 * file system block size
1938 */
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001939 upper_limit = (1LL << 48) - 1;
1940
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001941 }
1942
1943 /* indirect blocks */
1944 meta_blocks = 1;
1945 /* double indirect blocks */
1946 meta_blocks += 1 + (1LL << (bits-2));
1947 /* tripple indirect blocks */
1948 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1949
1950 upper_limit -= meta_blocks;
1951 upper_limit <<= bits;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001952
1953 res += 1LL << (bits-2);
1954 res += 1LL << (2*(bits-2));
1955 res += 1LL << (3*(bits-2));
1956 res <<= bits;
1957 if (res > upper_limit)
1958 res = upper_limit;
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05001959
1960 if (res > MAX_LFS_FILESIZE)
1961 res = MAX_LFS_FILESIZE;
1962
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001963 return res;
1964}
1965
Mingming Cao617ba132006-10-11 01:20:53 -07001966static ext4_fsblk_t descriptor_loc(struct super_block *sb,
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001967 ext4_fsblk_t logical_sb_block, int nr)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001968{
Mingming Cao617ba132006-10-11 01:20:53 -07001969 struct ext4_sb_info *sbi = EXT4_SB(sb);
Avantika Mathurfd2d4292008-01-28 23:58:27 -05001970 ext4_group_t bg, first_meta_bg;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001971 int has_super = 0;
1972
1973 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1974
Mingming Cao617ba132006-10-11 01:20:53 -07001975 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_META_BG) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001976 nr < first_meta_bg)
Andrew Morton70bbb3e2006-10-11 01:21:20 -07001977 return logical_sb_block + nr + 1;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001978 bg = sbi->s_desc_per_block * nr;
Mingming Cao617ba132006-10-11 01:20:53 -07001979 if (ext4_bg_has_super(sb, bg))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001980 has_super = 1;
Mingming Cao617ba132006-10-11 01:20:53 -07001981 return (has_super + ext4_group_first_block_no(sb, bg));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07001982}
1983
Alex Tomasc9de5602008-01-29 00:19:52 -05001984/**
1985 * ext4_get_stripe_size: Get the stripe size.
1986 * @sbi: In memory super block info
1987 *
1988 * If we have specified it via mount option, then
1989 * use the mount option value. If the value specified at mount time is
1990 * greater than the blocks per group use the super block value.
1991 * If the super block value is greater than blocks per group return 0.
1992 * Allocator needs it be less than blocks per group.
1993 *
1994 */
1995static unsigned long ext4_get_stripe_size(struct ext4_sb_info *sbi)
1996{
1997 unsigned long stride = le16_to_cpu(sbi->s_es->s_raid_stride);
1998 unsigned long stripe_width =
1999 le32_to_cpu(sbi->s_es->s_raid_stripe_width);
2000
2001 if (sbi->s_stripe && sbi->s_stripe <= sbi->s_blocks_per_group)
2002 return sbi->s_stripe;
2003
2004 if (stripe_width <= sbi->s_blocks_per_group)
2005 return stripe_width;
2006
2007 if (stride <= sbi->s_blocks_per_group)
2008 return stride;
2009
2010 return 0;
2011}
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002012
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002013/* sysfs supprt */
2014
2015struct ext4_attr {
2016 struct attribute attr;
2017 ssize_t (*show)(struct ext4_attr *, struct ext4_sb_info *, char *);
2018 ssize_t (*store)(struct ext4_attr *, struct ext4_sb_info *,
2019 const char *, size_t);
2020 int offset;
2021};
2022
2023static int parse_strtoul(const char *buf,
2024 unsigned long max, unsigned long *value)
2025{
2026 char *endp;
2027
2028 while (*buf && isspace(*buf))
2029 buf++;
2030 *value = simple_strtoul(buf, &endp, 0);
2031 while (*endp && isspace(*endp))
2032 endp++;
2033 if (*endp || *value > max)
2034 return -EINVAL;
2035
2036 return 0;
2037}
2038
2039static ssize_t delayed_allocation_blocks_show(struct ext4_attr *a,
2040 struct ext4_sb_info *sbi,
2041 char *buf)
2042{
2043 return snprintf(buf, PAGE_SIZE, "%llu\n",
2044 (s64) percpu_counter_sum(&sbi->s_dirtyblocks_counter));
2045}
2046
2047static ssize_t session_write_kbytes_show(struct ext4_attr *a,
2048 struct ext4_sb_info *sbi, char *buf)
2049{
2050 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2051
2052 return snprintf(buf, PAGE_SIZE, "%lu\n",
2053 (part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2054 sbi->s_sectors_written_start) >> 1);
2055}
2056
2057static ssize_t lifetime_write_kbytes_show(struct ext4_attr *a,
2058 struct ext4_sb_info *sbi, char *buf)
2059{
2060 struct super_block *sb = sbi->s_buddy_cache->i_sb;
2061
2062 return snprintf(buf, PAGE_SIZE, "%llu\n",
2063 sbi->s_kbytes_written +
2064 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
2065 EXT4_SB(sb)->s_sectors_written_start) >> 1));
2066}
2067
2068static ssize_t inode_readahead_blks_store(struct ext4_attr *a,
2069 struct ext4_sb_info *sbi,
2070 const char *buf, size_t count)
2071{
2072 unsigned long t;
2073
2074 if (parse_strtoul(buf, 0x40000000, &t))
2075 return -EINVAL;
2076
2077 /* inode_readahead_blks must be a power of 2 */
2078 if (t & (t-1))
2079 return -EINVAL;
2080
2081 sbi->s_inode_readahead_blks = t;
2082 return count;
2083}
2084
2085static ssize_t sbi_ui_show(struct ext4_attr *a,
2086 struct ext4_sb_info *sbi, char *buf)
2087{
2088 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2089
2090 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
2091}
2092
2093static ssize_t sbi_ui_store(struct ext4_attr *a,
2094 struct ext4_sb_info *sbi,
2095 const char *buf, size_t count)
2096{
2097 unsigned int *ui = (unsigned int *) (((char *) sbi) + a->offset);
2098 unsigned long t;
2099
2100 if (parse_strtoul(buf, 0xffffffff, &t))
2101 return -EINVAL;
2102 *ui = t;
2103 return count;
2104}
2105
2106#define EXT4_ATTR_OFFSET(_name,_mode,_show,_store,_elname) \
2107static struct ext4_attr ext4_attr_##_name = { \
2108 .attr = {.name = __stringify(_name), .mode = _mode }, \
2109 .show = _show, \
2110 .store = _store, \
2111 .offset = offsetof(struct ext4_sb_info, _elname), \
2112}
2113#define EXT4_ATTR(name, mode, show, store) \
2114static struct ext4_attr ext4_attr_##name = __ATTR(name, mode, show, store)
2115
2116#define EXT4_RO_ATTR(name) EXT4_ATTR(name, 0444, name##_show, NULL)
2117#define EXT4_RW_ATTR(name) EXT4_ATTR(name, 0644, name##_show, name##_store)
2118#define EXT4_RW_ATTR_SBI_UI(name, elname) \
2119 EXT4_ATTR_OFFSET(name, 0644, sbi_ui_show, sbi_ui_store, elname)
2120#define ATTR_LIST(name) &ext4_attr_##name.attr
2121
2122EXT4_RO_ATTR(delayed_allocation_blocks);
2123EXT4_RO_ATTR(session_write_kbytes);
2124EXT4_RO_ATTR(lifetime_write_kbytes);
2125EXT4_ATTR_OFFSET(inode_readahead_blks, 0644, sbi_ui_show,
2126 inode_readahead_blks_store, s_inode_readahead_blks);
2127EXT4_RW_ATTR_SBI_UI(mb_stats, s_mb_stats);
2128EXT4_RW_ATTR_SBI_UI(mb_max_to_scan, s_mb_max_to_scan);
2129EXT4_RW_ATTR_SBI_UI(mb_min_to_scan, s_mb_min_to_scan);
2130EXT4_RW_ATTR_SBI_UI(mb_order2_req, s_mb_order2_reqs);
2131EXT4_RW_ATTR_SBI_UI(mb_stream_req, s_mb_stream_request);
2132EXT4_RW_ATTR_SBI_UI(mb_group_prealloc, s_mb_group_prealloc);
2133
2134static struct attribute *ext4_attrs[] = {
2135 ATTR_LIST(delayed_allocation_blocks),
2136 ATTR_LIST(session_write_kbytes),
2137 ATTR_LIST(lifetime_write_kbytes),
2138 ATTR_LIST(inode_readahead_blks),
2139 ATTR_LIST(mb_stats),
2140 ATTR_LIST(mb_max_to_scan),
2141 ATTR_LIST(mb_min_to_scan),
2142 ATTR_LIST(mb_order2_req),
2143 ATTR_LIST(mb_stream_req),
2144 ATTR_LIST(mb_group_prealloc),
2145 NULL,
2146};
2147
2148static ssize_t ext4_attr_show(struct kobject *kobj,
2149 struct attribute *attr, char *buf)
2150{
2151 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2152 s_kobj);
2153 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2154
2155 return a->show ? a->show(a, sbi, buf) : 0;
2156}
2157
2158static ssize_t ext4_attr_store(struct kobject *kobj,
2159 struct attribute *attr,
2160 const char *buf, size_t len)
2161{
2162 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2163 s_kobj);
2164 struct ext4_attr *a = container_of(attr, struct ext4_attr, attr);
2165
2166 return a->store ? a->store(a, sbi, buf, len) : 0;
2167}
2168
2169static void ext4_sb_release(struct kobject *kobj)
2170{
2171 struct ext4_sb_info *sbi = container_of(kobj, struct ext4_sb_info,
2172 s_kobj);
2173 complete(&sbi->s_kobj_unregister);
2174}
2175
2176
2177static struct sysfs_ops ext4_attr_ops = {
2178 .show = ext4_attr_show,
2179 .store = ext4_attr_store,
2180};
2181
2182static struct kobj_type ext4_ktype = {
2183 .default_attrs = ext4_attrs,
2184 .sysfs_ops = &ext4_attr_ops,
2185 .release = ext4_sb_release,
2186};
2187
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002188static int ext4_fill_super(struct super_block *sb, void *data, int silent)
Aneesh Kumar K.V74778272008-07-11 19:27:31 -04002189 __releases(kernel_lock)
2190 __acquires(kernel_lock)
Aneesh Kumar K.V1d03ec92008-01-28 23:58:27 -05002191
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002192{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002193 struct buffer_head *bh;
Mingming Cao617ba132006-10-11 01:20:53 -07002194 struct ext4_super_block *es = NULL;
2195 struct ext4_sb_info *sbi;
2196 ext4_fsblk_t block;
2197 ext4_fsblk_t sb_block = get_sb_block(&data);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002198 ext4_fsblk_t logical_sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002199 unsigned long offset = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002200 unsigned long journal_devnum = 0;
2201 unsigned long def_mount_opts;
2202 struct inode *root;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002203 char *cp;
Frank Mayhar03901312009-01-07 00:06:22 -05002204 const char *descr;
David Howells1d1fe1e2008-02-07 00:15:37 -08002205 int ret = -EINVAL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002206 int blocksize;
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002207 unsigned int db_count;
2208 unsigned int i;
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002209 int needs_recovery, has_huge_files;
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002210 int features;
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002211 __u64 blocks_count;
Peter Zijlstra833f4072007-10-16 23:25:45 -07002212 int err;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002213 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002214
2215 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
2216 if (!sbi)
2217 return -ENOMEM;
Pekka Enberg705895b2009-02-15 18:07:52 -05002218
2219 sbi->s_blockgroup_lock =
2220 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
2221 if (!sbi->s_blockgroup_lock) {
2222 kfree(sbi);
2223 return -ENOMEM;
2224 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002225 sb->s_fs_info = sbi;
2226 sbi->s_mount_opt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07002227 sbi->s_resuid = EXT4_DEF_RESUID;
2228 sbi->s_resgid = EXT4_DEF_RESGID;
Theodore Ts'o240799c2008-10-09 23:53:47 -04002229 sbi->s_inode_readahead_blks = EXT4_DEF_INODE_READAHEAD_BLKS;
Miklos Szeredid9c9bef12007-10-16 23:26:27 -07002230 sbi->s_sb_block = sb_block;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002231 sbi->s_sectors_written_start = part_stat_read(sb->s_bdev->bd_part,
2232 sectors[1]);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002233
2234 unlock_kernel();
2235
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002236 /* Cleanup superblock name */
2237 for (cp = sb->s_id; (cp = strchr(cp, '/'));)
2238 *cp = '!';
2239
Mingming Cao617ba132006-10-11 01:20:53 -07002240 blocksize = sb_min_blocksize(sb, EXT4_MIN_BLOCK_SIZE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002241 if (!blocksize) {
Mingming Cao617ba132006-10-11 01:20:53 -07002242 printk(KERN_ERR "EXT4-fs: unable to set blocksize\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002243 goto out_fail;
2244 }
2245
2246 /*
Mingming Cao617ba132006-10-11 01:20:53 -07002247 * The ext4 superblock will not be buffer aligned for other than 1kB
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002248 * block sizes. We need to calculate the offset from buffer start.
2249 */
Mingming Cao617ba132006-10-11 01:20:53 -07002250 if (blocksize != EXT4_MIN_BLOCK_SIZE) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002251 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2252 offset = do_div(logical_sb_block, blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002253 } else {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002254 logical_sb_block = sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002255 }
2256
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002257 if (!(bh = sb_bread(sb, logical_sb_block))) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002258 printk(KERN_ERR "EXT4-fs: unable to read superblock\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002259 goto out_fail;
2260 }
2261 /*
2262 * Note: s_es must be initialized as soon as possible because
Mingming Cao617ba132006-10-11 01:20:53 -07002263 * some ext4 macro-instructions depend on its value
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002264 */
Mingming Cao617ba132006-10-11 01:20:53 -07002265 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002266 sbi->s_es = es;
2267 sb->s_magic = le16_to_cpu(es->s_magic);
Mingming Cao617ba132006-10-11 01:20:53 -07002268 if (sb->s_magic != EXT4_SUPER_MAGIC)
2269 goto cantfind_ext4;
Theodore Ts'oafc32f72009-02-28 19:39:58 -05002270 sbi->s_kbytes_written = le64_to_cpu(es->s_kbytes_written);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002271
2272 /* Set defaults before we parse the mount options */
2273 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
Mingming Cao617ba132006-10-11 01:20:53 -07002274 if (def_mount_opts & EXT4_DEFM_DEBUG)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002275 set_opt(sbi->s_mount_opt, DEBUG);
Mingming Cao617ba132006-10-11 01:20:53 -07002276 if (def_mount_opts & EXT4_DEFM_BSDGROUPS)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002277 set_opt(sbi->s_mount_opt, GRPID);
Mingming Cao617ba132006-10-11 01:20:53 -07002278 if (def_mount_opts & EXT4_DEFM_UID16)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002279 set_opt(sbi->s_mount_opt, NO_UID32);
Theodore Ts'o03010a32008-10-10 20:02:48 -04002280#ifdef CONFIG_EXT4_FS_XATTR
Mingming Cao617ba132006-10-11 01:20:53 -07002281 if (def_mount_opts & EXT4_DEFM_XATTR_USER)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002282 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002283#endif
Theodore Ts'o03010a32008-10-10 20:02:48 -04002284#ifdef CONFIG_EXT4_FS_POSIX_ACL
Mingming Cao617ba132006-10-11 01:20:53 -07002285 if (def_mount_opts & EXT4_DEFM_ACL)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002286 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08002287#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002288 if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_DATA)
2289 sbi->s_mount_opt |= EXT4_MOUNT_JOURNAL_DATA;
2290 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_ORDERED)
2291 sbi->s_mount_opt |= EXT4_MOUNT_ORDERED_DATA;
2292 else if ((def_mount_opts & EXT4_DEFM_JMODE) == EXT4_DEFM_JMODE_WBACK)
2293 sbi->s_mount_opt |= EXT4_MOUNT_WRITEBACK_DATA;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002294
Mingming Cao617ba132006-10-11 01:20:53 -07002295 if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_PANIC)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002296 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002297 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT4_ERRORS_CONTINUE)
Dmitry Mishinceea16b2006-10-11 01:21:21 -07002298 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.Vbb4f3972008-01-28 23:58:26 -05002299 else
2300 set_opt(sbi->s_mount_opt, ERRORS_RO);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002301
2302 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
2303 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
Theodore Ts'o30773842009-01-03 20:27:38 -05002304 sbi->s_commit_interval = JBD2_DEFAULT_MAX_COMMIT_AGE * HZ;
2305 sbi->s_min_batch_time = EXT4_DEF_MIN_BATCH_TIME;
2306 sbi->s_max_batch_time = EXT4_DEF_MAX_BATCH_TIME;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002307
2308 set_opt(sbi->s_mount_opt, RESERVATION);
Eric Sandeen571640c2008-05-26 12:29:46 -04002309 set_opt(sbi->s_mount_opt, BARRIER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002310
Mingming Cao1e2462f2007-07-18 09:00:55 -04002311 /*
Aneesh Kumar K.Vdd919b92008-07-11 19:27:31 -04002312 * enable delayed allocation by default
2313 * Use -o nodelalloc to turn it off
2314 */
2315 set_opt(sbi->s_mount_opt, DELALLOC);
2316
2317
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002318 if (!parse_options((char *) data, sb, &journal_devnum,
2319 &journal_ioprio, NULL, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002320 goto failed_mount;
2321
2322 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07002323 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002324
Mingming Cao617ba132006-10-11 01:20:53 -07002325 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV &&
2326 (EXT4_HAS_COMPAT_FEATURE(sb, ~0U) ||
2327 EXT4_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
2328 EXT4_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002329 printk(KERN_WARNING
Mingming Cao617ba132006-10-11 01:20:53 -07002330 "EXT4-fs warning: feature flags set on rev 0 fs, "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002331 "running e2fsck is recommended\n");
Theodore Tso469108f2008-02-10 01:11:44 -05002332
2333 /*
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002334 * Check feature flags regardless of the revision level, since we
2335 * previously didn't change the revision level when setting the flags,
2336 * so there is a chance incompat flags are set on a rev 0 filesystem.
2337 */
Mingming Cao617ba132006-10-11 01:20:53 -07002338 features = EXT4_HAS_INCOMPAT_FEATURE(sb, ~EXT4_FEATURE_INCOMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002339 if (features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002340 printk(KERN_ERR "EXT4-fs: %s: couldn't mount because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002341 "unsupported optional features (%x).\n", sb->s_id,
2342 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_incompat) &
2343 ~EXT4_FEATURE_INCOMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002344 goto failed_mount;
2345 }
Mingming Cao617ba132006-10-11 01:20:53 -07002346 features = EXT4_HAS_RO_COMPAT_FEATURE(sb, ~EXT4_FEATURE_RO_COMPAT_SUPP);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002347 if (!(sb->s_flags & MS_RDONLY) && features) {
Mingming Cao617ba132006-10-11 01:20:53 -07002348 printk(KERN_ERR "EXT4-fs: %s: couldn't mount RDWR because of "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05002349 "unsupported optional features (%x).\n", sb->s_id,
2350 (le32_to_cpu(EXT4_SB(sb)->s_es->s_feature_ro_compat) &
2351 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002352 goto failed_mount;
2353 }
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002354 has_huge_files = EXT4_HAS_RO_COMPAT_FEATURE(sb,
2355 EXT4_FEATURE_RO_COMPAT_HUGE_FILE);
2356 if (has_huge_files) {
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002357 /*
2358 * Large file size enabled file system can only be
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002359 * mount if kernel is build with CONFIG_LBD
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002360 */
2361 if (sizeof(root->i_blocks) < sizeof(u64) &&
2362 !(sb->s_flags & MS_RDONLY)) {
2363 printk(KERN_ERR "EXT4-fs: %s: Filesystem with huge "
2364 "files cannot be mounted read-write "
Jens Axboeb3a6ffe2008-12-12 09:51:16 +01002365 "without CONFIG_LBD.\n", sb->s_id);
Aneesh Kumar K.V0fc1b452008-01-28 23:58:26 -05002366 goto failed_mount;
2367 }
2368 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002369 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
2370
Mingming Cao617ba132006-10-11 01:20:53 -07002371 if (blocksize < EXT4_MIN_BLOCK_SIZE ||
2372 blocksize > EXT4_MAX_BLOCK_SIZE) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002373 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002374 "EXT4-fs: Unsupported filesystem blocksize %d on %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002375 blocksize, sb->s_id);
2376 goto failed_mount;
2377 }
2378
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002379 if (sb->s_blocksize != blocksize) {
Aneesh Kumar K.Vce407332008-01-28 23:58:27 -05002380
2381 /* Validate the filesystem blocksize */
2382 if (!sb_set_blocksize(sb, blocksize)) {
2383 printk(KERN_ERR "EXT4-fs: bad block size %d.\n",
2384 blocksize);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002385 goto failed_mount;
2386 }
2387
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002388 brelse(bh);
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002389 logical_sb_block = sb_block * EXT4_MIN_BLOCK_SIZE;
2390 offset = do_div(logical_sb_block, blocksize);
2391 bh = sb_bread(sb, logical_sb_block);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002392 if (!bh) {
2393 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002394 "EXT4-fs: Can't read superblock on 2nd try.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002395 goto failed_mount;
2396 }
Mingming Cao617ba132006-10-11 01:20:53 -07002397 es = (struct ext4_super_block *)(((char *)bh->b_data) + offset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002398 sbi->s_es = es;
Mingming Cao617ba132006-10-11 01:20:53 -07002399 if (es->s_magic != cpu_to_le16(EXT4_SUPER_MAGIC)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002400 printk(KERN_ERR
2401 "EXT4-fs: Magic mismatch, very weird !\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002402 goto failed_mount;
2403 }
2404 }
2405
Theodore Ts'of287a1a2008-10-16 22:50:48 -04002406 sbi->s_bitmap_maxbytes = ext4_max_bitmap_size(sb->s_blocksize_bits,
2407 has_huge_files);
2408 sb->s_maxbytes = ext4_max_size(sb->s_blocksize_bits, has_huge_files);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002409
Mingming Cao617ba132006-10-11 01:20:53 -07002410 if (le32_to_cpu(es->s_rev_level) == EXT4_GOOD_OLD_REV) {
2411 sbi->s_inode_size = EXT4_GOOD_OLD_INODE_SIZE;
2412 sbi->s_first_ino = EXT4_GOOD_OLD_FIRST_INO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002413 } else {
2414 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
2415 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
Mingming Cao617ba132006-10-11 01:20:53 -07002416 if ((sbi->s_inode_size < EXT4_GOOD_OLD_INODE_SIZE) ||
Vignesh Babu13305932007-07-18 09:11:02 -04002417 (!is_power_of_2(sbi->s_inode_size)) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002418 (sbi->s_inode_size > blocksize)) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002419 printk(KERN_ERR
2420 "EXT4-fs: unsupported inode size: %d\n",
2421 sbi->s_inode_size);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002422 goto failed_mount;
2423 }
Kalpak Shahef7f3832007-07-18 09:15:20 -04002424 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE)
2425 sb->s_time_gran = 1 << (EXT4_EPOCH_BITS - 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002426 }
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002427 sbi->s_desc_size = le16_to_cpu(es->s_desc_size);
2428 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_64BIT)) {
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002429 if (sbi->s_desc_size < EXT4_MIN_DESC_SIZE_64BIT ||
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002430 sbi->s_desc_size > EXT4_MAX_DESC_SIZE ||
vignesh babud8ea6cf2007-10-16 23:27:14 -07002431 !is_power_of_2(sbi->s_desc_size)) {
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002432 printk(KERN_ERR
Alexandre Ratchov8fadc142006-10-11 01:21:15 -07002433 "EXT4-fs: unsupported descriptor size %lu\n",
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002434 sbi->s_desc_size);
2435 goto failed_mount;
2436 }
2437 } else
2438 sbi->s_desc_size = EXT4_MIN_DESC_SIZE;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002439 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002440 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08002441 if (EXT4_INODE_SIZE(sb) == 0 || EXT4_INODES_PER_GROUP(sb) == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002442 goto cantfind_ext4;
2443 sbi->s_inodes_per_block = blocksize / EXT4_INODE_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002444 if (sbi->s_inodes_per_block == 0)
Mingming Cao617ba132006-10-11 01:20:53 -07002445 goto cantfind_ext4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002446 sbi->s_itb_per_group = sbi->s_inodes_per_group /
2447 sbi->s_inodes_per_block;
Alexandre Ratchov0d1ee422006-10-11 01:21:14 -07002448 sbi->s_desc_per_block = blocksize / EXT4_DESC_SIZE(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002449 sbi->s_sbh = bh;
2450 sbi->s_mount_state = le16_to_cpu(es->s_state);
Fengguang Wue57aa832007-10-16 23:26:25 -07002451 sbi->s_addr_per_block_bits = ilog2(EXT4_ADDR_PER_BLOCK(sb));
2452 sbi->s_desc_per_block_bits = ilog2(EXT4_DESC_PER_BLOCK(sb));
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002453 for (i = 0; i < 4; i++)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002454 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
2455 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'of99b2582008-10-28 13:21:44 -04002456 i = le32_to_cpu(es->s_flags);
2457 if (i & EXT2_FLAGS_UNSIGNED_HASH)
2458 sbi->s_hash_unsigned = 3;
2459 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
2460#ifdef __CHAR_UNSIGNED__
2461 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
2462 sbi->s_hash_unsigned = 3;
2463#else
2464 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
2465#endif
2466 sb->s_dirt = 1;
2467 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002468
2469 if (sbi->s_blocks_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002470 printk(KERN_ERR
2471 "EXT4-fs: #blocks per group too big: %lu\n",
2472 sbi->s_blocks_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002473 goto failed_mount;
2474 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002475 if (sbi->s_inodes_per_group > blocksize * 8) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002476 printk(KERN_ERR
2477 "EXT4-fs: #inodes per group too big: %lu\n",
2478 sbi->s_inodes_per_group);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002479 goto failed_mount;
2480 }
2481
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002482 if (ext4_blocks_count(es) >
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002483 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002484 printk(KERN_ERR "EXT4-fs: filesystem on %s:"
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002485 " too large to mount safely\n", sb->s_id);
2486 if (sizeof(sector_t) < 8)
Mingming Cao617ba132006-10-11 01:20:53 -07002487 printk(KERN_WARNING "EXT4-fs: CONFIG_LBD not "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002488 "enabled\n");
2489 goto failed_mount;
2490 }
2491
Mingming Cao617ba132006-10-11 01:20:53 -07002492 if (EXT4_BLOCKS_PER_GROUP(sb) == 0)
2493 goto cantfind_ext4;
Eric Sandeene7c95592008-01-28 23:58:27 -05002494
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002495 /*
2496 * It makes no sense for the first data block to be beyond the end
2497 * of the filesystem.
2498 */
2499 if (le32_to_cpu(es->s_first_data_block) >= ext4_blocks_count(es)) {
2500 printk(KERN_WARNING "EXT4-fs: bad geometry: first data"
2501 "block %u is beyond end of filesystem (%llu)\n",
2502 le32_to_cpu(es->s_first_data_block),
2503 ext4_blocks_count(es));
Eric Sandeene7c95592008-01-28 23:58:27 -05002504 goto failed_mount;
2505 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002506 blocks_count = (ext4_blocks_count(es) -
2507 le32_to_cpu(es->s_first_data_block) +
2508 EXT4_BLOCKS_PER_GROUP(sb) - 1);
2509 do_div(blocks_count, EXT4_BLOCKS_PER_GROUP(sb));
Theodore Ts'o4ec11022009-01-06 14:53:26 -05002510 if (blocks_count > ((uint64_t)1<<32) - EXT4_DESC_PER_BLOCK(sb)) {
2511 printk(KERN_WARNING "EXT4-fs: groups count too large: %u "
2512 "(block count %llu, first data block %u, "
2513 "blocks per group %lu)\n", sbi->s_groups_count,
2514 ext4_blocks_count(es),
2515 le32_to_cpu(es->s_first_data_block),
2516 EXT4_BLOCKS_PER_GROUP(sb));
2517 goto failed_mount;
2518 }
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002519 sbi->s_groups_count = blocks_count;
Mingming Cao617ba132006-10-11 01:20:53 -07002520 db_count = (sbi->s_groups_count + EXT4_DESC_PER_BLOCK(sb) - 1) /
2521 EXT4_DESC_PER_BLOCK(sb);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002522 sbi->s_group_desc = kmalloc(db_count * sizeof(struct buffer_head *),
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002523 GFP_KERNEL);
2524 if (sbi->s_group_desc == NULL) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002525 printk(KERN_ERR "EXT4-fs: not enough memory\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002526 goto failed_mount;
2527 }
2528
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002529#ifdef CONFIG_PROC_FS
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002530 if (ext4_proc_root)
2531 sbi->s_proc = proc_mkdir(sb->s_id, ext4_proc_root);
2532
Theodore Ts'o240799c2008-10-09 23:53:47 -04002533 if (sbi->s_proc)
2534 proc_create_data("inode_readahead_blks", 0644, sbi->s_proc,
2535 &ext4_ui_proc_fops,
2536 &sbi->s_inode_readahead_blks);
Alexander Beregalov3244fcb2008-10-12 17:27:49 -04002537#endif
Theodore Ts'o240799c2008-10-09 23:53:47 -04002538
Pekka Enberg705895b2009-02-15 18:07:52 -05002539 bgl_lock_init(sbi->s_blockgroup_lock);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002540
2541 for (i = 0; i < db_count; i++) {
Andrew Morton70bbb3e2006-10-11 01:21:20 -07002542 block = descriptor_loc(sb, logical_sb_block, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002543 sbi->s_group_desc[i] = sb_bread(sb, block);
2544 if (!sbi->s_group_desc[i]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002545 printk(KERN_ERR "EXT4-fs: "
2546 "can't read group descriptor %d\n", i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002547 db_count = i;
2548 goto failed_mount2;
2549 }
2550 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002551 if (!ext4_check_descriptors(sb)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002552 printk(KERN_ERR "EXT4-fs: group descriptors corrupted!\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002553 goto failed_mount2;
2554 }
Jose R. Santos772cb7c2008-07-11 19:27:31 -04002555 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_FLEX_BG))
2556 if (!ext4_fill_flex_info(sb)) {
2557 printk(KERN_ERR
2558 "EXT4-fs: unable to initialize "
2559 "flex_bg meta info!\n");
2560 goto failed_mount2;
2561 }
2562
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002563 sbi->s_gdb_count = db_count;
2564 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
2565 spin_lock_init(&sbi->s_next_gen_lock);
2566
Peter Zijlstra833f4072007-10-16 23:25:45 -07002567 err = percpu_counter_init(&sbi->s_freeblocks_counter,
2568 ext4_count_free_blocks(sb));
2569 if (!err) {
2570 err = percpu_counter_init(&sbi->s_freeinodes_counter,
2571 ext4_count_free_inodes(sb));
2572 }
2573 if (!err) {
2574 err = percpu_counter_init(&sbi->s_dirs_counter,
2575 ext4_count_dirs(sb));
2576 }
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002577 if (!err) {
2578 err = percpu_counter_init(&sbi->s_dirtyblocks_counter, 0);
2579 }
Peter Zijlstra833f4072007-10-16 23:25:45 -07002580 if (err) {
2581 printk(KERN_ERR "EXT4-fs: insufficient memory\n");
2582 goto failed_mount3;
2583 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002584
Alex Tomasc9de5602008-01-29 00:19:52 -05002585 sbi->s_stripe = ext4_get_stripe_size(sbi);
2586
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002587 /*
2588 * set up enough so that it can read an inode
2589 */
Mingming Cao617ba132006-10-11 01:20:53 -07002590 sb->s_op = &ext4_sops;
2591 sb->s_export_op = &ext4_export_ops;
2592 sb->s_xattr = ext4_xattr_handlers;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002593#ifdef CONFIG_QUOTA
Mingming Cao617ba132006-10-11 01:20:53 -07002594 sb->s_qcop = &ext4_qctl_operations;
2595 sb->dq_op = &ext4_quota_operations;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002596#endif
2597 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
2598
2599 sb->s_root = NULL;
2600
2601 needs_recovery = (es->s_last_orphan != 0 ||
Mingming Cao617ba132006-10-11 01:20:53 -07002602 EXT4_HAS_INCOMPAT_FEATURE(sb,
2603 EXT4_FEATURE_INCOMPAT_RECOVER));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002604
2605 /*
2606 * The first inode we look at is the journal inode. Don't try
2607 * root first: it may be modified in the journal!
2608 */
2609 if (!test_opt(sb, NOLOAD) &&
Mingming Cao617ba132006-10-11 01:20:53 -07002610 EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
2611 if (ext4_load_journal(sb, es, journal_devnum))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002612 goto failed_mount3;
Theodore Ts'o624080e2008-06-06 17:50:40 -04002613 if (!(sb->s_flags & MS_RDONLY) &&
2614 EXT4_SB(sb)->s_journal->j_failed_commit) {
2615 printk(KERN_CRIT "EXT4-fs error (device %s): "
2616 "ext4_fill_super: Journal transaction "
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002617 "%u is corrupt\n", sb->s_id,
Theodore Ts'o624080e2008-06-06 17:50:40 -04002618 EXT4_SB(sb)->s_journal->j_failed_commit);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002619 if (test_opt(sb, ERRORS_RO)) {
2620 printk(KERN_CRIT
2621 "Mounting filesystem read-only\n");
Theodore Ts'o624080e2008-06-06 17:50:40 -04002622 sb->s_flags |= MS_RDONLY;
2623 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2624 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2625 }
2626 if (test_opt(sb, ERRORS_PANIC)) {
2627 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
2628 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
2629 ext4_commit_super(sb, es, 1);
Theodore Ts'o624080e2008-06-06 17:50:40 -04002630 goto failed_mount4;
2631 }
2632 }
Frank Mayhar03901312009-01-07 00:06:22 -05002633 } else if (test_opt(sb, NOLOAD) && !(sb->s_flags & MS_RDONLY) &&
2634 EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
2635 printk(KERN_ERR "EXT4-fs: required journal recovery "
2636 "suppressed and not mounted read-only\n");
2637 goto failed_mount4;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002638 } else {
Frank Mayhar03901312009-01-07 00:06:22 -05002639 clear_opt(sbi->s_mount_opt, DATA_FLAGS);
2640 set_opt(sbi->s_mount_opt, WRITEBACK_DATA);
2641 sbi->s_journal = NULL;
2642 needs_recovery = 0;
2643 goto no_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002644 }
2645
Jose R. Santoseb40a092007-07-18 08:37:25 -04002646 if (ext4_blocks_count(es) > 0xffffffffULL &&
2647 !jbd2_journal_set_features(EXT4_SB(sb)->s_journal, 0, 0,
2648 JBD2_FEATURE_INCOMPAT_64BIT)) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05002649 printk(KERN_ERR "EXT4-fs: Failed to set 64-bit journal feature\n");
Jose R. Santoseb40a092007-07-18 08:37:25 -04002650 goto failed_mount4;
2651 }
2652
Girish Shilamkar818d2762008-01-28 23:58:27 -05002653 if (test_opt(sb, JOURNAL_ASYNC_COMMIT)) {
2654 jbd2_journal_set_features(sbi->s_journal,
2655 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2656 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2657 } else if (test_opt(sb, JOURNAL_CHECKSUM)) {
2658 jbd2_journal_set_features(sbi->s_journal,
2659 JBD2_FEATURE_COMPAT_CHECKSUM, 0, 0);
2660 jbd2_journal_clear_features(sbi->s_journal, 0, 0,
2661 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2662 } else {
2663 jbd2_journal_clear_features(sbi->s_journal,
2664 JBD2_FEATURE_COMPAT_CHECKSUM, 0,
2665 JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT);
2666 }
2667
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002668 /* We have now updated the journal if required, so we can
2669 * validate the data journaling mode. */
2670 switch (test_opt(sb, DATA_FLAGS)) {
2671 case 0:
2672 /* No mode set, assume a default based on the journal
Andrew Morton63f57932006-10-11 01:21:24 -07002673 * capabilities: ORDERED_DATA if the journal can
2674 * cope, else JOURNAL_DATA
2675 */
Mingming Caodab291a2006-10-11 01:21:01 -07002676 if (jbd2_journal_check_available_features
2677 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002678 set_opt(sbi->s_mount_opt, ORDERED_DATA);
2679 else
2680 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
2681 break;
2682
Mingming Cao617ba132006-10-11 01:20:53 -07002683 case EXT4_MOUNT_ORDERED_DATA:
2684 case EXT4_MOUNT_WRITEBACK_DATA:
Mingming Caodab291a2006-10-11 01:21:01 -07002685 if (!jbd2_journal_check_available_features
2686 (sbi->s_journal, 0, 0, JBD2_FEATURE_INCOMPAT_REVOKE)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002687 printk(KERN_ERR "EXT4-fs: Journal does not support "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002688 "requested data journaling mode\n");
2689 goto failed_mount4;
2690 }
2691 default:
2692 break;
2693 }
Theodore Ts'ob3881f72009-01-05 22:46:26 -05002694 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002695
Frank Mayhar03901312009-01-07 00:06:22 -05002696no_journal:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002697
2698 if (test_opt(sb, NOBH)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002699 if (!(test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_WRITEBACK_DATA)) {
2700 printk(KERN_WARNING "EXT4-fs: Ignoring nobh option - "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002701 "its supported only with writeback mode\n");
2702 clear_opt(sbi->s_mount_opt, NOBH);
2703 }
2704 }
2705 /*
Mingming Caodab291a2006-10-11 01:21:01 -07002706 * The jbd2_journal_load will have done any necessary log recovery,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002707 * so we can safely mount the rest of the filesystem now.
2708 */
2709
David Howells1d1fe1e2008-02-07 00:15:37 -08002710 root = ext4_iget(sb, EXT4_ROOT_INO);
2711 if (IS_ERR(root)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002712 printk(KERN_ERR "EXT4-fs: get root inode failed\n");
David Howells1d1fe1e2008-02-07 00:15:37 -08002713 ret = PTR_ERR(root);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002714 goto failed_mount4;
2715 }
2716 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells1d1fe1e2008-02-07 00:15:37 -08002717 iput(root);
Mingming Cao617ba132006-10-11 01:20:53 -07002718 printk(KERN_ERR "EXT4-fs: corrupt root inode, run e2fsck\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002719 goto failed_mount4;
2720 }
David Howells1d1fe1e2008-02-07 00:15:37 -08002721 sb->s_root = d_alloc_root(root);
2722 if (!sb->s_root) {
2723 printk(KERN_ERR "EXT4-fs: get root dentry failed\n");
2724 iput(root);
2725 ret = -ENOMEM;
2726 goto failed_mount4;
2727 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002728
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002729 ext4_setup_super(sb, es, sb->s_flags & MS_RDONLY);
Kalpak Shahef7f3832007-07-18 09:15:20 -04002730
2731 /* determine the minimum size of new large inodes, if present */
2732 if (sbi->s_inode_size > EXT4_GOOD_OLD_INODE_SIZE) {
2733 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2734 EXT4_GOOD_OLD_INODE_SIZE;
2735 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
2736 EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE)) {
2737 if (sbi->s_want_extra_isize <
2738 le16_to_cpu(es->s_want_extra_isize))
2739 sbi->s_want_extra_isize =
2740 le16_to_cpu(es->s_want_extra_isize);
2741 if (sbi->s_want_extra_isize <
2742 le16_to_cpu(es->s_min_extra_isize))
2743 sbi->s_want_extra_isize =
2744 le16_to_cpu(es->s_min_extra_isize);
2745 }
2746 }
2747 /* Check if enough inode space is available */
2748 if (EXT4_GOOD_OLD_INODE_SIZE + sbi->s_want_extra_isize >
2749 sbi->s_inode_size) {
2750 sbi->s_want_extra_isize = sizeof(struct ext4_inode) -
2751 EXT4_GOOD_OLD_INODE_SIZE;
2752 printk(KERN_INFO "EXT4-fs: required extra inode space not"
2753 "available.\n");
2754 }
2755
Aneesh Kumar K.Vc2774d82008-10-10 20:07:20 -04002756 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA) {
2757 printk(KERN_WARNING "EXT4-fs: Ignoring delalloc option - "
2758 "requested data journaling mode\n");
2759 clear_opt(sbi->s_mount_opt, DELALLOC);
2760 } else if (test_opt(sb, DELALLOC))
2761 printk(KERN_INFO "EXT4-fs: delayed allocation enabled\n");
2762
2763 ext4_ext_init(sb);
2764 err = ext4_mb_init(sb, needs_recovery);
2765 if (err) {
2766 printk(KERN_ERR "EXT4-fs: failed to initalize mballoc (%d)\n",
2767 err);
2768 goto failed_mount4;
2769 }
2770
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04002771 sbi->s_kobj.kset = ext4_kset;
2772 init_completion(&sbi->s_kobj_unregister);
2773 err = kobject_init_and_add(&sbi->s_kobj, &ext4_ktype, NULL,
2774 "%s", sb->s_id);
2775 if (err) {
2776 ext4_mb_release(sb);
2777 ext4_ext_release(sb);
2778 goto failed_mount4;
2779 };
2780
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002781 /*
2782 * akpm: core read_super() calls in here with the superblock locked.
2783 * That deadlocks, because orphan cleanup needs to lock the superblock
2784 * in numerous places. Here we just pop the lock - it's relatively
2785 * harmless, because we are now ready to accept write_super() requests,
2786 * and aviro says that's the only reason for hanging onto the
2787 * superblock lock.
2788 */
Mingming Cao617ba132006-10-11 01:20:53 -07002789 EXT4_SB(sb)->s_mount_state |= EXT4_ORPHAN_FS;
2790 ext4_orphan_cleanup(sb, es);
2791 EXT4_SB(sb)->s_mount_state &= ~EXT4_ORPHAN_FS;
Frank Mayhar03901312009-01-07 00:06:22 -05002792 if (needs_recovery) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002793 printk(KERN_INFO "EXT4-fs: recovery complete.\n");
Frank Mayhar03901312009-01-07 00:06:22 -05002794 ext4_mark_recovery_complete(sb, es);
2795 }
2796 if (EXT4_SB(sb)->s_journal) {
2797 if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_JOURNAL_DATA)
2798 descr = " journalled data mode";
2799 else if (test_opt(sb, DATA_FLAGS) == EXT4_MOUNT_ORDERED_DATA)
2800 descr = " ordered data mode";
2801 else
2802 descr = " writeback data mode";
2803 } else
2804 descr = "out journal";
2805
2806 printk(KERN_INFO "EXT4-fs: mounted filesystem %s with%s\n",
2807 sb->s_id, descr);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002808
2809 lock_kernel();
2810 return 0;
2811
Mingming Cao617ba132006-10-11 01:20:53 -07002812cantfind_ext4:
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002813 if (!silent)
Mingming Cao617ba132006-10-11 01:20:53 -07002814 printk(KERN_ERR "VFS: Can't find ext4 filesystem on dev %s.\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002815 sb->s_id);
2816 goto failed_mount;
2817
2818failed_mount4:
Frank Mayhar03901312009-01-07 00:06:22 -05002819 printk(KERN_ERR "EXT4-fs (device %s): mount failed\n", sb->s_id);
2820 if (sbi->s_journal) {
2821 jbd2_journal_destroy(sbi->s_journal);
2822 sbi->s_journal = NULL;
2823 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002824failed_mount3:
2825 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2826 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2827 percpu_counter_destroy(&sbi->s_dirs_counter);
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04002828 percpu_counter_destroy(&sbi->s_dirtyblocks_counter);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002829failed_mount2:
2830 for (i = 0; i < db_count; i++)
2831 brelse(sbi->s_group_desc[i]);
2832 kfree(sbi->s_group_desc);
2833failed_mount:
Theodore Ts'o240799c2008-10-09 23:53:47 -04002834 if (sbi->s_proc) {
2835 remove_proc_entry("inode_readahead_blks", sbi->s_proc);
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04002836 remove_proc_entry(sb->s_id, ext4_proc_root);
Theodore Ts'o240799c2008-10-09 23:53:47 -04002837 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002838#ifdef CONFIG_QUOTA
2839 for (i = 0; i < MAXQUOTAS; i++)
2840 kfree(sbi->s_qf_names[i]);
2841#endif
Mingming Cao617ba132006-10-11 01:20:53 -07002842 ext4_blkdev_remove(sbi);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002843 brelse(bh);
2844out_fail:
2845 sb->s_fs_info = NULL;
2846 kfree(sbi);
2847 lock_kernel();
David Howells1d1fe1e2008-02-07 00:15:37 -08002848 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002849}
2850
2851/*
2852 * Setup any per-fs journal parameters now. We'll do this both on
2853 * initial mount, once the journal has been initialised but before we've
2854 * done any recovery; and again on any subsequent remount.
2855 */
Mingming Cao617ba132006-10-11 01:20:53 -07002856static void ext4_init_journal_params(struct super_block *sb, journal_t *journal)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002857{
Mingming Cao617ba132006-10-11 01:20:53 -07002858 struct ext4_sb_info *sbi = EXT4_SB(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002859
Theodore Ts'o30773842009-01-03 20:27:38 -05002860 journal->j_commit_interval = sbi->s_commit_interval;
2861 journal->j_min_batch_time = sbi->s_min_batch_time;
2862 journal->j_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002863
2864 spin_lock(&journal->j_state_lock);
2865 if (test_opt(sb, BARRIER))
Mingming Caodab291a2006-10-11 01:21:01 -07002866 journal->j_flags |= JBD2_BARRIER;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002867 else
Mingming Caodab291a2006-10-11 01:21:01 -07002868 journal->j_flags &= ~JBD2_BARRIER;
Hidehiro Kawai5bf56832008-10-10 22:12:43 -04002869 if (test_opt(sb, DATA_ERR_ABORT))
2870 journal->j_flags |= JBD2_ABORT_ON_SYNCDATA_ERR;
2871 else
2872 journal->j_flags &= ~JBD2_ABORT_ON_SYNCDATA_ERR;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002873 spin_unlock(&journal->j_state_lock);
2874}
2875
Mingming Cao617ba132006-10-11 01:20:53 -07002876static journal_t *ext4_get_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002877 unsigned int journal_inum)
2878{
2879 struct inode *journal_inode;
2880 journal_t *journal;
2881
Frank Mayhar03901312009-01-07 00:06:22 -05002882 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2883
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002884 /* First, test for the existence of a valid inode on disk. Bad
2885 * things happen if we iget() an unused inode, as the subsequent
2886 * iput() will try to delete it. */
2887
David Howells1d1fe1e2008-02-07 00:15:37 -08002888 journal_inode = ext4_iget(sb, journal_inum);
2889 if (IS_ERR(journal_inode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002890 printk(KERN_ERR "EXT4-fs: no journal found.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002891 return NULL;
2892 }
2893 if (!journal_inode->i_nlink) {
2894 make_bad_inode(journal_inode);
2895 iput(journal_inode);
Mingming Cao617ba132006-10-11 01:20:53 -07002896 printk(KERN_ERR "EXT4-fs: journal inode is deleted.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002897 return NULL;
2898 }
2899
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04002900 jbd_debug(2, "Journal inode found at %p: %lld bytes\n",
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002901 journal_inode, journal_inode->i_size);
David Howells1d1fe1e2008-02-07 00:15:37 -08002902 if (!S_ISREG(journal_inode->i_mode)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002903 printk(KERN_ERR "EXT4-fs: invalid journal inode.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002904 iput(journal_inode);
2905 return NULL;
2906 }
2907
Mingming Caodab291a2006-10-11 01:21:01 -07002908 journal = jbd2_journal_init_inode(journal_inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002909 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002910 printk(KERN_ERR "EXT4-fs: Could not load journal inode\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002911 iput(journal_inode);
2912 return NULL;
2913 }
2914 journal->j_private = sb;
Mingming Cao617ba132006-10-11 01:20:53 -07002915 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002916 return journal;
2917}
2918
Mingming Cao617ba132006-10-11 01:20:53 -07002919static journal_t *ext4_get_dev_journal(struct super_block *sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002920 dev_t j_dev)
2921{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002922 struct buffer_head *bh;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002923 journal_t *journal;
Mingming Cao617ba132006-10-11 01:20:53 -07002924 ext4_fsblk_t start;
2925 ext4_fsblk_t len;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002926 int hblock, blocksize;
Mingming Cao617ba132006-10-11 01:20:53 -07002927 ext4_fsblk_t sb_block;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002928 unsigned long offset;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04002929 struct ext4_super_block *es;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002930 struct block_device *bdev;
2931
Frank Mayhar03901312009-01-07 00:06:22 -05002932 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
2933
Mingming Cao617ba132006-10-11 01:20:53 -07002934 bdev = ext4_blkdev_get(j_dev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002935 if (bdev == NULL)
2936 return NULL;
2937
2938 if (bd_claim(bdev, sb)) {
2939 printk(KERN_ERR
Theodore Ts'oabda1412009-01-06 00:20:32 -05002940 "EXT4-fs: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002941 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002942 return NULL;
2943 }
2944
2945 blocksize = sb->s_blocksize;
2946 hblock = bdev_hardsect_size(bdev);
2947 if (blocksize < hblock) {
2948 printk(KERN_ERR
Mingming Cao617ba132006-10-11 01:20:53 -07002949 "EXT4-fs: blocksize too small for journal device.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002950 goto out_bdev;
2951 }
2952
Mingming Cao617ba132006-10-11 01:20:53 -07002953 sb_block = EXT4_MIN_BLOCK_SIZE / blocksize;
2954 offset = EXT4_MIN_BLOCK_SIZE % blocksize;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002955 set_blocksize(bdev, blocksize);
2956 if (!(bh = __bread(bdev, sb_block, blocksize))) {
Mingming Cao617ba132006-10-11 01:20:53 -07002957 printk(KERN_ERR "EXT4-fs: couldn't read superblock of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002958 "external journal\n");
2959 goto out_bdev;
2960 }
2961
Mingming Cao617ba132006-10-11 01:20:53 -07002962 es = (struct ext4_super_block *) (((char *)bh->b_data) + offset);
2963 if ((le16_to_cpu(es->s_magic) != EXT4_SUPER_MAGIC) ||
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002964 !(le32_to_cpu(es->s_feature_incompat) &
Mingming Cao617ba132006-10-11 01:20:53 -07002965 EXT4_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2966 printk(KERN_ERR "EXT4-fs: external journal has "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002967 "bad superblock\n");
2968 brelse(bh);
2969 goto out_bdev;
2970 }
2971
Mingming Cao617ba132006-10-11 01:20:53 -07002972 if (memcmp(EXT4_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2973 printk(KERN_ERR "EXT4-fs: journal UUID does not match\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002974 brelse(bh);
2975 goto out_bdev;
2976 }
2977
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07002978 len = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002979 start = sb_block + 1;
2980 brelse(bh); /* we're done with the superblock */
2981
Mingming Caodab291a2006-10-11 01:21:01 -07002982 journal = jbd2_journal_init_dev(bdev, sb->s_bdev,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002983 start, len, blocksize);
2984 if (!journal) {
Mingming Cao617ba132006-10-11 01:20:53 -07002985 printk(KERN_ERR "EXT4-fs: failed to create device journal\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002986 goto out_bdev;
2987 }
2988 journal->j_private = sb;
2989 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2990 wait_on_buffer(journal->j_sb_buffer);
2991 if (!buffer_uptodate(journal->j_sb_buffer)) {
Mingming Cao617ba132006-10-11 01:20:53 -07002992 printk(KERN_ERR "EXT4-fs: I/O error on journal device\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002993 goto out_journal;
2994 }
2995 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
Mingming Cao617ba132006-10-11 01:20:53 -07002996 printk(KERN_ERR "EXT4-fs: External journal has more than one "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07002997 "user (unsupported) - %d\n",
2998 be32_to_cpu(journal->j_superblock->s_nr_users));
2999 goto out_journal;
3000 }
Mingming Cao617ba132006-10-11 01:20:53 -07003001 EXT4_SB(sb)->journal_bdev = bdev;
3002 ext4_init_journal_params(sb, journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003003 return journal;
3004out_journal:
Mingming Caodab291a2006-10-11 01:21:01 -07003005 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003006out_bdev:
Mingming Cao617ba132006-10-11 01:20:53 -07003007 ext4_blkdev_put(bdev);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003008 return NULL;
3009}
3010
Mingming Cao617ba132006-10-11 01:20:53 -07003011static int ext4_load_journal(struct super_block *sb,
3012 struct ext4_super_block *es,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003013 unsigned long journal_devnum)
3014{
3015 journal_t *journal;
3016 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
3017 dev_t journal_dev;
3018 int err = 0;
3019 int really_read_only;
3020
Frank Mayhar03901312009-01-07 00:06:22 -05003021 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3022
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003023 if (journal_devnum &&
3024 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003025 printk(KERN_INFO "EXT4-fs: external journal device major/minor "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003026 "numbers have changed\n");
3027 journal_dev = new_decode_dev(journal_devnum);
3028 } else
3029 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
3030
3031 really_read_only = bdev_read_only(sb->s_bdev);
3032
3033 /*
3034 * Are we loading a blank journal or performing recovery after a
3035 * crash? For recovery, we need to check in advance whether we
3036 * can get read-write access to the device.
3037 */
3038
Mingming Cao617ba132006-10-11 01:20:53 -07003039 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003040 if (sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003041 printk(KERN_INFO "EXT4-fs: INFO: recovery "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003042 "required on readonly filesystem.\n");
3043 if (really_read_only) {
Mingming Cao617ba132006-10-11 01:20:53 -07003044 printk(KERN_ERR "EXT4-fs: write access "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003045 "unavailable, cannot proceed.\n");
3046 return -EROFS;
3047 }
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003048 printk(KERN_INFO "EXT4-fs: write access will "
3049 "be enabled during recovery.\n");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003050 }
3051 }
3052
3053 if (journal_inum && journal_dev) {
Mingming Cao617ba132006-10-11 01:20:53 -07003054 printk(KERN_ERR "EXT4-fs: filesystem has both journal "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003055 "and inode journals!\n");
3056 return -EINVAL;
3057 }
3058
3059 if (journal_inum) {
Mingming Cao617ba132006-10-11 01:20:53 -07003060 if (!(journal = ext4_get_journal(sb, journal_inum)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003061 return -EINVAL;
3062 } else {
Mingming Cao617ba132006-10-11 01:20:53 -07003063 if (!(journal = ext4_get_dev_journal(sb, journal_dev)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003064 return -EINVAL;
3065 }
3066
Theodore Ts'o4776004f2008-09-08 23:00:52 -04003067 if (journal->j_flags & JBD2_BARRIER)
3068 printk(KERN_INFO "EXT4-fs: barriers enabled\n");
3069 else
3070 printk(KERN_INFO "EXT4-fs: barriers disabled\n");
3071
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003072 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
Mingming Caodab291a2006-10-11 01:21:01 -07003073 err = jbd2_journal_update_format(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003074 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003075 printk(KERN_ERR "EXT4-fs: error updating journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003076 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003077 return err;
3078 }
3079 }
3080
Mingming Cao617ba132006-10-11 01:20:53 -07003081 if (!EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER))
Mingming Caodab291a2006-10-11 01:21:01 -07003082 err = jbd2_journal_wipe(journal, !really_read_only);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003083 if (!err)
Mingming Caodab291a2006-10-11 01:21:01 -07003084 err = jbd2_journal_load(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003085
3086 if (err) {
Mingming Cao617ba132006-10-11 01:20:53 -07003087 printk(KERN_ERR "EXT4-fs: error loading journal.\n");
Mingming Caodab291a2006-10-11 01:21:01 -07003088 jbd2_journal_destroy(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003089 return err;
3090 }
3091
Mingming Cao617ba132006-10-11 01:20:53 -07003092 EXT4_SB(sb)->s_journal = journal;
3093 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003094
3095 if (journal_devnum &&
3096 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
3097 es->s_journal_dev = cpu_to_le32(journal_devnum);
3098 sb->s_dirt = 1;
3099
3100 /* Make sure we flush the recovery flag to disk. */
Mingming Cao617ba132006-10-11 01:20:53 -07003101 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003102 }
3103
3104 return 0;
3105}
3106
Takashi Satoc4be0c12009-01-09 16:40:58 -08003107static int ext4_commit_super(struct super_block *sb,
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003108 struct ext4_super_block *es, int sync)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003109{
Mingming Cao617ba132006-10-11 01:20:53 -07003110 struct buffer_head *sbh = EXT4_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08003111 int error = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003112
3113 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08003114 return error;
Theodore Ts'o914258b2008-10-06 21:35:40 -04003115 if (buffer_write_io_error(sbh)) {
3116 /*
3117 * Oh, dear. A previous attempt to write the
3118 * superblock failed. This could happen because the
3119 * USB device was yanked out. Or it could happen to
3120 * be a transient write error and maybe the block will
3121 * be remapped. Nothing we can do but to retry the
3122 * write and hope for the best.
3123 */
Theodore Ts'oabda1412009-01-06 00:20:32 -05003124 printk(KERN_ERR "EXT4-fs: previous I/O error to "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003125 "superblock detected for %s.\n", sb->s_id);
3126 clear_buffer_write_io_error(sbh);
3127 set_buffer_uptodate(sbh);
3128 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003129 es->s_wtime = cpu_to_le32(get_seconds());
Theodore Ts'oafc32f72009-02-28 19:39:58 -05003130 es->s_kbytes_written =
3131 cpu_to_le64(EXT4_SB(sb)->s_kbytes_written +
3132 ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) -
3133 EXT4_SB(sb)->s_sectors_written_start) >> 1));
Aneesh Kumar K.V5d1b1b32009-01-05 22:19:52 -05003134 ext4_free_blocks_count_set(es, percpu_counter_sum_positive(
3135 &EXT4_SB(sb)->s_freeblocks_counter));
3136 es->s_free_inodes_count = cpu_to_le32(percpu_counter_sum_positive(
3137 &EXT4_SB(sb)->s_freeinodes_counter));
3138
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003139 BUFFER_TRACE(sbh, "marking dirty");
3140 mark_buffer_dirty(sbh);
Theodore Ts'o914258b2008-10-06 21:35:40 -04003141 if (sync) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003142 error = sync_dirty_buffer(sbh);
3143 if (error)
3144 return error;
3145
3146 error = buffer_write_io_error(sbh);
3147 if (error) {
Theodore Ts'oabda1412009-01-06 00:20:32 -05003148 printk(KERN_ERR "EXT4-fs: I/O error while writing "
Theodore Ts'o914258b2008-10-06 21:35:40 -04003149 "superblock for %s.\n", sb->s_id);
3150 clear_buffer_write_io_error(sbh);
3151 set_buffer_uptodate(sbh);
3152 }
3153 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003154 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003155}
3156
3157
3158/*
3159 * Have we just finished recovery? If so, and if we are mounting (or
3160 * remounting) the filesystem readonly, then we will end up with a
3161 * consistent fs on disk. Record that fact.
3162 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003163static void ext4_mark_recovery_complete(struct super_block *sb,
3164 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003165{
Mingming Cao617ba132006-10-11 01:20:53 -07003166 journal_t *journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003167
Frank Mayhar03901312009-01-07 00:06:22 -05003168 if (!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)) {
3169 BUG_ON(journal != NULL);
3170 return;
3171 }
Mingming Caodab291a2006-10-11 01:21:01 -07003172 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003173 if (jbd2_journal_flush(journal) < 0)
3174 goto out;
3175
Jan Kara32c37732007-07-15 23:41:09 -07003176 lock_super(sb);
Mingming Cao617ba132006-10-11 01:20:53 -07003177 if (EXT4_HAS_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER) &&
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003178 sb->s_flags & MS_RDONLY) {
Mingming Cao617ba132006-10-11 01:20:53 -07003179 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003180 sb->s_dirt = 0;
Mingming Cao617ba132006-10-11 01:20:53 -07003181 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003182 }
Jan Kara32c37732007-07-15 23:41:09 -07003183 unlock_super(sb);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003184
3185out:
Mingming Caodab291a2006-10-11 01:21:01 -07003186 jbd2_journal_unlock_updates(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003187}
3188
3189/*
3190 * If we are mounting (or read-write remounting) a filesystem whose journal
3191 * has recorded an error from a previous lifetime, move that error to the
3192 * main filesystem now.
3193 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003194static void ext4_clear_journal_err(struct super_block *sb,
3195 struct ext4_super_block *es)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003196{
3197 journal_t *journal;
3198 int j_errno;
3199 const char *errstr;
3200
Frank Mayhar03901312009-01-07 00:06:22 -05003201 BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL));
3202
Mingming Cao617ba132006-10-11 01:20:53 -07003203 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003204
3205 /*
3206 * Now check for any error status which may have been recorded in the
Mingming Cao617ba132006-10-11 01:20:53 -07003207 * journal by a prior ext4_error() or ext4_abort()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003208 */
3209
Mingming Caodab291a2006-10-11 01:21:01 -07003210 j_errno = jbd2_journal_errno(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003211 if (j_errno) {
3212 char nbuf[16];
3213
Mingming Cao617ba132006-10-11 01:20:53 -07003214 errstr = ext4_decode_error(sb, j_errno, nbuf);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003215 ext4_warning(sb, __func__, "Filesystem error recorded "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003216 "from previous mount: %s", errstr);
Harvey Harrison46e665e2008-04-17 10:38:59 -04003217 ext4_warning(sb, __func__, "Marking fs in need of "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003218 "filesystem check.");
3219
Mingming Cao617ba132006-10-11 01:20:53 -07003220 EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS;
3221 es->s_state |= cpu_to_le16(EXT4_ERROR_FS);
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003222 ext4_commit_super(sb, es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003223
Mingming Caodab291a2006-10-11 01:21:01 -07003224 jbd2_journal_clear_err(journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003225 }
3226}
3227
3228/*
3229 * Force the running and committing transactions to commit,
3230 * and wait on the commit.
3231 */
Mingming Cao617ba132006-10-11 01:20:53 -07003232int ext4_force_commit(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003233{
3234 journal_t *journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003235 int ret = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003236
3237 if (sb->s_flags & MS_RDONLY)
3238 return 0;
3239
Mingming Cao617ba132006-10-11 01:20:53 -07003240 journal = EXT4_SB(sb)->s_journal;
Frank Mayhar03901312009-01-07 00:06:22 -05003241 if (journal) {
3242 sb->s_dirt = 0;
3243 ret = ext4_journal_force_commit(journal);
3244 }
3245
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003246 return ret;
3247}
3248
3249/*
Mingming Cao617ba132006-10-11 01:20:53 -07003250 * Ext4 always journals updates to the superblock itself, so we don't
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003251 * have to propagate any other updates to the superblock on disk at this
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003252 * point. (We can probably nuke this function altogether, and remove
3253 * any mention to sb->s_dirt in all of fs/ext4; eventual cleanup...)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003254 */
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003255static void ext4_write_super(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003256{
Frank Mayhar03901312009-01-07 00:06:22 -05003257 if (EXT4_SB(sb)->s_journal) {
3258 if (mutex_trylock(&sb->s_lock) != 0)
3259 BUG();
3260 sb->s_dirt = 0;
3261 } else {
3262 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3263 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003264}
3265
Mingming Cao617ba132006-10-11 01:20:53 -07003266static int ext4_sync_fs(struct super_block *sb, int wait)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003267{
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003268 int ret = 0;
Jan Kara9eddacf2009-02-10 06:46:05 -05003269 tid_t target;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003270
Theodore Ts'oede86cc2008-10-05 20:50:06 -04003271 trace_mark(ext4_sync_fs, "dev %s wait %d", sb->s_id, wait);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003272 sb->s_dirt = 0;
Frank Mayhar03901312009-01-07 00:06:22 -05003273 if (EXT4_SB(sb)->s_journal) {
Jan Kara9eddacf2009-02-10 06:46:05 -05003274 if (jbd2_journal_start_commit(EXT4_SB(sb)->s_journal,
3275 &target)) {
3276 if (wait)
3277 jbd2_log_wait_commit(EXT4_SB(sb)->s_journal,
3278 target);
3279 }
Frank Mayhar03901312009-01-07 00:06:22 -05003280 } else {
3281 ext4_commit_super(sb, EXT4_SB(sb)->s_es, wait);
3282 }
Theodore Ts'o14ce0cb2008-11-03 18:10:55 -05003283 return ret;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003284}
3285
3286/*
3287 * LVM calls this function before a (read-only) snapshot is created. This
3288 * gives us a chance to flush the journal completely and mark the fs clean.
3289 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003290static int ext4_freeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003291{
Takashi Satoc4be0c12009-01-09 16:40:58 -08003292 int error = 0;
3293 journal_t *journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003294 sb->s_dirt = 0;
3295
3296 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08003297 journal = EXT4_SB(sb)->s_journal;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003298
Frank Mayhar03901312009-01-07 00:06:22 -05003299 if (journal) {
3300 /* Now we set up the journal barrier. */
3301 jbd2_journal_lock_updates(journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003302
Frank Mayhar03901312009-01-07 00:06:22 -05003303 /*
3304 * We don't want to clear needs_recovery flag when we
3305 * failed to flush the journal.
3306 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003307 error = jbd2_journal_flush(journal);
3308 if (error < 0)
3309 goto out;
Frank Mayhar03901312009-01-07 00:06:22 -05003310 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003311
3312 /* Journal blocked and flushed, clear needs_recovery flag. */
Mingming Cao617ba132006-10-11 01:20:53 -07003313 EXT4_CLEAR_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08003314 error = ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
3315 if (error)
3316 goto out;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003317 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003318 return 0;
3319out:
3320 jbd2_journal_unlock_updates(journal);
3321 return error;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003322}
3323
3324/*
3325 * Called by LVM after the snapshot is done. We need to reset the RECOVER
3326 * flag here, even though the filesystem is not technically dirty yet.
3327 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08003328static int ext4_unfreeze(struct super_block *sb)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003329{
Frank Mayhar03901312009-01-07 00:06:22 -05003330 if (EXT4_SB(sb)->s_journal && !(sb->s_flags & MS_RDONLY)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003331 lock_super(sb);
3332 /* Reser the needs_recovery flag before the fs is unlocked. */
Mingming Cao617ba132006-10-11 01:20:53 -07003333 EXT4_SET_INCOMPAT_FEATURE(sb, EXT4_FEATURE_INCOMPAT_RECOVER);
3334 ext4_commit_super(sb, EXT4_SB(sb)->s_es, 1);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003335 unlock_super(sb);
Mingming Caodab291a2006-10-11 01:21:01 -07003336 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003337 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08003338 return 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003339}
3340
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003341static int ext4_remount(struct super_block *sb, int *flags, char *data)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003342{
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003343 struct ext4_super_block *es;
Mingming Cao617ba132006-10-11 01:20:53 -07003344 struct ext4_sb_info *sbi = EXT4_SB(sb);
3345 ext4_fsblk_t n_blocks_count = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003346 unsigned long old_sb_flags;
Mingming Cao617ba132006-10-11 01:20:53 -07003347 struct ext4_mount_options old_opts;
Theodore Ts'o8a266462008-07-26 14:34:21 -04003348 ext4_group_t g;
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003349 unsigned int journal_ioprio = DEFAULT_JOURNAL_IOPRIO;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003350 int err;
3351#ifdef CONFIG_QUOTA
3352 int i;
3353#endif
3354
3355 /* Store the original options */
3356 old_sb_flags = sb->s_flags;
3357 old_opts.s_mount_opt = sbi->s_mount_opt;
3358 old_opts.s_resuid = sbi->s_resuid;
3359 old_opts.s_resgid = sbi->s_resgid;
3360 old_opts.s_commit_interval = sbi->s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003361 old_opts.s_min_batch_time = sbi->s_min_batch_time;
3362 old_opts.s_max_batch_time = sbi->s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003363#ifdef CONFIG_QUOTA
3364 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
3365 for (i = 0; i < MAXQUOTAS; i++)
3366 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
3367#endif
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003368 if (sbi->s_journal && sbi->s_journal->j_task->io_context)
3369 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003370
3371 /*
3372 * Allow the "check" option to be passed as a remount option.
3373 */
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003374 if (!parse_options(data, sb, NULL, &journal_ioprio,
3375 &n_blocks_count, 1)) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003376 err = -EINVAL;
3377 goto restore_opts;
3378 }
3379
Mingming Cao617ba132006-10-11 01:20:53 -07003380 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT)
Harvey Harrison46e665e2008-04-17 10:38:59 -04003381 ext4_abort(sb, __func__, "Abort forced by user");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003382
3383 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
Mingming Cao617ba132006-10-11 01:20:53 -07003384 ((sbi->s_mount_opt & EXT4_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003385
3386 es = sbi->s_es;
3387
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003388 if (sbi->s_journal) {
Frank Mayhar03901312009-01-07 00:06:22 -05003389 ext4_init_journal_params(sb, sbi->s_journal);
Theodore Ts'ob3881f72009-01-05 22:46:26 -05003390 set_task_ioprio(sbi->s_journal->j_task, journal_ioprio);
3391 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003392
3393 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003394 n_blocks_count > ext4_blocks_count(es)) {
Mingming Cao617ba132006-10-11 01:20:53 -07003395 if (sbi->s_mount_opt & EXT4_MOUNT_ABORT) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003396 err = -EROFS;
3397 goto restore_opts;
3398 }
3399
3400 if (*flags & MS_RDONLY) {
3401 /*
3402 * First of all, the unconditional stuff we have to do
3403 * to disable replay of the journal when we next remount
3404 */
3405 sb->s_flags |= MS_RDONLY;
3406
3407 /*
3408 * OK, test if we are remounting a valid rw partition
3409 * readonly, and if so set the rdonly flag and then
3410 * mark the partition as valid again.
3411 */
Mingming Cao617ba132006-10-11 01:20:53 -07003412 if (!(es->s_state & cpu_to_le16(EXT4_VALID_FS)) &&
3413 (sbi->s_mount_state & EXT4_VALID_FS))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003414 es->s_state = cpu_to_le16(sbi->s_mount_state);
3415
Jan Kara32c37732007-07-15 23:41:09 -07003416 /*
3417 * We have to unlock super so that we can wait for
3418 * transactions.
3419 */
Frank Mayhar03901312009-01-07 00:06:22 -05003420 if (sbi->s_journal) {
3421 unlock_super(sb);
3422 ext4_mark_recovery_complete(sb, es);
3423 lock_super(sb);
3424 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003425 } else {
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003426 int ret;
Mingming Cao617ba132006-10-11 01:20:53 -07003427 if ((ret = EXT4_HAS_RO_COMPAT_FEATURE(sb,
3428 ~EXT4_FEATURE_RO_COMPAT_SUPP))) {
3429 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003430 "remount RDWR because of unsupported "
Aneesh Kumar K.V3a06d772008-11-22 15:04:59 -05003431 "optional features (%x).\n", sb->s_id,
3432 (le32_to_cpu(sbi->s_es->s_feature_ro_compat) &
3433 ~EXT4_FEATURE_RO_COMPAT_SUPP));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003434 err = -EROFS;
3435 goto restore_opts;
3436 }
Eric Sandeenead65962007-02-10 01:46:08 -08003437
3438 /*
Theodore Ts'o8a266462008-07-26 14:34:21 -04003439 * Make sure the group descriptor checksums
3440 * are sane. If they aren't, refuse to
3441 * remount r/w.
3442 */
3443 for (g = 0; g < sbi->s_groups_count; g++) {
3444 struct ext4_group_desc *gdp =
3445 ext4_get_group_desc(sb, g, NULL);
3446
3447 if (!ext4_group_desc_csum_verify(sbi, g, gdp)) {
3448 printk(KERN_ERR
3449 "EXT4-fs: ext4_remount: "
Theodore Ts'oa9df9a42009-01-05 22:18:16 -05003450 "Checksum for group %u failed (%u!=%u)\n",
Theodore Ts'o8a266462008-07-26 14:34:21 -04003451 g, le16_to_cpu(ext4_group_desc_csum(sbi, g, gdp)),
3452 le16_to_cpu(gdp->bg_checksum));
3453 err = -EINVAL;
3454 goto restore_opts;
3455 }
3456 }
3457
3458 /*
Eric Sandeenead65962007-02-10 01:46:08 -08003459 * If we have an unprocessed orphan list hanging
3460 * around from a previously readonly bdev mount,
3461 * require a full umount/remount for now.
3462 */
3463 if (es->s_last_orphan) {
3464 printk(KERN_WARNING "EXT4-fs: %s: couldn't "
3465 "remount RDWR because of unprocessed "
3466 "orphan inode list. Please "
3467 "umount/remount instead.\n",
3468 sb->s_id);
3469 err = -EINVAL;
3470 goto restore_opts;
3471 }
3472
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003473 /*
3474 * Mounting a RDONLY partition read-write, so reread
3475 * and store the current valid flag. (It may have
3476 * been changed by e2fsck since we originally mounted
3477 * the partition.)
3478 */
Frank Mayhar03901312009-01-07 00:06:22 -05003479 if (sbi->s_journal)
3480 ext4_clear_journal_err(sb, es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003481 sbi->s_mount_state = le16_to_cpu(es->s_state);
Mingming Cao617ba132006-10-11 01:20:53 -07003482 if ((err = ext4_group_extend(sb, es, n_blocks_count)))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003483 goto restore_opts;
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003484 if (!ext4_setup_super(sb, es, 0))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003485 sb->s_flags &= ~MS_RDONLY;
3486 }
3487 }
Frank Mayhar03901312009-01-07 00:06:22 -05003488 if (sbi->s_journal == NULL)
3489 ext4_commit_super(sb, es, 1);
3490
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003491#ifdef CONFIG_QUOTA
3492 /* Release old quota file names */
3493 for (i = 0; i < MAXQUOTAS; i++)
3494 if (old_opts.s_qf_names[i] &&
3495 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3496 kfree(old_opts.s_qf_names[i]);
3497#endif
3498 return 0;
3499restore_opts:
3500 sb->s_flags = old_sb_flags;
3501 sbi->s_mount_opt = old_opts.s_mount_opt;
3502 sbi->s_resuid = old_opts.s_resuid;
3503 sbi->s_resgid = old_opts.s_resgid;
3504 sbi->s_commit_interval = old_opts.s_commit_interval;
Theodore Ts'o30773842009-01-03 20:27:38 -05003505 sbi->s_min_batch_time = old_opts.s_min_batch_time;
3506 sbi->s_max_batch_time = old_opts.s_max_batch_time;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003507#ifdef CONFIG_QUOTA
3508 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
3509 for (i = 0; i < MAXQUOTAS; i++) {
3510 if (sbi->s_qf_names[i] &&
3511 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
3512 kfree(sbi->s_qf_names[i]);
3513 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
3514 }
3515#endif
3516 return err;
3517}
3518
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003519static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003520{
3521 struct super_block *sb = dentry->d_sb;
Mingming Cao617ba132006-10-11 01:20:53 -07003522 struct ext4_sb_info *sbi = EXT4_SB(sb);
3523 struct ext4_super_block *es = sbi->s_es;
Pekka Enberg960cc392006-12-06 20:35:29 -08003524 u64 fsid;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003525
Badari Pulavarty5e700302007-07-15 23:42:00 -07003526 if (test_opt(sb, MINIX_DF)) {
3527 sbi->s_overhead_last = 0;
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003528 } else if (sbi->s_blocks_last != ext4_blocks_count(es)) {
Avantika Mathurfd2d4292008-01-28 23:58:27 -05003529 ext4_group_t ngroups = sbi->s_groups_count, i;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003530 ext4_fsblk_t overhead = 0;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003531 smp_rmb();
3532
3533 /*
Badari Pulavarty5e700302007-07-15 23:42:00 -07003534 * Compute the overhead (FS structures). This is constant
3535 * for a given filesystem unless the number of block groups
3536 * changes so we cache the previous value until it does.
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003537 */
3538
3539 /*
3540 * All of the blocks before first_data_block are
3541 * overhead
3542 */
3543 overhead = le32_to_cpu(es->s_first_data_block);
3544
3545 /*
3546 * Add the overhead attributed to the superblock and
3547 * block group descriptors. If the sparse superblocks
3548 * feature is turned on, then not all groups have this.
3549 */
3550 for (i = 0; i < ngroups; i++) {
Mingming Cao617ba132006-10-11 01:20:53 -07003551 overhead += ext4_bg_has_super(sb, i) +
3552 ext4_bg_num_gdb(sb, i);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003553 cond_resched();
3554 }
3555
3556 /*
3557 * Every block group has an inode bitmap, a block
3558 * bitmap, and an inode table.
3559 */
Badari Pulavarty5e700302007-07-15 23:42:00 -07003560 overhead += ngroups * (2 + sbi->s_itb_per_group);
3561 sbi->s_overhead_last = overhead;
3562 smp_wmb();
Aneesh Kumar K.V6bc9fef2007-10-16 18:38:25 -04003563 sbi->s_blocks_last = ext4_blocks_count(es);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003564 }
3565
Mingming Cao617ba132006-10-11 01:20:53 -07003566 buf->f_type = EXT4_SUPER_MAGIC;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003567 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty5e700302007-07-15 23:42:00 -07003568 buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
Aneesh Kumar K.V6bc6e632008-10-10 09:39:00 -04003569 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter) -
3570 percpu_counter_sum_positive(&sbi->s_dirtyblocks_counter);
Aneesh Kumar K.V308ba3e2007-10-16 18:38:25 -04003571 ext4_free_blocks_count_set(es, buf->f_bfree);
Laurent Vivierbd81d8e2006-10-11 01:21:10 -07003572 buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
3573 if (buf->f_bfree < ext4_r_blocks_count(es))
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003574 buf->f_bavail = 0;
3575 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07003576 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavarty5e700302007-07-15 23:42:00 -07003577 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Mingming Cao617ba132006-10-11 01:20:53 -07003578 buf->f_namelen = EXT4_NAME_LEN;
Pekka Enberg960cc392006-12-06 20:35:29 -08003579 fsid = le64_to_cpup((void *)es->s_uuid) ^
3580 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
3581 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
3582 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003583 return 0;
3584}
3585
3586/* Helper function for writing quotas on sync - we need to start transaction before quota file
3587 * is locked for write. Otherwise the are possible deadlocks:
3588 * Process 1 Process 2
Mingming Cao617ba132006-10-11 01:20:53 -07003589 * ext4_create() quota_sync()
Jan Karaa269eb12009-01-26 17:04:39 +01003590 * jbd2_journal_start() write_dquot()
3591 * vfs_dq_init() down(dqio_mutex)
Mingming Caodab291a2006-10-11 01:21:01 -07003592 * down(dqio_mutex) jbd2_journal_start()
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003593 *
3594 */
3595
3596#ifdef CONFIG_QUOTA
3597
3598static inline struct inode *dquot_to_inode(struct dquot *dquot)
3599{
3600 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
3601}
3602
Mingming Cao617ba132006-10-11 01:20:53 -07003603static int ext4_write_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003604{
3605 int ret, err;
3606 handle_t *handle;
3607 struct inode *inode;
3608
3609 inode = dquot_to_inode(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003610 handle = ext4_journal_start(inode,
3611 EXT4_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003612 if (IS_ERR(handle))
3613 return PTR_ERR(handle);
3614 ret = dquot_commit(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003615 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003616 if (!ret)
3617 ret = err;
3618 return ret;
3619}
3620
Mingming Cao617ba132006-10-11 01:20:53 -07003621static int ext4_acquire_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003622{
3623 int ret, err;
3624 handle_t *handle;
3625
Mingming Cao617ba132006-10-11 01:20:53 -07003626 handle = ext4_journal_start(dquot_to_inode(dquot),
3627 EXT4_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003628 if (IS_ERR(handle))
3629 return PTR_ERR(handle);
3630 ret = dquot_acquire(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003631 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003632 if (!ret)
3633 ret = err;
3634 return ret;
3635}
3636
Mingming Cao617ba132006-10-11 01:20:53 -07003637static int ext4_release_dquot(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003638{
3639 int ret, err;
3640 handle_t *handle;
3641
Mingming Cao617ba132006-10-11 01:20:53 -07003642 handle = ext4_journal_start(dquot_to_inode(dquot),
3643 EXT4_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07003644 if (IS_ERR(handle)) {
3645 /* Release dquot anyway to avoid endless cycle in dqput() */
3646 dquot_release(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003647 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07003648 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003649 ret = dquot_release(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003650 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003651 if (!ret)
3652 ret = err;
3653 return ret;
3654}
3655
Mingming Cao617ba132006-10-11 01:20:53 -07003656static int ext4_mark_dquot_dirty(struct dquot *dquot)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003657{
Jan Kara2c8be6b2008-05-13 21:27:55 -04003658 /* Are we journaling quotas? */
Mingming Cao617ba132006-10-11 01:20:53 -07003659 if (EXT4_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
3660 EXT4_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003661 dquot_mark_dquot_dirty(dquot);
Mingming Cao617ba132006-10-11 01:20:53 -07003662 return ext4_write_dquot(dquot);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003663 } else {
3664 return dquot_mark_dquot_dirty(dquot);
3665 }
3666}
3667
Mingming Cao617ba132006-10-11 01:20:53 -07003668static int ext4_write_info(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003669{
3670 int ret, err;
3671 handle_t *handle;
3672
3673 /* Data block + inode block */
Mingming Cao617ba132006-10-11 01:20:53 -07003674 handle = ext4_journal_start(sb->s_root->d_inode, 2);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003675 if (IS_ERR(handle))
3676 return PTR_ERR(handle);
3677 ret = dquot_commit_info(sb, type);
Mingming Cao617ba132006-10-11 01:20:53 -07003678 err = ext4_journal_stop(handle);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003679 if (!ret)
3680 ret = err;
3681 return ret;
3682}
3683
3684/*
3685 * Turn on quotas during mount time - we need to find
3686 * the quota file and such...
3687 */
Mingming Cao617ba132006-10-11 01:20:53 -07003688static int ext4_quota_on_mount(struct super_block *sb, int type)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003689{
Mingming Cao617ba132006-10-11 01:20:53 -07003690 return vfs_quota_on_mount(sb, EXT4_SB(sb)->s_qf_names[type],
3691 EXT4_SB(sb)->s_jquota_fmt, type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003692}
3693
3694/*
3695 * Standard function to be called on quota_on
3696 */
Mingming Cao617ba132006-10-11 01:20:53 -07003697static int ext4_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04003698 char *name, int remount)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003699{
3700 int err;
Al Viro82646132008-08-02 00:57:06 -04003701 struct path path;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003702
3703 if (!test_opt(sb, QUOTA))
3704 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04003705 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara06235432008-05-13 19:11:51 -04003706 if (remount)
Al Viro82646132008-08-02 00:57:06 -04003707 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara06235432008-05-13 19:11:51 -04003708
Al Viro82646132008-08-02 00:57:06 -04003709 err = kern_path(name, LOOKUP_FOLLOW, &path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003710 if (err)
3711 return err;
Jan Kara06235432008-05-13 19:11:51 -04003712
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003713 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04003714 if (path.mnt->mnt_sb != sb) {
3715 path_put(&path);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003716 return -EXDEV;
3717 }
Jan Kara06235432008-05-13 19:11:51 -04003718 /* Journaling quota? */
3719 if (EXT4_SB(sb)->s_qf_names[type]) {
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003720 /* Quotafile not in fs root? */
Al Viro82646132008-08-02 00:57:06 -04003721 if (path.dentry->d_parent != sb->s_root)
Jan Kara06235432008-05-13 19:11:51 -04003722 printk(KERN_WARNING
3723 "EXT4-fs: Quota file not on filesystem root. "
3724 "Journaled quota will not work.\n");
Theodore Ts'o2b2d6d02008-07-26 16:15:44 -04003725 }
Jan Kara06235432008-05-13 19:11:51 -04003726
3727 /*
3728 * When we journal data on quota file, we have to flush journal to see
3729 * all updates to the file when we bypass pagecache...
3730 */
Frank Mayhar03901312009-01-07 00:06:22 -05003731 if (EXT4_SB(sb)->s_journal &&
3732 ext4_should_journal_data(path.dentry->d_inode)) {
Jan Kara06235432008-05-13 19:11:51 -04003733 /*
3734 * We don't need to lock updates but journal_flush() could
3735 * otherwise be livelocked...
3736 */
3737 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003738 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
Jan Kara06235432008-05-13 19:11:51 -04003739 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003740 if (err) {
Al Viro82646132008-08-02 00:57:06 -04003741 path_put(&path);
Hidehiro Kawai7ffe1ea2008-10-10 20:29:21 -04003742 return err;
3743 }
Jan Kara06235432008-05-13 19:11:51 -04003744 }
3745
Al Viro82646132008-08-02 00:57:06 -04003746 err = vfs_quota_on_path(sb, type, format_id, &path);
3747 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04003748 return err;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003749}
3750
3751/* Read data from quotafile - avoid pagecache and such because we cannot afford
3752 * acquiring the locks... As quota files are never truncated and quota code
3753 * itself serializes the operations (and noone else should touch the files)
3754 * we don't have to be afraid of races */
Mingming Cao617ba132006-10-11 01:20:53 -07003755static ssize_t ext4_quota_read(struct super_block *sb, int type, char *data,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003756 size_t len, loff_t off)
3757{
3758 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003759 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003760 int err = 0;
3761 int offset = off & (sb->s_blocksize - 1);
3762 int tocopy;
3763 size_t toread;
3764 struct buffer_head *bh;
3765 loff_t i_size = i_size_read(inode);
3766
3767 if (off > i_size)
3768 return 0;
3769 if (off+len > i_size)
3770 len = i_size-off;
3771 toread = len;
3772 while (toread > 0) {
3773 tocopy = sb->s_blocksize - offset < toread ?
3774 sb->s_blocksize - offset : toread;
Mingming Cao617ba132006-10-11 01:20:53 -07003775 bh = ext4_bread(NULL, inode, blk, 0, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003776 if (err)
3777 return err;
3778 if (!bh) /* A hole? */
3779 memset(data, 0, tocopy);
3780 else
3781 memcpy(data, bh->b_data+offset, tocopy);
3782 brelse(bh);
3783 offset = 0;
3784 toread -= tocopy;
3785 data += tocopy;
3786 blk++;
3787 }
3788 return len;
3789}
3790
3791/* Write to quotafile (we know the transaction is already started and has
3792 * enough credits) */
Mingming Cao617ba132006-10-11 01:20:53 -07003793static ssize_t ext4_quota_write(struct super_block *sb, int type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003794 const char *data, size_t len, loff_t off)
3795{
3796 struct inode *inode = sb_dqopt(sb)->files[type];
Aneesh Kumar K.V725d26d2008-01-28 23:58:27 -05003797 ext4_lblk_t blk = off >> EXT4_BLOCK_SIZE_BITS(sb);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003798 int err = 0;
3799 int offset = off & (sb->s_blocksize - 1);
3800 int tocopy;
Mingming Cao617ba132006-10-11 01:20:53 -07003801 int journal_quota = EXT4_SB(sb)->s_qf_names[type] != NULL;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003802 size_t towrite = len;
3803 struct buffer_head *bh;
3804 handle_t *handle = journal_current_handle();
3805
Frank Mayhar03901312009-01-07 00:06:22 -05003806 if (EXT4_SB(sb)->s_journal && !handle) {
Theodore Ts'oe5f8eab82008-09-08 22:25:04 -04003807 printk(KERN_WARNING "EXT4-fs: Quota write (off=%llu, len=%llu)"
Jan Kara9c3013e2007-09-11 15:23:29 -07003808 " cancelled because transaction is not started.\n",
3809 (unsigned long long)off, (unsigned long long)len);
3810 return -EIO;
3811 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003812 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
3813 while (towrite > 0) {
3814 tocopy = sb->s_blocksize - offset < towrite ?
3815 sb->s_blocksize - offset : towrite;
Mingming Cao617ba132006-10-11 01:20:53 -07003816 bh = ext4_bread(handle, inode, blk, 1, &err);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003817 if (!bh)
3818 goto out;
3819 if (journal_quota) {
Mingming Cao617ba132006-10-11 01:20:53 -07003820 err = ext4_journal_get_write_access(handle, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003821 if (err) {
3822 brelse(bh);
3823 goto out;
3824 }
3825 }
3826 lock_buffer(bh);
3827 memcpy(bh->b_data+offset, data, tocopy);
3828 flush_dcache_page(bh->b_page);
3829 unlock_buffer(bh);
3830 if (journal_quota)
Frank Mayhar03901312009-01-07 00:06:22 -05003831 err = ext4_handle_dirty_metadata(handle, NULL, bh);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003832 else {
3833 /* Always do at least ordered writes for quotas */
Jan Kara678aaf42008-07-11 19:27:31 -04003834 err = ext4_jbd2_file_inode(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003835 mark_buffer_dirty(bh);
3836 }
3837 brelse(bh);
3838 if (err)
3839 goto out;
3840 offset = 0;
3841 towrite -= tocopy;
3842 data += tocopy;
3843 blk++;
3844 }
3845out:
Jan Kara4d04e4f2008-07-04 09:59:34 -07003846 if (len == towrite) {
3847 mutex_unlock(&inode->i_mutex);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003848 return err;
Jan Kara4d04e4f2008-07-04 09:59:34 -07003849 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003850 if (inode->i_size < off+len-towrite) {
3851 i_size_write(inode, off+len-towrite);
Mingming Cao617ba132006-10-11 01:20:53 -07003852 EXT4_I(inode)->i_disksize = inode->i_size;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003853 }
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003854 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
Mingming Cao617ba132006-10-11 01:20:53 -07003855 ext4_mark_inode_dirty(handle, inode);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003856 mutex_unlock(&inode->i_mutex);
3857 return len - towrite;
3858}
3859
3860#endif
3861
Mingming Cao617ba132006-10-11 01:20:53 -07003862static int ext4_get_sb(struct file_system_type *fs_type,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003863 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3864{
Mingming Cao617ba132006-10-11 01:20:53 -07003865 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003866}
3867
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003868#ifdef CONFIG_PROC_FS
3869static int ext4_ui_proc_show(struct seq_file *m, void *v)
3870{
3871 unsigned int *p = m->private;
3872
3873 seq_printf(m, "%u\n", *p);
3874 return 0;
3875}
3876
3877static int ext4_ui_proc_open(struct inode *inode, struct file *file)
3878{
3879 return single_open(file, ext4_ui_proc_show, PDE(inode)->data);
3880}
3881
3882static ssize_t ext4_ui_proc_write(struct file *file, const char __user *buf,
3883 size_t cnt, loff_t *ppos)
3884{
Roel Kluin23475e22008-11-26 02:23:19 -05003885 unsigned long *p = PDE(file->f_path.dentry->d_inode)->data;
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003886 char str[32];
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003887
3888 if (cnt >= sizeof(str))
3889 return -EINVAL;
3890 if (copy_from_user(str, buf, cnt))
3891 return -EFAULT;
Roel Kluin23475e22008-11-26 02:23:19 -05003892
3893 *p = simple_strtoul(str, NULL, 0);
Theodore Ts'o5e8814f2008-09-23 18:07:35 -04003894 return cnt;
3895}
3896
3897const struct file_operations ext4_ui_proc_fops = {
3898 .owner = THIS_MODULE,
3899 .open = ext4_ui_proc_open,
3900 .read = seq_read,
3901 .llseek = seq_lseek,
3902 .release = single_release,
3903 .write = ext4_ui_proc_write,
3904};
3905#endif
3906
Theodore Ts'o03010a32008-10-10 20:02:48 -04003907static struct file_system_type ext4_fs_type = {
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003908 .owner = THIS_MODULE,
Theodore Ts'o03010a32008-10-10 20:02:48 -04003909 .name = "ext4",
Mingming Cao617ba132006-10-11 01:20:53 -07003910 .get_sb = ext4_get_sb,
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003911 .kill_sb = kill_block_super,
3912 .fs_flags = FS_REQUIRES_DEV,
3913};
3914
Theodore Ts'o03010a32008-10-10 20:02:48 -04003915#ifdef CONFIG_EXT4DEV_COMPAT
3916static int ext4dev_get_sb(struct file_system_type *fs_type,
3917 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
3918{
3919 printk(KERN_WARNING "EXT4-fs: Update your userspace programs "
3920 "to mount using ext4\n");
3921 printk(KERN_WARNING "EXT4-fs: ext4dev backwards compatibility "
3922 "will go away by 2.6.31\n");
3923 return get_sb_bdev(fs_type, flags, dev_name, data, ext4_fill_super, mnt);
3924}
3925
3926static struct file_system_type ext4dev_fs_type = {
3927 .owner = THIS_MODULE,
3928 .name = "ext4dev",
3929 .get_sb = ext4dev_get_sb,
3930 .kill_sb = kill_block_super,
3931 .fs_flags = FS_REQUIRES_DEV,
3932};
3933MODULE_ALIAS("ext4dev");
3934#endif
3935
Mingming Cao617ba132006-10-11 01:20:53 -07003936static int __init init_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003937{
Alex Tomasc9de5602008-01-29 00:19:52 -05003938 int err;
3939
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003940 ext4_kset = kset_create_and_add("ext4", NULL, fs_kobj);
3941 if (!ext4_kset)
3942 return -ENOMEM;
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003943 ext4_proc_root = proc_mkdir("fs/ext4", NULL);
Alex Tomasc9de5602008-01-29 00:19:52 -05003944 err = init_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003945 if (err)
3946 return err;
Alex Tomasc9de5602008-01-29 00:19:52 -05003947
3948 err = init_ext4_xattr();
3949 if (err)
3950 goto out2;
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003951 err = init_inodecache();
3952 if (err)
3953 goto out1;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003954 err = register_filesystem(&ext4_fs_type);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003955 if (err)
3956 goto out;
Theodore Ts'o03010a32008-10-10 20:02:48 -04003957#ifdef CONFIG_EXT4DEV_COMPAT
3958 err = register_filesystem(&ext4dev_fs_type);
3959 if (err) {
3960 unregister_filesystem(&ext4_fs_type);
3961 goto out;
3962 }
3963#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003964 return 0;
3965out:
3966 destroy_inodecache();
3967out1:
Mingming Cao617ba132006-10-11 01:20:53 -07003968 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003969out2:
3970 exit_ext4_mballoc();
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003971 return err;
3972}
3973
Mingming Cao617ba132006-10-11 01:20:53 -07003974static void __exit exit_ext4_fs(void)
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003975{
Theodore Ts'o03010a32008-10-10 20:02:48 -04003976 unregister_filesystem(&ext4_fs_type);
3977#ifdef CONFIG_EXT4DEV_COMPAT
Mingming Cao617ba132006-10-11 01:20:53 -07003978 unregister_filesystem(&ext4dev_fs_type);
Theodore Ts'o03010a32008-10-10 20:02:48 -04003979#endif
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003980 destroy_inodecache();
Mingming Cao617ba132006-10-11 01:20:53 -07003981 exit_ext4_xattr();
Alex Tomasc9de5602008-01-29 00:19:52 -05003982 exit_ext4_mballoc();
Theodore Ts'o9f6200b2008-09-23 09:18:24 -04003983 remove_proc_entry("fs/ext4", NULL);
Theodore Ts'o3197ebd2009-03-31 09:10:09 -04003984 kset_unregister(ext4_kset);
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003985}
3986
3987MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
Theodore Ts'o83982b62009-01-06 14:53:16 -05003988MODULE_DESCRIPTION("Fourth Extended Filesystem");
Dave Kleikampac27a0e2006-10-11 01:20:50 -07003989MODULE_LICENSE("GPL");
Mingming Cao617ba132006-10-11 01:20:53 -07003990module_init(init_ext4_fs)
3991module_exit(exit_ext4_fs)