blob: d978d3febb8c77aa991c2b5cae01fafc4a565308 [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>
28#include <linux/smp_lock.h>
29#include <linux/vfs.h>
Mark Bellon8fc27512005-09-06 15:16:54 -070030#include <linux/seq_file.h>
31#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/uaccess.h>
33#include "ext2.h"
34#include "xattr.h"
35#include "acl.h"
Carsten Otte6d791252005-06-23 22:05:26 -070036#include "xip.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38static void ext2_sync_super(struct super_block *sb,
39 struct ext2_super_block *es);
40static int ext2_remount (struct super_block * sb, int * flags, char * data);
David Howells726c3342006-06-23 02:02:58 -070041static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43void ext2_error (struct super_block * sb, const char * function,
44 const char * fmt, ...)
45{
46 va_list args;
47 struct ext2_sb_info *sbi = EXT2_SB(sb);
48 struct ext2_super_block *es = sbi->s_es;
49
50 if (!(sb->s_flags & MS_RDONLY)) {
51 sbi->s_mount_state |= EXT2_ERROR_FS;
52 es->s_state =
53 cpu_to_le16(le16_to_cpu(es->s_state) | EXT2_ERROR_FS);
54 ext2_sync_super(sb, es);
55 }
56
57 va_start(args, fmt);
58 printk(KERN_CRIT "EXT2-fs error (device %s): %s: ",sb->s_id, function);
59 vprintk(fmt, args);
60 printk("\n");
61 va_end(args);
62
63 if (test_opt(sb, ERRORS_PANIC))
64 panic("EXT2-fs panic from previous error\n");
65 if (test_opt(sb, ERRORS_RO)) {
66 printk("Remounting filesystem read-only\n");
67 sb->s_flags |= MS_RDONLY;
68 }
69}
70
71void ext2_warning (struct super_block * sb, const char * function,
72 const char * fmt, ...)
73{
74 va_list args;
75
76 va_start(args, fmt);
77 printk(KERN_WARNING "EXT2-fs warning (device %s): %s: ",
78 sb->s_id, function);
79 vprintk(fmt, args);
80 printk("\n");
81 va_end(args);
82}
83
84void ext2_update_dynamic_rev(struct super_block *sb)
85{
86 struct ext2_super_block *es = EXT2_SB(sb)->s_es;
87
88 if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV)
89 return;
90
91 ext2_warning(sb, __FUNCTION__,
92 "updating to rev %d because of new feature flag, "
93 "running e2fsck is recommended",
94 EXT2_DYNAMIC_REV);
95
96 es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO);
97 es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE);
98 es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV);
99 /* leave es->s_feature_*compat flags alone */
100 /* es->s_uuid will be set by e2fsck if empty */
101
102 /*
103 * The rest of the superblock fields should be zero, and if not it
104 * means they are likely already in use, so leave them alone. We
105 * can leave it up to e2fsck to clean up any inconsistencies there.
106 */
107}
108
109static void ext2_put_super (struct super_block * sb)
110{
111 int db_count;
112 int i;
113 struct ext2_sb_info *sbi = EXT2_SB(sb);
114
115 ext2_xattr_put_super(sb);
116 if (!(sb->s_flags & MS_RDONLY)) {
117 struct ext2_super_block *es = sbi->s_es;
118
119 es->s_state = cpu_to_le16(sbi->s_mount_state);
120 ext2_sync_super(sb, es);
121 }
122 db_count = sbi->s_gdb_count;
123 for (i = 0; i < db_count; i++)
124 if (sbi->s_group_desc[i])
125 brelse (sbi->s_group_desc[i]);
126 kfree(sbi->s_group_desc);
127 kfree(sbi->s_debts);
128 percpu_counter_destroy(&sbi->s_freeblocks_counter);
129 percpu_counter_destroy(&sbi->s_freeinodes_counter);
130 percpu_counter_destroy(&sbi->s_dirs_counter);
131 brelse (sbi->s_sbh);
132 sb->s_fs_info = NULL;
133 kfree(sbi);
134
135 return;
136}
137
138static kmem_cache_t * ext2_inode_cachep;
139
140static struct inode *ext2_alloc_inode(struct super_block *sb)
141{
142 struct ext2_inode_info *ei;
143 ei = (struct ext2_inode_info *)kmem_cache_alloc(ext2_inode_cachep, SLAB_KERNEL);
144 if (!ei)
145 return NULL;
146#ifdef CONFIG_EXT2_FS_POSIX_ACL
147 ei->i_acl = EXT2_ACL_NOT_CACHED;
148 ei->i_default_acl = EXT2_ACL_NOT_CACHED;
149#endif
150 ei->vfs_inode.i_version = 1;
151 return &ei->vfs_inode;
152}
153
154static void ext2_destroy_inode(struct inode *inode)
155{
156 kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));
157}
158
159static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
160{
161 struct ext2_inode_info *ei = (struct ext2_inode_info *) foo;
162
163 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
164 SLAB_CTOR_CONSTRUCTOR) {
165 rwlock_init(&ei->i_meta_lock);
166#ifdef CONFIG_EXT2_FS_XATTR
167 init_rwsem(&ei->xattr_sem);
168#endif
169 inode_init_once(&ei->vfs_inode);
170 }
171}
172
173static int init_inodecache(void)
174{
175 ext2_inode_cachep = kmem_cache_create("ext2_inode_cache",
176 sizeof(struct ext2_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800177 0, (SLAB_RECLAIM_ACCOUNT|
178 SLAB_MEM_SPREAD),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 init_once, NULL);
180 if (ext2_inode_cachep == NULL)
181 return -ENOMEM;
182 return 0;
183}
184
185static void destroy_inodecache(void)
186{
187 if (kmem_cache_destroy(ext2_inode_cachep))
188 printk(KERN_INFO "ext2_inode_cache: not all structures were freed\n");
189}
190
191static void ext2_clear_inode(struct inode *inode)
192{
193#ifdef CONFIG_EXT2_FS_POSIX_ACL
194 struct ext2_inode_info *ei = EXT2_I(inode);
195
196 if (ei->i_acl && ei->i_acl != EXT2_ACL_NOT_CACHED) {
197 posix_acl_release(ei->i_acl);
198 ei->i_acl = EXT2_ACL_NOT_CACHED;
199 }
200 if (ei->i_default_acl && ei->i_default_acl != EXT2_ACL_NOT_CACHED) {
201 posix_acl_release(ei->i_default_acl);
202 ei->i_default_acl = EXT2_ACL_NOT_CACHED;
203 }
204#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Mark Bellon8fc27512005-09-06 15:16:54 -0700207static int ext2_show_options(struct seq_file *seq, struct vfsmount *vfs)
208{
209 struct ext2_sb_info *sbi = EXT2_SB(vfs->mnt_sb);
210
211 if (sbi->s_mount_opt & EXT2_MOUNT_GRPID)
212 seq_puts(seq, ",grpid");
Mark Bellon8fc27512005-09-06 15:16:54 -0700213
214#if defined(CONFIG_QUOTA)
215 if (sbi->s_mount_opt & EXT2_MOUNT_USRQUOTA)
216 seq_puts(seq, ",usrquota");
217
218 if (sbi->s_mount_opt & EXT2_MOUNT_GRPQUOTA)
219 seq_puts(seq, ",grpquota");
220#endif
221
Carsten Otte83541792006-02-03 03:04:25 -0800222#if defined(CONFIG_EXT2_FS_XIP)
223 if (sbi->s_mount_opt & EXT2_MOUNT_XIP)
224 seq_puts(seq, ",xip");
225#endif
226
Mark Bellon8fc27512005-09-06 15:16:54 -0700227 return 0;
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230#ifdef CONFIG_QUOTA
231static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data, size_t len, loff_t off);
232static ssize_t ext2_quota_write(struct super_block *sb, int type, const char *data, size_t len, loff_t off);
233#endif
234
235static struct super_operations ext2_sops = {
236 .alloc_inode = ext2_alloc_inode,
237 .destroy_inode = ext2_destroy_inode,
238 .read_inode = ext2_read_inode,
239 .write_inode = ext2_write_inode,
Bernard Blackhame072c6f2005-04-16 15:25:45 -0700240 .put_inode = ext2_put_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 .delete_inode = ext2_delete_inode,
242 .put_super = ext2_put_super,
243 .write_super = ext2_write_super,
244 .statfs = ext2_statfs,
245 .remount_fs = ext2_remount,
246 .clear_inode = ext2_clear_inode,
Mark Bellon8fc27512005-09-06 15:16:54 -0700247 .show_options = ext2_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#ifdef CONFIG_QUOTA
249 .quota_read = ext2_quota_read,
250 .quota_write = ext2_quota_write,
251#endif
252};
253
NeilBrownecaff752006-09-16 12:15:37 -0700254static struct dentry *ext2_get_dentry(struct super_block *sb, void *vobjp)
255{
256 __u32 *objp = vobjp;
257 unsigned long ino = objp[0];
258 __u32 generation = objp[1];
259 struct inode *inode;
260 struct dentry *result;
261
262 if (ino < EXT2_FIRST_INO(sb) && ino != EXT2_ROOT_INO)
263 return ERR_PTR(-ESTALE);
264 if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
265 return ERR_PTR(-ESTALE);
266
267 /* iget isn't really right if the inode is currently unallocated!!
268 * ext2_read_inode currently does appropriate checks, but
269 * it might be "neater" to call ext2_get_inode first and check
270 * if the inode is valid.....
271 */
272 inode = iget(sb, ino);
273 if (inode == NULL)
274 return ERR_PTR(-ENOMEM);
275 if (is_bad_inode(inode) ||
276 (generation && inode->i_generation != generation)) {
277 /* we didn't find the right inode.. */
278 iput(inode);
279 return ERR_PTR(-ESTALE);
280 }
281 /* now to find a dentry.
282 * If possible, get a well-connected one
283 */
284 result = d_alloc_anon(inode);
285 if (!result) {
286 iput(inode);
287 return ERR_PTR(-ENOMEM);
288 }
289 return result;
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/* Yes, most of these are left as NULL!!
293 * A NULL value implies the default, which works with ext2-like file
294 * systems, but can be improved upon.
295 * Currently only get_parent is required.
296 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297static struct export_operations ext2_export_ops = {
298 .get_parent = ext2_get_parent,
NeilBrownecaff752006-09-16 12:15:37 -0700299 .get_dentry = ext2_get_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
302static unsigned long get_sb_block(void **data)
303{
304 unsigned long sb_block;
305 char *options = (char *) *data;
306
307 if (!options || strncmp(options, "sb=", 3) != 0)
308 return 1; /* Default location */
309 options += 3;
310 sb_block = simple_strtoul(options, &options, 0);
311 if (*options && *options != ',') {
312 printk("EXT2-fs: Invalid sb specification: %s\n",
313 (char *) *data);
314 return 1;
315 }
316 if (*options == ',')
317 options++;
318 *data = (void *) options;
319 return sb_block;
320}
321
322enum {
323 Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
Mark Bellon8fc27512005-09-06 15:16:54 -0700324 Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic,
Adrian Bunk2860b732005-11-08 21:34:59 -0800325 Opt_err_ro, Opt_nouid32, Opt_nocheck, Opt_debug,
Mark Bellon8fc27512005-09-06 15:16:54 -0700326 Opt_oldalloc, Opt_orlov, Opt_nobh, Opt_user_xattr, Opt_nouser_xattr,
327 Opt_acl, Opt_noacl, Opt_xip, Opt_ignore, Opt_err, Opt_quota,
328 Opt_usrquota, Opt_grpquota
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329};
330
331static match_table_t tokens = {
332 {Opt_bsd_df, "bsddf"},
333 {Opt_minix_df, "minixdf"},
334 {Opt_grpid, "grpid"},
335 {Opt_grpid, "bsdgroups"},
336 {Opt_nogrpid, "nogrpid"},
337 {Opt_nogrpid, "sysvgroups"},
338 {Opt_resgid, "resgid=%u"},
339 {Opt_resuid, "resuid=%u"},
340 {Opt_sb, "sb=%u"},
341 {Opt_err_cont, "errors=continue"},
342 {Opt_err_panic, "errors=panic"},
343 {Opt_err_ro, "errors=remount-ro"},
344 {Opt_nouid32, "nouid32"},
345 {Opt_nocheck, "check=none"},
346 {Opt_nocheck, "nocheck"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 {Opt_debug, "debug"},
348 {Opt_oldalloc, "oldalloc"},
349 {Opt_orlov, "orlov"},
350 {Opt_nobh, "nobh"},
351 {Opt_user_xattr, "user_xattr"},
352 {Opt_nouser_xattr, "nouser_xattr"},
353 {Opt_acl, "acl"},
354 {Opt_noacl, "noacl"},
Carsten Otte6d791252005-06-23 22:05:26 -0700355 {Opt_xip, "xip"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700356 {Opt_grpquota, "grpquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 {Opt_ignore, "noquota"},
Mark Bellon8fc27512005-09-06 15:16:54 -0700358 {Opt_quota, "quota"},
359 {Opt_usrquota, "usrquota"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 {Opt_err, NULL}
361};
362
363static int parse_options (char * options,
364 struct ext2_sb_info *sbi)
365{
366 char * p;
367 substring_t args[MAX_OPT_ARGS];
368 unsigned long kind = EXT2_MOUNT_ERRORS_CONT;
369 int option;
370
371 if (!options)
372 return 1;
373
374 while ((p = strsep (&options, ",")) != NULL) {
375 int token;
376 if (!*p)
377 continue;
378
379 token = match_token(p, tokens, args);
380 switch (token) {
381 case Opt_bsd_df:
382 clear_opt (sbi->s_mount_opt, MINIX_DF);
383 break;
384 case Opt_minix_df:
385 set_opt (sbi->s_mount_opt, MINIX_DF);
386 break;
387 case Opt_grpid:
388 set_opt (sbi->s_mount_opt, GRPID);
389 break;
390 case Opt_nogrpid:
391 clear_opt (sbi->s_mount_opt, GRPID);
392 break;
393 case Opt_resuid:
394 if (match_int(&args[0], &option))
395 return 0;
396 sbi->s_resuid = option;
397 break;
398 case Opt_resgid:
399 if (match_int(&args[0], &option))
400 return 0;
401 sbi->s_resgid = option;
402 break;
403 case Opt_sb:
404 /* handled by get_sb_block() instead of here */
405 /* *sb_block = match_int(&args[0]); */
406 break;
407 case Opt_err_panic:
408 kind = EXT2_MOUNT_ERRORS_PANIC;
409 break;
410 case Opt_err_ro:
411 kind = EXT2_MOUNT_ERRORS_RO;
412 break;
413 case Opt_err_cont:
414 kind = EXT2_MOUNT_ERRORS_CONT;
415 break;
416 case Opt_nouid32:
417 set_opt (sbi->s_mount_opt, NO_UID32);
418 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 case Opt_nocheck:
420 clear_opt (sbi->s_mount_opt, CHECK);
421 break;
422 case Opt_debug:
423 set_opt (sbi->s_mount_opt, DEBUG);
424 break;
425 case Opt_oldalloc:
426 set_opt (sbi->s_mount_opt, OLDALLOC);
427 break;
428 case Opt_orlov:
429 clear_opt (sbi->s_mount_opt, OLDALLOC);
430 break;
431 case Opt_nobh:
432 set_opt (sbi->s_mount_opt, NOBH);
433 break;
434#ifdef CONFIG_EXT2_FS_XATTR
435 case Opt_user_xattr:
436 set_opt (sbi->s_mount_opt, XATTR_USER);
437 break;
438 case Opt_nouser_xattr:
439 clear_opt (sbi->s_mount_opt, XATTR_USER);
440 break;
441#else
442 case Opt_user_xattr:
443 case Opt_nouser_xattr:
444 printk("EXT2 (no)user_xattr options not supported\n");
445 break;
446#endif
447#ifdef CONFIG_EXT2_FS_POSIX_ACL
448 case Opt_acl:
449 set_opt(sbi->s_mount_opt, POSIX_ACL);
450 break;
451 case Opt_noacl:
452 clear_opt(sbi->s_mount_opt, POSIX_ACL);
453 break;
454#else
455 case Opt_acl:
456 case Opt_noacl:
457 printk("EXT2 (no)acl options not supported\n");
458 break;
459#endif
Carsten Otte6d791252005-06-23 22:05:26 -0700460 case Opt_xip:
461#ifdef CONFIG_EXT2_FS_XIP
462 set_opt (sbi->s_mount_opt, XIP);
463#else
464 printk("EXT2 xip option not supported\n");
465#endif
466 break;
Mark Bellon8fc27512005-09-06 15:16:54 -0700467
468#if defined(CONFIG_QUOTA)
469 case Opt_quota:
470 case Opt_usrquota:
471 set_opt(sbi->s_mount_opt, USRQUOTA);
472 break;
473
474 case Opt_grpquota:
475 set_opt(sbi->s_mount_opt, GRPQUOTA);
476 break;
477#else
478 case Opt_quota:
479 case Opt_usrquota:
480 case Opt_grpquota:
481 printk(KERN_ERR
482 "EXT2-fs: quota operations not supported.\n");
483
484 break;
485#endif
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 case Opt_ignore:
488 break;
489 default:
490 return 0;
491 }
492 }
493 sbi->s_mount_opt |= kind;
494 return 1;
495}
496
497static int ext2_setup_super (struct super_block * sb,
498 struct ext2_super_block * es,
499 int read_only)
500{
501 int res = 0;
502 struct ext2_sb_info *sbi = EXT2_SB(sb);
503
504 if (le32_to_cpu(es->s_rev_level) > EXT2_MAX_SUPP_REV) {
505 printk ("EXT2-fs warning: revision level too high, "
506 "forcing read-only mode\n");
507 res = MS_RDONLY;
508 }
509 if (read_only)
510 return res;
511 if (!(sbi->s_mount_state & EXT2_VALID_FS))
512 printk ("EXT2-fs warning: mounting unchecked fs, "
513 "running e2fsck is recommended\n");
514 else if ((sbi->s_mount_state & EXT2_ERROR_FS))
515 printk ("EXT2-fs warning: mounting fs with errors, "
516 "running e2fsck is recommended\n");
517 else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
518 le16_to_cpu(es->s_mnt_count) >=
519 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
520 printk ("EXT2-fs warning: maximal mount count reached, "
521 "running e2fsck is recommended\n");
522 else if (le32_to_cpu(es->s_checkinterval) &&
523 (le32_to_cpu(es->s_lastcheck) + le32_to_cpu(es->s_checkinterval) <= get_seconds()))
524 printk ("EXT2-fs warning: checktime reached, "
525 "running e2fsck is recommended\n");
526 if (!le16_to_cpu(es->s_max_mnt_count))
527 es->s_max_mnt_count = cpu_to_le16(EXT2_DFL_MAX_MNT_COUNT);
528 es->s_mnt_count=cpu_to_le16(le16_to_cpu(es->s_mnt_count) + 1);
529 ext2_write_super(sb);
530 if (test_opt (sb, DEBUG))
531 printk ("[EXT II FS %s, %s, bs=%lu, fs=%lu, gc=%lu, "
532 "bpg=%lu, ipg=%lu, mo=%04lx]\n",
533 EXT2FS_VERSION, EXT2FS_DATE, sb->s_blocksize,
534 sbi->s_frag_size,
535 sbi->s_groups_count,
536 EXT2_BLOCKS_PER_GROUP(sb),
537 EXT2_INODES_PER_GROUP(sb),
538 sbi->s_mount_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return res;
540}
541
542static int ext2_check_descriptors (struct super_block * sb)
543{
544 int i;
545 int desc_block = 0;
546 struct ext2_sb_info *sbi = EXT2_SB(sb);
Eric Sandeen41f04d82006-09-27 01:49:30 -0700547 unsigned long first_block = le32_to_cpu(sbi->s_es->s_first_data_block);
548 unsigned long last_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 struct ext2_group_desc * gdp = NULL;
550
551 ext2_debug ("Checking group descriptors");
552
553 for (i = 0; i < sbi->s_groups_count; i++)
554 {
Eric Sandeen41f04d82006-09-27 01:49:30 -0700555 if (i == sbi->s_groups_count - 1)
556 last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
557 else
558 last_block = first_block +
559 (EXT2_BLOCKS_PER_GROUP(sb) - 1);
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0)
562 gdp = (struct ext2_group_desc *) sbi->s_group_desc[desc_block++]->b_data;
Eric Sandeen41f04d82006-09-27 01:49:30 -0700563 if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
564 le32_to_cpu(gdp->bg_block_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 {
566 ext2_error (sb, "ext2_check_descriptors",
567 "Block bitmap for group %d"
568 " not in group (block %lu)!",
569 i, (unsigned long) le32_to_cpu(gdp->bg_block_bitmap));
570 return 0;
571 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700572 if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
573 le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 {
575 ext2_error (sb, "ext2_check_descriptors",
576 "Inode bitmap for group %d"
577 " not in group (block %lu)!",
578 i, (unsigned long) le32_to_cpu(gdp->bg_inode_bitmap));
579 return 0;
580 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700581 if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
582 le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group >
583 last_block)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 {
585 ext2_error (sb, "ext2_check_descriptors",
586 "Inode table for group %d"
587 " not in group (block %lu)!",
588 i, (unsigned long) le32_to_cpu(gdp->bg_inode_table));
589 return 0;
590 }
Eric Sandeen41f04d82006-09-27 01:49:30 -0700591 first_block += EXT2_BLOCKS_PER_GROUP(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 gdp++;
593 }
594 return 1;
595}
596
597#define log2(n) ffz(~(n))
598
599/*
600 * Maximal file size. There is a direct, and {,double-,triple-}indirect
601 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
602 * We need to be 1 filesystem block less than the 2^32 sector limit.
603 */
604static loff_t ext2_max_size(int bits)
605{
606 loff_t res = EXT2_NDIR_BLOCKS;
607 /* This constant is calculated to be the largest file size for a
608 * dense, 4k-blocksize file such that the total number of
609 * sectors in the file, including data and all indirect blocks,
610 * does not exceed 2^32. */
611 const loff_t upper_limit = 0x1ff7fffd000LL;
612
613 res += 1LL << (bits-2);
614 res += 1LL << (2*(bits-2));
615 res += 1LL << (3*(bits-2));
616 res <<= bits;
617 if (res > upper_limit)
618 res = upper_limit;
619 return res;
620}
621
622static unsigned long descriptor_loc(struct super_block *sb,
623 unsigned long logic_sb_block,
624 int nr)
625{
626 struct ext2_sb_info *sbi = EXT2_SB(sb);
627 unsigned long bg, first_data_block, first_meta_bg;
628 int has_super = 0;
629
630 first_data_block = le32_to_cpu(sbi->s_es->s_first_data_block);
631 first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
632
633 if (!EXT2_HAS_INCOMPAT_FEATURE(sb, EXT2_FEATURE_INCOMPAT_META_BG) ||
634 nr < first_meta_bg)
635 return (logic_sb_block + nr + 1);
636 bg = sbi->s_desc_per_block * nr;
637 if (ext2_bg_has_super(sb, bg))
638 has_super = 1;
639 return (first_data_block + has_super + (bg * sbi->s_blocks_per_group));
640}
641
642static int ext2_fill_super(struct super_block *sb, void *data, int silent)
643{
644 struct buffer_head * bh;
645 struct ext2_sb_info * sbi;
646 struct ext2_super_block * es;
647 struct inode *root;
648 unsigned long block;
649 unsigned long sb_block = get_sb_block(&data);
650 unsigned long logic_sb_block;
651 unsigned long offset = 0;
652 unsigned long def_mount_opts;
653 int blocksize = BLOCK_SIZE;
654 int db_count;
655 int i, j;
656 __le32 features;
657
658 sbi = kmalloc(sizeof(*sbi), GFP_KERNEL);
659 if (!sbi)
660 return -ENOMEM;
661 sb->s_fs_info = sbi;
662 memset(sbi, 0, sizeof(*sbi));
663
664 /*
665 * See what the current blocksize for the device is, and
666 * use that as the blocksize. Otherwise (or if the blocksize
667 * is smaller than the default) use the default.
668 * This is important for devices that have a hardware
669 * sectorsize that is larger than the default.
670 */
671 blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
672 if (!blocksize) {
673 printk ("EXT2-fs: unable to set blocksize\n");
674 goto failed_sbi;
675 }
676
677 /*
678 * If the superblock doesn't start on a hardware sector boundary,
679 * calculate the offset.
680 */
681 if (blocksize != BLOCK_SIZE) {
682 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
683 offset = (sb_block*BLOCK_SIZE) % blocksize;
684 } else {
685 logic_sb_block = sb_block;
686 }
687
688 if (!(bh = sb_bread(sb, logic_sb_block))) {
689 printk ("EXT2-fs: unable to read superblock\n");
690 goto failed_sbi;
691 }
692 /*
693 * Note: s_es must be initialized as soon as possible because
694 * some ext2 macro-instructions depend on its value
695 */
696 es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
697 sbi->s_es = es;
698 sb->s_magic = le16_to_cpu(es->s_magic);
699
700 if (sb->s_magic != EXT2_SUPER_MAGIC)
701 goto cantfind_ext2;
702
703 /* Set defaults before we parse the mount options */
704 def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
705 if (def_mount_opts & EXT2_DEFM_DEBUG)
706 set_opt(sbi->s_mount_opt, DEBUG);
707 if (def_mount_opts & EXT2_DEFM_BSDGROUPS)
708 set_opt(sbi->s_mount_opt, GRPID);
709 if (def_mount_opts & EXT2_DEFM_UID16)
710 set_opt(sbi->s_mount_opt, NO_UID32);
711 if (def_mount_opts & EXT2_DEFM_XATTR_USER)
712 set_opt(sbi->s_mount_opt, XATTR_USER);
713 if (def_mount_opts & EXT2_DEFM_ACL)
714 set_opt(sbi->s_mount_opt, POSIX_ACL);
715
716 if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_PANIC)
717 set_opt(sbi->s_mount_opt, ERRORS_PANIC);
718 else if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_RO)
719 set_opt(sbi->s_mount_opt, ERRORS_RO);
720
721 sbi->s_resuid = le16_to_cpu(es->s_def_resuid);
722 sbi->s_resgid = le16_to_cpu(es->s_def_resgid);
723
724 if (!parse_options ((char *) data, sbi))
725 goto failed_mount;
726
727 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
728 ((EXT2_SB(sb)->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ?
729 MS_POSIXACL : 0);
730
Carsten Otte6d791252005-06-23 22:05:26 -0700731 ext2_xip_verify_sb(sb); /* see if bdev supports xip, unset
732 EXT2_MOUNT_XIP if not */
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV &&
735 (EXT2_HAS_COMPAT_FEATURE(sb, ~0U) ||
736 EXT2_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
737 EXT2_HAS_INCOMPAT_FEATURE(sb, ~0U)))
738 printk("EXT2-fs warning: feature flags set on rev 0 fs, "
739 "running e2fsck is recommended\n");
740 /*
741 * Check feature flags regardless of the revision level, since we
742 * previously didn't change the revision level when setting the flags,
743 * so there is a chance incompat flags are set on a rev 0 filesystem.
744 */
745 features = EXT2_HAS_INCOMPAT_FEATURE(sb, ~EXT2_FEATURE_INCOMPAT_SUPP);
746 if (features) {
747 printk("EXT2-fs: %s: couldn't mount because of "
748 "unsupported optional features (%x).\n",
749 sb->s_id, le32_to_cpu(features));
750 goto failed_mount;
751 }
752 if (!(sb->s_flags & MS_RDONLY) &&
753 (features = EXT2_HAS_RO_COMPAT_FEATURE(sb, ~EXT2_FEATURE_RO_COMPAT_SUPP))){
754 printk("EXT2-fs: %s: couldn't mount RDWR because of "
755 "unsupported optional features (%x).\n",
756 sb->s_id, le32_to_cpu(features));
757 goto failed_mount;
758 }
759
760 blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
761
Carsten Otte6d791252005-06-23 22:05:26 -0700762 if ((ext2_use_xip(sb)) && ((blocksize != PAGE_SIZE) ||
763 (sb->s_blocksize != blocksize))) {
764 if (!silent)
765 printk("XIP: Unsupported blocksize\n");
766 goto failed_mount;
767 }
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /* If the blocksize doesn't match, re-read the thing.. */
770 if (sb->s_blocksize != blocksize) {
771 brelse(bh);
772
773 if (!sb_set_blocksize(sb, blocksize)) {
774 printk(KERN_ERR "EXT2-fs: blocksize too small for device.\n");
775 goto failed_sbi;
776 }
777
778 logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
779 offset = (sb_block*BLOCK_SIZE) % blocksize;
780 bh = sb_bread(sb, logic_sb_block);
781 if(!bh) {
782 printk("EXT2-fs: Couldn't read superblock on "
783 "2nd try.\n");
784 goto failed_sbi;
785 }
786 es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
787 sbi->s_es = es;
788 if (es->s_magic != cpu_to_le16(EXT2_SUPER_MAGIC)) {
789 printk ("EXT2-fs: Magic mismatch, very weird !\n");
790 goto failed_mount;
791 }
792 }
793
794 sb->s_maxbytes = ext2_max_size(sb->s_blocksize_bits);
795
796 if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV) {
797 sbi->s_inode_size = EXT2_GOOD_OLD_INODE_SIZE;
798 sbi->s_first_ino = EXT2_GOOD_OLD_FIRST_INO;
799 } else {
800 sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
801 sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
802 if ((sbi->s_inode_size < EXT2_GOOD_OLD_INODE_SIZE) ||
803 (sbi->s_inode_size & (sbi->s_inode_size - 1)) ||
804 (sbi->s_inode_size > blocksize)) {
805 printk ("EXT2-fs: unsupported inode size: %d\n",
806 sbi->s_inode_size);
807 goto failed_mount;
808 }
809 }
810
811 sbi->s_frag_size = EXT2_MIN_FRAG_SIZE <<
812 le32_to_cpu(es->s_log_frag_size);
813 if (sbi->s_frag_size == 0)
814 goto cantfind_ext2;
815 sbi->s_frags_per_block = sb->s_blocksize / sbi->s_frag_size;
816
817 sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
818 sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
819 sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
820
821 if (EXT2_INODE_SIZE(sb) == 0)
822 goto cantfind_ext2;
823 sbi->s_inodes_per_block = sb->s_blocksize / EXT2_INODE_SIZE(sb);
Andries Brouwer607eb262006-08-27 01:23:43 -0700824 if (sbi->s_inodes_per_block == 0 || sbi->s_inodes_per_group == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 goto cantfind_ext2;
826 sbi->s_itb_per_group = sbi->s_inodes_per_group /
827 sbi->s_inodes_per_block;
828 sbi->s_desc_per_block = sb->s_blocksize /
829 sizeof (struct ext2_group_desc);
830 sbi->s_sbh = bh;
831 sbi->s_mount_state = le16_to_cpu(es->s_state);
832 sbi->s_addr_per_block_bits =
833 log2 (EXT2_ADDR_PER_BLOCK(sb));
834 sbi->s_desc_per_block_bits =
835 log2 (EXT2_DESC_PER_BLOCK(sb));
836
837 if (sb->s_magic != EXT2_SUPER_MAGIC)
838 goto cantfind_ext2;
839
840 if (sb->s_blocksize != bh->b_size) {
841 if (!silent)
842 printk ("VFS: Unsupported blocksize on dev "
843 "%s.\n", sb->s_id);
844 goto failed_mount;
845 }
846
847 if (sb->s_blocksize != sbi->s_frag_size) {
848 printk ("EXT2-fs: fragsize %lu != blocksize %lu (not supported yet)\n",
849 sbi->s_frag_size, sb->s_blocksize);
850 goto failed_mount;
851 }
852
853 if (sbi->s_blocks_per_group > sb->s_blocksize * 8) {
854 printk ("EXT2-fs: #blocks per group too big: %lu\n",
855 sbi->s_blocks_per_group);
856 goto failed_mount;
857 }
858 if (sbi->s_frags_per_group > sb->s_blocksize * 8) {
859 printk ("EXT2-fs: #fragments per group too big: %lu\n",
860 sbi->s_frags_per_group);
861 goto failed_mount;
862 }
863 if (sbi->s_inodes_per_group > sb->s_blocksize * 8) {
864 printk ("EXT2-fs: #inodes per group too big: %lu\n",
865 sbi->s_inodes_per_group);
866 goto failed_mount;
867 }
868
869 if (EXT2_BLOCKS_PER_GROUP(sb) == 0)
870 goto cantfind_ext2;
Eric Sandeen41f04d82006-09-27 01:49:30 -0700871 sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
872 le32_to_cpu(es->s_first_data_block) - 1)
873 / EXT2_BLOCKS_PER_GROUP(sb)) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) /
875 EXT2_DESC_PER_BLOCK(sb);
876 sbi->s_group_desc = kmalloc (db_count * sizeof (struct buffer_head *), GFP_KERNEL);
877 if (sbi->s_group_desc == NULL) {
878 printk ("EXT2-fs: not enough memory\n");
879 goto failed_mount;
880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 bgl_lock_init(&sbi->s_blockgroup_lock);
882 sbi->s_debts = kmalloc(sbi->s_groups_count * sizeof(*sbi->s_debts),
883 GFP_KERNEL);
884 if (!sbi->s_debts) {
885 printk ("EXT2-fs: not enough memory\n");
886 goto failed_mount_group_desc;
887 }
888 memset(sbi->s_debts, 0, sbi->s_groups_count * sizeof(*sbi->s_debts));
889 for (i = 0; i < db_count; i++) {
890 block = descriptor_loc(sb, logic_sb_block, i);
891 sbi->s_group_desc[i] = sb_bread(sb, block);
892 if (!sbi->s_group_desc[i]) {
893 for (j = 0; j < i; j++)
894 brelse (sbi->s_group_desc[j]);
895 printk ("EXT2-fs: unable to read group descriptors\n");
896 goto failed_mount_group_desc;
897 }
898 }
899 if (!ext2_check_descriptors (sb)) {
900 printk ("EXT2-fs: group descriptors corrupted!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 goto failed_mount2;
902 }
903 sbi->s_gdb_count = db_count;
904 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
905 spin_lock_init(&sbi->s_next_gen_lock);
Mingming Cao0216bfc2006-06-23 02:05:41 -0700906
907 percpu_counter_init(&sbi->s_freeblocks_counter,
908 ext2_count_free_blocks(sb));
909 percpu_counter_init(&sbi->s_freeinodes_counter,
910 ext2_count_free_inodes(sb));
911 percpu_counter_init(&sbi->s_dirs_counter,
912 ext2_count_dirs(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
914 * set up enough so that it can read an inode
915 */
916 sb->s_op = &ext2_sops;
917 sb->s_export_op = &ext2_export_ops;
918 sb->s_xattr = ext2_xattr_handlers;
919 root = iget(sb, EXT2_ROOT_INO);
920 sb->s_root = d_alloc_root(root);
921 if (!sb->s_root) {
922 iput(root);
923 printk(KERN_ERR "EXT2-fs: get root inode failed\n");
Mingming Cao0216bfc2006-06-23 02:05:41 -0700924 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
927 dput(sb->s_root);
928 sb->s_root = NULL;
929 printk(KERN_ERR "EXT2-fs: corrupt root inode, run e2fsck\n");
Mingming Cao0216bfc2006-06-23 02:05:41 -0700930 goto failed_mount3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
932 if (EXT2_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL))
933 ext2_warning(sb, __FUNCTION__,
Johann Lombardiec63f222005-11-13 16:07:36 -0800934 "mounting ext3 filesystem as ext2");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 ext2_setup_super (sb, es, sb->s_flags & MS_RDONLY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return 0;
937
938cantfind_ext2:
939 if (!silent)
940 printk("VFS: Can't find an ext2 filesystem on dev %s.\n",
941 sb->s_id);
942 goto failed_mount;
Mingming Cao0216bfc2006-06-23 02:05:41 -0700943failed_mount3:
944 percpu_counter_destroy(&sbi->s_freeblocks_counter);
945 percpu_counter_destroy(&sbi->s_freeinodes_counter);
946 percpu_counter_destroy(&sbi->s_dirs_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947failed_mount2:
948 for (i = 0; i < db_count; i++)
949 brelse(sbi->s_group_desc[i]);
950failed_mount_group_desc:
951 kfree(sbi->s_group_desc);
952 kfree(sbi->s_debts);
953failed_mount:
954 brelse(bh);
955failed_sbi:
956 sb->s_fs_info = NULL;
957 kfree(sbi);
958 return -EINVAL;
959}
960
961static void ext2_commit_super (struct super_block * sb,
962 struct ext2_super_block * es)
963{
964 es->s_wtime = cpu_to_le32(get_seconds());
965 mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
966 sb->s_dirt = 0;
967}
968
969static void ext2_sync_super(struct super_block *sb, struct ext2_super_block *es)
970{
971 es->s_free_blocks_count = cpu_to_le32(ext2_count_free_blocks(sb));
972 es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb));
973 es->s_wtime = cpu_to_le32(get_seconds());
974 mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
975 sync_dirty_buffer(EXT2_SB(sb)->s_sbh);
976 sb->s_dirt = 0;
977}
978
979/*
980 * In the second extended file system, it is not necessary to
981 * write the super block since we use a mapping of the
982 * disk super block in a buffer.
983 *
984 * However, this function is still used to set the fs valid
985 * flags to 0. We need to set this flag to 0 since the fs
986 * may have been checked while mounted and e2fsck may have
987 * set s_state to EXT2_VALID_FS after some corrections.
988 */
989
990void ext2_write_super (struct super_block * sb)
991{
992 struct ext2_super_block * es;
993 lock_kernel();
994 if (!(sb->s_flags & MS_RDONLY)) {
995 es = EXT2_SB(sb)->s_es;
996
997 if (le16_to_cpu(es->s_state) & EXT2_VALID_FS) {
998 ext2_debug ("setting valid to 0\n");
999 es->s_state = cpu_to_le16(le16_to_cpu(es->s_state) &
1000 ~EXT2_VALID_FS);
1001 es->s_free_blocks_count = cpu_to_le32(ext2_count_free_blocks(sb));
1002 es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb));
1003 es->s_mtime = cpu_to_le32(get_seconds());
1004 ext2_sync_super(sb, es);
1005 } else
1006 ext2_commit_super (sb, es);
1007 }
1008 sb->s_dirt = 0;
1009 unlock_kernel();
1010}
1011
1012static int ext2_remount (struct super_block * sb, int * flags, char * data)
1013{
1014 struct ext2_sb_info * sbi = EXT2_SB(sb);
1015 struct ext2_super_block * es;
Carsten Otte6d791252005-06-23 22:05:26 -07001016 unsigned long old_mount_opt = sbi->s_mount_opt;
Jan Kara50a52232005-07-12 13:58:29 -07001017 struct ext2_mount_options old_opts;
1018 unsigned long old_sb_flags;
1019 int err;
1020
1021 /* Store the old options */
1022 old_sb_flags = sb->s_flags;
1023 old_opts.s_mount_opt = sbi->s_mount_opt;
1024 old_opts.s_resuid = sbi->s_resuid;
1025 old_opts.s_resgid = sbi->s_resgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 /*
1028 * Allow the "check" option to be passed as a remount option.
1029 */
Jan Kara50a52232005-07-12 13:58:29 -07001030 if (!parse_options (data, sbi)) {
1031 err = -EINVAL;
1032 goto restore_opts;
1033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1036 ((sbi->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1037
1038 es = sbi->s_es;
Carsten Otte6d791252005-06-23 22:05:26 -07001039 if (((sbi->s_mount_opt & EXT2_MOUNT_XIP) !=
1040 (old_mount_opt & EXT2_MOUNT_XIP)) &&
1041 invalidate_inodes(sb))
1042 ext2_warning(sb, __FUNCTION__, "busy inodes while remounting "\
1043 "xip remain in cache (no functional problem)");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
1045 return 0;
1046 if (*flags & MS_RDONLY) {
1047 if (le16_to_cpu(es->s_state) & EXT2_VALID_FS ||
1048 !(sbi->s_mount_state & EXT2_VALID_FS))
1049 return 0;
1050 /*
1051 * OK, we are remounting a valid rw partition rdonly, so set
1052 * the rdonly flag and then mark the partition as valid again.
1053 */
1054 es->s_state = cpu_to_le16(sbi->s_mount_state);
1055 es->s_mtime = cpu_to_le32(get_seconds());
1056 } else {
1057 __le32 ret = EXT2_HAS_RO_COMPAT_FEATURE(sb,
1058 ~EXT2_FEATURE_RO_COMPAT_SUPP);
1059 if (ret) {
1060 printk("EXT2-fs: %s: couldn't remount RDWR because of "
1061 "unsupported optional features (%x).\n",
1062 sb->s_id, le32_to_cpu(ret));
Jan Kara50a52232005-07-12 13:58:29 -07001063 err = -EROFS;
1064 goto restore_opts;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
1066 /*
1067 * Mounting a RDONLY partition read-write, so reread and
1068 * store the current valid flag. (It may have been changed
1069 * by e2fsck since we originally mounted the partition.)
1070 */
1071 sbi->s_mount_state = le16_to_cpu(es->s_state);
1072 if (!ext2_setup_super (sb, es, 0))
1073 sb->s_flags &= ~MS_RDONLY;
1074 }
1075 ext2_sync_super(sb, es);
1076 return 0;
Jan Kara50a52232005-07-12 13:58:29 -07001077restore_opts:
1078 sbi->s_mount_opt = old_opts.s_mount_opt;
1079 sbi->s_resuid = old_opts.s_resuid;
1080 sbi->s_resgid = old_opts.s_resgid;
1081 sb->s_flags = old_sb_flags;
1082 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
David Howells726c3342006-06-23 02:02:58 -07001085static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
David Howells726c3342006-06-23 02:02:58 -07001087 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 struct ext2_sb_info *sbi = EXT2_SB(sb);
1089 unsigned long overhead;
1090 int i;
1091
1092 if (test_opt (sb, MINIX_DF))
1093 overhead = 0;
1094 else {
1095 /*
1096 * Compute the overhead (FS structures)
1097 */
1098
1099 /*
1100 * All of the blocks before first_data_block are
1101 * overhead
1102 */
1103 overhead = le32_to_cpu(sbi->s_es->s_first_data_block);
1104
1105 /*
1106 * Add the overhead attributed to the superblock and
1107 * block group descriptors. If the sparse superblocks
1108 * feature is turned on, then not all groups have this.
1109 */
1110 for (i = 0; i < sbi->s_groups_count; i++)
1111 overhead += ext2_bg_has_super(sb, i) +
1112 ext2_bg_num_gdb(sb, i);
1113
1114 /*
1115 * Every block group has an inode bitmap, a block
1116 * bitmap, and an inode table.
1117 */
1118 overhead += (sbi->s_groups_count *
1119 (2 + sbi->s_itb_per_group));
1120 }
1121
1122 buf->f_type = EXT2_SUPER_MAGIC;
1123 buf->f_bsize = sb->s_blocksize;
1124 buf->f_blocks = le32_to_cpu(sbi->s_es->s_blocks_count) - overhead;
1125 buf->f_bfree = ext2_count_free_blocks(sb);
1126 buf->f_bavail = buf->f_bfree - le32_to_cpu(sbi->s_es->s_r_blocks_count);
1127 if (buf->f_bfree < le32_to_cpu(sbi->s_es->s_r_blocks_count))
1128 buf->f_bavail = 0;
1129 buf->f_files = le32_to_cpu(sbi->s_es->s_inodes_count);
1130 buf->f_ffree = ext2_count_free_inodes (sb);
1131 buf->f_namelen = EXT2_NAME_LEN;
1132 return 0;
1133}
1134
David Howells454e2392006-06-23 02:02:57 -07001135static int ext2_get_sb(struct file_system_type *fs_type,
1136 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
David Howells454e2392006-06-23 02:02:57 -07001138 return get_sb_bdev(fs_type, flags, dev_name, data, ext2_fill_super, mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
1141#ifdef CONFIG_QUOTA
1142
1143/* Read data from quotafile - avoid pagecache and such because we cannot afford
1144 * acquiring the locks... As quota files are never truncated and quota code
1145 * itself serializes the operations (and noone else should touch the files)
1146 * we don't have to be afraid of races */
1147static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data,
1148 size_t len, loff_t off)
1149{
1150 struct inode *inode = sb_dqopt(sb)->files[type];
1151 sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1152 int err = 0;
1153 int offset = off & (sb->s_blocksize - 1);
1154 int tocopy;
1155 size_t toread;
1156 struct buffer_head tmp_bh;
1157 struct buffer_head *bh;
1158 loff_t i_size = i_size_read(inode);
1159
1160 if (off > i_size)
1161 return 0;
1162 if (off+len > i_size)
1163 len = i_size-off;
1164 toread = len;
1165 while (toread > 0) {
1166 tocopy = sb->s_blocksize - offset < toread ?
1167 sb->s_blocksize - offset : toread;
1168
1169 tmp_bh.b_state = 0;
1170 err = ext2_get_block(inode, blk, &tmp_bh, 0);
1171 if (err)
1172 return err;
1173 if (!buffer_mapped(&tmp_bh)) /* A hole? */
1174 memset(data, 0, tocopy);
1175 else {
1176 bh = sb_bread(sb, tmp_bh.b_blocknr);
1177 if (!bh)
1178 return -EIO;
1179 memcpy(data, bh->b_data+offset, tocopy);
1180 brelse(bh);
1181 }
1182 offset = 0;
1183 toread -= tocopy;
1184 data += tocopy;
1185 blk++;
1186 }
1187 return len;
1188}
1189
1190/* Write to quotafile */
1191static ssize_t ext2_quota_write(struct super_block *sb, int type,
1192 const char *data, size_t len, loff_t off)
1193{
1194 struct inode *inode = sb_dqopt(sb)->files[type];
1195 sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1196 int err = 0;
1197 int offset = off & (sb->s_blocksize - 1);
1198 int tocopy;
1199 size_t towrite = len;
1200 struct buffer_head tmp_bh;
1201 struct buffer_head *bh;
1202
Arjan van de Ven5c81a412006-07-03 00:25:20 -07001203 mutex_lock_nested(&inode->i_mutex, I_MUTEX_QUOTA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 while (towrite > 0) {
1205 tocopy = sb->s_blocksize - offset < towrite ?
1206 sb->s_blocksize - offset : towrite;
1207
1208 tmp_bh.b_state = 0;
1209 err = ext2_get_block(inode, blk, &tmp_bh, 1);
1210 if (err)
1211 goto out;
1212 if (offset || tocopy != EXT2_BLOCK_SIZE(sb))
1213 bh = sb_bread(sb, tmp_bh.b_blocknr);
1214 else
1215 bh = sb_getblk(sb, tmp_bh.b_blocknr);
1216 if (!bh) {
1217 err = -EIO;
1218 goto out;
1219 }
1220 lock_buffer(bh);
1221 memcpy(bh->b_data+offset, data, tocopy);
1222 flush_dcache_page(bh->b_page);
1223 set_buffer_uptodate(bh);
1224 mark_buffer_dirty(bh);
1225 unlock_buffer(bh);
1226 brelse(bh);
1227 offset = 0;
1228 towrite -= tocopy;
1229 data += tocopy;
1230 blk++;
1231 }
1232out:
1233 if (len == towrite)
1234 return err;
1235 if (inode->i_size < off+len-towrite)
1236 i_size_write(inode, off+len-towrite);
1237 inode->i_version++;
1238 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1239 mark_inode_dirty(inode);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001240 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return len - towrite;
1242}
1243
1244#endif
1245
1246static struct file_system_type ext2_fs_type = {
1247 .owner = THIS_MODULE,
1248 .name = "ext2",
1249 .get_sb = ext2_get_sb,
1250 .kill_sb = kill_block_super,
1251 .fs_flags = FS_REQUIRES_DEV,
1252};
1253
1254static int __init init_ext2_fs(void)
1255{
1256 int err = init_ext2_xattr();
1257 if (err)
1258 return err;
1259 err = init_inodecache();
1260 if (err)
1261 goto out1;
1262 err = register_filesystem(&ext2_fs_type);
1263 if (err)
1264 goto out;
1265 return 0;
1266out:
1267 destroy_inodecache();
1268out1:
1269 exit_ext2_xattr();
1270 return err;
1271}
1272
1273static void __exit exit_ext2_fs(void)
1274{
1275 unregister_filesystem(&ext2_fs_type);
1276 destroy_inodecache();
1277 exit_ext2_xattr();
1278}
1279
1280module_init(init_ext2_fs)
1281module_exit(exit_ext2_fs)