blob: 458999638c3dee387cd4a5b091a73010ff1d8150 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext2/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>
Mark Bellon8fc27512005-09-06 15:16:54 -070021#include <linux/fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
23#include <linux/init.h>
24#include <linux/blkdev.h>
25#include <linux/parser.h>
26#include <linux/random.h>
27#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070028#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/smp_lock.h>
30#include <linux/vfs.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070031#include <linux/seq_file.h>
32#include <linux/mount.h>
vignesh babud8ea6cf2007-10-16 23:27:14 -070033#include <linux/log2.h>
Jan Kara74abb982008-07-25 01:46:51 -070034#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include "ext2.h"
37#include "xattr.h"
38#include "acl.h"
Carsten Otte6d791252005-06-23 22:05:26 -070039#include "xip.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41static void ext2_sync_super(struct super_block *sb,
42 struct ext2_super_block *es);
43static int ext2_remount (struct super_block * sb, int * flags, char * data);
David Howells726c3342006-06-23 02:02:58 -070044static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf);
Christoph Hellwig40f31dd2009-06-08 10:04:17 +020045static int ext2_sync_fs(struct super_block *sb, int wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47void ext2_error (struct super_block * sb, const char * function,
48 const char * fmt, ...)
49{
50 va_list args;
51 struct ext2_sb_info *sbi = EXT2_SB(sb);
52 struct ext2_super_block *es = sbi->s_es;
53
54 if (!(sb->s_flags & MS_RDONLY)) {
55 sbi->s_mount_state |= EXT2_ERROR_FS;
Marcin Slusarz31f68e12008-04-28 02:16:00 -070056 es->s_state |= cpu_to_le16(EXT2_ERROR_FS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 ext2_sync_super(sb, es);
58 }
59
60 va_start(args, fmt);
61 printk(KERN_CRIT "EXT2-fs error (device %s): %s: ",sb->s_id, function);
62 vprintk(fmt, args);
63 printk("\n");
64 va_end(args);
65
66 if (test_opt(sb, ERRORS_PANIC))
67 panic("EXT2-fs panic from previous error\n");
68 if (test_opt(sb, ERRORS_RO)) {
69 printk("Remounting filesystem read-only\n");
70 sb->s_flags |= MS_RDONLY;
71 }
72}
73
74void ext2_warning (struct super_block * sb, const char * function,
75 const char * fmt, ...)
76{
77 va_list args;
78
79 va_start(args, fmt);
80 printk(KERN_WARNING "EXT2-fs warning (device %s): %s: ",
81 sb->s_id, function);
82 vprintk(fmt, args);
83 printk("\n");
84 va_end(args);
85}
86
87void ext2_update_dynamic_rev(struct super_block *sb)
88{
89 struct ext2_super_block *es = EXT2_SB(sb)->s_es;
90
91 if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV)
92 return;
93
Harvey Harrison605afd62008-04-28 02:16:03 -070094 ext2_warning(sb, __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 "updating to rev %d because of new feature flag, "
96 "running e2fsck is recommended",
97 EXT2_DYNAMIC_REV);
98
99 es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO);
100 es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE);
101 es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV);
102 /* leave es->s_feature_*compat flags alone */
103 /* es->s_uuid will be set by e2fsck if empty */
104
105 /*
106 * The rest of the superblock fields should be zero, and if not it
107 * means they are likely already in use, so leave them alone. We
108 * can leave it up to e2fsck to clean up any inconsistencies there.
109 */
110}
111
112static void ext2_put_super (struct super_block * sb)
113{
114 int db_count;
115 int i;
116 struct ext2_sb_info *sbi = EXT2_SB(sb);
117
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200118 lock_kernel();
119
Christoph Hellwig8c85e122009-04-28 18:00:26 +0200120 if (sb->s_dirt)
121 ext2_write_super(sb);
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 ext2_xattr_put_super(sb);
124 if (!(sb->s_flags & MS_RDONLY)) {
125 struct ext2_super_block *es = sbi->s_es;
126
127 es->s_state = cpu_to_le16(sbi->s_mount_state);
128 ext2_sync_super(sb, es);
129 }
130 db_count = sbi->s_gdb_count;
131 for (i = 0; i < db_count; i++)
132 if (sbi->s_group_desc[i])
133 brelse (sbi->s_group_desc[i]);
134 kfree(sbi->s_group_desc);
135 kfree(sbi->s_debts);
136 percpu_counter_destroy(&sbi->s_freeblocks_counter);
137 percpu_counter_destroy(&sbi->s_freeinodes_counter);
138 percpu_counter_destroy(&sbi->s_dirs_counter);
139 brelse (sbi->s_sbh);
140 sb->s_fs_info = NULL;
Pekka J Enberg18a82eb2009-01-07 18:07:19 -0800141 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 kfree(sbi);
143
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200144 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
Christoph Lametere18b8902006-12-06 20:33:20 -0800147static struct kmem_cache * ext2_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149static struct inode *ext2_alloc_inode(struct super_block *sb)
150{
151 struct ext2_inode_info *ei;
Christoph Lametere94b1762006-12-06 20:33:17 -0800152 ei = (struct ext2_inode_info *)kmem_cache_alloc(ext2_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (!ei)
154 return NULL;
155#ifdef CONFIG_EXT2_FS_POSIX_ACL
156 ei->i_acl = EXT2_ACL_NOT_CACHED;
157 ei->i_default_acl = EXT2_ACL_NOT_CACHED;
158#endif
Martin J. Bligha686cd82007-10-16 23:30:46 -0700159 ei->i_block_alloc_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 ei->vfs_inode.i_version = 1;
161 return &ei->vfs_inode;
162}
163
164static void ext2_destroy_inode(struct inode *inode)
165{
166 kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));
167}
168
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700169static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 struct ext2_inode_info *ei = (struct ext2_inode_info *) foo;
172
Christoph Lametera35afb82007-05-16 22:10:57 -0700173 rwlock_init(&ei->i_meta_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#ifdef CONFIG_EXT2_FS_XATTR
Christoph Lametera35afb82007-05-16 22:10:57 -0700175 init_rwsem(&ei->xattr_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#endif
Martin J. Bligha686cd82007-10-16 23:30:46 -0700177 mutex_init(&ei->truncate_mutex);
Christoph Lametera35afb82007-05-16 22:10:57 -0700178 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
Paul Mundt20c2df82007-07-20 10:11:58 +0900180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181static int init_inodecache(void)
182{
183 ext2_inode_cachep = kmem_cache_create("ext2_inode_cache",
184 sizeof(struct ext2_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800185 0, (SLAB_RECLAIM_ACCOUNT|
186 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900187 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (ext2_inode_cachep == NULL)
189 return -ENOMEM;
190 return 0;
191}
192
193static void destroy_inodecache(void)
194{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700195 kmem_cache_destroy(ext2_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
198static void ext2_clear_inode(struct inode *inode)
199{
Martin J. Bligha686cd82007-10-16 23:30:46 -0700200 struct ext2_block_alloc_info *rsv = EXT2_I(inode)->i_block_alloc_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201#ifdef CONFIG_EXT2_FS_POSIX_ACL
202 struct ext2_inode_info *ei = EXT2_I(inode);
203
204 if (ei->i_acl && ei->i_acl != EXT2_ACL_NOT_CACHED) {
205 posix_acl_release(ei->i_acl);
206 ei->i_acl = EXT2_ACL_NOT_CACHED;
207 }
208 if (ei->i_default_acl && ei->i_default_acl != EXT2_ACL_NOT_CACHED) {
209 posix_acl_release(ei->i_default_acl);
210 ei->i_default_acl = EXT2_ACL_NOT_CACHED;
211 }
212#endif
Martin J. Bligha686cd82007-10-16 23:30:46 -0700213 ext2_discard_reservation(inode);
214 EXT2_I(inode)->i_block_alloc_info = NULL;
215 if (unlikely(rsv))
216 kfree(rsv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Mark Bellon8fc27512005-09-06 15:16:54 -0700219static int ext2_show_options(struct seq_file *seq, struct vfsmount *vfs)
220{
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700221 struct super_block *sb = vfs->mnt_sb;
222 struct ext2_sb_info *sbi = EXT2_SB(sb);
223 struct ext2_super_block *es = sbi->s_es;
224 unsigned long def_mount_opts;
Mark Bellon8fc27512005-09-06 15:16:54 -0700225
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700226 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
227
228 if (sbi->s_sb_block != 1)
229 seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
230 if (test_opt(sb, MINIX_DF))
231 seq_puts(seq, ",minixdf");
232 if (test_opt(sb, GRPID))
Mark Bellon8fc27512005-09-06 15:16:54 -0700233 seq_puts(seq, ",grpid");
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700234 if (!test_opt(sb, GRPID) && (def_mount_opts & EXT2_DEFM_BSDGROUPS))
235 seq_puts(seq, ",nogrpid");
236 if (sbi->s_resuid != EXT2_DEF_RESUID ||
237 le16_to_cpu(es->s_def_resuid) != EXT2_DEF_RESUID) {
238 seq_printf(seq, ",resuid=%u", sbi->s_resuid);
239 }
240 if (sbi->s_resgid != EXT2_DEF_RESGID ||
241 le16_to_cpu(es->s_def_resgid) != EXT2_DEF_RESGID) {
242 seq_printf(seq, ",resgid=%u", sbi->s_resgid);
243 }
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800244 if (test_opt(sb, ERRORS_RO)) {
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700245 int def_errors = le16_to_cpu(es->s_errors);
246
247 if (def_errors == EXT2_ERRORS_PANIC ||
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800248 def_errors == EXT2_ERRORS_CONTINUE) {
249 seq_puts(seq, ",errors=remount-ro");
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700250 }
251 }
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800252 if (test_opt(sb, ERRORS_CONT))
253 seq_puts(seq, ",errors=continue");
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700254 if (test_opt(sb, ERRORS_PANIC))
255 seq_puts(seq, ",errors=panic");
256 if (test_opt(sb, NO_UID32))
257 seq_puts(seq, ",nouid32");
258 if (test_opt(sb, DEBUG))
259 seq_puts(seq, ",debug");
260 if (test_opt(sb, OLDALLOC))
261 seq_puts(seq, ",oldalloc");
262
263#ifdef CONFIG_EXT2_FS_XATTR
264 if (test_opt(sb, XATTR_USER))
265 seq_puts(seq, ",user_xattr");
266 if (!test_opt(sb, XATTR_USER) &&
267 (def_mount_opts & EXT2_DEFM_XATTR_USER)) {
268 seq_puts(seq, ",nouser_xattr");
269 }
270#endif
271
272#ifdef CONFIG_EXT2_FS_POSIX_ACL
273 if (test_opt(sb, POSIX_ACL))
274 seq_puts(seq, ",acl");
275 if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT2_DEFM_ACL))
276 seq_puts(seq, ",noacl");
277#endif
278
279 if (test_opt(sb, NOBH))
280 seq_puts(seq, ",nobh");
Mark Bellon8fc27512005-09-06 15:16:54 -0700281
282#if defined(CONFIG_QUOTA)
283 if (sbi->s_mount_opt & EXT2_MOUNT_USRQUOTA)
284 seq_puts(seq, ",usrquota");
285
286 if (sbi->s_mount_opt & EXT2_MOUNT_GRPQUOTA)
287 seq_puts(seq, ",grpquota");
288#endif
289
Carsten Otte83541792006-02-03 03:04:25 -0800290#if defined(CONFIG_EXT2_FS_XIP)
291 if (sbi->s_mount_opt & EXT2_MOUNT_XIP)
292 seq_puts(seq, ",xip");
293#endif
294
Miklos Szeredi35c879d2008-02-08 04:21:42 -0800295 if (!test_opt(sb, RESERVATION))
296 seq_puts(seq, ",noreservation");
297
Mark Bellon8fc27512005-09-06 15:16:54 -0700298 return 0;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#ifdef CONFIG_QUOTA
302static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data, size_t len, loff_t off);
303static ssize_t ext2_quota_write(struct super_block *sb, int type, const char *data, size_t len, loff_t off);
304#endif
305
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800306static const struct super_operations ext2_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .alloc_inode = ext2_alloc_inode,
308 .destroy_inode = ext2_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 .write_inode = ext2_write_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 .delete_inode = ext2_delete_inode,
311 .put_super = ext2_put_super,
312 .write_super = ext2_write_super,
Christoph Hellwig40f31dd2009-06-08 10:04:17 +0200313 .sync_fs = ext2_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 .statfs = ext2_statfs,
315 .remount_fs = ext2_remount,
316 .clear_inode = ext2_clear_inode,
Mark Bellon8fc27512005-09-06 15:16:54 -0700317 .show_options = ext2_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#ifdef CONFIG_QUOTA
319 .quota_read = ext2_quota_read,
320 .quota_write = ext2_quota_write,
321#endif
322};
323
Christoph Hellwig2e4c68e2007-10-21 16:42:07 -0700324static struct inode *ext2_nfs_get_inode(struct super_block *sb,
325 u64 ino, u32 generation)
NeilBrownecaff752006-09-16 12:15:37 -0700326{
NeilBrownecaff752006-09-16 12:15:37 -0700327 struct inode *inode;
NeilBrownecaff752006-09-16 12:15:37 -0700328
329 if (ino < EXT2_FIRST_INO(sb) && ino != EXT2_ROOT_INO)
330 return ERR_PTR(-ESTALE);
331 if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
332 return ERR_PTR(-ESTALE);
333
334 /* iget isn't really right if the inode is currently unallocated!!
335 * ext2_read_inode currently does appropriate checks, but
336 * it might be "neater" to call ext2_get_inode first and check
337 * if the inode is valid.....
338 */
David Howells52fcf702008-02-07 00:15:35 -0800339 inode = ext2_iget(sb, ino);
340 if (IS_ERR(inode))
341 return ERR_CAST(inode);
342 if (generation && inode->i_generation != generation) {
NeilBrownecaff752006-09-16 12:15:37 -0700343 /* we didn't find the right inode.. */
344 iput(inode);
345 return ERR_PTR(-ESTALE);
346 }
Christoph Hellwig2e4c68e2007-10-21 16:42:07 -0700347 return inode;
348}
349
350static struct dentry *ext2_fh_to_dentry(struct super_block *sb, struct fid *fid,
351 int fh_len, int fh_type)
352{
353 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
354 ext2_nfs_get_inode);
355}
356
357static struct dentry *ext2_fh_to_parent(struct super_block *sb, struct fid *fid,
358 int fh_len, int fh_type)
359{
360 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
361 ext2_nfs_get_inode);
NeilBrownecaff752006-09-16 12:15:37 -0700362}
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364/* Yes, most of these are left as NULL!!
365 * A NULL value implies the default, which works with ext2-like file
366 * systems, but can be improved upon.
367 * Currently only get_parent is required.
368 */
Christoph Hellwig39655162007-10-21 16:42:17 -0700369static const struct export_operations ext2_export_ops = {
Christoph Hellwig2e4c68e2007-10-21 16:42:07 -0700370 .fh_to_dentry = ext2_fh_to_dentry,
371 .fh_to_parent = ext2_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 .get_parent = ext2_get_parent,
373};
374
375static unsigned long get_sb_block(void **data)
376{
377 unsigned long sb_block;
378 char *options = (char *) *data;
379
380 if (!options || strncmp(options, "sb=", 3) != 0)
381 return 1; /* Default location */
382 options += 3;
383 sb_block = simple_strtoul(options, &options, 0);
384 if (*options && *options != ',') {
385 printk("EXT2-fs: Invalid sb specification: %s\n",
386 (char *) *data);
387 return 1;
388 }
389 if (*options == ',')
390 options++;
391 *data = (void *) options;
392 return sb_block;
393}
394
395enum {
396 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
Mark Bellon8fc27512005-09-06 15:16:54 -0700397 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic,
Adrian Bunk2860b732005-11-08 21:34:59 -0800398 Opt_err_ro, Opt_nouid32, Opt_nocheck, Opt_debug,
Mark Bellon8fc27512005-09-06 15:16:54 -0700399 Opt_oldalloc, Opt_orlov, Opt_nobh, Opt_user_xattr, Opt_nouser_xattr,
400 Opt_acl, Opt_noacl, Opt_xip, Opt_ignore, Opt_err, Opt_quota,
Martin J. Bligha686cd82007-10-16 23:30:46 -0700401 Opt_usrquota, Opt_grpquota, Opt_reservation, Opt_noreservation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402};
403
Steven Whitehousea447c092008-10-13 10:46:57 +0100404static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 {Opt_bsd_df, "bsddf"},
406 {Opt_minix_df, "minixdf"},
407 {Opt_grpid, "grpid"},
408 {Opt_grpid, "bsdgroups"},
409 {Opt_nogrpid, "nogrpid"},
410 {Opt_nogrpid, "sysvgroups"},
411 {Opt_resgid, "resgid=%u"},
412 {Opt_resuid, "resuid=%u"},
413 {Opt_sb, "sb=%u"},
414 {Opt_err_cont, "errors=continue"},
415 {Opt_err_panic, "errors=panic"},
416 {Opt_err_ro, "errors=remount-ro"},
417 {Opt_nouid32, "nouid32"},
418 {Opt_nocheck, "check=none"},
419 {Opt_nocheck, "nocheck"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 {Opt_debug, "debug"},
421 {Opt_oldalloc, "oldalloc"},
422 {Opt_orlov, "orlov"},
423 {Opt_nobh, "nobh"},
424 {Opt_user_xattr, "user_xattr"},
425 {Opt_nouser_xattr, "nouser_xattr"},
426 {Opt_acl, "acl"},
427 {Opt_noacl, "noacl"},
Carsten Otte6d791252005-06-23 22:05:26 -0700428 {Opt_xip, "xip"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700429 {Opt_grpquota, "grpquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 {Opt_ignore, "noquota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700431 {Opt_quota, "quota"},
432 {Opt_usrquota, "usrquota"},
Martin J. Bligha686cd82007-10-16 23:30:46 -0700433 {Opt_reservation, "reservation"},
434 {Opt_noreservation, "noreservation"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 {Opt_err, NULL}
436};
437
438static int parse_options (char * options,
439 struct ext2_sb_info *sbi)
440{
441 char * p;
442 substring_t args[MAX_OPT_ARGS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int option;
444
445 if (!options)
446 return 1;
447
448 while ((p = strsep (&options, ",")) != NULL) {
449 int token;
450 if (!*p)
451 continue;
452
453 token = match_token(p, tokens, args);
454 switch (token) {
455 case Opt_bsd_df:
456 clear_opt (sbi->s_mount_opt, MINIX_DF);
457 break;
458 case Opt_minix_df:
459 set_opt (sbi->s_mount_opt, MINIX_DF);
460 break;
461 case Opt_grpid:
462 set_opt (sbi->s_mount_opt, GRPID);
463 break;
464 case Opt_nogrpid:
465 clear_opt (sbi->s_mount_opt, GRPID);
466 break;
467 case Opt_resuid:
468 if (match_int(&args[0], &option))
469 return 0;
470 sbi->s_resuid = option;
471 break;
472 case Opt_resgid:
473 if (match_int(&args[0], &option))
474 return 0;
475 sbi->s_resgid = option;
476 break;
477 case Opt_sb:
478 /* handled by get_sb_block() instead of here */
479 /* *sb_block = match_int(&args[0]); */
480 break;
481 case Opt_err_panic:
Vasily Averin5a2b4062006-10-11 01:21:50 -0700482 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
483 clear_opt (sbi->s_mount_opt, ERRORS_RO);
484 set_opt (sbi->s_mount_opt, ERRORS_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 break;
486 case Opt_err_ro:
Vasily Averin5a2b4062006-10-11 01:21:50 -0700487 clear_opt (sbi->s_mount_opt, ERRORS_CONT);
488 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
489 set_opt (sbi->s_mount_opt, ERRORS_RO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 break;
491 case Opt_err_cont:
Vasily Averin5a2b4062006-10-11 01:21:50 -0700492 clear_opt (sbi->s_mount_opt, ERRORS_RO);
493 clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
494 set_opt (sbi->s_mount_opt, ERRORS_CONT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 break;
496 case Opt_nouid32:
497 set_opt (sbi->s_mount_opt, NO_UID32);
498 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 case Opt_nocheck:
500 clear_opt (sbi->s_mount_opt, CHECK);
501 break;
502 case Opt_debug:
503 set_opt (sbi->s_mount_opt, DEBUG);
504 break;
505 case Opt_oldalloc:
506 set_opt (sbi->s_mount_opt, OLDALLOC);
507 break;
508 case Opt_orlov:
509 clear_opt (sbi->s_mount_opt, OLDALLOC);
510 break;
511 case Opt_nobh:
512 set_opt (sbi->s_mount_opt, NOBH);
513 break;
514#ifdef CONFIG_EXT2_FS_XATTR
515 case Opt_user_xattr:
516 set_opt (sbi->s_mount_opt, XATTR_USER);
517 break;
518 case Opt_nouser_xattr:
519 clear_opt (sbi->s_mount_opt, XATTR_USER);
520 break;
521#else
522 case Opt_user_xattr:
523 case Opt_nouser_xattr:
524 printk("EXT2 (no)user_xattr options not supported\n");
525 break;
526#endif
527#ifdef CONFIG_EXT2_FS_POSIX_ACL
528 case Opt_acl:
529 set_opt(sbi->s_mount_opt, POSIX_ACL);
530 break;
531 case Opt_noacl:
532 clear_opt(sbi->s_mount_opt, POSIX_ACL);
533 break;
534#else
535 case Opt_acl:
536 case Opt_noacl:
537 printk("EXT2 (no)acl options not supported\n");
538 break;
539#endif
Carsten Otte6d791252005-06-23 22:05:26 -0700540 case Opt_xip:
541#ifdef CONFIG_EXT2_FS_XIP
542 set_opt (sbi->s_mount_opt, XIP);
543#else
544 printk("EXT2 xip option not supported\n");
545#endif
546 break;
Mark Bellon8fc27512005-09-06 15:16:54 -0700547
548#if defined(CONFIG_QUOTA)
549 case Opt_quota:
550 case Opt_usrquota:
551 set_opt(sbi->s_mount_opt, USRQUOTA);
552 break;
553
554 case Opt_grpquota:
555 set_opt(sbi->s_mount_opt, GRPQUOTA);
556 break;
557#else
558 case Opt_quota:
559 case Opt_usrquota:
560 case Opt_grpquota:
561 printk(KERN_ERR
562 "EXT2-fs: quota operations not supported.\n");
563
564 break;
565#endif
566
Martin J. Bligha686cd82007-10-16 23:30:46 -0700567 case Opt_reservation:
568 set_opt(sbi->s_mount_opt, RESERVATION);
569 printk("reservations ON\n");
570 break;
571 case Opt_noreservation:
572 clear_opt(sbi->s_mount_opt, RESERVATION);
573 printk("reservations OFF\n");
574 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 case Opt_ignore:
576 break;
577 default:
578 return 0;
579 }
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 return 1;
582}
583
584static int ext2_setup_super (struct super_block * sb,
585 struct ext2_super_block * es,
586 int read_only)
587{
588 int res = 0;
589 struct ext2_sb_info *sbi = EXT2_SB(sb);
590
591 if (le32_to_cpu(es->s_rev_level) > EXT2_MAX_SUPP_REV) {
592 printk ("EXT2-fs warning: revision level too high, "
593 "forcing read-only mode\n");
594 res = MS_RDONLY;
595 }
596 if (read_only)
597 return res;
598 if (!(sbi->s_mount_state & EXT2_VALID_FS))
599 printk ("EXT2-fs warning: mounting unchecked fs, "
600 "running e2fsck is recommended\n");
601 else if ((sbi->s_mount_state & EXT2_ERROR_FS))
602 printk ("EXT2-fs warning: mounting fs with errors, "
603 "running e2fsck is recommended\n");
604 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
605 le16_to_cpu(es->s_mnt_count) >=
606 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
607 printk ("EXT2-fs warning: maximal mount count reached, "
608 "running e2fsck is recommended\n");
609 else if (le32_to_cpu(es->s_checkinterval) &&
610 (le32_to_cpu(es->s_lastcheck) + le32_to_cpu(es->s_checkinterval) <= get_seconds()))
611 printk ("EXT2-fs warning: checktime reached, "
612 "running e2fsck is recommended\n");
613 if (!le16_to_cpu(es->s_max_mnt_count))
614 es->s_max_mnt_count = cpu_to_le16(EXT2_DFL_MAX_MNT_COUNT);
Marcin Slusarzfba4d392008-04-28 02:15:59 -0700615 le16_add_cpu(&es->s_mnt_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 ext2_write_super(sb);
617 if (test_opt (sb, DEBUG))
618 printk ("[EXT II FS %s, %s, bs=%lu, fs=%lu, gc=%lu, "
619 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
620 EXT2FS_VERSION, EXT2FS_DATE, sb->s_blocksize,
621 sbi->s_frag_size,
622 sbi->s_groups_count,
623 EXT2_BLOCKS_PER_GROUP(sb),
624 EXT2_INODES_PER_GROUP(sb),
625 sbi->s_mount_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return res;
627}
628
Akinobu Mita197cd65a2008-02-06 01:40:16 -0800629static int ext2_check_descriptors(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 struct ext2_sb_info *sbi = EXT2_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 ext2_debug ("Checking group descriptors");
635
Akinobu Mita197cd65a2008-02-06 01:40:16 -0800636 for (i = 0; i < sbi->s_groups_count; i++) {
637 struct ext2_group_desc *gdp = ext2_get_group_desc(sb, i, NULL);
Akinobu Mita24097d12008-04-28 02:16:01 -0700638 ext2_fsblk_t first_block = ext2_group_first_block_no(sb, i);
639 ext2_fsblk_t last_block;
Akinobu Mita197cd65a2008-02-06 01:40:16 -0800640
Eric Sandeen41f04d82006-09-27 01:49:30 -0700641 if (i == sbi->s_groups_count - 1)
642 last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
643 else
644 last_block = first_block +
645 (EXT2_BLOCKS_PER_GROUP(sb) - 1);
646
Eric Sandeen41f04d82006-09-27 01:49:30 -0700647 if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
648 le32_to_cpu(gdp->bg_block_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 {
650 ext2_error (sb, "ext2_check_descriptors",
651 "Block bitmap for group %d"
652 " not in group (block %lu)!",
653 i, (unsigned long) le32_to_cpu(gdp->bg_block_bitmap));
654 return 0;
655 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700656 if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
657 le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 {
659 ext2_error (sb, "ext2_check_descriptors",
660 "Inode bitmap for group %d"
661 " not in group (block %lu)!",
662 i, (unsigned long) le32_to_cpu(gdp->bg_inode_bitmap));
663 return 0;
664 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700665 if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
Eric Sandeen780dcdb2007-07-26 10:41:11 -0700666 le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
Eric Sandeen41f04d82006-09-27 01:49:30 -0700667 last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 {
669 ext2_error (sb, "ext2_check_descriptors",
670 "Inode table for group %d"
671 " not in group (block %lu)!",
672 i, (unsigned long) le32_to_cpu(gdp->bg_inode_table));
673 return 0;
674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676 return 1;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/*
680 * Maximal file size. There is a direct, and {,double-,triple-}indirect
681 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
682 * We need to be 1 filesystem block less than the 2^32 sector limit.
683 */
684static loff_t ext2_max_size(int bits)
685{
686 loff_t res = EXT2_NDIR_BLOCKS;
Aneesh Kumar K.V902be4c2008-01-28 23:58:26 -0500687 int meta_blocks;
688 loff_t upper_limit;
689
690 /* This is calculated to be the largest file size for a
691 * dense, file such that the total number of
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * sectors in the file, including data and all indirect blocks,
Aneesh Kumar K.V902be4c2008-01-28 23:58:26 -0500693 * does not exceed 2^32 -1
694 * __u32 i_blocks representing the total number of
695 * 512 bytes blocks of the file
696 */
697 upper_limit = (1LL << 32) - 1;
698
699 /* total blocks in file system block size */
700 upper_limit >>= (bits - 9);
701
702
703 /* indirect blocks */
704 meta_blocks = 1;
705 /* double indirect blocks */
706 meta_blocks += 1 + (1LL << (bits-2));
707 /* tripple indirect blocks */
708 meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
709
710 upper_limit -= meta_blocks;
711 upper_limit <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 res += 1LL << (bits-2);
714 res += 1LL << (2*(bits-2));
715 res += 1LL << (3*(bits-2));
716 res <<= bits;
717 if (res > upper_limit)
718 res = upper_limit;
Aneesh Kumar K.V902be4c2008-01-28 23:58:26 -0500719
720 if (res > MAX_LFS_FILESIZE)
721 res = MAX_LFS_FILESIZE;
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return res;
724}
725
726static unsigned long descriptor_loc(struct super_block *sb,
727 unsigned long logic_sb_block,
728 int nr)
729{
730 struct ext2_sb_info *sbi = EXT2_SB(sb);
Akinobu Mita24097d12008-04-28 02:16:01 -0700731 unsigned long bg, first_meta_bg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int has_super = 0;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
735
736 if (!EXT2_HAS_INCOMPAT_FEATURE(sb, EXT2_FEATURE_INCOMPAT_META_BG) ||
737 nr < first_meta_bg)
738 return (logic_sb_block + nr + 1);
739 bg = sbi->s_desc_per_block * nr;
740 if (ext2_bg_has_super(sb, bg))
741 has_super = 1;
Akinobu Mita24097d12008-04-28 02:16:01 -0700742
743 return ext2_group_first_block_no(sb, bg) + has_super;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746static int ext2_fill_super(struct super_block *sb, void *data, int silent)
747{
748 struct buffer_head * bh;
749 struct ext2_sb_info * sbi;
750 struct ext2_super_block * es;
751 struct inode *root;
752 unsigned long block;
753 unsigned long sb_block = get_sb_block(&data);
754 unsigned long logic_sb_block;
755 unsigned long offset = 0;
756 unsigned long def_mount_opts;
David Howells52fcf702008-02-07 00:15:35 -0800757 long ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 int blocksize = BLOCK_SIZE;
759 int db_count;
760 int i, j;
761 __le32 features;
Peter Zijlstra833f4072007-10-16 23:25:45 -0700762 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700764 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (!sbi)
766 return -ENOMEM;
Pekka J Enberg18a82eb2009-01-07 18:07:19 -0800767
768 sbi->s_blockgroup_lock =
769 kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
770 if (!sbi->s_blockgroup_lock) {
771 kfree(sbi);
772 return -ENOMEM;
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 sb->s_fs_info = sbi;
Miklos Szeredi93d44cb2007-10-16 23:26:26 -0700775 sbi->s_sb_block = sb_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /*
778 * See what the current blocksize for the device is, and
779 * use that as the blocksize. Otherwise (or if the blocksize
780 * is smaller than the default) use the default.
781 * This is important for devices that have a hardware
782 * sectorsize that is larger than the default.
783 */
784 blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
785 if (!blocksize) {
786 printk ("EXT2-fs: unable to set blocksize\n");
787 goto failed_sbi;
788 }
789
790 /*
791 * If the superblock doesn't start on a hardware sector boundary,
792 * calculate the offset.
793 */
794 if (blocksize != BLOCK_SIZE) {
795 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
796 offset = (sb_block*BLOCK_SIZE) % blocksize;
797 } else {
798 logic_sb_block = sb_block;
799 }
800
801 if (!(bh = sb_bread(sb, logic_sb_block))) {
802 printk ("EXT2-fs: unable to read superblock\n");
803 goto failed_sbi;
804 }
805 /*
806 * Note: s_es must be initialized as soon as possible because
807 * some ext2 macro-instructions depend on its value
808 */
809 es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
810 sbi->s_es = es;
811 sb->s_magic = le16_to_cpu(es->s_magic);
812
813 if (sb->s_magic != EXT2_SUPER_MAGIC)
814 goto cantfind_ext2;
815
816 /* Set defaults before we parse the mount options */
817 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
818 if (def_mount_opts & EXT2_DEFM_DEBUG)
819 set_opt(sbi->s_mount_opt, DEBUG);
820 if (def_mount_opts & EXT2_DEFM_BSDGROUPS)
821 set_opt(sbi->s_mount_opt, GRPID);
822 if (def_mount_opts & EXT2_DEFM_UID16)
823 set_opt(sbi->s_mount_opt, NO_UID32);
Hugh Dickins2e7842b2007-02-10 01:46:13 -0800824#ifdef CONFIG_EXT2_FS_XATTR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (def_mount_opts & EXT2_DEFM_XATTR_USER)
826 set_opt(sbi->s_mount_opt, XATTR_USER);
Hugh Dickins2e7842b2007-02-10 01:46:13 -0800827#endif
828#ifdef CONFIG_EXT2_FS_POSIX_ACL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 if (def_mount_opts & EXT2_DEFM_ACL)
830 set_opt(sbi->s_mount_opt, POSIX_ACL);
Hugh Dickins2e7842b2007-02-10 01:46:13 -0800831#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_PANIC)
834 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800835 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_CONTINUE)
Vasily Averin5a2b4062006-10-11 01:21:50 -0700836 set_opt(sbi->s_mount_opt, ERRORS_CONT);
Aneesh Kumar K.V14e11e12008-02-06 01:36:17 -0800837 else
838 set_opt(sbi->s_mount_opt, ERRORS_RO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
841 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
842
Martin J. Bligha686cd82007-10-16 23:30:46 -0700843 set_opt(sbi->s_mount_opt, RESERVATION);
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 if (!parse_options ((char *) data, sbi))
846 goto failed_mount;
847
848 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
849 ((EXT2_SB(sb)->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ?
850 MS_POSIXACL : 0);
851
Carsten Otte6d791252005-06-23 22:05:26 -0700852 ext2_xip_verify_sb(sb); /* see if bdev supports xip, unset
853 EXT2_MOUNT_XIP if not */
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV &&
856 (EXT2_HAS_COMPAT_FEATURE(sb, ~0U) ||
857 EXT2_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
858 EXT2_HAS_INCOMPAT_FEATURE(sb, ~0U)))
859 printk("EXT2-fs warning: feature flags set on rev 0 fs, "
860 "running e2fsck is recommended\n");
861 /*
862 * Check feature flags regardless of the revision level, since we
863 * previously didn't change the revision level when setting the flags,
864 * so there is a chance incompat flags are set on a rev 0 filesystem.
865 */
866 features = EXT2_HAS_INCOMPAT_FEATURE(sb, ~EXT2_FEATURE_INCOMPAT_SUPP);
867 if (features) {
868 printk("EXT2-fs: %s: couldn't mount because of "
869 "unsupported optional features (%x).\n",
870 sb->s_id, le32_to_cpu(features));
871 goto failed_mount;
872 }
873 if (!(sb->s_flags & MS_RDONLY) &&
874 (features = EXT2_HAS_RO_COMPAT_FEATURE(sb, ~EXT2_FEATURE_RO_COMPAT_SUPP))){
875 printk("EXT2-fs: %s: couldn't mount RDWR because of "
876 "unsupported optional features (%x).\n",
877 sb->s_id, le32_to_cpu(features));
878 goto failed_mount;
879 }
880
881 blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
882
Nick Piggina8e3eff2008-02-06 01:37:42 -0800883 if (ext2_use_xip(sb) && blocksize != PAGE_SIZE) {
Carsten Otte6d791252005-06-23 22:05:26 -0700884 if (!silent)
885 printk("XIP: Unsupported blocksize\n");
886 goto failed_mount;
887 }
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 /* If the blocksize doesn't match, re-read the thing.. */
890 if (sb->s_blocksize != blocksize) {
891 brelse(bh);
892
893 if (!sb_set_blocksize(sb, blocksize)) {
894 printk(KERN_ERR "EXT2-fs: blocksize too small for device.\n");
895 goto failed_sbi;
896 }
897
898 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
899 offset = (sb_block*BLOCK_SIZE) % blocksize;
900 bh = sb_bread(sb, logic_sb_block);
901 if(!bh) {
902 printk("EXT2-fs: Couldn't read superblock on "
903 "2nd try.\n");
904 goto failed_sbi;
905 }
906 es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
907 sbi->s_es = es;
908 if (es->s_magic != cpu_to_le16(EXT2_SUPER_MAGIC)) {
909 printk ("EXT2-fs: Magic mismatch, very weird !\n");
910 goto failed_mount;
911 }
912 }
913
914 sb->s_maxbytes = ext2_max_size(sb->s_blocksize_bits);
915
916 if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV) {
917 sbi->s_inode_size = EXT2_GOOD_OLD_INODE_SIZE;
918 sbi->s_first_ino = EXT2_GOOD_OLD_FIRST_INO;
919 } else {
920 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
921 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
922 if ((sbi->s_inode_size < EXT2_GOOD_OLD_INODE_SIZE) ||
vignesh babud8ea6cf2007-10-16 23:27:14 -0700923 !is_power_of_2(sbi->s_inode_size) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 (sbi->s_inode_size > blocksize)) {
925 printk ("EXT2-fs: unsupported inode size: %d\n",
926 sbi->s_inode_size);
927 goto failed_mount;
928 }
929 }
930
931 sbi->s_frag_size = EXT2_MIN_FRAG_SIZE <<
932 le32_to_cpu(es->s_log_frag_size);
933 if (sbi->s_frag_size == 0)
934 goto cantfind_ext2;
935 sbi->s_frags_per_block = sb->s_blocksize / sbi->s_frag_size;
936
937 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
938 sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
939 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
940
941 if (EXT2_INODE_SIZE(sb) == 0)
942 goto cantfind_ext2;
943 sbi->s_inodes_per_block = sb->s_blocksize / EXT2_INODE_SIZE(sb);
Andries Brouwer607eb262006-08-27 01:23:43 -0700944 if (sbi->s_inodes_per_block == 0 || sbi->s_inodes_per_group == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 goto cantfind_ext2;
946 sbi->s_itb_per_group = sbi->s_inodes_per_group /
947 sbi->s_inodes_per_block;
948 sbi->s_desc_per_block = sb->s_blocksize /
949 sizeof (struct ext2_group_desc);
950 sbi->s_sbh = bh;
951 sbi->s_mount_state = le16_to_cpu(es->s_state);
952 sbi->s_addr_per_block_bits =
David Howellsf0d1b0b2006-12-08 02:37:49 -0800953 ilog2 (EXT2_ADDR_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 sbi->s_desc_per_block_bits =
David Howellsf0d1b0b2006-12-08 02:37:49 -0800955 ilog2 (EXT2_DESC_PER_BLOCK(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 if (sb->s_magic != EXT2_SUPER_MAGIC)
958 goto cantfind_ext2;
959
960 if (sb->s_blocksize != bh->b_size) {
961 if (!silent)
962 printk ("VFS: Unsupported blocksize on dev "
963 "%s.\n", sb->s_id);
964 goto failed_mount;
965 }
966
967 if (sb->s_blocksize != sbi->s_frag_size) {
968 printk ("EXT2-fs: fragsize %lu != blocksize %lu (not supported yet)\n",
969 sbi->s_frag_size, sb->s_blocksize);
970 goto failed_mount;
971 }
972
973 if (sbi->s_blocks_per_group > sb->s_blocksize * 8) {
974 printk ("EXT2-fs: #blocks per group too big: %lu\n",
975 sbi->s_blocks_per_group);
976 goto failed_mount;
977 }
978 if (sbi->s_frags_per_group > sb->s_blocksize * 8) {
979 printk ("EXT2-fs: #fragments per group too big: %lu\n",
980 sbi->s_frags_per_group);
981 goto failed_mount;
982 }
983 if (sbi->s_inodes_per_group > sb->s_blocksize * 8) {
984 printk ("EXT2-fs: #inodes per group too big: %lu\n",
985 sbi->s_inodes_per_group);
986 goto failed_mount;
987 }
988
989 if (EXT2_BLOCKS_PER_GROUP(sb) == 0)
990 goto cantfind_ext2;
Eric Sandeen41f04d82006-09-27 01:49:30 -0700991 sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
992 le32_to_cpu(es->s_first_data_block) - 1)
993 / EXT2_BLOCKS_PER_GROUP(sb)) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) /
995 EXT2_DESC_PER_BLOCK(sb);
996 sbi->s_group_desc = kmalloc (db_count * sizeof (struct buffer_head *), GFP_KERNEL);
997 if (sbi->s_group_desc == NULL) {
998 printk ("EXT2-fs: not enough memory\n");
999 goto failed_mount;
1000 }
Pekka J Enberg18a82eb2009-01-07 18:07:19 -08001001 bgl_lock_init(sbi->s_blockgroup_lock);
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001002 sbi->s_debts = kcalloc(sbi->s_groups_count, sizeof(*sbi->s_debts), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!sbi->s_debts) {
1004 printk ("EXT2-fs: not enough memory\n");
1005 goto failed_mount_group_desc;
1006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 for (i = 0; i < db_count; i++) {
1008 block = descriptor_loc(sb, logic_sb_block, i);
1009 sbi->s_group_desc[i] = sb_bread(sb, block);
1010 if (!sbi->s_group_desc[i]) {
1011 for (j = 0; j < i; j++)
1012 brelse (sbi->s_group_desc[j]);
1013 printk ("EXT2-fs: unable to read group descriptors\n");
1014 goto failed_mount_group_desc;
1015 }
1016 }
1017 if (!ext2_check_descriptors (sb)) {
1018 printk ("EXT2-fs: group descriptors corrupted!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 goto failed_mount2;
1020 }
1021 sbi->s_gdb_count = db_count;
1022 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1023 spin_lock_init(&sbi->s_next_gen_lock);
Mingming Cao0216bfc2006-06-23 02:05:41 -07001024
Martin J. Bligha686cd82007-10-16 23:30:46 -07001025 /* per fileystem reservation list head & lock */
1026 spin_lock_init(&sbi->s_rsv_window_lock);
1027 sbi->s_rsv_window_root = RB_ROOT;
1028 /*
1029 * Add a single, static dummy reservation to the start of the
1030 * reservation window list --- it gives us a placeholder for
1031 * append-at-start-of-list which makes the allocation logic
1032 * _much_ simpler.
1033 */
1034 sbi->s_rsv_window_head.rsv_start = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1035 sbi->s_rsv_window_head.rsv_end = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1036 sbi->s_rsv_window_head.rsv_alloc_hit = 0;
1037 sbi->s_rsv_window_head.rsv_goal_size = 0;
1038 ext2_rsv_window_add(sb, &sbi->s_rsv_window_head);
1039
Peter Zijlstra833f4072007-10-16 23:25:45 -07001040 err = percpu_counter_init(&sbi->s_freeblocks_counter,
Mingming Cao0216bfc2006-06-23 02:05:41 -07001041 ext2_count_free_blocks(sb));
Peter Zijlstra833f4072007-10-16 23:25:45 -07001042 if (!err) {
1043 err = percpu_counter_init(&sbi->s_freeinodes_counter,
Mingming Cao0216bfc2006-06-23 02:05:41 -07001044 ext2_count_free_inodes(sb));
Peter Zijlstra833f4072007-10-16 23:25:45 -07001045 }
1046 if (!err) {
1047 err = percpu_counter_init(&sbi->s_dirs_counter,
Mingming Cao0216bfc2006-06-23 02:05:41 -07001048 ext2_count_dirs(sb));
Peter Zijlstra833f4072007-10-16 23:25:45 -07001049 }
1050 if (err) {
1051 printk(KERN_ERR "EXT2-fs: insufficient memory\n");
1052 goto failed_mount3;
1053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /*
1055 * set up enough so that it can read an inode
1056 */
1057 sb->s_op = &ext2_sops;
1058 sb->s_export_op = &ext2_export_ops;
1059 sb->s_xattr = ext2_xattr_handlers;
David Howells52fcf702008-02-07 00:15:35 -08001060 root = ext2_iget(sb, EXT2_ROOT_INO);
1061 if (IS_ERR(root)) {
1062 ret = PTR_ERR(root);
1063 goto failed_mount3;
1064 }
1065 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1066 iput(root);
1067 printk(KERN_ERR "EXT2-fs: corrupt root inode, run e2fsck\n");
1068 goto failed_mount3;
1069 }
1070
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 sb->s_root = d_alloc_root(root);
1072 if (!sb->s_root) {
1073 iput(root);
1074 printk(KERN_ERR "EXT2-fs: get root inode failed\n");
David Howells52fcf702008-02-07 00:15:35 -08001075 ret = -ENOMEM;
Mingming Cao0216bfc2006-06-23 02:05:41 -07001076 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
1078 if (EXT2_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL))
Harvey Harrison605afd62008-04-28 02:16:03 -07001079 ext2_warning(sb, __func__,
Johann Lombardiec63f222005-11-13 16:07:36 -08001080 "mounting ext3 filesystem as ext2");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 ext2_setup_super (sb, es, sb->s_flags & MS_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return 0;
1083
1084cantfind_ext2:
1085 if (!silent)
1086 printk("VFS: Can't find an ext2 filesystem on dev %s.\n",
1087 sb->s_id);
1088 goto failed_mount;
Mingming Cao0216bfc2006-06-23 02:05:41 -07001089failed_mount3:
1090 percpu_counter_destroy(&sbi->s_freeblocks_counter);
1091 percpu_counter_destroy(&sbi->s_freeinodes_counter);
1092 percpu_counter_destroy(&sbi->s_dirs_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093failed_mount2:
1094 for (i = 0; i < db_count; i++)
1095 brelse(sbi->s_group_desc[i]);
1096failed_mount_group_desc:
1097 kfree(sbi->s_group_desc);
1098 kfree(sbi->s_debts);
1099failed_mount:
1100 brelse(bh);
1101failed_sbi:
1102 sb->s_fs_info = NULL;
Manish Katiyar0f7ee7c2009-05-17 23:52:51 -04001103 kfree(sbi->s_blockgroup_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 kfree(sbi);
David Howells52fcf702008-02-07 00:15:35 -08001105 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
1108static void ext2_commit_super (struct super_block * sb,
1109 struct ext2_super_block * es)
1110{
1111 es->s_wtime = cpu_to_le32(get_seconds());
1112 mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
1113 sb->s_dirt = 0;
1114}
1115
1116static void ext2_sync_super(struct super_block *sb, struct ext2_super_block *es)
1117{
1118 es->s_free_blocks_count = cpu_to_le32(ext2_count_free_blocks(sb));
1119 es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb));
1120 es->s_wtime = cpu_to_le32(get_seconds());
1121 mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
1122 sync_dirty_buffer(EXT2_SB(sb)->s_sbh);
1123 sb->s_dirt = 0;
1124}
1125
1126/*
1127 * In the second extended file system, it is not necessary to
1128 * write the super block since we use a mapping of the
1129 * disk super block in a buffer.
1130 *
1131 * However, this function is still used to set the fs valid
1132 * flags to 0. We need to set this flag to 0 since the fs
1133 * may have been checked while mounted and e2fsck may have
1134 * set s_state to EXT2_VALID_FS after some corrections.
1135 */
1136
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001137static int ext2_sync_fs(struct super_block *sb, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001139 struct ext2_super_block *es = EXT2_SB(sb)->s_es;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001141 lock_kernel();
1142 if (es->s_state & cpu_to_le16(EXT2_VALID_FS)) {
1143 ext2_debug("setting valid to 0\n");
1144 es->s_state &= cpu_to_le16(~EXT2_VALID_FS);
1145 es->s_free_blocks_count =
1146 cpu_to_le32(ext2_count_free_blocks(sb));
1147 es->s_free_inodes_count =
1148 cpu_to_le32(ext2_count_free_inodes(sb));
1149 es->s_mtime = cpu_to_le32(get_seconds());
1150 ext2_sync_super(sb, es);
1151 } else {
1152 ext2_commit_super(sb, es);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 }
1154 sb->s_dirt = 0;
1155 unlock_kernel();
Christoph Hellwig40f31dd2009-06-08 10:04:17 +02001156
1157 return 0;
1158}
1159
1160
1161void ext2_write_super(struct super_block *sb)
1162{
1163 if (!(sb->s_flags & MS_RDONLY))
1164 ext2_sync_fs(sb, 1);
1165 else
1166 sb->s_dirt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
1169static int ext2_remount (struct super_block * sb, int * flags, char * data)
1170{
1171 struct ext2_sb_info * sbi = EXT2_SB(sb);
1172 struct ext2_super_block * es;
Carsten Otte6d791252005-06-23 22:05:26 -07001173 unsigned long old_mount_opt = sbi->s_mount_opt;
Jan Kara50a52232005-07-12 13:58:29 -07001174 struct ext2_mount_options old_opts;
1175 unsigned long old_sb_flags;
1176 int err;
1177
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001178 lock_kernel();
1179
Jan Kara50a52232005-07-12 13:58:29 -07001180 /* Store the old options */
1181 old_sb_flags = sb->s_flags;
1182 old_opts.s_mount_opt = sbi->s_mount_opt;
1183 old_opts.s_resuid = sbi->s_resuid;
1184 old_opts.s_resgid = sbi->s_resgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 /*
1187 * Allow the "check" option to be passed as a remount option.
1188 */
Jan Kara50a52232005-07-12 13:58:29 -07001189 if (!parse_options (data, sbi)) {
1190 err = -EINVAL;
1191 goto restore_opts;
1192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1195 ((sbi->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1196
Carsten Otte266f5aa2007-06-23 17:16:46 -07001197 ext2_xip_verify_sb(sb); /* see if bdev supports xip, unset
1198 EXT2_MOUNT_XIP if not */
1199
1200 if ((ext2_use_xip(sb)) && (sb->s_blocksize != PAGE_SIZE)) {
1201 printk("XIP: Unsupported blocksize\n");
Andrew Mortonddc80bd2007-06-27 14:10:08 -07001202 err = -EINVAL;
Carsten Otte266f5aa2007-06-23 17:16:46 -07001203 goto restore_opts;
1204 }
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 es = sbi->s_es;
Carsten Otte6d791252005-06-23 22:05:26 -07001207 if (((sbi->s_mount_opt & EXT2_MOUNT_XIP) !=
1208 (old_mount_opt & EXT2_MOUNT_XIP)) &&
Carsten Otte0e4a9b52009-02-11 13:04:37 -08001209 invalidate_inodes(sb)) {
1210 ext2_warning(sb, __func__, "refusing change of xip flag "
1211 "with busy inodes while remounting");
1212 sbi->s_mount_opt &= ~EXT2_MOUNT_XIP;
1213 sbi->s_mount_opt |= old_mount_opt & EXT2_MOUNT_XIP;
1214 }
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001215 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
1216 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 if (*flags & MS_RDONLY) {
1220 if (le16_to_cpu(es->s_state) & EXT2_VALID_FS ||
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001221 !(sbi->s_mount_state & EXT2_VALID_FS)) {
1222 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 /*
1226 * OK, we are remounting a valid rw partition rdonly, so set
1227 * the rdonly flag and then mark the partition as valid again.
1228 */
1229 es->s_state = cpu_to_le16(sbi->s_mount_state);
1230 es->s_mtime = cpu_to_le32(get_seconds());
1231 } else {
1232 __le32 ret = EXT2_HAS_RO_COMPAT_FEATURE(sb,
1233 ~EXT2_FEATURE_RO_COMPAT_SUPP);
1234 if (ret) {
1235 printk("EXT2-fs: %s: couldn't remount RDWR because of "
1236 "unsupported optional features (%x).\n",
1237 sb->s_id, le32_to_cpu(ret));
Jan Kara50a52232005-07-12 13:58:29 -07001238 err = -EROFS;
1239 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 /*
1242 * Mounting a RDONLY partition read-write, so reread and
1243 * store the current valid flag. (It may have been changed
1244 * by e2fsck since we originally mounted the partition.)
1245 */
1246 sbi->s_mount_state = le16_to_cpu(es->s_state);
1247 if (!ext2_setup_super (sb, es, 0))
1248 sb->s_flags &= ~MS_RDONLY;
1249 }
1250 ext2_sync_super(sb, es);
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001251 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 return 0;
Jan Kara50a52232005-07-12 13:58:29 -07001253restore_opts:
1254 sbi->s_mount_opt = old_opts.s_mount_opt;
1255 sbi->s_resuid = old_opts.s_resuid;
1256 sbi->s_resgid = old_opts.s_resgid;
1257 sb->s_flags = old_sb_flags;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +02001258 unlock_kernel();
Jan Kara50a52232005-07-12 13:58:29 -07001259 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
David Howells726c3342006-06-23 02:02:58 -07001262static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
David Howells726c3342006-06-23 02:02:58 -07001264 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 struct ext2_sb_info *sbi = EXT2_SB(sb);
Pekka Enberge4fca012006-12-06 20:35:27 -08001266 struct ext2_super_block *es = sbi->s_es;
Pekka Enberge4fca012006-12-06 20:35:27 -08001267 u64 fsid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
1269 if (test_opt (sb, MINIX_DF))
Badari Pulavarty22352192007-07-15 23:41:58 -07001270 sbi->s_overhead_last = 0;
1271 else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
1272 unsigned long i, overhead = 0;
1273 smp_rmb();
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 /*
Badari Pulavarty22352192007-07-15 23:41:58 -07001276 * Compute the overhead (FS structures). This is constant
1277 * for a given filesystem unless the number of block groups
1278 * changes so we cache the previous value until it does.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 */
1280
1281 /*
1282 * All of the blocks before first_data_block are
1283 * overhead
1284 */
Pekka Enberge4fca012006-12-06 20:35:27 -08001285 overhead = le32_to_cpu(es->s_first_data_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /*
1288 * Add the overhead attributed to the superblock and
1289 * block group descriptors. If the sparse superblocks
1290 * feature is turned on, then not all groups have this.
1291 */
1292 for (i = 0; i < sbi->s_groups_count; i++)
1293 overhead += ext2_bg_has_super(sb, i) +
1294 ext2_bg_num_gdb(sb, i);
1295
1296 /*
1297 * Every block group has an inode bitmap, a block
1298 * bitmap, and an inode table.
1299 */
1300 overhead += (sbi->s_groups_count *
1301 (2 + sbi->s_itb_per_group));
Badari Pulavarty22352192007-07-15 23:41:58 -07001302 sbi->s_overhead_last = overhead;
1303 smp_wmb();
1304 sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306
1307 buf->f_type = EXT2_SUPER_MAGIC;
1308 buf->f_bsize = sb->s_blocksize;
Badari Pulavarty22352192007-07-15 23:41:58 -07001309 buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 buf->f_bfree = ext2_count_free_blocks(sb);
Badari Pulavarty22352192007-07-15 23:41:58 -07001311 es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
Pekka Enberge4fca012006-12-06 20:35:27 -08001312 buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
1313 if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 buf->f_bavail = 0;
Pekka Enberge4fca012006-12-06 20:35:27 -08001315 buf->f_files = le32_to_cpu(es->s_inodes_count);
1316 buf->f_ffree = ext2_count_free_inodes(sb);
Badari Pulavarty22352192007-07-15 23:41:58 -07001317 es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 buf->f_namelen = EXT2_NAME_LEN;
Pekka Enberge4fca012006-12-06 20:35:27 -08001319 fsid = le64_to_cpup((void *)es->s_uuid) ^
1320 le64_to_cpup((void *)es->s_uuid + sizeof(u64));
1321 buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
1322 buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324}
1325
David Howells454e2392006-06-23 02:02:57 -07001326static int ext2_get_sb(struct file_system_type *fs_type,
1327 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
David Howells454e2392006-06-23 02:02:57 -07001329 return get_sb_bdev(fs_type, flags, dev_name, data, ext2_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
1332#ifdef CONFIG_QUOTA
1333
1334/* Read data from quotafile - avoid pagecache and such because we cannot afford
1335 * acquiring the locks... As quota files are never truncated and quota code
1336 * itself serializes the operations (and noone else should touch the files)
1337 * we don't have to be afraid of races */
1338static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data,
1339 size_t len, loff_t off)
1340{
1341 struct inode *inode = sb_dqopt(sb)->files[type];
1342 sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1343 int err = 0;
1344 int offset = off & (sb->s_blocksize - 1);
1345 int tocopy;
1346 size_t toread;
1347 struct buffer_head tmp_bh;
1348 struct buffer_head *bh;
1349 loff_t i_size = i_size_read(inode);
1350
1351 if (off > i_size)
1352 return 0;
1353 if (off+len > i_size)
1354 len = i_size-off;
1355 toread = len;
1356 while (toread > 0) {
1357 tocopy = sb->s_blocksize - offset < toread ?
1358 sb->s_blocksize - offset : toread;
1359
1360 tmp_bh.b_state = 0;
Manish Katiyarc16831b2009-02-12 21:57:04 +01001361 tmp_bh.b_size = sb->s_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 err = ext2_get_block(inode, blk, &tmp_bh, 0);
Martin J. Bligha686cd82007-10-16 23:30:46 -07001363 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return err;
1365 if (!buffer_mapped(&tmp_bh)) /* A hole? */
1366 memset(data, 0, tocopy);
1367 else {
1368 bh = sb_bread(sb, tmp_bh.b_blocknr);
1369 if (!bh)
1370 return -EIO;
1371 memcpy(data, bh->b_data+offset, tocopy);
1372 brelse(bh);
1373 }
1374 offset = 0;
1375 toread -= tocopy;
1376 data += tocopy;
1377 blk++;
1378 }
1379 return len;
1380}
1381
1382/* Write to quotafile */
1383static ssize_t ext2_quota_write(struct super_block *sb, int type,
1384 const char *data, size_t len, loff_t off)
1385{
1386 struct inode *inode = sb_dqopt(sb)->files[type];
1387 sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1388 int err = 0;
1389 int offset = off & (sb->s_blocksize - 1);
1390 int tocopy;
1391 size_t towrite = len;
1392 struct buffer_head tmp_bh;
1393 struct buffer_head *bh;
1394
Arjan van de Ven5c81a412006-07-03 00:25:20 -07001395 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 while (towrite > 0) {
1397 tocopy = sb->s_blocksize - offset < towrite ?
1398 sb->s_blocksize - offset : towrite;
1399
1400 tmp_bh.b_state = 0;
1401 err = ext2_get_block(inode, blk, &tmp_bh, 1);
Martin J. Bligha686cd82007-10-16 23:30:46 -07001402 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 goto out;
1404 if (offset || tocopy != EXT2_BLOCK_SIZE(sb))
1405 bh = sb_bread(sb, tmp_bh.b_blocknr);
1406 else
1407 bh = sb_getblk(sb, tmp_bh.b_blocknr);
1408 if (!bh) {
1409 err = -EIO;
1410 goto out;
1411 }
1412 lock_buffer(bh);
1413 memcpy(bh->b_data+offset, data, tocopy);
1414 flush_dcache_page(bh->b_page);
1415 set_buffer_uptodate(bh);
1416 mark_buffer_dirty(bh);
1417 unlock_buffer(bh);
1418 brelse(bh);
1419 offset = 0;
1420 towrite -= tocopy;
1421 data += tocopy;
1422 blk++;
1423 }
1424out:
Dan Carpentera069e9c2009-04-09 18:07:10 +02001425 if (len == towrite) {
1426 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return err;
Dan Carpentera069e9c2009-04-09 18:07:10 +02001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (inode->i_size < off+len-towrite)
1430 i_size_write(inode, off+len-towrite);
1431 inode->i_version++;
1432 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1433 mark_inode_dirty(inode);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001434 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return len - towrite;
1436}
1437
1438#endif
1439
1440static struct file_system_type ext2_fs_type = {
1441 .owner = THIS_MODULE,
1442 .name = "ext2",
1443 .get_sb = ext2_get_sb,
1444 .kill_sb = kill_block_super,
1445 .fs_flags = FS_REQUIRES_DEV,
1446};
1447
1448static int __init init_ext2_fs(void)
1449{
1450 int err = init_ext2_xattr();
1451 if (err)
1452 return err;
1453 err = init_inodecache();
1454 if (err)
1455 goto out1;
1456 err = register_filesystem(&ext2_fs_type);
1457 if (err)
1458 goto out;
1459 return 0;
1460out:
1461 destroy_inodecache();
1462out1:
1463 exit_ext2_xattr();
1464 return err;
1465}
1466
1467static void __exit exit_ext2_fs(void)
1468{
1469 unregister_filesystem(&ext2_fs_type);
1470 destroy_inodecache();
1471 exit_ext2_xattr();
1472}
1473
1474module_init(init_ext2_fs)
1475module_exit(exit_ext2_fs)