blob: 1efd958687e971e7d2ffd3ae19a4545c40490e3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext3/super.c
3 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/fs.h>
22#include <linux/time.h>
23#include <linux/jbd.h>
24#include <linux/ext3_fs.h>
25#include <linux/ext3_jbd.h>
26#include <linux/slab.h>
27#include <linux/init.h>
28#include <linux/blkdev.h>
29#include <linux/parser.h>
30#include <linux/smp_lock.h>
31#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070032#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/vfs.h>
34#include <linux/random.h>
35#include <linux/mount.h>
36#include <linux/namei.h>
37#include <linux/quotaops.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070038#include <linux/seq_file.h>
vignesh babu3fc74262007-07-15 23:41:17 -070039#include <linux/log2.h>
Ben Dooks381be252005-10-30 15:02:56 -080040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/uaccess.h>
Ben Dooks381be252005-10-30 15:02:56 -080042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xattr.h"
44#include "acl.h"
Ben Dooks381be252005-10-30 15:02:56 -080045#include "namei.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvaldsbbae8bc2009-04-06 17:16:47 -070047#ifdef CONFIG_EXT3_DEFAULTS_TO_ORDERED
48 #define EXT3_MOUNT_DEFAULT_DATA_MODE EXT3_MOUNT_ORDERED_DATA
49#else
50 #define EXT3_MOUNT_DEFAULT_DATA_MODE EXT3_MOUNT_WRITEBACK_DATA
51#endif
52
Johann Lombardi71b96252006-01-08 01:03:20 -080053static int ext3_load_journal(struct super_block *, struct ext3_super_block *,
54 unsigned long journal_devnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int ext3_create_journal(struct super_block *, struct ext3_super_block *,
Eric Sandeeneee194e2006-09-27 01:49:30 -070056 unsigned int);
Takashi Satoc4be0c12009-01-09 16:40:58 -080057static int ext3_commit_super(struct super_block *sb,
58 struct ext3_super_block *es,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int sync);
60static void ext3_mark_recovery_complete(struct super_block * sb,
61 struct ext3_super_block * es);
62static void ext3_clear_journal_err(struct super_block * sb,
63 struct ext3_super_block * es);
64static int ext3_sync_fs(struct super_block *sb, int wait);
65static const char *ext3_decode_error(struct super_block * sb, int errno,
66 char nbuf[16]);
67static int ext3_remount (struct super_block * sb, int * flags, char * data);
David Howells726c3342006-06-23 02:02:58 -070068static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf);
Takashi Satoc4be0c12009-01-09 16:40:58 -080069static int ext3_unfreeze(struct super_block *sb);
Takashi Satoc4be0c12009-01-09 16:40:58 -080070static int ext3_freeze(struct super_block *sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Mingming Caoae6ddcc2006-09-27 01:49:27 -070072/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 * Wrappers for journal_start/end.
74 *
75 * The only special thing we need to do here is to make sure that all
76 * journal_end calls result in the superblock being marked dirty, so
77 * that sync() will call the filesystem's write_super callback if
Mingming Caoae6ddcc2006-09-27 01:49:27 -070078 * appropriate.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
80handle_t *ext3_journal_start_sb(struct super_block *sb, int nblocks)
81{
82 journal_t *journal;
83
84 if (sb->s_flags & MS_RDONLY)
85 return ERR_PTR(-EROFS);
86
87 /* Special case here: if the journal has aborted behind our
88 * backs (eg. EIO in the commit thread), then we still need to
89 * take the FS itself readonly cleanly. */
90 journal = EXT3_SB(sb)->s_journal;
91 if (is_journal_aborted(journal)) {
Harvey Harrisone05b6b52008-04-28 02:16:15 -070092 ext3_abort(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 "Detected aborted journal");
94 return ERR_PTR(-EROFS);
95 }
96
97 return journal_start(journal, nblocks);
98}
99
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700100/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 * The only special thing we need to do here is to make sure that all
102 * journal_stop calls result in the superblock being marked dirty, so
103 * that sync() will call the filesystem's write_super callback if
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700104 * appropriate.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
106int __ext3_journal_stop(const char *where, handle_t *handle)
107{
108 struct super_block *sb;
109 int err;
110 int rc;
111
112 sb = handle->h_transaction->t_journal->j_private;
113 err = handle->h_err;
114 rc = journal_stop(handle);
115
116 if (!err)
117 err = rc;
118 if (err)
119 __ext3_std_error(sb, where, err);
120 return err;
121}
122
123void ext3_journal_abort_handle(const char *caller, const char *err_fn,
124 struct buffer_head *bh, handle_t *handle, int err)
125{
126 char nbuf[16];
127 const char *errstr = ext3_decode_error(NULL, err, nbuf);
128
129 if (bh)
130 BUFFER_TRACE(bh, "abort");
131
132 if (!handle->h_err)
133 handle->h_err = err;
134
135 if (is_handle_aborted(handle))
136 return;
137
138 printk(KERN_ERR "%s: aborting transaction: %s in %s\n",
139 caller, errstr, err_fn);
140
141 journal_abort_handle(handle);
142}
143
144/* Deal with the reporting of failure conditions on a filesystem such as
145 * inconsistencies detected or read IO failures.
146 *
147 * On ext2, we can store the error state of the filesystem in the
148 * superblock. That is not possible on ext3, because we may have other
149 * write ordering constraints on the superblock which prevent us from
150 * writing it out straight away; and given that the journal is about to
151 * be aborted, we can't rely on the current, or future, transactions to
152 * write out the superblock safely.
153 *
154 * We'll just use the journal_abort() error code to record an error in
155 * the journal instead. On recovery, the journal will compain about
156 * that error until we've noted it down and cleared it.
157 */
158
159static void ext3_handle_error(struct super_block *sb)
160{
161 struct ext3_super_block *es = EXT3_SB(sb)->s_es;
162
163 EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
164 es->s_state |= cpu_to_le16(EXT3_ERROR_FS);
165
166 if (sb->s_flags & MS_RDONLY)
167 return;
168
Vasily Averin7543fc72006-09-27 01:49:33 -0700169 if (!test_opt (sb, ERRORS_CONT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 journal_t *journal = EXT3_SB(sb)->s_journal;
171
172 EXT3_SB(sb)->s_mount_opt |= EXT3_MOUNT_ABORT;
173 if (journal)
174 journal_abort(journal, -EIO);
175 }
Vasily Averin7543fc72006-09-27 01:49:33 -0700176 if (test_opt (sb, ERRORS_RO)) {
177 printk (KERN_CRIT "Remounting filesystem read-only\n");
178 sb->s_flags |= MS_RDONLY;
179 }
180 ext3_commit_super(sb, es, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (test_opt(sb, ERRORS_PANIC))
182 panic("EXT3-fs (device %s): panic forced after error\n",
183 sb->s_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186void ext3_error (struct super_block * sb, const char * function,
187 const char * fmt, ...)
188{
189 va_list args;
190
191 va_start(args, fmt);
192 printk(KERN_CRIT "EXT3-fs error (device %s): %s: ",sb->s_id, function);
193 vprintk(fmt, args);
194 printk("\n");
195 va_end(args);
196
197 ext3_handle_error(sb);
198}
199
200static const char *ext3_decode_error(struct super_block * sb, int errno,
201 char nbuf[16])
202{
203 char *errstr = NULL;
204
205 switch (errno) {
206 case -EIO:
207 errstr = "IO failure";
208 break;
209 case -ENOMEM:
210 errstr = "Out of memory";
211 break;
212 case -EROFS:
213 if (!sb || EXT3_SB(sb)->s_journal->j_flags & JFS_ABORT)
214 errstr = "Journal has aborted";
215 else
216 errstr = "Readonly filesystem";
217 break;
218 default:
219 /* If the caller passed in an extra buffer for unknown
220 * errors, textualise them now. Else we just return
221 * NULL. */
222 if (nbuf) {
223 /* Check for truncated error codes... */
224 if (snprintf(nbuf, 16, "error %d", -errno) >= 0)
225 errstr = nbuf;
226 }
227 break;
228 }
229
230 return errstr;
231}
232
233/* __ext3_std_error decodes expected errors from journaling functions
234 * automatically and invokes the appropriate error response. */
235
236void __ext3_std_error (struct super_block * sb, const char * function,
237 int errno)
238{
239 char nbuf[16];
Stephen Tweedie30121622005-05-18 11:47:17 -0400240 const char *errstr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Stephen Tweedie30121622005-05-18 11:47:17 -0400242 /* Special case: if the error is EROFS, and we're not already
243 * inside a transaction, then there's really no point in logging
244 * an error. */
245 if (errno == -EROFS && journal_current_handle() == NULL &&
246 (sb->s_flags & MS_RDONLY))
247 return;
248
249 errstr = ext3_decode_error(sb, errno, nbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 printk (KERN_CRIT "EXT3-fs error (device %s) in %s: %s\n",
251 sb->s_id, function, errstr);
252
253 ext3_handle_error(sb);
254}
255
256/*
257 * ext3_abort is a much stronger failure handler than ext3_error. The
258 * abort function may be used to deal with unrecoverable failures such
259 * as journal IO errors or ENOMEM at a critical moment in log management.
260 *
261 * We unconditionally force the filesystem into an ABORT|READONLY state,
262 * unless the error response on the fs has been set to panic in which
263 * case we take the easy way out and panic immediately.
264 */
265
266void ext3_abort (struct super_block * sb, const char * function,
267 const char * fmt, ...)
268{
269 va_list args;
270
271 printk (KERN_CRIT "ext3_abort called.\n");
272
273 va_start(args, fmt);
274 printk(KERN_CRIT "EXT3-fs error (device %s): %s: ",sb->s_id, function);
275 vprintk(fmt, args);
276 printk("\n");
277 va_end(args);
278
279 if (test_opt(sb, ERRORS_PANIC))
280 panic("EXT3-fs panic from previous error\n");
281
282 if (sb->s_flags & MS_RDONLY)
283 return;
284
285 printk(KERN_CRIT "Remounting filesystem read-only\n");
286 EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
287 sb->s_flags |= MS_RDONLY;
288 EXT3_SB(sb)->s_mount_opt |= EXT3_MOUNT_ABORT;
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400289 if (EXT3_SB(sb)->s_journal)
290 journal_abort(EXT3_SB(sb)->s_journal, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
293void ext3_warning (struct super_block * sb, const char * function,
294 const char * fmt, ...)
295{
296 va_list args;
297
298 va_start(args, fmt);
299 printk(KERN_WARNING "EXT3-fs warning (device %s): %s: ",
300 sb->s_id, function);
301 vprintk(fmt, args);
302 printk("\n");
303 va_end(args);
304}
305
306void ext3_update_dynamic_rev(struct super_block *sb)
307{
308 struct ext3_super_block *es = EXT3_SB(sb)->s_es;
309
310 if (le32_to_cpu(es->s_rev_level) > EXT3_GOOD_OLD_REV)
311 return;
312
Harvey Harrisone05b6b52008-04-28 02:16:15 -0700313 ext3_warning(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 "updating to rev %d because of new feature flag, "
315 "running e2fsck is recommended",
316 EXT3_DYNAMIC_REV);
317
318 es->s_first_ino = cpu_to_le32(EXT3_GOOD_OLD_FIRST_INO);
319 es->s_inode_size = cpu_to_le16(EXT3_GOOD_OLD_INODE_SIZE);
320 es->s_rev_level = cpu_to_le32(EXT3_DYNAMIC_REV);
321 /* leave es->s_feature_*compat flags alone */
322 /* es->s_uuid will be set by e2fsck if empty */
323
324 /*
325 * The rest of the superblock fields should be zero, and if not it
326 * means they are likely already in use, so leave them alone. We
327 * can leave it up to e2fsck to clean up any inconsistencies there.
328 */
329}
330
331/*
332 * Open the external journal device
333 */
334static struct block_device *ext3_blkdev_get(dev_t dev)
335{
336 struct block_device *bdev;
337 char b[BDEVNAME_SIZE];
338
339 bdev = open_by_devnum(dev, FMODE_READ|FMODE_WRITE);
340 if (IS_ERR(bdev))
341 goto fail;
342 return bdev;
343
344fail:
345 printk(KERN_ERR "EXT3: failed to open journal device %s: %ld\n",
346 __bdevname(dev, b), PTR_ERR(bdev));
347 return NULL;
348}
349
350/*
351 * Release the journal device
352 */
353static int ext3_blkdev_put(struct block_device *bdev)
354{
355 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500356 return blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
359static int ext3_blkdev_remove(struct ext3_sb_info *sbi)
360{
361 struct block_device *bdev;
362 int ret = -ENODEV;
363
364 bdev = sbi->journal_bdev;
365 if (bdev) {
366 ret = ext3_blkdev_put(bdev);
367 sbi->journal_bdev = NULL;
368 }
369 return ret;
370}
371
372static inline struct inode *orphan_list_entry(struct list_head *l)
373{
374 return &list_entry(l, struct ext3_inode_info, i_orphan)->vfs_inode;
375}
376
377static void dump_orphan_list(struct super_block *sb, struct ext3_sb_info *sbi)
378{
379 struct list_head *l;
380
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700381 printk(KERN_ERR "sb orphan head is %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 le32_to_cpu(sbi->s_es->s_last_orphan));
383
384 printk(KERN_ERR "sb_info orphan list:\n");
385 list_for_each(l, &sbi->s_orphan) {
386 struct inode *inode = orphan_list_entry(l);
387 printk(KERN_ERR " "
Eric Sandeeneee194e2006-09-27 01:49:30 -0700388 "inode %s:%lu at %p: mode %o, nlink %d, next %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 inode->i_sb->s_id, inode->i_ino, inode,
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700390 inode->i_mode, inode->i_nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 NEXT_ORPHAN(inode));
392 }
393}
394
395static void ext3_put_super (struct super_block * sb)
396{
397 struct ext3_sb_info *sbi = EXT3_SB(sb);
398 struct ext3_super_block *es = sbi->s_es;
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400399 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 ext3_xattr_put_super(sb);
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400402 err = journal_destroy(sbi->s_journal);
403 sbi->s_journal = NULL;
404 if (err < 0)
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -0700405 ext3_abort(sb, __func__, "Couldn't clean up the journal");
Hidehiro Kawai44d6f782008-10-27 22:51:46 -0400406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (!(sb->s_flags & MS_RDONLY)) {
408 EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
409 es->s_state = cpu_to_le16(sbi->s_mount_state);
410 BUFFER_TRACE(sbi->s_sbh, "marking dirty");
411 mark_buffer_dirty(sbi->s_sbh);
412 ext3_commit_super(sb, es, 1);
413 }
414
415 for (i = 0; i < sbi->s_gdb_count; i++)
416 brelse(sbi->s_group_desc[i]);
417 kfree(sbi->s_group_desc);
418 percpu_counter_destroy(&sbi->s_freeblocks_counter);
419 percpu_counter_destroy(&sbi->s_freeinodes_counter);
420 percpu_counter_destroy(&sbi->s_dirs_counter);
421 brelse(sbi->s_sbh);
422#ifdef CONFIG_QUOTA
423 for (i = 0; i < MAXQUOTAS; i++)
424 kfree(sbi->s_qf_names[i]);
425#endif
426
427 /* Debugging code just in case the in-memory inode orphan list
428 * isn't empty. The on-disk one can be non-empty if we've
429 * detected an error and taken the fs readonly, but the
430 * in-memory list had better be clean by this point. */
431 if (!list_empty(&sbi->s_orphan))
432 dump_orphan_list(sb, sbi);
433 J_ASSERT(list_empty(&sbi->s_orphan));
434
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700435 invalidate_bdev(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (sbi->journal_bdev && sbi->journal_bdev != sb->s_bdev) {
437 /*
438 * Invalidate the journal device's buffers. We don't want them
439 * floating about in memory - the physical journal device may
440 * hotswapped, and it breaks the `ro-after' testing code.
441 */
442 sync_blockdev(sbi->journal_bdev);
Peter Zijlstraf98393a2007-05-06 14:49:54 -0700443 invalidate_bdev(sbi->journal_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 ext3_blkdev_remove(sbi);
445 }
446 sb->s_fs_info = NULL;
Pekka Enberg5df096d2009-01-07 18:07:25 -0800447 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 kfree(sbi);
449 return;
450}
451
Christoph Lametere18b8902006-12-06 20:33:20 -0800452static struct kmem_cache *ext3_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454/*
455 * Called inside transaction, so use GFP_NOFS
456 */
457static struct inode *ext3_alloc_inode(struct super_block *sb)
458{
459 struct ext3_inode_info *ei;
460
Christoph Lametere6b4f8d2006-12-06 20:33:14 -0800461 ei = kmem_cache_alloc(ext3_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (!ei)
463 return NULL;
464#ifdef CONFIG_EXT3_FS_POSIX_ACL
465 ei->i_acl = EXT3_ACL_NOT_CACHED;
466 ei->i_default_acl = EXT3_ACL_NOT_CACHED;
467#endif
468 ei->i_block_alloc_info = NULL;
469 ei->vfs_inode.i_version = 1;
470 return &ei->vfs_inode;
471}
472
473static void ext3_destroy_inode(struct inode *inode)
474{
Vasily Averin9f7dd932007-07-15 23:40:45 -0700475 if (!list_empty(&(EXT3_I(inode)->i_orphan))) {
476 printk("EXT3 Inode %p: orphan list check failed!\n",
477 EXT3_I(inode));
478 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_ADDRESS, 16, 4,
479 EXT3_I(inode), sizeof(struct ext3_inode_info),
480 false);
481 dump_stack();
482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 kmem_cache_free(ext3_inode_cachep, EXT3_I(inode));
484}
485
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700486static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct ext3_inode_info *ei = (struct ext3_inode_info *) foo;
489
Christoph Lametera35afb82007-05-16 22:10:57 -0700490 INIT_LIST_HEAD(&ei->i_orphan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#ifdef CONFIG_EXT3_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700492 init_rwsem(&ei->xattr_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493#endif
Christoph Lametera35afb82007-05-16 22:10:57 -0700494 mutex_init(&ei->truncate_mutex);
495 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
Mingming Caoae6ddcc2006-09-27 01:49:27 -0700497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498static int init_inodecache(void)
499{
500 ext3_inode_cachep = kmem_cache_create("ext3_inode_cache",
501 sizeof(struct ext3_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800502 0, (SLAB_RECLAIM_ACCOUNT|
503 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900504 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (ext3_inode_cachep == NULL)
506 return -ENOMEM;
507 return 0;
508}
509
510static void destroy_inodecache(void)
511{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700512 kmem_cache_destroy(ext3_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515static void ext3_clear_inode(struct inode *inode)
516{
517 struct ext3_block_alloc_info *rsv = EXT3_I(inode)->i_block_alloc_info;
518#ifdef CONFIG_EXT3_FS_POSIX_ACL
Andrew Mortone6022602006-06-23 02:05:32 -0700519 if (EXT3_I(inode)->i_acl &&
520 EXT3_I(inode)->i_acl != EXT3_ACL_NOT_CACHED) {
521 posix_acl_release(EXT3_I(inode)->i_acl);
522 EXT3_I(inode)->i_acl = EXT3_ACL_NOT_CACHED;
523 }
524 if (EXT3_I(inode)->i_default_acl &&
525 EXT3_I(inode)->i_default_acl != EXT3_ACL_NOT_CACHED) {
526 posix_acl_release(EXT3_I(inode)->i_default_acl);
527 EXT3_I(inode)->i_default_acl = EXT3_ACL_NOT_CACHED;
528 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529#endif
530 ext3_discard_reservation(inode);
531 EXT3_I(inode)->i_block_alloc_info = NULL;
Andrew Mortone6022602006-06-23 02:05:32 -0700532 if (unlikely(rsv))
533 kfree(rsv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200536static inline void ext3_show_quota_options(struct seq_file *seq, struct super_block *sb)
Mark Bellon8fc27512005-09-06 15:16:54 -0700537{
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200538#if defined(CONFIG_QUOTA)
OGAWA Hirofumi275abf52005-09-22 21:44:03 -0700539 struct ext3_sb_info *sbi = EXT3_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Mark Bellon8fc27512005-09-06 15:16:54 -0700541 if (sbi->s_jquota_fmt)
542 seq_printf(seq, ",jqfmt=%s",
543 (sbi->s_jquota_fmt == QFMT_VFS_OLD) ? "vfsold": "vfsv0");
544
545 if (sbi->s_qf_names[USRQUOTA])
546 seq_printf(seq, ",usrjquota=%s", sbi->s_qf_names[USRQUOTA]);
547
548 if (sbi->s_qf_names[GRPQUOTA])
549 seq_printf(seq, ",grpjquota=%s", sbi->s_qf_names[GRPQUOTA]);
550
551 if (sbi->s_mount_opt & EXT3_MOUNT_USRQUOTA)
552 seq_puts(seq, ",usrquota");
553
554 if (sbi->s_mount_opt & EXT3_MOUNT_GRPQUOTA)
555 seq_puts(seq, ",grpquota");
556#endif
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200557}
558
Miklos Szeredi571beed2007-10-16 23:26:26 -0700559/*
560 * Show an option if
561 * - it's set to a non-default value OR
562 * - if the per-sb default is different from the global default
563 */
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200564static int ext3_show_options(struct seq_file *seq, struct vfsmount *vfs)
565{
566 struct super_block *sb = vfs->mnt_sb;
Miklos Szeredi571beed2007-10-16 23:26:26 -0700567 struct ext3_sb_info *sbi = EXT3_SB(sb);
568 struct ext3_super_block *es = sbi->s_es;
569 unsigned long def_mount_opts;
570
571 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
572
573 if (sbi->s_sb_block != 1)
574 seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
575 if (test_opt(sb, MINIX_DF))
576 seq_puts(seq, ",minixdf");
577 if (test_opt(sb, GRPID))
578 seq_puts(seq, ",grpid");
579 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT3_DEFM_BSDGROUPS))
580 seq_puts(seq, ",nogrpid");
581 if (sbi->s_resuid != EXT3_DEF_RESUID ||
582 le16_to_cpu(es->s_def_resuid) != EXT3_DEF_RESUID) {
583 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
584 }
585 if (sbi->s_resgid != EXT3_DEF_RESGID ||
586 le16_to_cpu(es->s_def_resgid) != EXT3_DEF_RESGID) {
587 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
588 }
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -0800589 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredi571beed2007-10-16 23:26:26 -0700590 int def_errors = le16_to_cpu(es->s_errors);
591
592 if (def_errors == EXT3_ERRORS_PANIC ||
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -0800593 def_errors == EXT3_ERRORS_CONTINUE) {
594 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredi571beed2007-10-16 23:26:26 -0700595 }
596 }
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -0800597 if (test_opt(sb, ERRORS_CONT))
598 seq_puts(seq, ",errors=continue");
Miklos Szeredi571beed2007-10-16 23:26:26 -0700599 if (test_opt(sb, ERRORS_PANIC))
600 seq_puts(seq, ",errors=panic");
601 if (test_opt(sb, NO_UID32))
602 seq_puts(seq, ",nouid32");
603 if (test_opt(sb, DEBUG))
604 seq_puts(seq, ",debug");
605 if (test_opt(sb, OLDALLOC))
606 seq_puts(seq, ",oldalloc");
607#ifdef CONFIG_EXT3_FS_XATTR
608 if (test_opt(sb, XATTR_USER))
609 seq_puts(seq, ",user_xattr");
610 if (!test_opt(sb, XATTR_USER) &&
611 (def_mount_opts & EXT3_DEFM_XATTR_USER)) {
612 seq_puts(seq, ",nouser_xattr");
613 }
614#endif
615#ifdef CONFIG_EXT3_FS_POSIX_ACL
616 if (test_opt(sb, POSIX_ACL))
617 seq_puts(seq, ",acl");
618 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT3_DEFM_ACL))
619 seq_puts(seq, ",noacl");
620#endif
621 if (!test_opt(sb, RESERVATION))
622 seq_puts(seq, ",noreservation");
623 if (sbi->s_commit_interval) {
624 seq_printf(seq, ",commit=%u",
625 (unsigned) (sbi->s_commit_interval / HZ));
626 }
627 if (test_opt(sb, BARRIER))
628 seq_puts(seq, ",barrier=1");
629 if (test_opt(sb, NOBH))
630 seq_puts(seq, ",nobh");
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200631
632 if (test_opt(sb, DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA)
633 seq_puts(seq, ",data=journal");
634 else if (test_opt(sb, DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA)
635 seq_puts(seq, ",data=ordered");
636 else if (test_opt(sb, DATA_FLAGS) == EXT3_MOUNT_WRITEBACK_DATA)
637 seq_puts(seq, ",data=writeback");
638
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -0700639 if (test_opt(sb, DATA_ERR_ABORT))
640 seq_puts(seq, ",data_err=abort");
641
Peter Osterlund6cd37cd2005-10-28 20:23:39 +0200642 ext3_show_quota_options(seq, sb);
Mark Bellon8fc27512005-09-06 15:16:54 -0700643
644 return 0;
645}
646
NeilBrownfdb36672006-09-16 12:15:38 -0700647
Christoph Hellwig74af0ba2007-10-21 16:42:07 -0700648static struct inode *ext3_nfs_get_inode(struct super_block *sb,
649 u64 ino, u32 generation)
NeilBrownfdb36672006-09-16 12:15:38 -0700650{
NeilBrownfdb36672006-09-16 12:15:38 -0700651 struct inode *inode;
NeilBrownfdb36672006-09-16 12:15:38 -0700652
653 if (ino < EXT3_FIRST_INO(sb) && ino != EXT3_ROOT_INO)
654 return ERR_PTR(-ESTALE);
655 if (ino > le32_to_cpu(EXT3_SB(sb)->s_es->s_inodes_count))
656 return ERR_PTR(-ESTALE);
657
658 /* iget isn't really right if the inode is currently unallocated!!
659 *
660 * ext3_read_inode will return a bad_inode if the inode had been
661 * deleted, so we should be safe.
662 *
663 * Currently we don't know the generation for parent directory, so
664 * a generation of 0 means "accept any"
665 */
David Howells473043d2008-02-07 00:15:36 -0800666 inode = ext3_iget(sb, ino);
667 if (IS_ERR(inode))
668 return ERR_CAST(inode);
669 if (generation && inode->i_generation != generation) {
NeilBrownfdb36672006-09-16 12:15:38 -0700670 iput(inode);
671 return ERR_PTR(-ESTALE);
672 }
Christoph Hellwig74af0ba2007-10-21 16:42:07 -0700673
674 return inode;
675}
676
677static struct dentry *ext3_fh_to_dentry(struct super_block *sb, struct fid *fid,
678 int fh_len, int fh_type)
679{
680 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
681 ext3_nfs_get_inode);
682}
683
684static struct dentry *ext3_fh_to_parent(struct super_block *sb, struct fid *fid,
685 int fh_len, int fh_type)
686{
687 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
688 ext3_nfs_get_inode);
NeilBrownfdb36672006-09-16 12:15:38 -0700689}
690
Toshiyuki Okajima6b082b52009-01-05 22:38:14 -0500691/*
692 * Try to release metadata pages (indirect blocks, directories) which are
693 * mapped via the block device. Since these pages could have journal heads
694 * which would prevent try_to_free_buffers() from freeing them, we must use
695 * jbd layer's try_to_free_buffers() function to release them.
696 */
697static int bdev_try_to_free_page(struct super_block *sb, struct page *page,
698 gfp_t wait)
699{
700 journal_t *journal = EXT3_SB(sb)->s_journal;
701
702 WARN_ON(PageChecked(page));
703 if (!page_has_buffers(page))
704 return 0;
705 if (journal)
706 return journal_try_to_free_buffers(journal, page,
707 wait & ~__GFP_WAIT);
708 return try_to_free_buffers(page);
709}
710
Mark Bellon8fc27512005-09-06 15:16:54 -0700711#ifdef CONFIG_QUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712#define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group")
713#define QTYPE2MOPT(on, t) ((t)==USRQUOTA?((on)##USRJQUOTA):((on)##GRPJQUOTA))
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715static int ext3_write_dquot(struct dquot *dquot);
716static int ext3_acquire_dquot(struct dquot *dquot);
717static int ext3_release_dquot(struct dquot *dquot);
718static int ext3_mark_dquot_dirty(struct dquot *dquot);
719static int ext3_write_info(struct super_block *sb, int type);
Jan Kara2fd83a42008-04-28 02:14:34 -0700720static int ext3_quota_on(struct super_block *sb, int type, int format_id,
721 char *path, int remount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722static int ext3_quota_on_mount(struct super_block *sb, int type);
723static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
724 size_t len, loff_t off);
725static ssize_t ext3_quota_write(struct super_block *sb, int type,
726 const char *data, size_t len, loff_t off);
727
728static struct dquot_operations ext3_quota_operations = {
Jan Karaa219ce32009-01-12 19:03:19 +0100729 .initialize = dquot_initialize,
730 .drop = dquot_drop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .alloc_space = dquot_alloc_space,
732 .alloc_inode = dquot_alloc_inode,
733 .free_space = dquot_free_space,
734 .free_inode = dquot_free_inode,
735 .transfer = dquot_transfer,
736 .write_dquot = ext3_write_dquot,
737 .acquire_dquot = ext3_acquire_dquot,
738 .release_dquot = ext3_release_dquot,
739 .mark_dirty = ext3_mark_dquot_dirty,
Jan Kara157091a2008-11-25 15:31:34 +0100740 .write_info = ext3_write_info,
741 .alloc_dquot = dquot_alloc,
742 .destroy_dquot = dquot_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743};
744
745static struct quotactl_ops ext3_qctl_operations = {
746 .quota_on = ext3_quota_on,
747 .quota_off = vfs_quota_off,
748 .quota_sync = vfs_quota_sync,
749 .get_info = vfs_get_dqinfo,
750 .set_info = vfs_set_dqinfo,
751 .get_dqblk = vfs_get_dqblk,
752 .set_dqblk = vfs_set_dqblk
753};
754#endif
755
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800756static const struct super_operations ext3_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 .alloc_inode = ext3_alloc_inode,
758 .destroy_inode = ext3_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 .write_inode = ext3_write_inode,
760 .dirty_inode = ext3_dirty_inode,
761 .delete_inode = ext3_delete_inode,
762 .put_super = ext3_put_super,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 .sync_fs = ext3_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800764 .freeze_fs = ext3_freeze,
765 .unfreeze_fs = ext3_unfreeze,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .statfs = ext3_statfs,
767 .remount_fs = ext3_remount,
768 .clear_inode = ext3_clear_inode,
Mark Bellon8fc27512005-09-06 15:16:54 -0700769 .show_options = ext3_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770#ifdef CONFIG_QUOTA
771 .quota_read = ext3_quota_read,
772 .quota_write = ext3_quota_write,
773#endif
Toshiyuki Okajima6b082b52009-01-05 22:38:14 -0500774 .bdev_try_to_free_page = bdev_try_to_free_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775};
776
Christoph Hellwig39655162007-10-21 16:42:17 -0700777static const struct export_operations ext3_export_ops = {
Christoph Hellwig74af0ba2007-10-21 16:42:07 -0700778 .fh_to_dentry = ext3_fh_to_dentry,
779 .fh_to_parent = ext3_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 .get_parent = ext3_get_parent,
781};
782
783enum {
784 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
785 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic, Opt_err_ro,
Adrian Bunk2860b732005-11-08 21:34:59 -0800786 Opt_nouid32, Opt_nocheck, Opt_debug, Opt_oldalloc, Opt_orlov,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 Opt_user_xattr, Opt_nouser_xattr, Opt_acl, Opt_noacl,
Badari Pulavartyade1a292006-06-26 00:25:04 -0700788 Opt_reservation, Opt_noreservation, Opt_noload, Opt_nobh, Opt_bh,
Johann Lombardi71b96252006-01-08 01:03:20 -0800789 Opt_commit, Opt_journal_update, Opt_journal_inum, Opt_journal_dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 Opt_abort, Opt_data_journal, Opt_data_ordered, Opt_data_writeback,
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -0700791 Opt_data_err_abort, Opt_data_err_ignore,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 Opt_usrjquota, Opt_grpjquota, Opt_offusrjquota, Opt_offgrpjquota,
Jan Kara1f545872005-06-23 22:01:04 -0700793 Opt_jqfmt_vfsold, Opt_jqfmt_vfsv0, Opt_quota, Opt_noquota,
Mark Bellon8fc27512005-09-06 15:16:54 -0700794 Opt_ignore, Opt_barrier, Opt_err, Opt_resize, Opt_usrquota,
795 Opt_grpquota
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
Steven Whitehousea447c092008-10-13 10:46:57 +0100798static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 {Opt_bsd_df, "bsddf"},
800 {Opt_minix_df, "minixdf"},
801 {Opt_grpid, "grpid"},
802 {Opt_grpid, "bsdgroups"},
803 {Opt_nogrpid, "nogrpid"},
804 {Opt_nogrpid, "sysvgroups"},
805 {Opt_resgid, "resgid=%u"},
806 {Opt_resuid, "resuid=%u"},
807 {Opt_sb, "sb=%u"},
808 {Opt_err_cont, "errors=continue"},
809 {Opt_err_panic, "errors=panic"},
810 {Opt_err_ro, "errors=remount-ro"},
811 {Opt_nouid32, "nouid32"},
812 {Opt_nocheck, "nocheck"},
813 {Opt_nocheck, "check=none"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 {Opt_debug, "debug"},
815 {Opt_oldalloc, "oldalloc"},
816 {Opt_orlov, "orlov"},
817 {Opt_user_xattr, "user_xattr"},
818 {Opt_nouser_xattr, "nouser_xattr"},
819 {Opt_acl, "acl"},
820 {Opt_noacl, "noacl"},
821 {Opt_reservation, "reservation"},
822 {Opt_noreservation, "noreservation"},
823 {Opt_noload, "noload"},
824 {Opt_nobh, "nobh"},
Badari Pulavartyade1a292006-06-26 00:25:04 -0700825 {Opt_bh, "bh"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 {Opt_commit, "commit=%u"},
827 {Opt_journal_update, "journal=update"},
828 {Opt_journal_inum, "journal=%u"},
Johann Lombardi71b96252006-01-08 01:03:20 -0800829 {Opt_journal_dev, "journal_dev=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 {Opt_abort, "abort"},
831 {Opt_data_journal, "data=journal"},
832 {Opt_data_ordered, "data=ordered"},
833 {Opt_data_writeback, "data=writeback"},
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -0700834 {Opt_data_err_abort, "data_err=abort"},
835 {Opt_data_err_ignore, "data_err=ignore"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 {Opt_offusrjquota, "usrjquota="},
837 {Opt_usrjquota, "usrjquota=%s"},
838 {Opt_offgrpjquota, "grpjquota="},
839 {Opt_grpjquota, "grpjquota=%s"},
840 {Opt_jqfmt_vfsold, "jqfmt=vfsold"},
841 {Opt_jqfmt_vfsv0, "jqfmt=vfsv0"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700842 {Opt_grpquota, "grpquota"},
Jan Kara1f545872005-06-23 22:01:04 -0700843 {Opt_noquota, "noquota"},
844 {Opt_quota, "quota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700845 {Opt_usrquota, "usrquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 {Opt_barrier, "barrier=%u"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 {Opt_resize, "resize"},
Josef Bacik925872162008-03-04 14:29:43 -0800848 {Opt_err, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849};
850
Mingming Cao43d23f92006-06-25 05:48:07 -0700851static ext3_fsblk_t get_sb_block(void **data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Dave Kleikampe9ad5622006-09-27 01:49:35 -0700853 ext3_fsblk_t sb_block;
854 char *options = (char *) *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 if (!options || strncmp(options, "sb=", 3) != 0)
857 return 1; /* Default location */
858 options += 3;
Mingming Cao43d23f92006-06-25 05:48:07 -0700859 /*todo: use simple_strtoll with >32bit ext3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 sb_block = simple_strtoul(options, &options, 0);
861 if (*options && *options != ',') {
862 printk("EXT3-fs: Invalid sb specification: %s\n",
863 (char *) *data);
864 return 1;
865 }
866 if (*options == ',')
867 options++;
868 *data = (void *) options;
869 return sb_block;
870}
871
Johann Lombardi71b96252006-01-08 01:03:20 -0800872static int parse_options (char *options, struct super_block *sb,
Eric Sandeeneee194e2006-09-27 01:49:30 -0700873 unsigned int *inum, unsigned long *journal_devnum,
Mingming Cao43d23f92006-06-25 05:48:07 -0700874 ext3_fsblk_t *n_blocks_count, int is_remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
876 struct ext3_sb_info *sbi = EXT3_SB(sb);
877 char * p;
878 substring_t args[MAX_OPT_ARGS];
879 int data_opt = 0;
880 int option;
881#ifdef CONFIG_QUOTA
Jan Karad06bf1d2008-07-25 01:46:18 -0700882 int qtype, qfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 char *qname;
884#endif
885
886 if (!options)
887 return 1;
888
889 while ((p = strsep (&options, ",")) != NULL) {
890 int token;
891 if (!*p)
892 continue;
893
894 token = match_token(p, tokens, args);
895 switch (token) {
896 case Opt_bsd_df:
897 clear_opt (sbi->s_mount_opt, MINIX_DF);
898 break;
899 case Opt_minix_df:
900 set_opt (sbi->s_mount_opt, MINIX_DF);
901 break;
902 case Opt_grpid:
903 set_opt (sbi->s_mount_opt, GRPID);
904 break;
905 case Opt_nogrpid:
906 clear_opt (sbi->s_mount_opt, GRPID);
907 break;
908 case Opt_resuid:
909 if (match_int(&args[0], &option))
910 return 0;
911 sbi->s_resuid = option;
912 break;
913 case Opt_resgid:
914 if (match_int(&args[0], &option))
915 return 0;
916 sbi->s_resgid = option;
917 break;
918 case Opt_sb:
919 /* handled by get_sb_block() instead of here */
920 /* *sb_block = match_int(&args[0]); */
921 break;
922 case Opt_err_panic:
923 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
924 clear_opt (sbi->s_mount_opt, ERRORS_RO);
925 set_opt (sbi->s_mount_opt, ERRORS_PANIC);
926 break;
927 case Opt_err_ro:
928 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
929 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
930 set_opt (sbi->s_mount_opt, ERRORS_RO);
931 break;
932 case Opt_err_cont:
933 clear_opt (sbi->s_mount_opt, ERRORS_RO);
934 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
935 set_opt (sbi->s_mount_opt, ERRORS_CONT);
936 break;
937 case Opt_nouid32:
938 set_opt (sbi->s_mount_opt, NO_UID32);
939 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 case Opt_nocheck:
941 clear_opt (sbi->s_mount_opt, CHECK);
942 break;
943 case Opt_debug:
944 set_opt (sbi->s_mount_opt, DEBUG);
945 break;
946 case Opt_oldalloc:
947 set_opt (sbi->s_mount_opt, OLDALLOC);
948 break;
949 case Opt_orlov:
950 clear_opt (sbi->s_mount_opt, OLDALLOC);
951 break;
952#ifdef CONFIG_EXT3_FS_XATTR
953 case Opt_user_xattr:
954 set_opt (sbi->s_mount_opt, XATTR_USER);
955 break;
956 case Opt_nouser_xattr:
957 clear_opt (sbi->s_mount_opt, XATTR_USER);
958 break;
959#else
960 case Opt_user_xattr:
961 case Opt_nouser_xattr:
962 printk("EXT3 (no)user_xattr options not supported\n");
963 break;
964#endif
965#ifdef CONFIG_EXT3_FS_POSIX_ACL
966 case Opt_acl:
967 set_opt(sbi->s_mount_opt, POSIX_ACL);
968 break;
969 case Opt_noacl:
970 clear_opt(sbi->s_mount_opt, POSIX_ACL);
971 break;
972#else
973 case Opt_acl:
974 case Opt_noacl:
975 printk("EXT3 (no)acl options not supported\n");
976 break;
977#endif
978 case Opt_reservation:
979 set_opt(sbi->s_mount_opt, RESERVATION);
980 break;
981 case Opt_noreservation:
982 clear_opt(sbi->s_mount_opt, RESERVATION);
983 break;
984 case Opt_journal_update:
985 /* @@@ FIXME */
986 /* Eventually we will want to be able to create
987 a journal file here. For now, only allow the
988 user to specify an existing inode to be the
989 journal file. */
990 if (is_remount) {
991 printk(KERN_ERR "EXT3-fs: cannot specify "
992 "journal on remount\n");
993 return 0;
994 }
995 set_opt (sbi->s_mount_opt, UPDATE_JOURNAL);
996 break;
997 case Opt_journal_inum:
998 if (is_remount) {
999 printk(KERN_ERR "EXT3-fs: cannot specify "
1000 "journal on remount\n");
1001 return 0;
1002 }
1003 if (match_int(&args[0], &option))
1004 return 0;
1005 *inum = option;
1006 break;
Johann Lombardi71b96252006-01-08 01:03:20 -08001007 case Opt_journal_dev:
1008 if (is_remount) {
1009 printk(KERN_ERR "EXT3-fs: cannot specify "
1010 "journal on remount\n");
1011 return 0;
1012 }
1013 if (match_int(&args[0], &option))
1014 return 0;
1015 *journal_devnum = option;
1016 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 case Opt_noload:
1018 set_opt (sbi->s_mount_opt, NOLOAD);
1019 break;
1020 case Opt_commit:
1021 if (match_int(&args[0], &option))
1022 return 0;
1023 if (option < 0)
1024 return 0;
1025 if (option == 0)
1026 option = JBD_DEFAULT_MAX_COMMIT_AGE;
1027 sbi->s_commit_interval = HZ * option;
1028 break;
1029 case Opt_data_journal:
1030 data_opt = EXT3_MOUNT_JOURNAL_DATA;
1031 goto datacheck;
1032 case Opt_data_ordered:
1033 data_opt = EXT3_MOUNT_ORDERED_DATA;
1034 goto datacheck;
1035 case Opt_data_writeback:
1036 data_opt = EXT3_MOUNT_WRITEBACK_DATA;
1037 datacheck:
1038 if (is_remount) {
1039 if ((sbi->s_mount_opt & EXT3_MOUNT_DATA_FLAGS)
1040 != data_opt) {
1041 printk(KERN_ERR
1042 "EXT3-fs: cannot change data "
1043 "mode on remount\n");
1044 return 0;
1045 }
1046 } else {
1047 sbi->s_mount_opt &= ~EXT3_MOUNT_DATA_FLAGS;
1048 sbi->s_mount_opt |= data_opt;
1049 }
1050 break;
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -07001051 case Opt_data_err_abort:
1052 set_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1053 break;
1054 case Opt_data_err_ignore:
1055 clear_opt(sbi->s_mount_opt, DATA_ERR_ABORT);
1056 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057#ifdef CONFIG_QUOTA
1058 case Opt_usrjquota:
1059 qtype = USRQUOTA;
1060 goto set_qf_name;
1061 case Opt_grpjquota:
1062 qtype = GRPQUOTA;
1063set_qf_name:
Jan Karaee0d5ff2008-08-20 18:11:50 +02001064 if (sb_any_quota_loaded(sb) &&
Jan Karad06bf1d2008-07-25 01:46:18 -07001065 !sbi->s_qf_names[qtype]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 printk(KERN_ERR
Jan Kara99aeaf62008-07-25 01:46:17 -07001067 "EXT3-fs: Cannot change journaled "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 "quota options when quota turned on.\n");
1069 return 0;
1070 }
1071 qname = match_strdup(&args[0]);
1072 if (!qname) {
1073 printk(KERN_ERR
1074 "EXT3-fs: not enough memory for "
1075 "storing quotafile name.\n");
1076 return 0;
1077 }
1078 if (sbi->s_qf_names[qtype] &&
1079 strcmp(sbi->s_qf_names[qtype], qname)) {
1080 printk(KERN_ERR
1081 "EXT3-fs: %s quota file already "
1082 "specified.\n", QTYPE2NAME(qtype));
1083 kfree(qname);
1084 return 0;
1085 }
1086 sbi->s_qf_names[qtype] = qname;
1087 if (strchr(sbi->s_qf_names[qtype], '/')) {
1088 printk(KERN_ERR
1089 "EXT3-fs: quotafile must be on "
1090 "filesystem root.\n");
1091 kfree(sbi->s_qf_names[qtype]);
1092 sbi->s_qf_names[qtype] = NULL;
1093 return 0;
1094 }
Jan Kara1f545872005-06-23 22:01:04 -07001095 set_opt(sbi->s_mount_opt, QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
1097 case Opt_offusrjquota:
1098 qtype = USRQUOTA;
1099 goto clear_qf_name;
1100 case Opt_offgrpjquota:
1101 qtype = GRPQUOTA;
1102clear_qf_name:
Jan Karaee0d5ff2008-08-20 18:11:50 +02001103 if (sb_any_quota_loaded(sb) &&
Jan Karad06bf1d2008-07-25 01:46:18 -07001104 sbi->s_qf_names[qtype]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 printk(KERN_ERR "EXT3-fs: Cannot change "
Jan Kara99aeaf62008-07-25 01:46:17 -07001106 "journaled quota options when "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 "quota turned on.\n");
1108 return 0;
1109 }
Jan Kara08c6a962005-07-12 13:58:28 -07001110 /*
1111 * The space will be released later when all options
1112 * are confirmed to be correct
1113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 sbi->s_qf_names[qtype] = NULL;
1115 break;
1116 case Opt_jqfmt_vfsold:
Jan Karad06bf1d2008-07-25 01:46:18 -07001117 qfmt = QFMT_VFS_OLD;
1118 goto set_qf_format;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 case Opt_jqfmt_vfsv0:
Jan Karad06bf1d2008-07-25 01:46:18 -07001120 qfmt = QFMT_VFS_V0;
1121set_qf_format:
Jan Karaee0d5ff2008-08-20 18:11:50 +02001122 if (sb_any_quota_loaded(sb) &&
Jan Karad06bf1d2008-07-25 01:46:18 -07001123 sbi->s_jquota_fmt != qfmt) {
1124 printk(KERN_ERR "EXT3-fs: Cannot change "
1125 "journaled quota options when "
1126 "quota turned on.\n");
1127 return 0;
1128 }
1129 sbi->s_jquota_fmt = qfmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 break;
Jan Kara1f545872005-06-23 22:01:04 -07001131 case Opt_quota:
Mark Bellon8fc27512005-09-06 15:16:54 -07001132 case Opt_usrquota:
Jan Kara1f545872005-06-23 22:01:04 -07001133 set_opt(sbi->s_mount_opt, QUOTA);
Mark Bellon8fc27512005-09-06 15:16:54 -07001134 set_opt(sbi->s_mount_opt, USRQUOTA);
1135 break;
1136 case Opt_grpquota:
1137 set_opt(sbi->s_mount_opt, QUOTA);
1138 set_opt(sbi->s_mount_opt, GRPQUOTA);
Jan Kara1f545872005-06-23 22:01:04 -07001139 break;
1140 case Opt_noquota:
Jan Karaee0d5ff2008-08-20 18:11:50 +02001141 if (sb_any_quota_loaded(sb)) {
Jan Kara1f545872005-06-23 22:01:04 -07001142 printk(KERN_ERR "EXT3-fs: Cannot change quota "
1143 "options when quota turned on.\n");
1144 return 0;
1145 }
1146 clear_opt(sbi->s_mount_opt, QUOTA);
Mark Bellon8fc27512005-09-06 15:16:54 -07001147 clear_opt(sbi->s_mount_opt, USRQUOTA);
1148 clear_opt(sbi->s_mount_opt, GRPQUOTA);
Jan Kara1f545872005-06-23 22:01:04 -07001149 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150#else
Mark Bellon8fc27512005-09-06 15:16:54 -07001151 case Opt_quota:
1152 case Opt_usrquota:
1153 case Opt_grpquota:
Jan Karafa1ff1e2008-04-28 02:16:14 -07001154 printk(KERN_ERR
1155 "EXT3-fs: quota options not supported.\n");
1156 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 case Opt_usrjquota:
1158 case Opt_grpjquota:
1159 case Opt_offusrjquota:
1160 case Opt_offgrpjquota:
1161 case Opt_jqfmt_vfsold:
1162 case Opt_jqfmt_vfsv0:
1163 printk(KERN_ERR
Jan Karafa1ff1e2008-04-28 02:16:14 -07001164 "EXT3-fs: journaled quota options not "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 "supported.\n");
1166 break;
Jan Kara1f545872005-06-23 22:01:04 -07001167 case Opt_noquota:
1168 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169#endif
1170 case Opt_abort:
1171 set_opt(sbi->s_mount_opt, ABORT);
1172 break;
1173 case Opt_barrier:
1174 if (match_int(&args[0], &option))
1175 return 0;
1176 if (option)
1177 set_opt(sbi->s_mount_opt, BARRIER);
1178 else
1179 clear_opt(sbi->s_mount_opt, BARRIER);
1180 break;
1181 case Opt_ignore:
1182 break;
1183 case Opt_resize:
Jan Kara08c6a962005-07-12 13:58:28 -07001184 if (!is_remount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 printk("EXT3-fs: resize option only available "
1186 "for remount\n");
1187 return 0;
1188 }
KAMBAROV, ZAURc7f17212005-06-28 20:45:11 -07001189 if (match_int(&args[0], &option) != 0)
1190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 *n_blocks_count = option;
1192 break;
1193 case Opt_nobh:
1194 set_opt(sbi->s_mount_opt, NOBH);
1195 break;
Badari Pulavartyade1a292006-06-26 00:25:04 -07001196 case Opt_bh:
1197 clear_opt(sbi->s_mount_opt, NOBH);
1198 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 default:
1200 printk (KERN_ERR
1201 "EXT3-fs: Unrecognized mount option \"%s\" "
1202 "or missing value\n", p);
1203 return 0;
1204 }
1205 }
1206#ifdef CONFIG_QUOTA
Mark Bellon8fc27512005-09-06 15:16:54 -07001207 if (sbi->s_qf_names[USRQUOTA] || sbi->s_qf_names[GRPQUOTA]) {
1208 if ((sbi->s_mount_opt & EXT3_MOUNT_USRQUOTA) &&
1209 sbi->s_qf_names[USRQUOTA])
1210 clear_opt(sbi->s_mount_opt, USRQUOTA);
1211
1212 if ((sbi->s_mount_opt & EXT3_MOUNT_GRPQUOTA) &&
1213 sbi->s_qf_names[GRPQUOTA])
1214 clear_opt(sbi->s_mount_opt, GRPQUOTA);
1215
1216 if ((sbi->s_qf_names[USRQUOTA] &&
1217 (sbi->s_mount_opt & EXT3_MOUNT_GRPQUOTA)) ||
1218 (sbi->s_qf_names[GRPQUOTA] &&
1219 (sbi->s_mount_opt & EXT3_MOUNT_USRQUOTA))) {
1220 printk(KERN_ERR "EXT3-fs: old and new quota "
1221 "format mixing.\n");
1222 return 0;
1223 }
1224
1225 if (!sbi->s_jquota_fmt) {
Jan Kara99aeaf62008-07-25 01:46:17 -07001226 printk(KERN_ERR "EXT3-fs: journaled quota format "
Mark Bellon8fc27512005-09-06 15:16:54 -07001227 "not specified.\n");
1228 return 0;
1229 }
1230 } else {
1231 if (sbi->s_jquota_fmt) {
Jan Kara99aeaf62008-07-25 01:46:17 -07001232 printk(KERN_ERR "EXT3-fs: journaled quota format "
1233 "specified with no journaling "
Mark Bellon8fc27512005-09-06 15:16:54 -07001234 "enabled.\n");
1235 return 0;
1236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 }
1238#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return 1;
1240}
1241
1242static int ext3_setup_super(struct super_block *sb, struct ext3_super_block *es,
1243 int read_only)
1244{
1245 struct ext3_sb_info *sbi = EXT3_SB(sb);
1246 int res = 0;
1247
1248 if (le32_to_cpu(es->s_rev_level) > EXT3_MAX_SUPP_REV) {
1249 printk (KERN_ERR "EXT3-fs warning: revision level too high, "
1250 "forcing read-only mode\n");
1251 res = MS_RDONLY;
1252 }
1253 if (read_only)
1254 return res;
1255 if (!(sbi->s_mount_state & EXT3_VALID_FS))
1256 printk (KERN_WARNING "EXT3-fs warning: mounting unchecked fs, "
1257 "running e2fsck is recommended\n");
1258 else if ((sbi->s_mount_state & EXT3_ERROR_FS))
1259 printk (KERN_WARNING
1260 "EXT3-fs warning: mounting fs with errors, "
1261 "running e2fsck is recommended\n");
1262 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
1263 le16_to_cpu(es->s_mnt_count) >=
1264 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
1265 printk (KERN_WARNING
1266 "EXT3-fs warning: maximal mount count reached, "
1267 "running e2fsck is recommended\n");
1268 else if (le32_to_cpu(es->s_checkinterval) &&
1269 (le32_to_cpu(es->s_lastcheck) +
1270 le32_to_cpu(es->s_checkinterval) <= get_seconds()))
1271 printk (KERN_WARNING
1272 "EXT3-fs warning: checktime reached, "
1273 "running e2fsck is recommended\n");
1274#if 0
1275 /* @@@ We _will_ want to clear the valid bit if we find
1276 inconsistencies, to force a fsck at reboot. But for
1277 a plain journaled filesystem we can keep it set as
1278 valid forever! :) */
Marcin Slusarze7f23eb2008-04-28 02:16:06 -07001279 es->s_state &= cpu_to_le16(~EXT3_VALID_FS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280#endif
1281 if (!(__s16) le16_to_cpu(es->s_max_mnt_count))
1282 es->s_max_mnt_count = cpu_to_le16(EXT3_DFL_MAX_MNT_COUNT);
Marcin Slusarz50e8a282008-02-08 04:20:13 -08001283 le16_add_cpu(&es->s_mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 es->s_mtime = cpu_to_le32(get_seconds());
1285 ext3_update_dynamic_rev(sb);
1286 EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
1287
1288 ext3_commit_super(sb, es, 1);
1289 if (test_opt(sb, DEBUG))
1290 printk(KERN_INFO "[EXT3 FS bs=%lu, gc=%lu, "
1291 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
1292 sb->s_blocksize,
1293 sbi->s_groups_count,
1294 EXT3_BLOCKS_PER_GROUP(sb),
1295 EXT3_INODES_PER_GROUP(sb),
1296 sbi->s_mount_opt);
1297
1298 printk(KERN_INFO "EXT3 FS on %s, ", sb->s_id);
1299 if (EXT3_SB(sb)->s_journal->j_inode == NULL) {
1300 char b[BDEVNAME_SIZE];
1301
1302 printk("external journal on %s\n",
1303 bdevname(EXT3_SB(sb)->s_journal->j_dev, b));
1304 } else {
1305 printk("internal journal\n");
1306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return res;
1308}
1309
1310/* Called at mount-time, super-block is locked */
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001311static int ext3_check_descriptors(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
1313 struct ext3_sb_info *sbi = EXT3_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 int i;
1315
1316 ext3_debug ("Checking group descriptors");
1317
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001318 for (i = 0; i < sbi->s_groups_count; i++) {
1319 struct ext3_group_desc *gdp = ext3_get_group_desc(sb, i, NULL);
Akinobu Mita1eaafea2008-04-28 02:16:07 -07001320 ext3_fsblk_t first_block = ext3_group_first_block_no(sb, i);
1321 ext3_fsblk_t last_block;
Akinobu Mita197cd65a2008-02-06 01:40:16 -08001322
Eric Sandeen855565e2006-09-27 01:49:29 -07001323 if (i == sbi->s_groups_count - 1)
1324 last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
1325 else
1326 last_block = first_block +
1327 (EXT3_BLOCKS_PER_GROUP(sb) - 1);
1328
Eric Sandeen855565e2006-09-27 01:49:29 -07001329 if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
1330 le32_to_cpu(gdp->bg_block_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 {
1332 ext3_error (sb, "ext3_check_descriptors",
1333 "Block bitmap for group %d"
1334 " not in group (block %lu)!",
1335 i, (unsigned long)
1336 le32_to_cpu(gdp->bg_block_bitmap));
1337 return 0;
1338 }
Eric Sandeen855565e2006-09-27 01:49:29 -07001339 if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
1340 le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 {
1342 ext3_error (sb, "ext3_check_descriptors",
1343 "Inode bitmap for group %d"
1344 " not in group (block %lu)!",
1345 i, (unsigned long)
1346 le32_to_cpu(gdp->bg_inode_bitmap));
1347 return 0;
1348 }
Eric Sandeen855565e2006-09-27 01:49:29 -07001349 if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
Eric Sandeen780dcdb2007-07-26 10:41:11 -07001350 le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
Eric Sandeen855565e2006-09-27 01:49:29 -07001351 last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 {
1353 ext3_error (sb, "ext3_check_descriptors",
1354 "Inode table for group %d"
1355 " not in group (block %lu)!",
1356 i, (unsigned long)
1357 le32_to_cpu(gdp->bg_inode_table));
1358 return 0;
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
1361
1362 sbi->s_es->s_free_blocks_count=cpu_to_le32(ext3_count_free_blocks(sb));
1363 sbi->s_es->s_free_inodes_count=cpu_to_le32(ext3_count_free_inodes(sb));
1364 return 1;
1365}
1366
1367
1368/* ext3_orphan_cleanup() walks a singly-linked list of inodes (starting at
1369 * the superblock) which were deleted from all directories, but held open by
1370 * a process at the time of a crash. We walk the list and try to delete these
1371 * inodes at recovery time (only with a read-write filesystem).
1372 *
1373 * In order to keep the orphan inode chain consistent during traversal (in
1374 * case of crash during recovery), we link each inode into the superblock
1375 * orphan list_head and handle it the same way as an inode deletion during
1376 * normal operation (which journals the operations for us).
1377 *
1378 * We only do an iget() and an iput() on each inode, which is very safe if we
1379 * accidentally point at an in-use or already deleted inode. The worst that
1380 * can happen in this case is that we get a "bit already cleared" message from
1381 * ext3_free_inode(). The only reason we would point at a wrong inode is if
1382 * e2fsck was run on this filesystem, and it must have already done the orphan
1383 * inode cleanup for us, so we can safely abort without any further action.
1384 */
1385static void ext3_orphan_cleanup (struct super_block * sb,
1386 struct ext3_super_block * es)
1387{
1388 unsigned int s_flags = sb->s_flags;
1389 int nr_orphans = 0, nr_truncates = 0;
1390#ifdef CONFIG_QUOTA
1391 int i;
1392#endif
1393 if (!es->s_last_orphan) {
1394 jbd_debug(4, "no orphan inodes to clean up\n");
1395 return;
1396 }
1397
Eric Sandeena8f48a92006-12-06 20:40:13 -08001398 if (bdev_read_only(sb->s_bdev)) {
1399 printk(KERN_ERR "EXT3-fs: write access "
1400 "unavailable, skipping orphan cleanup.\n");
1401 return;
1402 }
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (EXT3_SB(sb)->s_mount_state & EXT3_ERROR_FS) {
1405 if (es->s_last_orphan)
1406 jbd_debug(1, "Errors on filesystem, "
1407 "clearing orphan list.\n");
1408 es->s_last_orphan = 0;
1409 jbd_debug(1, "Skipping orphan recovery on fs with errors.\n");
1410 return;
1411 }
1412
1413 if (s_flags & MS_RDONLY) {
1414 printk(KERN_INFO "EXT3-fs: %s: orphan cleanup on readonly fs\n",
1415 sb->s_id);
1416 sb->s_flags &= ~MS_RDONLY;
1417 }
1418#ifdef CONFIG_QUOTA
1419 /* Needed for iput() to work correctly and not trash data */
1420 sb->s_flags |= MS_ACTIVE;
1421 /* Turn on quotas so that they are updated correctly */
1422 for (i = 0; i < MAXQUOTAS; i++) {
1423 if (EXT3_SB(sb)->s_qf_names[i]) {
1424 int ret = ext3_quota_on_mount(sb, i);
1425 if (ret < 0)
1426 printk(KERN_ERR
Jan Kara99aeaf62008-07-25 01:46:17 -07001427 "EXT3-fs: Cannot turn on journaled "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 "quota: error %d\n", ret);
1429 }
1430 }
1431#endif
1432
1433 while (es->s_last_orphan) {
1434 struct inode *inode;
1435
David Howells473043d2008-02-07 00:15:36 -08001436 inode = ext3_orphan_get(sb, le32_to_cpu(es->s_last_orphan));
1437 if (IS_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 es->s_last_orphan = 0;
1439 break;
1440 }
1441
1442 list_add(&EXT3_I(inode)->i_orphan, &EXT3_SB(sb)->s_orphan);
Jan Kara81a05222009-01-26 16:58:01 +01001443 vfs_dq_init(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (inode->i_nlink) {
1445 printk(KERN_DEBUG
Eric Sandeeneee194e2006-09-27 01:49:30 -07001446 "%s: truncating inode %lu to %Ld bytes\n",
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001447 __func__, inode->i_ino, inode->i_size);
Eric Sandeeneee194e2006-09-27 01:49:30 -07001448 jbd_debug(2, "truncating inode %lu to %Ld bytes\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 inode->i_ino, inode->i_size);
1450 ext3_truncate(inode);
1451 nr_truncates++;
1452 } else {
1453 printk(KERN_DEBUG
Eric Sandeeneee194e2006-09-27 01:49:30 -07001454 "%s: deleting unreferenced inode %lu\n",
Harvey Harrisone05b6b52008-04-28 02:16:15 -07001455 __func__, inode->i_ino);
Eric Sandeeneee194e2006-09-27 01:49:30 -07001456 jbd_debug(2, "deleting unreferenced inode %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 inode->i_ino);
1458 nr_orphans++;
1459 }
1460 iput(inode); /* The delete magic happens here! */
1461 }
1462
1463#define PLURAL(x) (x), ((x)==1) ? "" : "s"
1464
1465 if (nr_orphans)
1466 printk(KERN_INFO "EXT3-fs: %s: %d orphan inode%s deleted\n",
1467 sb->s_id, PLURAL(nr_orphans));
1468 if (nr_truncates)
1469 printk(KERN_INFO "EXT3-fs: %s: %d truncate%s cleaned up\n",
1470 sb->s_id, PLURAL(nr_truncates));
1471#ifdef CONFIG_QUOTA
1472 /* Turn quotas off */
1473 for (i = 0; i < MAXQUOTAS; i++) {
1474 if (sb_dqopt(sb)->files[i])
Jan Kara2fd83a42008-04-28 02:14:34 -07001475 vfs_quota_off(sb, i, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 }
1477#endif
1478 sb->s_flags = s_flags; /* Restore MS_RDONLY status */
1479}
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481/*
1482 * Maximal file size. There is a direct, and {,double-,triple-}indirect
1483 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
1484 * We need to be 1 filesystem block less than the 2^32 sector limit.
1485 */
1486static loff_t ext3_max_size(int bits)
1487{
1488 loff_t res = EXT3_NDIR_BLOCKS;
Aneesh Kumar K.Vfe7fdc32008-01-28 23:58:26 -05001489 int meta_blocks;
1490 loff_t upper_limit;
1491
1492 /* This is calculated to be the largest file size for a
1493 * dense, file such that the total number of
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.Vfe7fdc32008-01-28 23:58:26 -05001495 * does not exceed 2^32 -1
1496 * __u32 i_blocks representing the total number of
1497 * 512 bytes blocks of the file
1498 */
1499 upper_limit = (1LL << 32) - 1;
1500
1501 /* total blocks in file system block size */
1502 upper_limit >>= (bits - 9);
1503
1504
1505 /* indirect blocks */
1506 meta_blocks = 1;
1507 /* double indirect blocks */
1508 meta_blocks += 1 + (1LL << (bits-2));
1509 /* tripple indirect blocks */
1510 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
1511
1512 upper_limit -= meta_blocks;
1513 upper_limit <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 res += 1LL << (bits-2);
1516 res += 1LL << (2*(bits-2));
1517 res += 1LL << (3*(bits-2));
1518 res <<= bits;
1519 if (res > upper_limit)
1520 res = upper_limit;
Aneesh Kumar K.Vfe7fdc32008-01-28 23:58:26 -05001521
1522 if (res > MAX_LFS_FILESIZE)
1523 res = MAX_LFS_FILESIZE;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return res;
1526}
1527
Mingming Cao43d23f92006-06-25 05:48:07 -07001528static ext3_fsblk_t descriptor_loc(struct super_block *sb,
1529 ext3_fsblk_t logic_sb_block,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 int nr)
1531{
1532 struct ext3_sb_info *sbi = EXT3_SB(sb);
Mingming Cao43d23f92006-06-25 05:48:07 -07001533 unsigned long bg, first_meta_bg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int has_super = 0;
1535
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
1537
1538 if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_META_BG) ||
1539 nr < first_meta_bg)
1540 return (logic_sb_block + nr + 1);
1541 bg = sbi->s_desc_per_block * nr;
1542 if (ext3_bg_has_super(sb, bg))
1543 has_super = 1;
Mingming Cao43d23f92006-06-25 05:48:07 -07001544 return (has_super + ext3_group_first_block_no(sb, bg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
1547
1548static int ext3_fill_super (struct super_block *sb, void *data, int silent)
1549{
1550 struct buffer_head * bh;
1551 struct ext3_super_block *es = NULL;
1552 struct ext3_sb_info *sbi;
Mingming Cao43d23f92006-06-25 05:48:07 -07001553 ext3_fsblk_t block;
1554 ext3_fsblk_t sb_block = get_sb_block(&data);
1555 ext3_fsblk_t logic_sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 unsigned long offset = 0;
Eric Sandeeneee194e2006-09-27 01:49:30 -07001557 unsigned int journal_inum = 0;
Johann Lombardi71b96252006-01-08 01:03:20 -08001558 unsigned long journal_devnum = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 unsigned long def_mount_opts;
1560 struct inode *root;
1561 int blocksize;
1562 int hblock;
1563 int db_count;
1564 int i;
1565 int needs_recovery;
David Howells473043d2008-02-07 00:15:36 -08001566 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 __le32 features;
Peter Zijlstra833f4072007-10-16 23:25:45 -07001568 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -07001570 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 if (!sbi)
1572 return -ENOMEM;
Pekka Enberg5df096d2009-01-07 18:07:25 -08001573
1574 sbi->s_blockgroup_lock =
1575 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
1576 if (!sbi->s_blockgroup_lock) {
1577 kfree(sbi);
1578 return -ENOMEM;
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 sbi->s_mount_opt = 0;
1582 sbi->s_resuid = EXT3_DEF_RESUID;
1583 sbi->s_resgid = EXT3_DEF_RESGID;
Miklos Szeredi571beed2007-10-16 23:26:26 -07001584 sbi->s_sb_block = sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 unlock_kernel();
1587
1588 blocksize = sb_min_blocksize(sb, EXT3_MIN_BLOCK_SIZE);
1589 if (!blocksize) {
1590 printk(KERN_ERR "EXT3-fs: unable to set blocksize\n");
1591 goto out_fail;
1592 }
1593
1594 /*
1595 * The ext3 superblock will not be buffer aligned for other than 1kB
1596 * block sizes. We need to calculate the offset from buffer start.
1597 */
1598 if (blocksize != EXT3_MIN_BLOCK_SIZE) {
1599 logic_sb_block = (sb_block * EXT3_MIN_BLOCK_SIZE) / blocksize;
1600 offset = (sb_block * EXT3_MIN_BLOCK_SIZE) % blocksize;
1601 } else {
1602 logic_sb_block = sb_block;
1603 }
1604
1605 if (!(bh = sb_bread(sb, logic_sb_block))) {
1606 printk (KERN_ERR "EXT3-fs: unable to read superblock\n");
1607 goto out_fail;
1608 }
1609 /*
1610 * Note: s_es must be initialized as soon as possible because
1611 * some ext3 macro-instructions depend on its value
1612 */
1613 es = (struct ext3_super_block *) (((char *)bh->b_data) + offset);
1614 sbi->s_es = es;
1615 sb->s_magic = le16_to_cpu(es->s_magic);
1616 if (sb->s_magic != EXT3_SUPER_MAGIC)
1617 goto cantfind_ext3;
1618
1619 /* Set defaults before we parse the mount options */
1620 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
1621 if (def_mount_opts & EXT3_DEFM_DEBUG)
1622 set_opt(sbi->s_mount_opt, DEBUG);
1623 if (def_mount_opts & EXT3_DEFM_BSDGROUPS)
1624 set_opt(sbi->s_mount_opt, GRPID);
1625 if (def_mount_opts & EXT3_DEFM_UID16)
1626 set_opt(sbi->s_mount_opt, NO_UID32);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001627#ifdef CONFIG_EXT3_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (def_mount_opts & EXT3_DEFM_XATTR_USER)
1629 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001630#endif
1631#ifdef CONFIG_EXT3_FS_POSIX_ACL
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (def_mount_opts & EXT3_DEFM_ACL)
1633 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -08001634#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_DATA)
1636 sbi->s_mount_opt |= EXT3_MOUNT_JOURNAL_DATA;
1637 else if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_ORDERED)
1638 sbi->s_mount_opt |= EXT3_MOUNT_ORDERED_DATA;
1639 else if ((def_mount_opts & EXT3_DEFM_JMODE) == EXT3_DEFM_JMODE_WBACK)
1640 sbi->s_mount_opt |= EXT3_MOUNT_WRITEBACK_DATA;
1641
1642 if (le16_to_cpu(sbi->s_es->s_errors) == EXT3_ERRORS_PANIC)
1643 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -08001644 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT3_ERRORS_CONTINUE)
Dmitry Mishin2245d7c2006-10-11 01:21:49 -07001645 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.V1eca93f2008-02-06 01:40:14 -08001646 else
1647 set_opt(sbi->s_mount_opt, ERRORS_RO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
1649 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
1650 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
1651
1652 set_opt(sbi->s_mount_opt, RESERVATION);
1653
Johann Lombardi71b96252006-01-08 01:03:20 -08001654 if (!parse_options ((char *) data, sb, &journal_inum, &journal_devnum,
1655 NULL, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 goto failed_mount;
1657
1658 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1659 ((sbi->s_mount_opt & EXT3_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1660
1661 if (le32_to_cpu(es->s_rev_level) == EXT3_GOOD_OLD_REV &&
1662 (EXT3_HAS_COMPAT_FEATURE(sb, ~0U) ||
1663 EXT3_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
1664 EXT3_HAS_INCOMPAT_FEATURE(sb, ~0U)))
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001665 printk(KERN_WARNING
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 "EXT3-fs warning: feature flags set on rev 0 fs, "
1667 "running e2fsck is recommended\n");
1668 /*
1669 * Check feature flags regardless of the revision level, since we
1670 * previously didn't change the revision level when setting the flags,
1671 * so there is a chance incompat flags are set on a rev 0 filesystem.
1672 */
1673 features = EXT3_HAS_INCOMPAT_FEATURE(sb, ~EXT3_FEATURE_INCOMPAT_SUPP);
1674 if (features) {
1675 printk(KERN_ERR "EXT3-fs: %s: couldn't mount because of "
1676 "unsupported optional features (%x).\n",
1677 sb->s_id, le32_to_cpu(features));
1678 goto failed_mount;
1679 }
1680 features = EXT3_HAS_RO_COMPAT_FEATURE(sb, ~EXT3_FEATURE_RO_COMPAT_SUPP);
1681 if (!(sb->s_flags & MS_RDONLY) && features) {
1682 printk(KERN_ERR "EXT3-fs: %s: couldn't mount RDWR because of "
1683 "unsupported optional features (%x).\n",
1684 sb->s_id, le32_to_cpu(features));
1685 goto failed_mount;
1686 }
1687 blocksize = BLOCK_SIZE << le32_to_cpu(es->s_log_block_size);
1688
1689 if (blocksize < EXT3_MIN_BLOCK_SIZE ||
1690 blocksize > EXT3_MAX_BLOCK_SIZE) {
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001691 printk(KERN_ERR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 "EXT3-fs: Unsupported filesystem blocksize %d on %s.\n",
1693 blocksize, sb->s_id);
1694 goto failed_mount;
1695 }
1696
Martin K. Petersene1defc42009-05-22 17:17:49 -04001697 hblock = bdev_logical_block_size(sb->s_bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 if (sb->s_blocksize != blocksize) {
1699 /*
1700 * Make sure the blocksize for the filesystem is larger
1701 * than the hardware sectorsize for the machine.
1702 */
1703 if (blocksize < hblock) {
1704 printk(KERN_ERR "EXT3-fs: blocksize %d too small for "
1705 "device blocksize %d.\n", blocksize, hblock);
1706 goto failed_mount;
1707 }
1708
1709 brelse (bh);
Takashi Sato0f0a89e2007-10-18 03:06:56 -07001710 if (!sb_set_blocksize(sb, blocksize)) {
1711 printk(KERN_ERR "EXT3-fs: bad blocksize %d.\n",
1712 blocksize);
1713 goto out_fail;
1714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 logic_sb_block = (sb_block * EXT3_MIN_BLOCK_SIZE) / blocksize;
1716 offset = (sb_block * EXT3_MIN_BLOCK_SIZE) % blocksize;
1717 bh = sb_bread(sb, logic_sb_block);
1718 if (!bh) {
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001719 printk(KERN_ERR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 "EXT3-fs: Can't read superblock on 2nd try.\n");
1721 goto failed_mount;
1722 }
1723 es = (struct ext3_super_block *)(((char *)bh->b_data) + offset);
1724 sbi->s_es = es;
1725 if (es->s_magic != cpu_to_le16(EXT3_SUPER_MAGIC)) {
Mingming Caoae6ddcc2006-09-27 01:49:27 -07001726 printk (KERN_ERR
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 "EXT3-fs: Magic mismatch, very weird !\n");
1728 goto failed_mount;
1729 }
1730 }
1731
1732 sb->s_maxbytes = ext3_max_size(sb->s_blocksize_bits);
1733
1734 if (le32_to_cpu(es->s_rev_level) == EXT3_GOOD_OLD_REV) {
1735 sbi->s_inode_size = EXT3_GOOD_OLD_INODE_SIZE;
1736 sbi->s_first_ino = EXT3_GOOD_OLD_FIRST_INO;
1737 } else {
1738 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
1739 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
1740 if ((sbi->s_inode_size < EXT3_GOOD_OLD_INODE_SIZE) ||
vignesh babu3fc74262007-07-15 23:41:17 -07001741 (!is_power_of_2(sbi->s_inode_size)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 (sbi->s_inode_size > blocksize)) {
1743 printk (KERN_ERR
1744 "EXT3-fs: unsupported inode size: %d\n",
1745 sbi->s_inode_size);
1746 goto failed_mount;
1747 }
1748 }
1749 sbi->s_frag_size = EXT3_MIN_FRAG_SIZE <<
1750 le32_to_cpu(es->s_log_frag_size);
1751 if (blocksize != sbi->s_frag_size) {
1752 printk(KERN_ERR
1753 "EXT3-fs: fragsize %lu != blocksize %u (unsupported)\n",
1754 sbi->s_frag_size, blocksize);
1755 goto failed_mount;
1756 }
1757 sbi->s_frags_per_block = 1;
1758 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
1759 sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
1760 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
Andries E. Brouwerb47b6f32007-12-17 16:19:55 -08001761 if (EXT3_INODE_SIZE(sb) == 0 || EXT3_INODES_PER_GROUP(sb) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 goto cantfind_ext3;
1763 sbi->s_inodes_per_block = blocksize / EXT3_INODE_SIZE(sb);
1764 if (sbi->s_inodes_per_block == 0)
1765 goto cantfind_ext3;
1766 sbi->s_itb_per_group = sbi->s_inodes_per_group /
1767 sbi->s_inodes_per_block;
1768 sbi->s_desc_per_block = blocksize / sizeof(struct ext3_group_desc);
1769 sbi->s_sbh = bh;
1770 sbi->s_mount_state = le16_to_cpu(es->s_state);
David Howellsf0d1b0b2006-12-08 02:37:49 -08001771 sbi->s_addr_per_block_bits = ilog2(EXT3_ADDR_PER_BLOCK(sb));
1772 sbi->s_desc_per_block_bits = ilog2(EXT3_DESC_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 for (i=0; i < 4; i++)
1774 sbi->s_hash_seed[i] = le32_to_cpu(es->s_hash_seed[i]);
1775 sbi->s_def_hash_version = es->s_def_hash_version;
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001776 i = le32_to_cpu(es->s_flags);
1777 if (i & EXT2_FLAGS_UNSIGNED_HASH)
1778 sbi->s_hash_unsigned = 3;
1779 else if ((i & EXT2_FLAGS_SIGNED_HASH) == 0) {
1780#ifdef __CHAR_UNSIGNED__
1781 es->s_flags |= cpu_to_le32(EXT2_FLAGS_UNSIGNED_HASH);
1782 sbi->s_hash_unsigned = 3;
1783#else
1784 es->s_flags |= cpu_to_le32(EXT2_FLAGS_SIGNED_HASH);
1785#endif
Theodore Ts'o5e1f8c92008-10-28 13:21:55 -04001786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
1788 if (sbi->s_blocks_per_group > blocksize * 8) {
1789 printk (KERN_ERR
1790 "EXT3-fs: #blocks per group too big: %lu\n",
1791 sbi->s_blocks_per_group);
1792 goto failed_mount;
1793 }
1794 if (sbi->s_frags_per_group > blocksize * 8) {
1795 printk (KERN_ERR
1796 "EXT3-fs: #fragments per group too big: %lu\n",
1797 sbi->s_frags_per_group);
1798 goto failed_mount;
1799 }
1800 if (sbi->s_inodes_per_group > blocksize * 8) {
1801 printk (KERN_ERR
1802 "EXT3-fs: #inodes per group too big: %lu\n",
1803 sbi->s_inodes_per_group);
1804 goto failed_mount;
1805 }
1806
Mingming Caofcd5df32006-06-25 05:47:50 -07001807 if (le32_to_cpu(es->s_blocks_count) >
1808 (sector_t)(~0ULL) >> (sb->s_blocksize_bits - 9)) {
1809 printk(KERN_ERR "EXT3-fs: filesystem on %s:"
1810 " too large to mount safely\n", sb->s_id);
1811 if (sizeof(sector_t) < 8)
1812 printk(KERN_WARNING "EXT3-fs: CONFIG_LBD not "
1813 "enabled\n");
1814 goto failed_mount;
1815 }
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 if (EXT3_BLOCKS_PER_GROUP(sb) == 0)
1818 goto cantfind_ext3;
Eric Sandeen855565e2006-09-27 01:49:29 -07001819 sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
1820 le32_to_cpu(es->s_first_data_block) - 1)
1821 / EXT3_BLOCKS_PER_GROUP(sb)) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 db_count = (sbi->s_groups_count + EXT3_DESC_PER_BLOCK(sb) - 1) /
1823 EXT3_DESC_PER_BLOCK(sb);
1824 sbi->s_group_desc = kmalloc(db_count * sizeof (struct buffer_head *),
1825 GFP_KERNEL);
1826 if (sbi->s_group_desc == NULL) {
1827 printk (KERN_ERR "EXT3-fs: not enough memory\n");
1828 goto failed_mount;
1829 }
1830
Pekka Enberg5df096d2009-01-07 18:07:25 -08001831 bgl_lock_init(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 for (i = 0; i < db_count; i++) {
1834 block = descriptor_loc(sb, logic_sb_block, i);
1835 sbi->s_group_desc[i] = sb_bread(sb, block);
1836 if (!sbi->s_group_desc[i]) {
1837 printk (KERN_ERR "EXT3-fs: "
1838 "can't read group descriptor %d\n", i);
1839 db_count = i;
1840 goto failed_mount2;
1841 }
1842 }
1843 if (!ext3_check_descriptors (sb)) {
Theodore Ts'od2e5b132006-06-25 05:47:52 -07001844 printk(KERN_ERR "EXT3-fs: group descriptors corrupted!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 goto failed_mount2;
1846 }
1847 sbi->s_gdb_count = db_count;
1848 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1849 spin_lock_init(&sbi->s_next_gen_lock);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001850
Peter Zijlstra833f4072007-10-16 23:25:45 -07001851 err = percpu_counter_init(&sbi->s_freeblocks_counter,
1852 ext3_count_free_blocks(sb));
1853 if (!err) {
1854 err = percpu_counter_init(&sbi->s_freeinodes_counter,
1855 ext3_count_free_inodes(sb));
1856 }
1857 if (!err) {
1858 err = percpu_counter_init(&sbi->s_dirs_counter,
1859 ext3_count_dirs(sb));
1860 }
1861 if (err) {
1862 printk(KERN_ERR "EXT3-fs: insufficient memory\n");
1863 goto failed_mount3;
1864 }
Mingming Cao0216bfc2006-06-23 02:05:41 -07001865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 /* per fileystem reservation list head & lock */
1867 spin_lock_init(&sbi->s_rsv_window_lock);
1868 sbi->s_rsv_window_root = RB_ROOT;
1869 /* Add a single, static dummy reservation to the start of the
1870 * reservation window list --- it gives us a placeholder for
1871 * append-at-start-of-list which makes the allocation logic
1872 * _much_ simpler. */
1873 sbi->s_rsv_window_head.rsv_start = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
1874 sbi->s_rsv_window_head.rsv_end = EXT3_RESERVE_WINDOW_NOT_ALLOCATED;
1875 sbi->s_rsv_window_head.rsv_alloc_hit = 0;
1876 sbi->s_rsv_window_head.rsv_goal_size = 0;
1877 ext3_rsv_window_add(sb, &sbi->s_rsv_window_head);
1878
1879 /*
1880 * set up enough so that it can read an inode
1881 */
1882 sb->s_op = &ext3_sops;
1883 sb->s_export_op = &ext3_export_ops;
1884 sb->s_xattr = ext3_xattr_handlers;
1885#ifdef CONFIG_QUOTA
1886 sb->s_qcop = &ext3_qctl_operations;
1887 sb->dq_op = &ext3_quota_operations;
1888#endif
1889 INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
1890
1891 sb->s_root = NULL;
1892
1893 needs_recovery = (es->s_last_orphan != 0 ||
1894 EXT3_HAS_INCOMPAT_FEATURE(sb,
1895 EXT3_FEATURE_INCOMPAT_RECOVER));
1896
1897 /*
1898 * The first inode we look at is the journal inode. Don't try
1899 * root first: it may be modified in the journal!
1900 */
1901 if (!test_opt(sb, NOLOAD) &&
1902 EXT3_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
Johann Lombardi71b96252006-01-08 01:03:20 -08001903 if (ext3_load_journal(sb, es, journal_devnum))
Mingming Cao0216bfc2006-06-23 02:05:41 -07001904 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 } else if (journal_inum) {
1906 if (ext3_create_journal(sb, es, journal_inum))
Mingming Cao0216bfc2006-06-23 02:05:41 -07001907 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 } else {
1909 if (!silent)
1910 printk (KERN_ERR
1911 "ext3: No journal on filesystem on %s\n",
1912 sb->s_id);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001913 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915
1916 /* We have now updated the journal if required, so we can
1917 * validate the data journaling mode. */
1918 switch (test_opt(sb, DATA_FLAGS)) {
1919 case 0:
1920 /* No mode set, assume a default based on the journal
1921 capabilities: ORDERED_DATA if the journal can
1922 cope, else JOURNAL_DATA */
1923 if (journal_check_available_features
1924 (sbi->s_journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE))
Linus Torvaldsbbae8bc2009-04-06 17:16:47 -07001925 set_opt(sbi->s_mount_opt, DEFAULT_DATA_MODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 else
1927 set_opt(sbi->s_mount_opt, JOURNAL_DATA);
1928 break;
1929
1930 case EXT3_MOUNT_ORDERED_DATA:
1931 case EXT3_MOUNT_WRITEBACK_DATA:
1932 if (!journal_check_available_features
1933 (sbi->s_journal, 0, 0, JFS_FEATURE_INCOMPAT_REVOKE)) {
1934 printk(KERN_ERR "EXT3-fs: Journal does not support "
1935 "requested data journaling mode\n");
Mingming Cao0216bfc2006-06-23 02:05:41 -07001936 goto failed_mount4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938 default:
1939 break;
1940 }
1941
1942 if (test_opt(sb, NOBH)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (!(test_opt(sb, DATA_FLAGS) == EXT3_MOUNT_WRITEBACK_DATA)) {
1944 printk(KERN_WARNING "EXT3-fs: Ignoring nobh option - "
1945 "its supported only with writeback mode\n");
1946 clear_opt(sbi->s_mount_opt, NOBH);
1947 }
1948 }
1949 /*
1950 * The journal_load will have done any necessary log recovery,
1951 * so we can safely mount the rest of the filesystem now.
1952 */
1953
David Howells473043d2008-02-07 00:15:36 -08001954 root = ext3_iget(sb, EXT3_ROOT_INO);
1955 if (IS_ERR(root)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 printk(KERN_ERR "EXT3-fs: get root inode failed\n");
David Howells473043d2008-02-07 00:15:36 -08001957 ret = PTR_ERR(root);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001958 goto failed_mount4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
David Howells473043d2008-02-07 00:15:36 -08001961 iput(root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 printk(KERN_ERR "EXT3-fs: corrupt root inode, run e2fsck\n");
Mingming Cao0216bfc2006-06-23 02:05:41 -07001963 goto failed_mount4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
David Howells473043d2008-02-07 00:15:36 -08001965 sb->s_root = d_alloc_root(root);
1966 if (!sb->s_root) {
1967 printk(KERN_ERR "EXT3-fs: get root dentry failed\n");
1968 iput(root);
1969 ret = -ENOMEM;
1970 goto failed_mount4;
1971 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 ext3_setup_super (sb, es, sb->s_flags & MS_RDONLY);
1974 /*
1975 * akpm: core read_super() calls in here with the superblock locked.
1976 * That deadlocks, because orphan cleanup needs to lock the superblock
1977 * in numerous places. Here we just pop the lock - it's relatively
1978 * harmless, because we are now ready to accept write_super() requests,
1979 * and aviro says that's the only reason for hanging onto the
1980 * superblock lock.
1981 */
1982 EXT3_SB(sb)->s_mount_state |= EXT3_ORPHAN_FS;
1983 ext3_orphan_cleanup(sb, es);
1984 EXT3_SB(sb)->s_mount_state &= ~EXT3_ORPHAN_FS;
1985 if (needs_recovery)
1986 printk (KERN_INFO "EXT3-fs: recovery complete.\n");
1987 ext3_mark_recovery_complete(sb, es);
1988 printk (KERN_INFO "EXT3-fs: mounted filesystem with %s data mode.\n",
1989 test_opt(sb,DATA_FLAGS) == EXT3_MOUNT_JOURNAL_DATA ? "journal":
1990 test_opt(sb,DATA_FLAGS) == EXT3_MOUNT_ORDERED_DATA ? "ordered":
1991 "writeback");
1992
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 lock_kernel();
1994 return 0;
1995
1996cantfind_ext3:
1997 if (!silent)
1998 printk(KERN_ERR "VFS: Can't find ext3 filesystem on dev %s.\n",
1999 sb->s_id);
2000 goto failed_mount;
2001
Mingming Cao0216bfc2006-06-23 02:05:41 -07002002failed_mount4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 journal_destroy(sbi->s_journal);
Mingming Cao0216bfc2006-06-23 02:05:41 -07002004failed_mount3:
2005 percpu_counter_destroy(&sbi->s_freeblocks_counter);
2006 percpu_counter_destroy(&sbi->s_freeinodes_counter);
2007 percpu_counter_destroy(&sbi->s_dirs_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008failed_mount2:
2009 for (i = 0; i < db_count; i++)
2010 brelse(sbi->s_group_desc[i]);
2011 kfree(sbi->s_group_desc);
2012failed_mount:
2013#ifdef CONFIG_QUOTA
2014 for (i = 0; i < MAXQUOTAS; i++)
2015 kfree(sbi->s_qf_names[i]);
2016#endif
2017 ext3_blkdev_remove(sbi);
2018 brelse(bh);
2019out_fail:
2020 sb->s_fs_info = NULL;
Manish Katiyarde5ce032009-05-17 23:52:47 -04002021 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 kfree(sbi);
2023 lock_kernel();
David Howells473043d2008-02-07 00:15:36 -08002024 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025}
2026
2027/*
2028 * Setup any per-fs journal parameters now. We'll do this both on
2029 * initial mount, once the journal has been initialised but before we've
Mingming Caoae6ddcc2006-09-27 01:49:27 -07002030 * done any recovery; and again on any subsequent remount.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 */
2032static void ext3_init_journal_params(struct super_block *sb, journal_t *journal)
2033{
2034 struct ext3_sb_info *sbi = EXT3_SB(sb);
2035
2036 if (sbi->s_commit_interval)
2037 journal->j_commit_interval = sbi->s_commit_interval;
2038 /* We could also set up an ext3-specific default for the commit
2039 * interval here, but for now we'll just fall back to the jbd
2040 * default. */
2041
2042 spin_lock(&journal->j_state_lock);
2043 if (test_opt(sb, BARRIER))
2044 journal->j_flags |= JFS_BARRIER;
2045 else
2046 journal->j_flags &= ~JFS_BARRIER;
Hidehiro Kawai0e4fb5e2008-10-18 20:27:57 -07002047 if (test_opt(sb, DATA_ERR_ABORT))
2048 journal->j_flags |= JFS_ABORT_ON_SYNCDATA_ERR;
2049 else
2050 journal->j_flags &= ~JFS_ABORT_ON_SYNCDATA_ERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 spin_unlock(&journal->j_state_lock);
2052}
2053
Eric Sandeeneee194e2006-09-27 01:49:30 -07002054static journal_t *ext3_get_journal(struct super_block *sb,
2055 unsigned int journal_inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 struct inode *journal_inode;
2058 journal_t *journal;
2059
2060 /* First, test for the existence of a valid inode on disk. Bad
2061 * things happen if we iget() an unused inode, as the subsequent
2062 * iput() will try to delete it. */
2063
David Howells473043d2008-02-07 00:15:36 -08002064 journal_inode = ext3_iget(sb, journal_inum);
2065 if (IS_ERR(journal_inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 printk(KERN_ERR "EXT3-fs: no journal found.\n");
2067 return NULL;
2068 }
2069 if (!journal_inode->i_nlink) {
2070 make_bad_inode(journal_inode);
2071 iput(journal_inode);
2072 printk(KERN_ERR "EXT3-fs: journal inode is deleted.\n");
2073 return NULL;
2074 }
2075
2076 jbd_debug(2, "Journal inode found at %p: %Ld bytes\n",
2077 journal_inode, journal_inode->i_size);
David Howells473043d2008-02-07 00:15:36 -08002078 if (!S_ISREG(journal_inode->i_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 printk(KERN_ERR "EXT3-fs: invalid journal inode.\n");
2080 iput(journal_inode);
2081 return NULL;
2082 }
2083
2084 journal = journal_init_inode(journal_inode);
2085 if (!journal) {
2086 printk(KERN_ERR "EXT3-fs: Could not load journal inode\n");
2087 iput(journal_inode);
2088 return NULL;
2089 }
2090 journal->j_private = sb;
2091 ext3_init_journal_params(sb, journal);
2092 return journal;
2093}
2094
2095static journal_t *ext3_get_dev_journal(struct super_block *sb,
2096 dev_t j_dev)
2097{
2098 struct buffer_head * bh;
2099 journal_t *journal;
Mingming Cao43d23f92006-06-25 05:48:07 -07002100 ext3_fsblk_t start;
Mingming Cao1c2bf372006-06-25 05:48:06 -07002101 ext3_fsblk_t len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 int hblock, blocksize;
Mingming Cao43d23f92006-06-25 05:48:07 -07002103 ext3_fsblk_t sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 unsigned long offset;
2105 struct ext3_super_block * es;
2106 struct block_device *bdev;
2107
2108 bdev = ext3_blkdev_get(j_dev);
2109 if (bdev == NULL)
2110 return NULL;
2111
2112 if (bd_claim(bdev, sb)) {
2113 printk(KERN_ERR
2114 "EXT3: failed to claim external journal device.\n");
Al Viro9a1c3542008-02-22 20:40:24 -05002115 blkdev_put(bdev, FMODE_READ|FMODE_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return NULL;
2117 }
2118
2119 blocksize = sb->s_blocksize;
Martin K. Petersene1defc42009-05-22 17:17:49 -04002120 hblock = bdev_logical_block_size(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (blocksize < hblock) {
2122 printk(KERN_ERR
2123 "EXT3-fs: blocksize too small for journal device.\n");
2124 goto out_bdev;
2125 }
2126
2127 sb_block = EXT3_MIN_BLOCK_SIZE / blocksize;
2128 offset = EXT3_MIN_BLOCK_SIZE % blocksize;
2129 set_blocksize(bdev, blocksize);
2130 if (!(bh = __bread(bdev, sb_block, blocksize))) {
2131 printk(KERN_ERR "EXT3-fs: couldn't read superblock of "
2132 "external journal\n");
2133 goto out_bdev;
2134 }
2135
2136 es = (struct ext3_super_block *) (((char *)bh->b_data) + offset);
2137 if ((le16_to_cpu(es->s_magic) != EXT3_SUPER_MAGIC) ||
2138 !(le32_to_cpu(es->s_feature_incompat) &
2139 EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) {
2140 printk(KERN_ERR "EXT3-fs: external journal has "
2141 "bad superblock\n");
2142 brelse(bh);
2143 goto out_bdev;
2144 }
2145
2146 if (memcmp(EXT3_SB(sb)->s_es->s_journal_uuid, es->s_uuid, 16)) {
2147 printk(KERN_ERR "EXT3-fs: journal UUID does not match\n");
2148 brelse(bh);
2149 goto out_bdev;
2150 }
2151
2152 len = le32_to_cpu(es->s_blocks_count);
2153 start = sb_block + 1;
2154 brelse(bh); /* we're done with the superblock */
2155
2156 journal = journal_init_dev(bdev, sb->s_bdev,
2157 start, len, blocksize);
2158 if (!journal) {
2159 printk(KERN_ERR "EXT3-fs: failed to create device journal\n");
2160 goto out_bdev;
2161 }
2162 journal->j_private = sb;
2163 ll_rw_block(READ, 1, &journal->j_sb_buffer);
2164 wait_on_buffer(journal->j_sb_buffer);
2165 if (!buffer_uptodate(journal->j_sb_buffer)) {
2166 printk(KERN_ERR "EXT3-fs: I/O error on journal device\n");
2167 goto out_journal;
2168 }
2169 if (be32_to_cpu(journal->j_superblock->s_nr_users) != 1) {
2170 printk(KERN_ERR "EXT3-fs: External journal has more than one "
2171 "user (unsupported) - %d\n",
2172 be32_to_cpu(journal->j_superblock->s_nr_users));
2173 goto out_journal;
2174 }
2175 EXT3_SB(sb)->journal_bdev = bdev;
2176 ext3_init_journal_params(sb, journal);
2177 return journal;
2178out_journal:
2179 journal_destroy(journal);
2180out_bdev:
2181 ext3_blkdev_put(bdev);
2182 return NULL;
2183}
2184
Johann Lombardi71b96252006-01-08 01:03:20 -08002185static int ext3_load_journal(struct super_block *sb,
2186 struct ext3_super_block *es,
2187 unsigned long journal_devnum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 journal_t *journal;
Eric Sandeeneee194e2006-09-27 01:49:30 -07002190 unsigned int journal_inum = le32_to_cpu(es->s_journal_inum);
Johann Lombardi71b96252006-01-08 01:03:20 -08002191 dev_t journal_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 int err = 0;
2193 int really_read_only;
2194
Johann Lombardi71b96252006-01-08 01:03:20 -08002195 if (journal_devnum &&
2196 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2197 printk(KERN_INFO "EXT3-fs: external journal device major/minor "
2198 "numbers have changed\n");
2199 journal_dev = new_decode_dev(journal_devnum);
2200 } else
2201 journal_dev = new_decode_dev(le32_to_cpu(es->s_journal_dev));
2202
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 really_read_only = bdev_read_only(sb->s_bdev);
2204
2205 /*
2206 * Are we loading a blank journal or performing recovery after a
2207 * crash? For recovery, we need to check in advance whether we
2208 * can get read-write access to the device.
2209 */
2210
2211 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER)) {
2212 if (sb->s_flags & MS_RDONLY) {
2213 printk(KERN_INFO "EXT3-fs: INFO: recovery "
2214 "required on readonly filesystem.\n");
2215 if (really_read_only) {
2216 printk(KERN_ERR "EXT3-fs: write access "
2217 "unavailable, cannot proceed.\n");
2218 return -EROFS;
2219 }
2220 printk (KERN_INFO "EXT3-fs: write access will "
2221 "be enabled during recovery.\n");
2222 }
2223 }
2224
2225 if (journal_inum && journal_dev) {
2226 printk(KERN_ERR "EXT3-fs: filesystem has both journal "
2227 "and inode journals!\n");
2228 return -EINVAL;
2229 }
2230
2231 if (journal_inum) {
2232 if (!(journal = ext3_get_journal(sb, journal_inum)))
2233 return -EINVAL;
2234 } else {
2235 if (!(journal = ext3_get_dev_journal(sb, journal_dev)))
2236 return -EINVAL;
2237 }
2238
2239 if (!really_read_only && test_opt(sb, UPDATE_JOURNAL)) {
2240 err = journal_update_format(journal);
2241 if (err) {
2242 printk(KERN_ERR "EXT3-fs: error updating journal.\n");
2243 journal_destroy(journal);
2244 return err;
2245 }
2246 }
2247
2248 if (!EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER))
2249 err = journal_wipe(journal, !really_read_only);
2250 if (!err)
2251 err = journal_load(journal);
2252
2253 if (err) {
2254 printk(KERN_ERR "EXT3-fs: error loading journal.\n");
2255 journal_destroy(journal);
2256 return err;
2257 }
2258
2259 EXT3_SB(sb)->s_journal = journal;
2260 ext3_clear_journal_err(sb, es);
Johann Lombardi71b96252006-01-08 01:03:20 -08002261
2262 if (journal_devnum &&
2263 journal_devnum != le32_to_cpu(es->s_journal_dev)) {
2264 es->s_journal_dev = cpu_to_le32(journal_devnum);
Johann Lombardi71b96252006-01-08 01:03:20 -08002265
2266 /* Make sure we flush the recovery flag to disk. */
2267 ext3_commit_super(sb, es, 1);
2268 }
2269
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return 0;
2271}
2272
2273static int ext3_create_journal(struct super_block * sb,
2274 struct ext3_super_block * es,
Eric Sandeeneee194e2006-09-27 01:49:30 -07002275 unsigned int journal_inum)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 journal_t *journal;
Borislav Petkov952d9de2007-07-15 23:41:45 -07002278 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
2280 if (sb->s_flags & MS_RDONLY) {
2281 printk(KERN_ERR "EXT3-fs: readonly filesystem when trying to "
2282 "create journal.\n");
2283 return -EROFS;
2284 }
2285
Borislav Petkov952d9de2007-07-15 23:41:45 -07002286 journal = ext3_get_journal(sb, journal_inum);
2287 if (!journal)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return -EINVAL;
2289
Eric Sandeeneee194e2006-09-27 01:49:30 -07002290 printk(KERN_INFO "EXT3-fs: creating new journal on inode %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 journal_inum);
2292
Borislav Petkov952d9de2007-07-15 23:41:45 -07002293 err = journal_create(journal);
2294 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 printk(KERN_ERR "EXT3-fs: error creating journal.\n");
2296 journal_destroy(journal);
2297 return -EIO;
2298 }
2299
2300 EXT3_SB(sb)->s_journal = journal;
2301
2302 ext3_update_dynamic_rev(sb);
2303 EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
2304 EXT3_SET_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL);
2305
2306 es->s_journal_inum = cpu_to_le32(journal_inum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 /* Make sure we flush the recovery flag to disk. */
2309 ext3_commit_super(sb, es, 1);
2310
2311 return 0;
2312}
2313
Takashi Satoc4be0c12009-01-09 16:40:58 -08002314static int ext3_commit_super(struct super_block *sb,
2315 struct ext3_super_block *es,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 int sync)
2317{
2318 struct buffer_head *sbh = EXT3_SB(sb)->s_sbh;
Takashi Satoc4be0c12009-01-09 16:40:58 -08002319 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 if (!sbh)
Takashi Satoc4be0c12009-01-09 16:40:58 -08002322 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 es->s_wtime = cpu_to_le32(get_seconds());
2324 es->s_free_blocks_count = cpu_to_le32(ext3_count_free_blocks(sb));
2325 es->s_free_inodes_count = cpu_to_le32(ext3_count_free_inodes(sb));
2326 BUFFER_TRACE(sbh, "marking dirty");
2327 mark_buffer_dirty(sbh);
2328 if (sync)
Takashi Satoc4be0c12009-01-09 16:40:58 -08002329 error = sync_dirty_buffer(sbh);
2330 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331}
2332
2333
2334/*
2335 * Have we just finished recovery? If so, and if we are mounting (or
2336 * remounting) the filesystem readonly, then we will end up with a
2337 * consistent fs on disk. Record that fact.
2338 */
2339static void ext3_mark_recovery_complete(struct super_block * sb,
2340 struct ext3_super_block * es)
2341{
2342 journal_t *journal = EXT3_SB(sb)->s_journal;
2343
2344 journal_lock_updates(journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002345 if (journal_flush(journal) < 0)
2346 goto out;
2347
Jan Kara030703e2007-07-15 23:41:08 -07002348 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (EXT3_HAS_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER) &&
2350 sb->s_flags & MS_RDONLY) {
2351 EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 ext3_commit_super(sb, es, 1);
2353 }
Jan Kara030703e2007-07-15 23:41:08 -07002354 unlock_super(sb);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002355
2356out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 journal_unlock_updates(journal);
2358}
2359
2360/*
2361 * If we are mounting (or read-write remounting) a filesystem whose journal
2362 * has recorded an error from a previous lifetime, move that error to the
2363 * main filesystem now.
2364 */
2365static void ext3_clear_journal_err(struct super_block * sb,
2366 struct ext3_super_block * es)
2367{
2368 journal_t *journal;
2369 int j_errno;
2370 const char *errstr;
2371
2372 journal = EXT3_SB(sb)->s_journal;
2373
2374 /*
2375 * Now check for any error status which may have been recorded in the
2376 * journal by a prior ext3_error() or ext3_abort()
2377 */
2378
2379 j_errno = journal_errno(journal);
2380 if (j_errno) {
2381 char nbuf[16];
2382
2383 errstr = ext3_decode_error(sb, j_errno, nbuf);
Harvey Harrisone05b6b52008-04-28 02:16:15 -07002384 ext3_warning(sb, __func__, "Filesystem error recorded "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 "from previous mount: %s", errstr);
Harvey Harrisone05b6b52008-04-28 02:16:15 -07002386 ext3_warning(sb, __func__, "Marking fs in need of "
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 "filesystem check.");
2388
2389 EXT3_SB(sb)->s_mount_state |= EXT3_ERROR_FS;
2390 es->s_state |= cpu_to_le16(EXT3_ERROR_FS);
2391 ext3_commit_super (sb, es, 1);
2392
2393 journal_clear_err(journal);
2394 }
2395}
2396
2397/*
2398 * Force the running and committing transactions to commit,
2399 * and wait on the commit.
2400 */
2401int ext3_force_commit(struct super_block *sb)
2402{
2403 journal_t *journal;
2404 int ret;
2405
2406 if (sb->s_flags & MS_RDONLY)
2407 return 0;
2408
2409 journal = EXT3_SB(sb)->s_journal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 ret = ext3_journal_force_commit(journal);
2411 return ret;
2412}
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414static int ext3_sync_fs(struct super_block *sb, int wait)
2415{
Jan Kara02ac5972009-02-11 13:04:26 -08002416 tid_t target;
Arthur Jonesc87591b2008-11-06 12:53:35 -08002417
Jan Kara02ac5972009-02-11 13:04:26 -08002418 if (journal_start_commit(EXT3_SB(sb)->s_journal, &target)) {
2419 if (wait)
2420 log_wait_commit(EXT3_SB(sb)->s_journal, target);
2421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 return 0;
2423}
2424
2425/*
2426 * LVM calls this function before a (read-only) snapshot is created. This
2427 * gives us a chance to flush the journal completely and mark the fs clean.
2428 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08002429static int ext3_freeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430{
Takashi Satoc4be0c12009-01-09 16:40:58 -08002431 int error = 0;
2432 journal_t *journal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 if (!(sb->s_flags & MS_RDONLY)) {
Takashi Satoc4be0c12009-01-09 16:40:58 -08002435 journal = EXT3_SB(sb)->s_journal;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436
2437 /* Now we set up the journal barrier. */
2438 journal_lock_updates(journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002439
2440 /*
2441 * We don't want to clear needs_recovery flag when we failed
2442 * to flush the journal.
2443 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08002444 error = journal_flush(journal);
2445 if (error < 0)
2446 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 /* Journal blocked and flushed, clear needs_recovery flag. */
2449 EXT3_CLEAR_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
Takashi Satoc4be0c12009-01-09 16:40:58 -08002450 error = ext3_commit_super(sb, EXT3_SB(sb)->s_es, 1);
2451 if (error)
2452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08002454 return 0;
2455
2456out:
2457 journal_unlock_updates(journal);
2458 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
2461/*
2462 * Called by LVM after the snapshot is done. We need to reset the RECOVER
2463 * flag here, even though the filesystem is not technically dirty yet.
2464 */
Takashi Satoc4be0c12009-01-09 16:40:58 -08002465static int ext3_unfreeze(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
2467 if (!(sb->s_flags & MS_RDONLY)) {
2468 lock_super(sb);
2469 /* Reser the needs_recovery flag before the fs is unlocked. */
2470 EXT3_SET_INCOMPAT_FEATURE(sb, EXT3_FEATURE_INCOMPAT_RECOVER);
2471 ext3_commit_super(sb, EXT3_SB(sb)->s_es, 1);
2472 unlock_super(sb);
2473 journal_unlock_updates(EXT3_SB(sb)->s_journal);
2474 }
Takashi Satoc4be0c12009-01-09 16:40:58 -08002475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477
2478static int ext3_remount (struct super_block * sb, int * flags, char * data)
2479{
2480 struct ext3_super_block * es;
2481 struct ext3_sb_info *sbi = EXT3_SB(sb);
Mingming Cao43d23f92006-06-25 05:48:07 -07002482 ext3_fsblk_t n_blocks_count = 0;
Jan Kara08c6a962005-07-12 13:58:28 -07002483 unsigned long old_sb_flags;
2484 struct ext3_mount_options old_opts;
2485 int err;
2486#ifdef CONFIG_QUOTA
2487 int i;
2488#endif
2489
2490 /* Store the original options */
2491 old_sb_flags = sb->s_flags;
2492 old_opts.s_mount_opt = sbi->s_mount_opt;
2493 old_opts.s_resuid = sbi->s_resuid;
2494 old_opts.s_resgid = sbi->s_resgid;
2495 old_opts.s_commit_interval = sbi->s_commit_interval;
2496#ifdef CONFIG_QUOTA
2497 old_opts.s_jquota_fmt = sbi->s_jquota_fmt;
2498 for (i = 0; i < MAXQUOTAS; i++)
2499 old_opts.s_qf_names[i] = sbi->s_qf_names[i];
2500#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
2502 /*
2503 * Allow the "check" option to be passed as a remount option.
2504 */
Johann Lombardi71b96252006-01-08 01:03:20 -08002505 if (!parse_options(data, sb, NULL, NULL, &n_blocks_count, 1)) {
Jan Kara08c6a962005-07-12 13:58:28 -07002506 err = -EINVAL;
2507 goto restore_opts;
2508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 if (sbi->s_mount_opt & EXT3_MOUNT_ABORT)
Harvey Harrisone05b6b52008-04-28 02:16:15 -07002511 ext3_abort(sb, __func__, "Abort forced by user");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
2513 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
2514 ((sbi->s_mount_opt & EXT3_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
2515
2516 es = sbi->s_es;
2517
2518 ext3_init_journal_params(sb, sbi->s_journal);
2519
2520 if ((*flags & MS_RDONLY) != (sb->s_flags & MS_RDONLY) ||
2521 n_blocks_count > le32_to_cpu(es->s_blocks_count)) {
Jan Kara08c6a962005-07-12 13:58:28 -07002522 if (sbi->s_mount_opt & EXT3_MOUNT_ABORT) {
2523 err = -EROFS;
2524 goto restore_opts;
2525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 if (*flags & MS_RDONLY) {
2528 /*
2529 * First of all, the unconditional stuff we have to do
2530 * to disable replay of the journal when we next remount
2531 */
2532 sb->s_flags |= MS_RDONLY;
2533
2534 /*
2535 * OK, test if we are remounting a valid rw partition
2536 * readonly, and if so set the rdonly flag and then
2537 * mark the partition as valid again.
2538 */
2539 if (!(es->s_state & cpu_to_le16(EXT3_VALID_FS)) &&
2540 (sbi->s_mount_state & EXT3_VALID_FS))
2541 es->s_state = cpu_to_le16(sbi->s_mount_state);
2542
Jan Kara030703e2007-07-15 23:41:08 -07002543 /*
2544 * We have to unlock super so that we can wait for
2545 * transactions.
2546 */
2547 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 ext3_mark_recovery_complete(sb, es);
Jan Kara030703e2007-07-15 23:41:08 -07002549 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 } else {
2551 __le32 ret;
2552 if ((ret = EXT3_HAS_RO_COMPAT_FEATURE(sb,
2553 ~EXT3_FEATURE_RO_COMPAT_SUPP))) {
2554 printk(KERN_WARNING "EXT3-fs: %s: couldn't "
2555 "remount RDWR because of unsupported "
2556 "optional features (%x).\n",
2557 sb->s_id, le32_to_cpu(ret));
Jan Kara08c6a962005-07-12 13:58:28 -07002558 err = -EROFS;
2559 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 }
Eric Sandeenea9a05a2007-02-10 01:46:07 -08002561
2562 /*
2563 * If we have an unprocessed orphan list hanging
2564 * around from a previously readonly bdev mount,
2565 * require a full umount/remount for now.
2566 */
2567 if (es->s_last_orphan) {
2568 printk(KERN_WARNING "EXT3-fs: %s: couldn't "
2569 "remount RDWR because of unprocessed "
2570 "orphan inode list. Please "
2571 "umount/remount instead.\n",
2572 sb->s_id);
2573 err = -EINVAL;
2574 goto restore_opts;
2575 }
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 /*
2578 * Mounting a RDONLY partition read-write, so reread
2579 * and store the current valid flag. (It may have
2580 * been changed by e2fsck since we originally mounted
2581 * the partition.)
2582 */
2583 ext3_clear_journal_err(sb, es);
2584 sbi->s_mount_state = le16_to_cpu(es->s_state);
Dave Kleikampa4e4de32006-09-27 01:49:36 -07002585 if ((err = ext3_group_extend(sb, es, n_blocks_count)))
Jan Kara08c6a962005-07-12 13:58:28 -07002586 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (!ext3_setup_super (sb, es, 0))
2588 sb->s_flags &= ~MS_RDONLY;
2589 }
2590 }
Jan Kara08c6a962005-07-12 13:58:28 -07002591#ifdef CONFIG_QUOTA
2592 /* Release old quota file names */
2593 for (i = 0; i < MAXQUOTAS; i++)
2594 if (old_opts.s_qf_names[i] &&
2595 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
2596 kfree(old_opts.s_qf_names[i]);
2597#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 return 0;
Jan Kara08c6a962005-07-12 13:58:28 -07002599restore_opts:
2600 sb->s_flags = old_sb_flags;
2601 sbi->s_mount_opt = old_opts.s_mount_opt;
2602 sbi->s_resuid = old_opts.s_resuid;
2603 sbi->s_resgid = old_opts.s_resgid;
2604 sbi->s_commit_interval = old_opts.s_commit_interval;
2605#ifdef CONFIG_QUOTA
2606 sbi->s_jquota_fmt = old_opts.s_jquota_fmt;
2607 for (i = 0; i < MAXQUOTAS; i++) {
2608 if (sbi->s_qf_names[i] &&
2609 old_opts.s_qf_names[i] != sbi->s_qf_names[i])
2610 kfree(sbi->s_qf_names[i]);
2611 sbi->s_qf_names[i] = old_opts.s_qf_names[i];
2612 }
2613#endif
2614 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615}
2616
David Howells726c3342006-06-23 02:02:58 -07002617static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
David Howells726c3342006-06-23 02:02:58 -07002619 struct super_block *sb = dentry->d_sb;
Alex Tomas09fe3162006-03-24 03:16:16 -08002620 struct ext3_sb_info *sbi = EXT3_SB(sb);
2621 struct ext3_super_block *es = sbi->s_es;
Pekka Enberg50ee0a32006-12-06 20:35:28 -08002622 u64 fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002624 if (test_opt(sb, MINIX_DF)) {
2625 sbi->s_overhead_last = 0;
2626 } else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
2627 unsigned long ngroups = sbi->s_groups_count, i;
2628 ext3_fsblk_t overhead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 smp_rmb();
2630
2631 /*
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002632 * Compute the overhead (FS structures). This is constant
2633 * for a given filesystem unless the number of block groups
2634 * changes so we cache the previous value until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 */
2636
2637 /*
2638 * All of the blocks before first_data_block are
2639 * overhead
2640 */
2641 overhead = le32_to_cpu(es->s_first_data_block);
2642
2643 /*
2644 * Add the overhead attributed to the superblock and
2645 * block group descriptors. If the sparse superblocks
2646 * feature is turned on, then not all groups have this.
2647 */
2648 for (i = 0; i < ngroups; i++) {
2649 overhead += ext3_bg_has_super(sb, i) +
2650 ext3_bg_num_gdb(sb, i);
2651 cond_resched();
2652 }
2653
2654 /*
2655 * Every block group has an inode bitmap, a block
2656 * bitmap, and an inode table.
2657 */
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002658 overhead += ngroups * (2 + sbi->s_itb_per_group);
2659 sbi->s_overhead_last = overhead;
2660 smp_wmb();
2661 sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
2663
2664 buf->f_type = EXT3_SUPER_MAGIC;
2665 buf->f_bsize = sb->s_blocksize;
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002666 buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07002667 buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter);
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002668 es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
2670 if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
2671 buf->f_bavail = 0;
2672 buf->f_files = le32_to_cpu(es->s_inodes_count);
Peter Zijlstra52d9f3b2007-10-16 23:25:44 -07002673 buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
Badari Pulavartya71ce8c2007-07-15 23:41:59 -07002674 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 buf->f_namelen = EXT3_NAME_LEN;
Pekka Enberg50ee0a32006-12-06 20:35:28 -08002676 fsid = le64_to_cpup((void *)es->s_uuid) ^
2677 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
2678 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
2679 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return 0;
2681}
2682
2683/* Helper function for writing quotas on sync - we need to start transaction before quota file
2684 * is locked for write. Otherwise the are possible deadlocks:
2685 * Process 1 Process 2
2686 * ext3_create() quota_sync()
2687 * journal_start() write_dquot()
Jan Kara81a05222009-01-26 16:58:01 +01002688 * vfs_dq_init() down(dqio_mutex)
Ingo Molnard3be9152006-03-23 03:00:29 -08002689 * down(dqio_mutex) journal_start()
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 *
2691 */
2692
2693#ifdef CONFIG_QUOTA
2694
2695static inline struct inode *dquot_to_inode(struct dquot *dquot)
2696{
2697 return sb_dqopt(dquot->dq_sb)->files[dquot->dq_type];
2698}
2699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700static int ext3_write_dquot(struct dquot *dquot)
2701{
2702 int ret, err;
2703 handle_t *handle;
2704 struct inode *inode;
2705
2706 inode = dquot_to_inode(dquot);
2707 handle = ext3_journal_start(inode,
Jan Kara1f545872005-06-23 22:01:04 -07002708 EXT3_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 if (IS_ERR(handle))
2710 return PTR_ERR(handle);
2711 ret = dquot_commit(dquot);
2712 err = ext3_journal_stop(handle);
2713 if (!ret)
2714 ret = err;
2715 return ret;
2716}
2717
2718static int ext3_acquire_dquot(struct dquot *dquot)
2719{
2720 int ret, err;
2721 handle_t *handle;
2722
2723 handle = ext3_journal_start(dquot_to_inode(dquot),
Jan Kara1f545872005-06-23 22:01:04 -07002724 EXT3_QUOTA_INIT_BLOCKS(dquot->dq_sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 if (IS_ERR(handle))
2726 return PTR_ERR(handle);
2727 ret = dquot_acquire(dquot);
2728 err = ext3_journal_stop(handle);
2729 if (!ret)
2730 ret = err;
2731 return ret;
2732}
2733
2734static int ext3_release_dquot(struct dquot *dquot)
2735{
2736 int ret, err;
2737 handle_t *handle;
2738
2739 handle = ext3_journal_start(dquot_to_inode(dquot),
Jan Kara1f545872005-06-23 22:01:04 -07002740 EXT3_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara9c3013e2007-09-11 15:23:29 -07002741 if (IS_ERR(handle)) {
2742 /* Release dquot anyway to avoid endless cycle in dqput() */
2743 dquot_release(dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return PTR_ERR(handle);
Jan Kara9c3013e2007-09-11 15:23:29 -07002745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 ret = dquot_release(dquot);
2747 err = ext3_journal_stop(handle);
2748 if (!ret)
2749 ret = err;
2750 return ret;
2751}
2752
2753static int ext3_mark_dquot_dirty(struct dquot *dquot)
2754{
Jan Kara99aeaf62008-07-25 01:46:17 -07002755 /* Are we journaling quotas? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 if (EXT3_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
2757 EXT3_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
2758 dquot_mark_dquot_dirty(dquot);
2759 return ext3_write_dquot(dquot);
2760 } else {
2761 return dquot_mark_dquot_dirty(dquot);
2762 }
2763}
2764
2765static int ext3_write_info(struct super_block *sb, int type)
2766{
2767 int ret, err;
2768 handle_t *handle;
2769
2770 /* Data block + inode block */
2771 handle = ext3_journal_start(sb->s_root->d_inode, 2);
2772 if (IS_ERR(handle))
2773 return PTR_ERR(handle);
2774 ret = dquot_commit_info(sb, type);
2775 err = ext3_journal_stop(handle);
2776 if (!ret)
2777 ret = err;
2778 return ret;
2779}
2780
2781/*
2782 * Turn on quotas during mount time - we need to find
2783 * the quota file and such...
2784 */
2785static int ext3_quota_on_mount(struct super_block *sb, int type)
2786{
Christoph Hellwig84de8562005-06-23 00:09:16 -07002787 return vfs_quota_on_mount(sb, EXT3_SB(sb)->s_qf_names[type],
2788 EXT3_SB(sb)->s_jquota_fmt, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789}
2790
2791/*
2792 * Standard function to be called on quota_on
2793 */
2794static int ext3_quota_on(struct super_block *sb, int type, int format_id,
Al Viro82646132008-08-02 00:57:06 -04002795 char *name, int remount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
2797 int err;
Al Viro82646132008-08-02 00:57:06 -04002798 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Jan Kara1f545872005-06-23 22:01:04 -07002800 if (!test_opt(sb, QUOTA))
2801 return -EINVAL;
Al Viro82646132008-08-02 00:57:06 -04002802 /* When remounting, no checks are needed and in fact, name is NULL */
Jan Kara9cfe7b92008-07-25 01:46:16 -07002803 if (remount)
Al Viro82646132008-08-02 00:57:06 -04002804 return vfs_quota_on(sb, type, format_id, name, remount);
Jan Kara9cfe7b92008-07-25 01:46:16 -07002805
Al Viro82646132008-08-02 00:57:06 -04002806 err = kern_path(name, LOOKUP_FOLLOW, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (err)
2808 return err;
Jan Kara9cfe7b92008-07-25 01:46:16 -07002809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 /* Quotafile not on the same filesystem? */
Al Viro82646132008-08-02 00:57:06 -04002811 if (path.mnt->mnt_sb != sb) {
2812 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 return -EXDEV;
2814 }
Jan Kara9cfe7b92008-07-25 01:46:16 -07002815 /* Journaling quota? */
2816 if (EXT3_SB(sb)->s_qf_names[type]) {
2817 /* Quotafile not of fs root? */
Al Viro82646132008-08-02 00:57:06 -04002818 if (path.dentry->d_parent != sb->s_root)
Jan Kara9cfe7b92008-07-25 01:46:16 -07002819 printk(KERN_WARNING
2820 "EXT3-fs: Quota file not on filesystem root. "
2821 "Journaled quota will not work.\n");
2822 }
2823
2824 /*
2825 * When we journal data on quota file, we have to flush journal to see
2826 * all updates to the file when we bypass pagecache...
2827 */
Al Viro82646132008-08-02 00:57:06 -04002828 if (ext3_should_journal_data(path.dentry->d_inode)) {
Jan Kara9cfe7b92008-07-25 01:46:16 -07002829 /*
2830 * We don't need to lock updates but journal_flush() could
2831 * otherwise be livelocked...
2832 */
2833 journal_lock_updates(EXT3_SB(sb)->s_journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002834 err = journal_flush(EXT3_SB(sb)->s_journal);
Jan Kara9cfe7b92008-07-25 01:46:16 -07002835 journal_unlock_updates(EXT3_SB(sb)->s_journal);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002836 if (err) {
Linus Torvalds12e1ec92008-10-23 11:48:56 -07002837 path_put(&path);
Hidehiro Kawai2d7c8202008-10-22 14:15:01 -07002838 return err;
2839 }
Jan Kara9cfe7b92008-07-25 01:46:16 -07002840 }
2841
Al Viro82646132008-08-02 00:57:06 -04002842 err = vfs_quota_on_path(sb, type, format_id, &path);
2843 path_put(&path);
Al Viro77e69da2008-08-01 04:29:18 -04002844 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845}
2846
2847/* Read data from quotafile - avoid pagecache and such because we cannot afford
2848 * acquiring the locks... As quota files are never truncated and quota code
2849 * itself serializes the operations (and noone else should touch the files)
2850 * we don't have to be afraid of races */
2851static ssize_t ext3_quota_read(struct super_block *sb, int type, char *data,
2852 size_t len, loff_t off)
2853{
2854 struct inode *inode = sb_dqopt(sb)->files[type];
2855 sector_t blk = off >> EXT3_BLOCK_SIZE_BITS(sb);
2856 int err = 0;
2857 int offset = off & (sb->s_blocksize - 1);
2858 int tocopy;
2859 size_t toread;
2860 struct buffer_head *bh;
2861 loff_t i_size = i_size_read(inode);
2862
2863 if (off > i_size)
2864 return 0;
2865 if (off+len > i_size)
2866 len = i_size-off;
2867 toread = len;
2868 while (toread > 0) {
2869 tocopy = sb->s_blocksize - offset < toread ?
2870 sb->s_blocksize - offset : toread;
2871 bh = ext3_bread(NULL, inode, blk, 0, &err);
2872 if (err)
2873 return err;
2874 if (!bh) /* A hole? */
2875 memset(data, 0, tocopy);
2876 else
2877 memcpy(data, bh->b_data+offset, tocopy);
2878 brelse(bh);
2879 offset = 0;
2880 toread -= tocopy;
2881 data += tocopy;
2882 blk++;
2883 }
2884 return len;
2885}
2886
2887/* Write to quotafile (we know the transaction is already started and has
2888 * enough credits) */
2889static ssize_t ext3_quota_write(struct super_block *sb, int type,
2890 const char *data, size_t len, loff_t off)
2891{
2892 struct inode *inode = sb_dqopt(sb)->files[type];
2893 sector_t blk = off >> EXT3_BLOCK_SIZE_BITS(sb);
2894 int err = 0;
2895 int offset = off & (sb->s_blocksize - 1);
2896 int tocopy;
2897 int journal_quota = EXT3_SB(sb)->s_qf_names[type] != NULL;
2898 size_t towrite = len;
2899 struct buffer_head *bh;
2900 handle_t *handle = journal_current_handle();
2901
Jan Kara9c3013e2007-09-11 15:23:29 -07002902 if (!handle) {
2903 printk(KERN_WARNING "EXT3-fs: Quota write (off=%Lu, len=%Lu)"
2904 " cancelled because transaction is not started.\n",
2905 (unsigned long long)off, (unsigned long long)len);
2906 return -EIO;
2907 }
Arjan van de Ven5c81a412006-07-03 00:25:20 -07002908 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 while (towrite > 0) {
2910 tocopy = sb->s_blocksize - offset < towrite ?
2911 sb->s_blocksize - offset : towrite;
2912 bh = ext3_bread(handle, inode, blk, 1, &err);
2913 if (!bh)
2914 goto out;
2915 if (journal_quota) {
2916 err = ext3_journal_get_write_access(handle, bh);
2917 if (err) {
2918 brelse(bh);
2919 goto out;
2920 }
2921 }
2922 lock_buffer(bh);
2923 memcpy(bh->b_data+offset, data, tocopy);
2924 flush_dcache_page(bh->b_page);
2925 unlock_buffer(bh);
2926 if (journal_quota)
2927 err = ext3_journal_dirty_metadata(handle, bh);
2928 else {
2929 /* Always do at least ordered writes for quotas */
2930 err = ext3_journal_dirty_data(handle, bh);
2931 mark_buffer_dirty(bh);
2932 }
2933 brelse(bh);
2934 if (err)
2935 goto out;
2936 offset = 0;
2937 towrite -= tocopy;
2938 data += tocopy;
2939 blk++;
2940 }
2941out:
Jan Karaf5c8f7d2008-07-04 09:59:33 -07002942 if (len == towrite) {
2943 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 return err;
Jan Karaf5c8f7d2008-07-04 09:59:33 -07002945 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 if (inode->i_size < off+len-towrite) {
2947 i_size_write(inode, off+len-towrite);
2948 EXT3_I(inode)->i_disksize = inode->i_size;
2949 }
2950 inode->i_version++;
2951 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
2952 ext3_mark_inode_dirty(handle, inode);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002953 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 return len - towrite;
2955}
2956
2957#endif
2958
David Howells454e2392006-06-23 02:02:57 -07002959static int ext3_get_sb(struct file_system_type *fs_type,
2960 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961{
David Howells454e2392006-06-23 02:02:57 -07002962 return get_sb_bdev(fs_type, flags, dev_name, data, ext3_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963}
2964
2965static struct file_system_type ext3_fs_type = {
2966 .owner = THIS_MODULE,
2967 .name = "ext3",
2968 .get_sb = ext3_get_sb,
2969 .kill_sb = kill_block_super,
2970 .fs_flags = FS_REQUIRES_DEV,
2971};
2972
2973static int __init init_ext3_fs(void)
2974{
2975 int err = init_ext3_xattr();
2976 if (err)
2977 return err;
2978 err = init_inodecache();
2979 if (err)
2980 goto out1;
2981 err = register_filesystem(&ext3_fs_type);
2982 if (err)
2983 goto out;
2984 return 0;
2985out:
2986 destroy_inodecache();
2987out1:
Dave Kleikampe9ad5622006-09-27 01:49:35 -07002988 exit_ext3_xattr();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 return err;
2990}
2991
2992static void __exit exit_ext3_fs(void)
2993{
2994 unregister_filesystem(&ext3_fs_type);
2995 destroy_inodecache();
2996 exit_ext3_xattr();
2997}
2998
2999MODULE_AUTHOR("Remy Card, Stephen Tweedie, Andrew Morton, Andreas Dilger, Theodore Ts'o and others");
3000MODULE_DESCRIPTION("Second Extended Filesystem with journaling extensions");
3001MODULE_LICENSE("GPL");
3002module_init(init_ext3_fs)
3003module_exit(exit_ext3_fs)