Linux Audio

Check our new training course

Loading...
v6.9.4
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 *  linux/fs/ext2/super.c
   4 *
   5 * Copyright (C) 1992, 1993, 1994, 1995
   6 * Remy Card (card@masi.ibp.fr)
   7 * Laboratoire MASI - Institut Blaise Pascal
   8 * Universite Pierre et Marie Curie (Paris VI)
   9 *
  10 *  from
  11 *
  12 *  linux/fs/minix/inode.c
  13 *
  14 *  Copyright (C) 1991, 1992  Linus Torvalds
  15 *
  16 *  Big-endian to little-endian byte-swapping/bitmaps by
  17 *        David S. Miller (davem@caip.rutgers.edu), 1995
  18 */
  19
  20#include <linux/module.h>
  21#include <linux/string.h>
  22#include <linux/fs.h>
  23#include <linux/slab.h>
  24#include <linux/init.h>
  25#include <linux/blkdev.h>
  26#include <linux/parser.h>
  27#include <linux/random.h>
  28#include <linux/buffer_head.h>
  29#include <linux/exportfs.h>
  30#include <linux/vfs.h>
  31#include <linux/seq_file.h>
  32#include <linux/mount.h>
  33#include <linux/log2.h>
  34#include <linux/quotaops.h>
  35#include <linux/uaccess.h>
  36#include <linux/dax.h>
  37#include <linux/iversion.h>
  38#include "ext2.h"
  39#include "xattr.h"
  40#include "acl.h"
 
  41
  42static void ext2_write_super(struct super_block *sb);
 
  43static int ext2_remount (struct super_block * sb, int * flags, char * data);
  44static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf);
  45static int ext2_sync_fs(struct super_block *sb, int wait);
  46static int ext2_freeze(struct super_block *sb);
  47static int ext2_unfreeze(struct super_block *sb);
  48
  49void ext2_error(struct super_block *sb, const char *function,
  50		const char *fmt, ...)
  51{
  52	struct va_format vaf;
  53	va_list args;
  54	struct ext2_sb_info *sbi = EXT2_SB(sb);
  55	struct ext2_super_block *es = sbi->s_es;
  56
  57	if (!sb_rdonly(sb)) {
  58		spin_lock(&sbi->s_lock);
  59		sbi->s_mount_state |= EXT2_ERROR_FS;
  60		es->s_state |= cpu_to_le16(EXT2_ERROR_FS);
  61		spin_unlock(&sbi->s_lock);
  62		ext2_sync_super(sb, es, 1);
  63	}
  64
  65	va_start(args, fmt);
  66
  67	vaf.fmt = fmt;
  68	vaf.va = &args;
  69
  70	printk(KERN_CRIT "EXT2-fs (%s): error: %s: %pV\n",
  71	       sb->s_id, function, &vaf);
  72
  73	va_end(args);
  74
  75	if (test_opt(sb, ERRORS_PANIC))
  76		panic("EXT2-fs: panic from previous error\n");
  77	if (!sb_rdonly(sb) && test_opt(sb, ERRORS_RO)) {
  78		ext2_msg(sb, KERN_CRIT,
  79			     "error: remounting filesystem read-only");
  80		sb->s_flags |= SB_RDONLY;
  81	}
  82}
  83
  84void ext2_msg(struct super_block *sb, const char *prefix,
  85		const char *fmt, ...)
  86{
  87	struct va_format vaf;
  88	va_list args;
  89
  90	va_start(args, fmt);
  91
  92	vaf.fmt = fmt;
  93	vaf.va = &args;
  94
  95	printk("%sEXT2-fs (%s): %pV\n", prefix, sb->s_id, &vaf);
  96
  97	va_end(args);
  98}
  99
 100/*
 101 * This must be called with sbi->s_lock held.
 102 */
 103void ext2_update_dynamic_rev(struct super_block *sb)
 104{
 105	struct ext2_super_block *es = EXT2_SB(sb)->s_es;
 106
 107	if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV)
 108		return;
 109
 110	ext2_msg(sb, KERN_WARNING,
 111		     "warning: updating to rev %d because of "
 112		     "new feature flag, running e2fsck is recommended",
 113		     EXT2_DYNAMIC_REV);
 114
 115	es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO);
 116	es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE);
 117	es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV);
 118	/* leave es->s_feature_*compat flags alone */
 119	/* es->s_uuid will be set by e2fsck if empty */
 120
 121	/*
 122	 * The rest of the superblock fields should be zero, and if not it
 123	 * means they are likely already in use, so leave them alone.  We
 124	 * can leave it up to e2fsck to clean up any inconsistencies there.
 125	 */
 126}
 127
 128#ifdef CONFIG_QUOTA
 129static int ext2_quota_off(struct super_block *sb, int type);
 130
 131static void ext2_quota_off_umount(struct super_block *sb)
 132{
 133	int type;
 134
 135	for (type = 0; type < MAXQUOTAS; type++)
 136		ext2_quota_off(sb, type);
 137}
 138#else
 139static inline void ext2_quota_off_umount(struct super_block *sb)
 140{
 141}
 142#endif
 143
 144static void ext2_put_super (struct super_block * sb)
 145{
 146	int db_count;
 147	int i;
 148	struct ext2_sb_info *sbi = EXT2_SB(sb);
 149
 150	ext2_quota_off_umount(sb);
 151
 152	ext2_xattr_destroy_cache(sbi->s_ea_block_cache);
 153	sbi->s_ea_block_cache = NULL;
 154
 155	if (!sb_rdonly(sb)) {
 
 156		struct ext2_super_block *es = sbi->s_es;
 157
 158		spin_lock(&sbi->s_lock);
 159		es->s_state = cpu_to_le16(sbi->s_mount_state);
 160		spin_unlock(&sbi->s_lock);
 161		ext2_sync_super(sb, es, 1);
 162	}
 163	db_count = sbi->s_gdb_count;
 164	for (i = 0; i < db_count; i++)
 165		brelse(sbi->s_group_desc[i]);
 166	kvfree(sbi->s_group_desc);
 
 167	kfree(sbi->s_debts);
 168	percpu_counter_destroy(&sbi->s_freeblocks_counter);
 169	percpu_counter_destroy(&sbi->s_freeinodes_counter);
 170	percpu_counter_destroy(&sbi->s_dirs_counter);
 171	brelse (sbi->s_sbh);
 172	sb->s_fs_info = NULL;
 173	kfree(sbi->s_blockgroup_lock);
 174	fs_put_dax(sbi->s_daxdev, NULL);
 175	kfree(sbi);
 176}
 177
 178static struct kmem_cache * ext2_inode_cachep;
 179
 180static struct inode *ext2_alloc_inode(struct super_block *sb)
 181{
 182	struct ext2_inode_info *ei;
 183	ei = alloc_inode_sb(sb, ext2_inode_cachep, GFP_KERNEL);
 184	if (!ei)
 185		return NULL;
 186	ei->i_block_alloc_info = NULL;
 187	inode_set_iversion(&ei->vfs_inode, 1);
 188#ifdef CONFIG_QUOTA
 189	memset(&ei->i_dquot, 0, sizeof(ei->i_dquot));
 190#endif
 191
 192	return &ei->vfs_inode;
 193}
 194
 195static void ext2_free_in_core_inode(struct inode *inode)
 196{
 
 197	kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));
 198}
 199
 
 
 
 
 
 200static void init_once(void *foo)
 201{
 202	struct ext2_inode_info *ei = (struct ext2_inode_info *) foo;
 203
 204	rwlock_init(&ei->i_meta_lock);
 205#ifdef CONFIG_EXT2_FS_XATTR
 206	init_rwsem(&ei->xattr_sem);
 207#endif
 208	mutex_init(&ei->truncate_mutex);
 209	inode_init_once(&ei->vfs_inode);
 210}
 211
 212static int __init init_inodecache(void)
 213{
 214	ext2_inode_cachep = kmem_cache_create_usercopy("ext2_inode_cache",
 215				sizeof(struct ext2_inode_info), 0,
 216				SLAB_RECLAIM_ACCOUNT | SLAB_ACCOUNT,
 217				offsetof(struct ext2_inode_info, i_data),
 218				sizeof_field(struct ext2_inode_info, i_data),
 219				init_once);
 220	if (ext2_inode_cachep == NULL)
 221		return -ENOMEM;
 222	return 0;
 223}
 224
 225static void destroy_inodecache(void)
 226{
 227	/*
 228	 * Make sure all delayed rcu free inodes are flushed before we
 229	 * destroy cache.
 230	 */
 231	rcu_barrier();
 232	kmem_cache_destroy(ext2_inode_cachep);
 233}
 234
 235static int ext2_show_options(struct seq_file *seq, struct dentry *root)
 236{
 237	struct super_block *sb = root->d_sb;
 238	struct ext2_sb_info *sbi = EXT2_SB(sb);
 239	struct ext2_super_block *es = sbi->s_es;
 240	unsigned long def_mount_opts;
 241
 242	spin_lock(&sbi->s_lock);
 243	def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
 244
 245	if (sbi->s_sb_block != 1)
 246		seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
 247	if (test_opt(sb, MINIX_DF))
 248		seq_puts(seq, ",minixdf");
 249	if (test_opt(sb, GRPID))
 250		seq_puts(seq, ",grpid");
 251	if (!test_opt(sb, GRPID) && (def_mount_opts & EXT2_DEFM_BSDGROUPS))
 252		seq_puts(seq, ",nogrpid");
 253	if (!uid_eq(sbi->s_resuid, make_kuid(&init_user_ns, EXT2_DEF_RESUID)) ||
 254	    le16_to_cpu(es->s_def_resuid) != EXT2_DEF_RESUID) {
 255		seq_printf(seq, ",resuid=%u",
 256				from_kuid_munged(&init_user_ns, sbi->s_resuid));
 257	}
 258	if (!gid_eq(sbi->s_resgid, make_kgid(&init_user_ns, EXT2_DEF_RESGID)) ||
 259	    le16_to_cpu(es->s_def_resgid) != EXT2_DEF_RESGID) {
 260		seq_printf(seq, ",resgid=%u",
 261				from_kgid_munged(&init_user_ns, sbi->s_resgid));
 262	}
 263	if (test_opt(sb, ERRORS_RO)) {
 264		int def_errors = le16_to_cpu(es->s_errors);
 265
 266		if (def_errors == EXT2_ERRORS_PANIC ||
 267		    def_errors == EXT2_ERRORS_CONTINUE) {
 268			seq_puts(seq, ",errors=remount-ro");
 269		}
 270	}
 271	if (test_opt(sb, ERRORS_CONT))
 272		seq_puts(seq, ",errors=continue");
 273	if (test_opt(sb, ERRORS_PANIC))
 274		seq_puts(seq, ",errors=panic");
 275	if (test_opt(sb, NO_UID32))
 276		seq_puts(seq, ",nouid32");
 277	if (test_opt(sb, DEBUG))
 278		seq_puts(seq, ",debug");
 279	if (test_opt(sb, OLDALLOC))
 280		seq_puts(seq, ",oldalloc");
 281
 282#ifdef CONFIG_EXT2_FS_XATTR
 283	if (test_opt(sb, XATTR_USER))
 284		seq_puts(seq, ",user_xattr");
 285	if (!test_opt(sb, XATTR_USER) &&
 286	    (def_mount_opts & EXT2_DEFM_XATTR_USER)) {
 287		seq_puts(seq, ",nouser_xattr");
 288	}
 289#endif
 290
 291#ifdef CONFIG_EXT2_FS_POSIX_ACL
 292	if (test_opt(sb, POSIX_ACL))
 293		seq_puts(seq, ",acl");
 294	if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT2_DEFM_ACL))
 295		seq_puts(seq, ",noacl");
 296#endif
 297
 298	if (test_opt(sb, USRQUOTA))
 
 
 
 
 299		seq_puts(seq, ",usrquota");
 300
 301	if (test_opt(sb, GRPQUOTA))
 302		seq_puts(seq, ",grpquota");
 
 303
 304	if (test_opt(sb, XIP))
 
 305		seq_puts(seq, ",xip");
 306
 307	if (test_opt(sb, DAX))
 308		seq_puts(seq, ",dax");
 309
 310	if (!test_opt(sb, RESERVATION))
 311		seq_puts(seq, ",noreservation");
 312
 313	spin_unlock(&sbi->s_lock);
 314	return 0;
 315}
 316
 317#ifdef CONFIG_QUOTA
 318static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data, size_t len, loff_t off);
 319static ssize_t ext2_quota_write(struct super_block *sb, int type, const char *data, size_t len, loff_t off);
 320static int ext2_quota_on(struct super_block *sb, int type, int format_id,
 321			 const struct path *path);
 322static struct dquot __rcu **ext2_get_dquots(struct inode *inode)
 323{
 324	return EXT2_I(inode)->i_dquot;
 325}
 326
 327static const struct quotactl_ops ext2_quotactl_ops = {
 328	.quota_on	= ext2_quota_on,
 329	.quota_off	= ext2_quota_off,
 330	.quota_sync	= dquot_quota_sync,
 331	.get_state	= dquot_get_state,
 332	.set_info	= dquot_set_dqinfo,
 333	.get_dqblk	= dquot_get_dqblk,
 334	.set_dqblk	= dquot_set_dqblk,
 335	.get_nextdqblk	= dquot_get_next_dqblk,
 336};
 337#endif
 338
 339static const struct super_operations ext2_sops = {
 340	.alloc_inode	= ext2_alloc_inode,
 341	.free_inode	= ext2_free_in_core_inode,
 342	.write_inode	= ext2_write_inode,
 343	.evict_inode	= ext2_evict_inode,
 344	.put_super	= ext2_put_super,
 345	.sync_fs	= ext2_sync_fs,
 346	.freeze_fs	= ext2_freeze,
 347	.unfreeze_fs	= ext2_unfreeze,
 348	.statfs		= ext2_statfs,
 349	.remount_fs	= ext2_remount,
 350	.show_options	= ext2_show_options,
 351#ifdef CONFIG_QUOTA
 352	.quota_read	= ext2_quota_read,
 353	.quota_write	= ext2_quota_write,
 354	.get_dquots	= ext2_get_dquots,
 355#endif
 356};
 357
 358static struct inode *ext2_nfs_get_inode(struct super_block *sb,
 359		u64 ino, u32 generation)
 360{
 361	struct inode *inode;
 362
 363	if (ino < EXT2_FIRST_INO(sb) && ino != EXT2_ROOT_INO)
 364		return ERR_PTR(-ESTALE);
 365	if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
 366		return ERR_PTR(-ESTALE);
 367
 368	/*
 369	 * ext2_iget isn't quite right if the inode is currently unallocated!
 370	 * However ext2_iget currently does appropriate checks to handle stale
 371	 * inodes so everything is OK.
 372	 */
 373	inode = ext2_iget(sb, ino);
 374	if (IS_ERR(inode))
 375		return ERR_CAST(inode);
 376	if (generation && inode->i_generation != generation) {
 377		/* we didn't find the right inode.. */
 378		iput(inode);
 379		return ERR_PTR(-ESTALE);
 380	}
 381	return inode;
 382}
 383
 384static struct dentry *ext2_fh_to_dentry(struct super_block *sb, struct fid *fid,
 385		int fh_len, int fh_type)
 386{
 387	return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
 388				    ext2_nfs_get_inode);
 389}
 390
 391static struct dentry *ext2_fh_to_parent(struct super_block *sb, struct fid *fid,
 392		int fh_len, int fh_type)
 393{
 394	return generic_fh_to_parent(sb, fid, fh_len, fh_type,
 395				    ext2_nfs_get_inode);
 396}
 397
 398static const struct export_operations ext2_export_ops = {
 399	.encode_fh = generic_encode_ino32_fh,
 400	.fh_to_dentry = ext2_fh_to_dentry,
 401	.fh_to_parent = ext2_fh_to_parent,
 402	.get_parent = ext2_get_parent,
 403};
 404
 405static unsigned long get_sb_block(void **data)
 406{
 407	unsigned long 	sb_block;
 408	char 		*options = (char *) *data;
 409
 410	if (!options || strncmp(options, "sb=", 3) != 0)
 411		return 1;	/* Default location */
 412	options += 3;
 413	sb_block = simple_strtoul(options, &options, 0);
 414	if (*options && *options != ',') {
 415		printk("EXT2-fs: Invalid sb specification: %s\n",
 416		       (char *) *data);
 417		return 1;
 418	}
 419	if (*options == ',')
 420		options++;
 421	*data = (void *) options;
 422	return sb_block;
 423}
 424
 425enum {
 426	Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
 427	Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic,
 428	Opt_err_ro, Opt_nouid32, Opt_debug,
 429	Opt_oldalloc, Opt_orlov, Opt_nobh, Opt_user_xattr, Opt_nouser_xattr,
 430	Opt_acl, Opt_noacl, Opt_xip, Opt_dax, Opt_ignore, Opt_err, Opt_quota,
 431	Opt_usrquota, Opt_grpquota, Opt_reservation, Opt_noreservation
 432};
 433
 434static const match_table_t tokens = {
 435	{Opt_bsd_df, "bsddf"},
 436	{Opt_minix_df, "minixdf"},
 437	{Opt_grpid, "grpid"},
 438	{Opt_grpid, "bsdgroups"},
 439	{Opt_nogrpid, "nogrpid"},
 440	{Opt_nogrpid, "sysvgroups"},
 441	{Opt_resgid, "resgid=%u"},
 442	{Opt_resuid, "resuid=%u"},
 443	{Opt_sb, "sb=%u"},
 444	{Opt_err_cont, "errors=continue"},
 445	{Opt_err_panic, "errors=panic"},
 446	{Opt_err_ro, "errors=remount-ro"},
 447	{Opt_nouid32, "nouid32"},
 
 
 448	{Opt_debug, "debug"},
 449	{Opt_oldalloc, "oldalloc"},
 450	{Opt_orlov, "orlov"},
 451	{Opt_nobh, "nobh"},
 452	{Opt_user_xattr, "user_xattr"},
 453	{Opt_nouser_xattr, "nouser_xattr"},
 454	{Opt_acl, "acl"},
 455	{Opt_noacl, "noacl"},
 456	{Opt_xip, "xip"},
 457	{Opt_dax, "dax"},
 458	{Opt_grpquota, "grpquota"},
 459	{Opt_ignore, "noquota"},
 460	{Opt_quota, "quota"},
 461	{Opt_usrquota, "usrquota"},
 462	{Opt_reservation, "reservation"},
 463	{Opt_noreservation, "noreservation"},
 464	{Opt_err, NULL}
 465};
 466
 467static int parse_options(char *options, struct super_block *sb,
 468			 struct ext2_mount_options *opts)
 469{
 470	char *p;
 
 471	substring_t args[MAX_OPT_ARGS];
 472	int option;
 473	kuid_t uid;
 474	kgid_t gid;
 475
 476	if (!options)
 477		return 1;
 478
 479	while ((p = strsep (&options, ",")) != NULL) {
 480		int token;
 481		if (!*p)
 482			continue;
 483
 484		token = match_token(p, tokens, args);
 485		switch (token) {
 486		case Opt_bsd_df:
 487			clear_opt (opts->s_mount_opt, MINIX_DF);
 488			break;
 489		case Opt_minix_df:
 490			set_opt (opts->s_mount_opt, MINIX_DF);
 491			break;
 492		case Opt_grpid:
 493			set_opt (opts->s_mount_opt, GRPID);
 494			break;
 495		case Opt_nogrpid:
 496			clear_opt (opts->s_mount_opt, GRPID);
 497			break;
 498		case Opt_resuid:
 499			if (match_int(&args[0], &option))
 500				return 0;
 501			uid = make_kuid(current_user_ns(), option);
 502			if (!uid_valid(uid)) {
 503				ext2_msg(sb, KERN_ERR, "Invalid uid value %d", option);
 504				return 0;
 505
 506			}
 507			opts->s_resuid = uid;
 508			break;
 509		case Opt_resgid:
 510			if (match_int(&args[0], &option))
 511				return 0;
 512			gid = make_kgid(current_user_ns(), option);
 513			if (!gid_valid(gid)) {
 514				ext2_msg(sb, KERN_ERR, "Invalid gid value %d", option);
 515				return 0;
 516			}
 517			opts->s_resgid = gid;
 518			break;
 519		case Opt_sb:
 520			/* handled by get_sb_block() instead of here */
 521			/* *sb_block = match_int(&args[0]); */
 522			break;
 523		case Opt_err_panic:
 524			clear_opt (opts->s_mount_opt, ERRORS_CONT);
 525			clear_opt (opts->s_mount_opt, ERRORS_RO);
 526			set_opt (opts->s_mount_opt, ERRORS_PANIC);
 527			break;
 528		case Opt_err_ro:
 529			clear_opt (opts->s_mount_opt, ERRORS_CONT);
 530			clear_opt (opts->s_mount_opt, ERRORS_PANIC);
 531			set_opt (opts->s_mount_opt, ERRORS_RO);
 532			break;
 533		case Opt_err_cont:
 534			clear_opt (opts->s_mount_opt, ERRORS_RO);
 535			clear_opt (opts->s_mount_opt, ERRORS_PANIC);
 536			set_opt (opts->s_mount_opt, ERRORS_CONT);
 537			break;
 538		case Opt_nouid32:
 539			set_opt (opts->s_mount_opt, NO_UID32);
 
 
 
 540			break;
 541		case Opt_debug:
 542			set_opt (opts->s_mount_opt, DEBUG);
 543			break;
 544		case Opt_oldalloc:
 545			set_opt (opts->s_mount_opt, OLDALLOC);
 546			break;
 547		case Opt_orlov:
 548			clear_opt (opts->s_mount_opt, OLDALLOC);
 549			break;
 550		case Opt_nobh:
 551			ext2_msg(sb, KERN_INFO,
 552				"nobh option not supported");
 553			break;
 554#ifdef CONFIG_EXT2_FS_XATTR
 555		case Opt_user_xattr:
 556			set_opt (opts->s_mount_opt, XATTR_USER);
 557			break;
 558		case Opt_nouser_xattr:
 559			clear_opt (opts->s_mount_opt, XATTR_USER);
 560			break;
 561#else
 562		case Opt_user_xattr:
 563		case Opt_nouser_xattr:
 564			ext2_msg(sb, KERN_INFO, "(no)user_xattr options"
 565				"not supported");
 566			break;
 567#endif
 568#ifdef CONFIG_EXT2_FS_POSIX_ACL
 569		case Opt_acl:
 570			set_opt(opts->s_mount_opt, POSIX_ACL);
 571			break;
 572		case Opt_noacl:
 573			clear_opt(opts->s_mount_opt, POSIX_ACL);
 574			break;
 575#else
 576		case Opt_acl:
 577		case Opt_noacl:
 578			ext2_msg(sb, KERN_INFO,
 579				"(no)acl options not supported");
 580			break;
 581#endif
 582		case Opt_xip:
 583			ext2_msg(sb, KERN_INFO, "use dax instead of xip");
 584			set_opt(opts->s_mount_opt, XIP);
 585			fallthrough;
 586		case Opt_dax:
 587#ifdef CONFIG_FS_DAX
 588			ext2_msg(sb, KERN_WARNING,
 589		"DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
 590			set_opt(opts->s_mount_opt, DAX);
 591#else
 592			ext2_msg(sb, KERN_INFO, "dax option not supported");
 593#endif
 594			break;
 595
 596#if defined(CONFIG_QUOTA)
 597		case Opt_quota:
 598		case Opt_usrquota:
 599			set_opt(opts->s_mount_opt, USRQUOTA);
 600			break;
 601
 602		case Opt_grpquota:
 603			set_opt(opts->s_mount_opt, GRPQUOTA);
 604			break;
 605#else
 606		case Opt_quota:
 607		case Opt_usrquota:
 608		case Opt_grpquota:
 609			ext2_msg(sb, KERN_INFO,
 610				"quota operations not supported");
 611			break;
 612#endif
 613
 614		case Opt_reservation:
 615			set_opt(opts->s_mount_opt, RESERVATION);
 616			ext2_msg(sb, KERN_INFO, "reservations ON");
 617			break;
 618		case Opt_noreservation:
 619			clear_opt(opts->s_mount_opt, RESERVATION);
 620			ext2_msg(sb, KERN_INFO, "reservations OFF");
 621			break;
 622		case Opt_ignore:
 623			break;
 624		default:
 625			return 0;
 626		}
 627	}
 628	return 1;
 629}
 630
 631static int ext2_setup_super (struct super_block * sb,
 632			      struct ext2_super_block * es,
 633			      int read_only)
 634{
 635	int res = 0;
 636	struct ext2_sb_info *sbi = EXT2_SB(sb);
 637
 638	if (le32_to_cpu(es->s_rev_level) > EXT2_MAX_SUPP_REV) {
 639		ext2_msg(sb, KERN_ERR,
 640			"error: revision level too high, "
 641			"forcing read-only mode");
 642		res = SB_RDONLY;
 643	}
 644	if (read_only)
 645		return res;
 646	if (!(sbi->s_mount_state & EXT2_VALID_FS))
 647		ext2_msg(sb, KERN_WARNING,
 648			"warning: mounting unchecked fs, "
 649			"running e2fsck is recommended");
 650	else if ((sbi->s_mount_state & EXT2_ERROR_FS))
 651		ext2_msg(sb, KERN_WARNING,
 652			"warning: mounting fs with errors, "
 653			"running e2fsck is recommended");
 654	else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
 655		 le16_to_cpu(es->s_mnt_count) >=
 656		 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
 657		ext2_msg(sb, KERN_WARNING,
 658			"warning: maximal mount count reached, "
 659			"running e2fsck is recommended");
 660	else if (le32_to_cpu(es->s_checkinterval) &&
 661		(le32_to_cpu(es->s_lastcheck) +
 662			le32_to_cpu(es->s_checkinterval) <=
 663			ktime_get_real_seconds()))
 664		ext2_msg(sb, KERN_WARNING,
 665			"warning: checktime reached, "
 666			"running e2fsck is recommended");
 667	if (!le16_to_cpu(es->s_max_mnt_count))
 668		es->s_max_mnt_count = cpu_to_le16(EXT2_DFL_MAX_MNT_COUNT);
 669	le16_add_cpu(&es->s_mnt_count, 1);
 670	if (test_opt (sb, DEBUG))
 671		ext2_msg(sb, KERN_INFO, "%s, %s, bs=%lu, gc=%lu, "
 672			"bpg=%lu, ipg=%lu, mo=%04lx]",
 673			EXT2FS_VERSION, EXT2FS_DATE, sb->s_blocksize,
 
 674			sbi->s_groups_count,
 675			EXT2_BLOCKS_PER_GROUP(sb),
 676			EXT2_INODES_PER_GROUP(sb),
 677			sbi->s_mount_opt);
 678	return res;
 679}
 680
 681static int ext2_check_descriptors(struct super_block *sb)
 682{
 683	int i;
 684	struct ext2_sb_info *sbi = EXT2_SB(sb);
 685
 686	ext2_debug ("Checking group descriptors");
 687
 688	for (i = 0; i < sbi->s_groups_count; i++) {
 689		struct ext2_group_desc *gdp = ext2_get_group_desc(sb, i, NULL);
 690		ext2_fsblk_t first_block = ext2_group_first_block_no(sb, i);
 691		ext2_fsblk_t last_block = ext2_group_last_block_no(sb, i);
 
 
 
 
 
 
 692
 693		if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
 694		    le32_to_cpu(gdp->bg_block_bitmap) > last_block)
 695		{
 696			ext2_error (sb, "ext2_check_descriptors",
 697				    "Block bitmap for group %d"
 698				    " not in group (block %lu)!",
 699				    i, (unsigned long) le32_to_cpu(gdp->bg_block_bitmap));
 700			return 0;
 701		}
 702		if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
 703		    le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
 704		{
 705			ext2_error (sb, "ext2_check_descriptors",
 706				    "Inode bitmap for group %d"
 707				    " not in group (block %lu)!",
 708				    i, (unsigned long) le32_to_cpu(gdp->bg_inode_bitmap));
 709			return 0;
 710		}
 711		if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
 712		    le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
 713		    last_block)
 714		{
 715			ext2_error (sb, "ext2_check_descriptors",
 716				    "Inode table for group %d"
 717				    " not in group (block %lu)!",
 718				    i, (unsigned long) le32_to_cpu(gdp->bg_inode_table));
 719			return 0;
 720		}
 721	}
 722	return 1;
 723}
 724
 725/*
 726 * Maximal file size.  There is a direct, and {,double-,triple-}indirect
 727 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
 728 * We need to be 1 filesystem block less than the 2^32 sector limit.
 729 */
 730static loff_t ext2_max_size(int bits)
 731{
 732	loff_t res = EXT2_NDIR_BLOCKS;
 733	int meta_blocks;
 734	unsigned int upper_limit;
 735	unsigned int ppb = 1 << (bits-2);
 736
 737	/* This is calculated to be the largest file size for a
 738	 * dense, file such that the total number of
 739	 * sectors in the file, including data and all indirect blocks,
 740	 * does not exceed 2^32 -1
 741	 * __u32 i_blocks representing the total number of
 742	 * 512 bytes blocks of the file
 743	 */
 744	upper_limit = (1LL << 32) - 1;
 745
 746	/* total blocks in file system block size */
 747	upper_limit >>= (bits - 9);
 748
 749	/* Compute how many blocks we can address by block tree */
 750	res += 1LL << (bits-2);
 751	res += 1LL << (2*(bits-2));
 752	res += 1LL << (3*(bits-2));
 753	/* Compute how many metadata blocks are needed */
 754	meta_blocks = 1;
 755	meta_blocks += 1 + ppb;
 756	meta_blocks += 1 + ppb + ppb * ppb;
 757	/* Does block tree limit file size? */
 758	if (res + meta_blocks <= upper_limit)
 759		goto check_lfs;
 760
 761	res = upper_limit;
 762	/* How many metadata blocks are needed for addressing upper_limit? */
 763	upper_limit -= EXT2_NDIR_BLOCKS;
 764	/* indirect blocks */
 765	meta_blocks = 1;
 766	upper_limit -= ppb;
 767	/* double indirect blocks */
 768	if (upper_limit < ppb * ppb) {
 769		meta_blocks += 1 + DIV_ROUND_UP(upper_limit, ppb);
 770		res -= meta_blocks;
 771		goto check_lfs;
 772	}
 773	meta_blocks += 1 + ppb;
 774	upper_limit -= ppb * ppb;
 775	/* tripple indirect blocks for the rest */
 776	meta_blocks += 1 + DIV_ROUND_UP(upper_limit, ppb) +
 777		DIV_ROUND_UP(upper_limit, ppb*ppb);
 778	res -= meta_blocks;
 779check_lfs:
 780	res <<= bits;
 
 
 
 781	if (res > MAX_LFS_FILESIZE)
 782		res = MAX_LFS_FILESIZE;
 783
 784	return res;
 785}
 786
 787static unsigned long descriptor_loc(struct super_block *sb,
 788				    unsigned long logic_sb_block,
 789				    int nr)
 790{
 791	struct ext2_sb_info *sbi = EXT2_SB(sb);
 792	unsigned long bg, first_meta_bg;
 
 793	
 794	first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
 795
 796	if (!EXT2_HAS_INCOMPAT_FEATURE(sb, EXT2_FEATURE_INCOMPAT_META_BG) ||
 797	    nr < first_meta_bg)
 798		return (logic_sb_block + nr + 1);
 799	bg = sbi->s_desc_per_block * nr;
 
 
 800
 801	return ext2_group_first_block_no(sb, bg) + ext2_bg_has_super(sb, bg);
 802}
 803
 804static int ext2_fill_super(struct super_block *sb, void *data, int silent)
 805{
 806	struct buffer_head * bh;
 807	struct ext2_sb_info * sbi;
 808	struct ext2_super_block * es;
 809	struct inode *root;
 810	unsigned long block;
 811	unsigned long sb_block = get_sb_block(&data);
 812	unsigned long logic_sb_block;
 813	unsigned long offset = 0;
 814	unsigned long def_mount_opts;
 815	long ret = -ENOMEM;
 816	int blocksize = BLOCK_SIZE;
 817	int db_count;
 818	int i, j;
 819	__le32 features;
 820	int err;
 821	struct ext2_mount_options opts;
 822
 
 823	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
 824	if (!sbi)
 825		return -ENOMEM;
 826
 827	sbi->s_blockgroup_lock =
 828		kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
 829	if (!sbi->s_blockgroup_lock) {
 830		kfree(sbi);
 831		return -ENOMEM;
 832	}
 833	sb->s_fs_info = sbi;
 834	sbi->s_sb_block = sb_block;
 835	sbi->s_daxdev = fs_dax_get_by_bdev(sb->s_bdev, &sbi->s_dax_part_off,
 836					   NULL, NULL);
 837
 838	spin_lock_init(&sbi->s_lock);
 839	ret = -EINVAL;
 840
 841	/*
 842	 * See what the current blocksize for the device is, and
 843	 * use that as the blocksize.  Otherwise (or if the blocksize
 844	 * is smaller than the default) use the default.
 845	 * This is important for devices that have a hardware
 846	 * sectorsize that is larger than the default.
 847	 */
 848	blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
 849	if (!blocksize) {
 850		ext2_msg(sb, KERN_ERR, "error: unable to set blocksize");
 851		goto failed_sbi;
 852	}
 853
 854	/*
 855	 * If the superblock doesn't start on a hardware sector boundary,
 856	 * calculate the offset.  
 857	 */
 858	if (blocksize != BLOCK_SIZE) {
 859		logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
 860		offset = (sb_block*BLOCK_SIZE) % blocksize;
 861	} else {
 862		logic_sb_block = sb_block;
 863	}
 864
 865	if (!(bh = sb_bread(sb, logic_sb_block))) {
 866		ext2_msg(sb, KERN_ERR, "error: unable to read superblock");
 867		goto failed_sbi;
 868	}
 869	/*
 870	 * Note: s_es must be initialized as soon as possible because
 871	 *       some ext2 macro-instructions depend on its value
 872	 */
 873	es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
 874	sbi->s_es = es;
 875	sb->s_magic = le16_to_cpu(es->s_magic);
 876
 877	if (sb->s_magic != EXT2_SUPER_MAGIC)
 878		goto cantfind_ext2;
 879
 880	opts.s_mount_opt = 0;
 881	/* Set defaults before we parse the mount options */
 882	def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
 883	if (def_mount_opts & EXT2_DEFM_DEBUG)
 884		set_opt(opts.s_mount_opt, DEBUG);
 885	if (def_mount_opts & EXT2_DEFM_BSDGROUPS)
 886		set_opt(opts.s_mount_opt, GRPID);
 887	if (def_mount_opts & EXT2_DEFM_UID16)
 888		set_opt(opts.s_mount_opt, NO_UID32);
 889#ifdef CONFIG_EXT2_FS_XATTR
 890	if (def_mount_opts & EXT2_DEFM_XATTR_USER)
 891		set_opt(opts.s_mount_opt, XATTR_USER);
 892#endif
 893#ifdef CONFIG_EXT2_FS_POSIX_ACL
 894	if (def_mount_opts & EXT2_DEFM_ACL)
 895		set_opt(opts.s_mount_opt, POSIX_ACL);
 896#endif
 897	
 898	if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_PANIC)
 899		set_opt(opts.s_mount_opt, ERRORS_PANIC);
 900	else if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_CONTINUE)
 901		set_opt(opts.s_mount_opt, ERRORS_CONT);
 902	else
 903		set_opt(opts.s_mount_opt, ERRORS_RO);
 904
 905	opts.s_resuid = make_kuid(&init_user_ns, le16_to_cpu(es->s_def_resuid));
 906	opts.s_resgid = make_kgid(&init_user_ns, le16_to_cpu(es->s_def_resgid));
 907	
 908	set_opt(opts.s_mount_opt, RESERVATION);
 909
 910	if (!parse_options((char *) data, sb, &opts))
 911		goto failed_mount;
 912
 913	sbi->s_mount_opt = opts.s_mount_opt;
 914	sbi->s_resuid = opts.s_resuid;
 915	sbi->s_resgid = opts.s_resgid;
 916
 917	sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
 918		(test_opt(sb, POSIX_ACL) ? SB_POSIXACL : 0);
 919	sb->s_iflags |= SB_I_CGROUPWB;
 920
 921	if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV &&
 922	    (EXT2_HAS_COMPAT_FEATURE(sb, ~0U) ||
 923	     EXT2_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
 924	     EXT2_HAS_INCOMPAT_FEATURE(sb, ~0U)))
 925		ext2_msg(sb, KERN_WARNING,
 926			"warning: feature flags set on rev 0 fs, "
 927			"running e2fsck is recommended");
 928	/*
 929	 * Check feature flags regardless of the revision level, since we
 930	 * previously didn't change the revision level when setting the flags,
 931	 * so there is a chance incompat flags are set on a rev 0 filesystem.
 932	 */
 933	features = EXT2_HAS_INCOMPAT_FEATURE(sb, ~EXT2_FEATURE_INCOMPAT_SUPP);
 934	if (features) {
 935		ext2_msg(sb, KERN_ERR,	"error: couldn't mount because of "
 936		       "unsupported optional features (%x)",
 937			le32_to_cpu(features));
 938		goto failed_mount;
 939	}
 940	if (!sb_rdonly(sb) && (features = EXT2_HAS_RO_COMPAT_FEATURE(sb, ~EXT2_FEATURE_RO_COMPAT_SUPP))){
 
 941		ext2_msg(sb, KERN_ERR, "error: couldn't mount RDWR because of "
 942		       "unsupported optional features (%x)",
 943		       le32_to_cpu(features));
 944		goto failed_mount;
 945	}
 946
 947	if (le32_to_cpu(es->s_log_block_size) >
 948	    (EXT2_MAX_BLOCK_LOG_SIZE - BLOCK_SIZE_BITS)) {
 949		ext2_msg(sb, KERN_ERR,
 950			 "Invalid log block size: %u",
 951			 le32_to_cpu(es->s_log_block_size));
 952		goto failed_mount;
 953	}
 954	blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
 955
 956	if (test_opt(sb, DAX)) {
 957		if (!sbi->s_daxdev) {
 958			ext2_msg(sb, KERN_ERR,
 959				"DAX unsupported by block device. Turning off DAX.");
 960			clear_opt(sbi->s_mount_opt, DAX);
 961		} else if (blocksize != PAGE_SIZE) {
 962			ext2_msg(sb, KERN_ERR, "unsupported blocksize for DAX\n");
 963			clear_opt(sbi->s_mount_opt, DAX);
 964		}
 965	}
 966
 967	/* If the blocksize doesn't match, re-read the thing.. */
 968	if (sb->s_blocksize != blocksize) {
 969		brelse(bh);
 970
 971		if (!sb_set_blocksize(sb, blocksize)) {
 972			ext2_msg(sb, KERN_ERR,
 973				"error: bad blocksize %d", blocksize);
 974			goto failed_sbi;
 975		}
 976
 977		logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
 978		offset = (sb_block*BLOCK_SIZE) % blocksize;
 979		bh = sb_bread(sb, logic_sb_block);
 980		if(!bh) {
 981			ext2_msg(sb, KERN_ERR, "error: couldn't read"
 982				"superblock on 2nd try");
 983			goto failed_sbi;
 984		}
 985		es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
 986		sbi->s_es = es;
 987		if (es->s_magic != cpu_to_le16(EXT2_SUPER_MAGIC)) {
 988			ext2_msg(sb, KERN_ERR, "error: magic mismatch");
 989			goto failed_mount;
 990		}
 991	}
 992
 993	sb->s_maxbytes = ext2_max_size(sb->s_blocksize_bits);
 994	sb->s_max_links = EXT2_LINK_MAX;
 995	sb->s_time_min = S32_MIN;
 996	sb->s_time_max = S32_MAX;
 997
 998	if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV) {
 999		sbi->s_inode_size = EXT2_GOOD_OLD_INODE_SIZE;
1000		sbi->s_first_ino = EXT2_GOOD_OLD_FIRST_INO;
1001	} else {
1002		sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
1003		sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
1004		if ((sbi->s_inode_size < EXT2_GOOD_OLD_INODE_SIZE) ||
1005		    !is_power_of_2(sbi->s_inode_size) ||
1006		    (sbi->s_inode_size > blocksize)) {
1007			ext2_msg(sb, KERN_ERR,
1008				"error: unsupported inode size: %d",
1009				sbi->s_inode_size);
1010			goto failed_mount;
1011		}
1012	}
1013
 
 
 
 
 
 
1014	sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
 
1015	sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
1016
 
 
1017	sbi->s_inodes_per_block = sb->s_blocksize / EXT2_INODE_SIZE(sb);
1018	if (sbi->s_inodes_per_block == 0 || sbi->s_inodes_per_group == 0)
1019		goto cantfind_ext2;
1020	sbi->s_itb_per_group = sbi->s_inodes_per_group /
1021					sbi->s_inodes_per_block;
1022	sbi->s_desc_per_block = sb->s_blocksize /
1023					sizeof (struct ext2_group_desc);
1024	sbi->s_sbh = bh;
1025	sbi->s_mount_state = le16_to_cpu(es->s_state);
1026	sbi->s_addr_per_block_bits =
1027		ilog2 (EXT2_ADDR_PER_BLOCK(sb));
1028	sbi->s_desc_per_block_bits =
1029		ilog2 (EXT2_DESC_PER_BLOCK(sb));
1030
1031	if (sb->s_magic != EXT2_SUPER_MAGIC)
1032		goto cantfind_ext2;
1033
1034	if (sb->s_blocksize != bh->b_size) {
1035		if (!silent)
1036			ext2_msg(sb, KERN_ERR, "error: unsupported blocksize");
1037		goto failed_mount;
1038	}
1039
1040	if (es->s_log_frag_size != es->s_log_block_size) {
1041		ext2_msg(sb, KERN_ERR,
1042			"error: fragsize log %u != blocksize log %u",
1043			le32_to_cpu(es->s_log_frag_size), sb->s_blocksize_bits);
 
1044		goto failed_mount;
1045	}
1046
1047	if (sbi->s_blocks_per_group > sb->s_blocksize * 8) {
1048		ext2_msg(sb, KERN_ERR,
1049			"error: #blocks per group too big: %lu",
1050			sbi->s_blocks_per_group);
1051		goto failed_mount;
1052	}
1053	/* At least inode table, bitmaps, and sb have to fit in one group */
1054	if (sbi->s_blocks_per_group <= sbi->s_itb_per_group + 3) {
1055		ext2_msg(sb, KERN_ERR,
1056			"error: #blocks per group smaller than metadata size: %lu <= %lu",
1057			sbi->s_blocks_per_group, sbi->s_inodes_per_group + 3);
1058		goto failed_mount;
1059	}
1060	if (sbi->s_inodes_per_group < sbi->s_inodes_per_block ||
1061	    sbi->s_inodes_per_group > sb->s_blocksize * 8) {
1062		ext2_msg(sb, KERN_ERR,
1063			"error: invalid #inodes per group: %lu",
1064			sbi->s_inodes_per_group);
1065		goto failed_mount;
1066	}
1067	if (sb_bdev_nr_blocks(sb) < le32_to_cpu(es->s_blocks_count)) {
1068		ext2_msg(sb, KERN_ERR,
1069			 "bad geometry: block count %u exceeds size of device (%u blocks)",
1070			 le32_to_cpu(es->s_blocks_count),
1071			 (unsigned)sb_bdev_nr_blocks(sb));
1072		goto failed_mount;
1073	}
1074
1075	sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
1076				le32_to_cpu(es->s_first_data_block) - 1)
1077					/ EXT2_BLOCKS_PER_GROUP(sb)) + 1;
1078	if ((u64)sbi->s_groups_count * sbi->s_inodes_per_group !=
1079	    le32_to_cpu(es->s_inodes_count)) {
1080		ext2_msg(sb, KERN_ERR, "error: invalid #inodes: %u vs computed %llu",
1081			 le32_to_cpu(es->s_inodes_count),
1082			 (u64)sbi->s_groups_count * sbi->s_inodes_per_group);
1083		goto failed_mount;
1084	}
1085	db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) /
1086		   EXT2_DESC_PER_BLOCK(sb);
1087	sbi->s_group_desc = kvmalloc_array(db_count,
1088					   sizeof(struct buffer_head *),
1089					   GFP_KERNEL);
1090	if (sbi->s_group_desc == NULL) {
1091		ret = -ENOMEM;
1092		ext2_msg(sb, KERN_ERR, "error: not enough memory");
1093		goto failed_mount;
1094	}
1095	bgl_lock_init(sbi->s_blockgroup_lock);
1096	sbi->s_debts = kcalloc(sbi->s_groups_count, sizeof(*sbi->s_debts), GFP_KERNEL);
1097	if (!sbi->s_debts) {
1098		ret = -ENOMEM;
1099		ext2_msg(sb, KERN_ERR, "error: not enough memory");
1100		goto failed_mount_group_desc;
1101	}
1102	for (i = 0; i < db_count; i++) {
1103		block = descriptor_loc(sb, logic_sb_block, i);
1104		sbi->s_group_desc[i] = sb_bread(sb, block);
1105		if (!sbi->s_group_desc[i]) {
1106			for (j = 0; j < i; j++)
1107				brelse (sbi->s_group_desc[j]);
1108			ext2_msg(sb, KERN_ERR,
1109				"error: unable to read group descriptors");
1110			goto failed_mount_group_desc;
1111		}
1112	}
1113	if (!ext2_check_descriptors (sb)) {
1114		ext2_msg(sb, KERN_ERR, "group descriptors corrupted");
1115		goto failed_mount2;
1116	}
1117	sbi->s_gdb_count = db_count;
1118	get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1119	spin_lock_init(&sbi->s_next_gen_lock);
1120
1121	/* per filesystem reservation list head & lock */
1122	spin_lock_init(&sbi->s_rsv_window_lock);
1123	sbi->s_rsv_window_root = RB_ROOT;
1124	/*
1125	 * Add a single, static dummy reservation to the start of the
1126	 * reservation window list --- it gives us a placeholder for
1127	 * append-at-start-of-list which makes the allocation logic
1128	 * _much_ simpler.
1129	 */
1130	sbi->s_rsv_window_head.rsv_start = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1131	sbi->s_rsv_window_head.rsv_end = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1132	sbi->s_rsv_window_head.rsv_alloc_hit = 0;
1133	sbi->s_rsv_window_head.rsv_goal_size = 0;
1134	ext2_rsv_window_add(sb, &sbi->s_rsv_window_head);
1135
1136	err = percpu_counter_init(&sbi->s_freeblocks_counter,
1137				ext2_count_free_blocks(sb), GFP_KERNEL);
1138	if (!err) {
1139		err = percpu_counter_init(&sbi->s_freeinodes_counter,
1140				ext2_count_free_inodes(sb), GFP_KERNEL);
1141	}
1142	if (!err) {
1143		err = percpu_counter_init(&sbi->s_dirs_counter,
1144				ext2_count_dirs(sb), GFP_KERNEL);
1145	}
1146	if (err) {
1147		ret = err;
1148		ext2_msg(sb, KERN_ERR, "error: insufficient memory");
1149		goto failed_mount3;
1150	}
1151
1152#ifdef CONFIG_EXT2_FS_XATTR
1153	sbi->s_ea_block_cache = ext2_xattr_create_cache();
1154	if (!sbi->s_ea_block_cache) {
1155		ret = -ENOMEM;
1156		ext2_msg(sb, KERN_ERR, "Failed to create ea_block_cache");
1157		goto failed_mount3;
1158	}
1159#endif
1160	/*
1161	 * set up enough so that it can read an inode
1162	 */
1163	sb->s_op = &ext2_sops;
1164	sb->s_export_op = &ext2_export_ops;
1165	sb->s_xattr = ext2_xattr_handlers;
1166
1167#ifdef CONFIG_QUOTA
1168	sb->dq_op = &dquot_operations;
1169	sb->s_qcop = &ext2_quotactl_ops;
1170	sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
1171#endif
1172
1173	root = ext2_iget(sb, EXT2_ROOT_INO);
1174	if (IS_ERR(root)) {
1175		ret = PTR_ERR(root);
1176		goto failed_mount3;
1177	}
1178	if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1179		iput(root);
1180		ext2_msg(sb, KERN_ERR, "error: corrupt root inode, run e2fsck");
1181		goto failed_mount3;
1182	}
1183
1184	sb->s_root = d_make_root(root);
1185	if (!sb->s_root) {
1186		ext2_msg(sb, KERN_ERR, "error: get root inode failed");
1187		ret = -ENOMEM;
1188		goto failed_mount3;
1189	}
1190	if (EXT2_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL))
1191		ext2_msg(sb, KERN_WARNING,
1192			"warning: mounting ext3 filesystem as ext2");
1193	if (ext2_setup_super (sb, es, sb_rdonly(sb)))
1194		sb->s_flags |= SB_RDONLY;
1195	ext2_write_super(sb);
1196	return 0;
1197
1198cantfind_ext2:
1199	if (!silent)
1200		ext2_msg(sb, KERN_ERR,
1201			"error: can't find an ext2 filesystem on dev %s.",
1202			sb->s_id);
1203	goto failed_mount;
1204failed_mount3:
1205	ext2_xattr_destroy_cache(sbi->s_ea_block_cache);
1206	percpu_counter_destroy(&sbi->s_freeblocks_counter);
1207	percpu_counter_destroy(&sbi->s_freeinodes_counter);
1208	percpu_counter_destroy(&sbi->s_dirs_counter);
1209failed_mount2:
1210	for (i = 0; i < db_count; i++)
1211		brelse(sbi->s_group_desc[i]);
1212failed_mount_group_desc:
1213	kvfree(sbi->s_group_desc);
1214	kfree(sbi->s_debts);
1215failed_mount:
1216	brelse(bh);
1217failed_sbi:
1218	fs_put_dax(sbi->s_daxdev, NULL);
1219	sb->s_fs_info = NULL;
1220	kfree(sbi->s_blockgroup_lock);
1221	kfree(sbi);
 
1222	return ret;
1223}
1224
1225static void ext2_clear_super_error(struct super_block *sb)
1226{
1227	struct buffer_head *sbh = EXT2_SB(sb)->s_sbh;
1228
1229	if (buffer_write_io_error(sbh)) {
1230		/*
1231		 * Oh, dear.  A previous attempt to write the
1232		 * superblock failed.  This could happen because the
1233		 * USB device was yanked out.  Or it could happen to
1234		 * be a transient write error and maybe the block will
1235		 * be remapped.  Nothing we can do but to retry the
1236		 * write and hope for the best.
1237		 */
1238		ext2_msg(sb, KERN_ERR,
1239		       "previous I/O error to superblock detected");
1240		clear_buffer_write_io_error(sbh);
1241		set_buffer_uptodate(sbh);
1242	}
1243}
1244
1245void ext2_sync_super(struct super_block *sb, struct ext2_super_block *es,
1246		     int wait)
1247{
1248	ext2_clear_super_error(sb);
1249	spin_lock(&EXT2_SB(sb)->s_lock);
1250	es->s_free_blocks_count = cpu_to_le32(ext2_count_free_blocks(sb));
1251	es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb));
1252	es->s_wtime = cpu_to_le32(ktime_get_real_seconds());
1253	/* unlock before we do IO */
1254	spin_unlock(&EXT2_SB(sb)->s_lock);
1255	mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
1256	if (wait)
1257		sync_dirty_buffer(EXT2_SB(sb)->s_sbh);
1258}
1259
1260/*
1261 * In the second extended file system, it is not necessary to
1262 * write the super block since we use a mapping of the
1263 * disk super block in a buffer.
1264 *
1265 * However, this function is still used to set the fs valid
1266 * flags to 0.  We need to set this flag to 0 since the fs
1267 * may have been checked while mounted and e2fsck may have
1268 * set s_state to EXT2_VALID_FS after some corrections.
1269 */
1270static int ext2_sync_fs(struct super_block *sb, int wait)
1271{
1272	struct ext2_sb_info *sbi = EXT2_SB(sb);
1273	struct ext2_super_block *es = EXT2_SB(sb)->s_es;
1274
1275	/*
1276	 * Write quota structures to quota file, sync_blockdev() will write
1277	 * them to disk later
1278	 */
1279	dquot_writeback_dquots(sb, -1);
1280
1281	spin_lock(&sbi->s_lock);
1282	if (es->s_state & cpu_to_le16(EXT2_VALID_FS)) {
1283		ext2_debug("setting valid to 0\n");
1284		es->s_state &= cpu_to_le16(~EXT2_VALID_FS);
1285	}
1286	spin_unlock(&sbi->s_lock);
1287	ext2_sync_super(sb, es, wait);
1288	return 0;
1289}
1290
1291static int ext2_freeze(struct super_block *sb)
1292{
1293	struct ext2_sb_info *sbi = EXT2_SB(sb);
1294
1295	/*
1296	 * Open but unlinked files present? Keep EXT2_VALID_FS flag cleared
1297	 * because we have unattached inodes and thus filesystem is not fully
1298	 * consistent.
1299	 */
1300	if (atomic_long_read(&sb->s_remove_count)) {
1301		ext2_sync_fs(sb, 1);
1302		return 0;
1303	}
1304	/* Set EXT2_FS_VALID flag */
1305	spin_lock(&sbi->s_lock);
1306	sbi->s_es->s_state = cpu_to_le16(sbi->s_mount_state);
1307	spin_unlock(&sbi->s_lock);
1308	ext2_sync_super(sb, sbi->s_es, 1);
1309
1310	return 0;
1311}
1312
1313static int ext2_unfreeze(struct super_block *sb)
1314{
1315	/* Just write sb to clear EXT2_VALID_FS flag */
1316	ext2_write_super(sb);
1317
1318	return 0;
1319}
1320
1321static void ext2_write_super(struct super_block *sb)
1322{
1323	if (!sb_rdonly(sb))
1324		ext2_sync_fs(sb, 1);
1325}
1326
1327static int ext2_remount (struct super_block * sb, int * flags, char * data)
1328{
1329	struct ext2_sb_info * sbi = EXT2_SB(sb);
1330	struct ext2_super_block * es;
1331	struct ext2_mount_options new_opts;
 
 
1332	int err;
1333
1334	sync_filesystem(sb);
1335
1336	spin_lock(&sbi->s_lock);
1337	new_opts.s_mount_opt = sbi->s_mount_opt;
1338	new_opts.s_resuid = sbi->s_resuid;
1339	new_opts.s_resgid = sbi->s_resgid;
1340	spin_unlock(&sbi->s_lock);
1341
1342	if (!parse_options(data, sb, &new_opts))
1343		return -EINVAL;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1344
1345	spin_lock(&sbi->s_lock);
1346	es = sbi->s_es;
1347	if ((sbi->s_mount_opt ^ new_opts.s_mount_opt) & EXT2_MOUNT_DAX) {
1348		ext2_msg(sb, KERN_WARNING, "warning: refusing change of "
1349			 "dax flag with busy inodes while remounting");
1350		new_opts.s_mount_opt ^= EXT2_MOUNT_DAX;
 
 
 
 
 
1351	}
1352	if ((bool)(*flags & SB_RDONLY) == sb_rdonly(sb))
1353		goto out_set;
1354	if (*flags & SB_RDONLY) {
1355		if (le16_to_cpu(es->s_state) & EXT2_VALID_FS ||
1356		    !(sbi->s_mount_state & EXT2_VALID_FS))
1357			goto out_set;
 
 
1358
1359		/*
1360		 * OK, we are remounting a valid rw partition rdonly, so set
1361		 * the rdonly flag and then mark the partition as valid again.
1362		 */
1363		es->s_state = cpu_to_le16(sbi->s_mount_state);
1364		es->s_mtime = cpu_to_le32(ktime_get_real_seconds());
1365		spin_unlock(&sbi->s_lock);
1366
1367		err = dquot_suspend(sb, -1);
1368		if (err < 0)
1369			return err;
 
 
1370
1371		ext2_sync_super(sb, es, 1);
1372	} else {
1373		__le32 ret = EXT2_HAS_RO_COMPAT_FEATURE(sb,
1374					       ~EXT2_FEATURE_RO_COMPAT_SUPP);
1375		if (ret) {
1376			spin_unlock(&sbi->s_lock);
1377			ext2_msg(sb, KERN_WARNING,
1378				"warning: couldn't remount RDWR because of "
1379				"unsupported optional features (%x).",
1380				le32_to_cpu(ret));
1381			return -EROFS;
 
1382		}
1383		/*
1384		 * Mounting a RDONLY partition read-write, so reread and
1385		 * store the current valid flag.  (It may have been changed
1386		 * by e2fsck since we originally mounted the partition.)
1387		 */
1388		sbi->s_mount_state = le16_to_cpu(es->s_state);
1389		if (!ext2_setup_super (sb, es, 0))
1390			sb->s_flags &= ~SB_RDONLY;
1391		spin_unlock(&sbi->s_lock);
1392
1393		ext2_write_super(sb);
1394
1395		dquot_resume(sb, -1);
1396	}
1397
1398	spin_lock(&sbi->s_lock);
1399out_set:
1400	sbi->s_mount_opt = new_opts.s_mount_opt;
1401	sbi->s_resuid = new_opts.s_resuid;
1402	sbi->s_resgid = new_opts.s_resgid;
1403	sb->s_flags = (sb->s_flags & ~SB_POSIXACL) |
1404		(test_opt(sb, POSIX_ACL) ? SB_POSIXACL : 0);
1405	spin_unlock(&sbi->s_lock);
1406
1407	return 0;
 
 
 
 
 
 
 
1408}
1409
1410static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf)
1411{
1412	struct super_block *sb = dentry->d_sb;
1413	struct ext2_sb_info *sbi = EXT2_SB(sb);
1414	struct ext2_super_block *es = sbi->s_es;
 
1415
1416	spin_lock(&sbi->s_lock);
1417
1418	if (test_opt (sb, MINIX_DF))
1419		sbi->s_overhead_last = 0;
1420	else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
1421		unsigned long i, overhead = 0;
1422		smp_rmb();
1423
1424		/*
1425		 * Compute the overhead (FS structures). This is constant
1426		 * for a given filesystem unless the number of block groups
1427		 * changes so we cache the previous value until it does.
1428		 */
1429
1430		/*
1431		 * All of the blocks before first_data_block are
1432		 * overhead
1433		 */
1434		overhead = le32_to_cpu(es->s_first_data_block);
1435
1436		/*
1437		 * Add the overhead attributed to the superblock and
1438		 * block group descriptors.  If the sparse superblocks
1439		 * feature is turned on, then not all groups have this.
1440		 */
1441		for (i = 0; i < sbi->s_groups_count; i++)
1442			overhead += ext2_bg_has_super(sb, i) +
1443				ext2_bg_num_gdb(sb, i);
1444
1445		/*
1446		 * Every block group has an inode bitmap, a block
1447		 * bitmap, and an inode table.
1448		 */
1449		overhead += (sbi->s_groups_count *
1450			     (2 + sbi->s_itb_per_group));
1451		sbi->s_overhead_last = overhead;
1452		smp_wmb();
1453		sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
1454	}
1455
1456	buf->f_type = EXT2_SUPER_MAGIC;
1457	buf->f_bsize = sb->s_blocksize;
1458	buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
1459	buf->f_bfree = ext2_count_free_blocks(sb);
1460	es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
1461	buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
1462	if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
1463		buf->f_bavail = 0;
1464	buf->f_files = le32_to_cpu(es->s_inodes_count);
1465	buf->f_ffree = ext2_count_free_inodes(sb);
1466	es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
1467	buf->f_namelen = EXT2_NAME_LEN;
1468	buf->f_fsid = uuid_to_fsid(es->s_uuid);
 
 
 
1469	spin_unlock(&sbi->s_lock);
1470	return 0;
1471}
1472
1473static struct dentry *ext2_mount(struct file_system_type *fs_type,
1474	int flags, const char *dev_name, void *data)
1475{
1476	return mount_bdev(fs_type, flags, dev_name, data, ext2_fill_super);
1477}
1478
1479#ifdef CONFIG_QUOTA
1480
1481/* Read data from quotafile - avoid pagecache and such because we cannot afford
1482 * acquiring the locks... As quota files are never truncated and quota code
1483 * itself serializes the operations (and no one else should touch the files)
1484 * we don't have to be afraid of races */
1485static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data,
1486			       size_t len, loff_t off)
1487{
1488	struct inode *inode = sb_dqopt(sb)->files[type];
1489	sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1490	int err = 0;
1491	int offset = off & (sb->s_blocksize - 1);
1492	int tocopy;
1493	size_t toread;
1494	struct buffer_head tmp_bh;
1495	struct buffer_head *bh;
1496	loff_t i_size = i_size_read(inode);
1497
1498	if (off > i_size)
1499		return 0;
1500	if (off+len > i_size)
1501		len = i_size-off;
1502	toread = len;
1503	while (toread > 0) {
1504		tocopy = min_t(size_t, sb->s_blocksize - offset, toread);
 
1505
1506		tmp_bh.b_state = 0;
1507		tmp_bh.b_size = sb->s_blocksize;
1508		err = ext2_get_block(inode, blk, &tmp_bh, 0);
1509		if (err < 0)
1510			return err;
1511		if (!buffer_mapped(&tmp_bh))	/* A hole? */
1512			memset(data, 0, tocopy);
1513		else {
1514			bh = sb_bread(sb, tmp_bh.b_blocknr);
1515			if (!bh)
1516				return -EIO;
1517			memcpy(data, bh->b_data+offset, tocopy);
1518			brelse(bh);
1519		}
1520		offset = 0;
1521		toread -= tocopy;
1522		data += tocopy;
1523		blk++;
1524	}
1525	return len;
1526}
1527
1528/* Write to quotafile */
1529static ssize_t ext2_quota_write(struct super_block *sb, int type,
1530				const char *data, size_t len, loff_t off)
1531{
1532	struct inode *inode = sb_dqopt(sb)->files[type];
1533	sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1534	int err = 0;
1535	int offset = off & (sb->s_blocksize - 1);
1536	int tocopy;
1537	size_t towrite = len;
1538	struct buffer_head tmp_bh;
1539	struct buffer_head *bh;
1540
1541	while (towrite > 0) {
1542		tocopy = min_t(size_t, sb->s_blocksize - offset, towrite);
 
1543
1544		tmp_bh.b_state = 0;
1545		tmp_bh.b_size = sb->s_blocksize;
1546		err = ext2_get_block(inode, blk, &tmp_bh, 1);
1547		if (err < 0)
1548			goto out;
1549		if (offset || tocopy != EXT2_BLOCK_SIZE(sb))
1550			bh = sb_bread(sb, tmp_bh.b_blocknr);
1551		else
1552			bh = sb_getblk(sb, tmp_bh.b_blocknr);
1553		if (unlikely(!bh)) {
1554			err = -EIO;
1555			goto out;
1556		}
1557		lock_buffer(bh);
1558		memcpy(bh->b_data+offset, data, tocopy);
1559		flush_dcache_page(bh->b_page);
1560		set_buffer_uptodate(bh);
1561		mark_buffer_dirty(bh);
1562		unlock_buffer(bh);
1563		brelse(bh);
1564		offset = 0;
1565		towrite -= tocopy;
1566		data += tocopy;
1567		blk++;
1568	}
1569out:
1570	if (len == towrite)
1571		return err;
1572	if (inode->i_size < off+len-towrite)
1573		i_size_write(inode, off+len-towrite);
1574	inode_inc_iversion(inode);
1575	inode_set_mtime_to_ts(inode, inode_set_ctime_current(inode));
1576	mark_inode_dirty(inode);
1577	return len - towrite;
1578}
1579
1580static int ext2_quota_on(struct super_block *sb, int type, int format_id,
1581			 const struct path *path)
1582{
1583	int err;
1584	struct inode *inode;
1585
1586	err = dquot_quota_on(sb, type, format_id, path);
1587	if (err)
1588		return err;
1589
1590	inode = d_inode(path->dentry);
1591	inode_lock(inode);
1592	EXT2_I(inode)->i_flags |= EXT2_NOATIME_FL | EXT2_IMMUTABLE_FL;
1593	inode_set_flags(inode, S_NOATIME | S_IMMUTABLE,
1594			S_NOATIME | S_IMMUTABLE);
1595	inode_unlock(inode);
1596	mark_inode_dirty(inode);
1597
1598	return 0;
1599}
1600
1601static int ext2_quota_off(struct super_block *sb, int type)
1602{
1603	struct inode *inode = sb_dqopt(sb)->files[type];
1604	int err;
1605
1606	if (!inode || !igrab(inode))
1607		goto out;
1608
1609	err = dquot_quota_off(sb, type);
1610	if (err)
1611		goto out_put;
1612
1613	inode_lock(inode);
1614	EXT2_I(inode)->i_flags &= ~(EXT2_NOATIME_FL | EXT2_IMMUTABLE_FL);
1615	inode_set_flags(inode, 0, S_NOATIME | S_IMMUTABLE);
1616	inode_unlock(inode);
1617	mark_inode_dirty(inode);
1618out_put:
1619	iput(inode);
1620	return err;
1621out:
1622	return dquot_quota_off(sb, type);
1623}
1624
1625#endif
1626
1627static struct file_system_type ext2_fs_type = {
1628	.owner		= THIS_MODULE,
1629	.name		= "ext2",
1630	.mount		= ext2_mount,
1631	.kill_sb	= kill_block_super,
1632	.fs_flags	= FS_REQUIRES_DEV,
1633};
1634MODULE_ALIAS_FS("ext2");
1635
1636static int __init init_ext2_fs(void)
1637{
1638	int err;
1639
1640	err = init_inodecache();
1641	if (err)
1642		return err;
1643	err = register_filesystem(&ext2_fs_type);
 
 
 
1644	if (err)
1645		goto out;
1646	return 0;
1647out:
1648	destroy_inodecache();
 
 
1649	return err;
1650}
1651
1652static void __exit exit_ext2_fs(void)
1653{
1654	unregister_filesystem(&ext2_fs_type);
1655	destroy_inodecache();
 
1656}
1657
1658MODULE_AUTHOR("Remy Card and others");
1659MODULE_DESCRIPTION("Second Extended Filesystem");
1660MODULE_LICENSE("GPL");
1661module_init(init_ext2_fs)
1662module_exit(exit_ext2_fs)
v3.15
 
   1/*
   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
  19#include <linux/module.h>
  20#include <linux/string.h>
  21#include <linux/fs.h>
  22#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/exportfs.h>
  29#include <linux/vfs.h>
  30#include <linux/seq_file.h>
  31#include <linux/mount.h>
  32#include <linux/log2.h>
  33#include <linux/quotaops.h>
  34#include <asm/uaccess.h>
 
 
  35#include "ext2.h"
  36#include "xattr.h"
  37#include "acl.h"
  38#include "xip.h"
  39
  40static void ext2_sync_super(struct super_block *sb,
  41			    struct ext2_super_block *es, int wait);
  42static int ext2_remount (struct super_block * sb, int * flags, char * data);
  43static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf);
  44static int ext2_sync_fs(struct super_block *sb, int wait);
  45static int ext2_freeze(struct super_block *sb);
  46static int ext2_unfreeze(struct super_block *sb);
  47
  48void ext2_error(struct super_block *sb, const char *function,
  49		const char *fmt, ...)
  50{
  51	struct va_format vaf;
  52	va_list args;
  53	struct ext2_sb_info *sbi = EXT2_SB(sb);
  54	struct ext2_super_block *es = sbi->s_es;
  55
  56	if (!(sb->s_flags & MS_RDONLY)) {
  57		spin_lock(&sbi->s_lock);
  58		sbi->s_mount_state |= EXT2_ERROR_FS;
  59		es->s_state |= cpu_to_le16(EXT2_ERROR_FS);
  60		spin_unlock(&sbi->s_lock);
  61		ext2_sync_super(sb, es, 1);
  62	}
  63
  64	va_start(args, fmt);
  65
  66	vaf.fmt = fmt;
  67	vaf.va = &args;
  68
  69	printk(KERN_CRIT "EXT2-fs (%s): error: %s: %pV\n",
  70	       sb->s_id, function, &vaf);
  71
  72	va_end(args);
  73
  74	if (test_opt(sb, ERRORS_PANIC))
  75		panic("EXT2-fs: panic from previous error\n");
  76	if (test_opt(sb, ERRORS_RO)) {
  77		ext2_msg(sb, KERN_CRIT,
  78			     "error: remounting filesystem read-only");
  79		sb->s_flags |= MS_RDONLY;
  80	}
  81}
  82
  83void ext2_msg(struct super_block *sb, const char *prefix,
  84		const char *fmt, ...)
  85{
  86	struct va_format vaf;
  87	va_list args;
  88
  89	va_start(args, fmt);
  90
  91	vaf.fmt = fmt;
  92	vaf.va = &args;
  93
  94	printk("%sEXT2-fs (%s): %pV\n", prefix, sb->s_id, &vaf);
  95
  96	va_end(args);
  97}
  98
  99/*
 100 * This must be called with sbi->s_lock held.
 101 */
 102void ext2_update_dynamic_rev(struct super_block *sb)
 103{
 104	struct ext2_super_block *es = EXT2_SB(sb)->s_es;
 105
 106	if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV)
 107		return;
 108
 109	ext2_msg(sb, KERN_WARNING,
 110		     "warning: updating to rev %d because of "
 111		     "new feature flag, running e2fsck is recommended",
 112		     EXT2_DYNAMIC_REV);
 113
 114	es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO);
 115	es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE);
 116	es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV);
 117	/* leave es->s_feature_*compat flags alone */
 118	/* es->s_uuid will be set by e2fsck if empty */
 119
 120	/*
 121	 * The rest of the superblock fields should be zero, and if not it
 122	 * means they are likely already in use, so leave them alone.  We
 123	 * can leave it up to e2fsck to clean up any inconsistencies there.
 124	 */
 125}
 126
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 127static void ext2_put_super (struct super_block * sb)
 128{
 129	int db_count;
 130	int i;
 131	struct ext2_sb_info *sbi = EXT2_SB(sb);
 132
 133	dquot_disable(sb, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
 
 
 
 134
 135	ext2_xattr_put_super(sb);
 136	if (!(sb->s_flags & MS_RDONLY)) {
 137		struct ext2_super_block *es = sbi->s_es;
 138
 139		spin_lock(&sbi->s_lock);
 140		es->s_state = cpu_to_le16(sbi->s_mount_state);
 141		spin_unlock(&sbi->s_lock);
 142		ext2_sync_super(sb, es, 1);
 143	}
 144	db_count = sbi->s_gdb_count;
 145	for (i = 0; i < db_count; i++)
 146		if (sbi->s_group_desc[i])
 147			brelse (sbi->s_group_desc[i]);
 148	kfree(sbi->s_group_desc);
 149	kfree(sbi->s_debts);
 150	percpu_counter_destroy(&sbi->s_freeblocks_counter);
 151	percpu_counter_destroy(&sbi->s_freeinodes_counter);
 152	percpu_counter_destroy(&sbi->s_dirs_counter);
 153	brelse (sbi->s_sbh);
 154	sb->s_fs_info = NULL;
 155	kfree(sbi->s_blockgroup_lock);
 
 156	kfree(sbi);
 157}
 158
 159static struct kmem_cache * ext2_inode_cachep;
 160
 161static struct inode *ext2_alloc_inode(struct super_block *sb)
 162{
 163	struct ext2_inode_info *ei;
 164	ei = (struct ext2_inode_info *)kmem_cache_alloc(ext2_inode_cachep, GFP_KERNEL);
 165	if (!ei)
 166		return NULL;
 167	ei->i_block_alloc_info = NULL;
 168	ei->vfs_inode.i_version = 1;
 
 
 
 
 169	return &ei->vfs_inode;
 170}
 171
 172static void ext2_i_callback(struct rcu_head *head)
 173{
 174	struct inode *inode = container_of(head, struct inode, i_rcu);
 175	kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));
 176}
 177
 178static void ext2_destroy_inode(struct inode *inode)
 179{
 180	call_rcu(&inode->i_rcu, ext2_i_callback);
 181}
 182
 183static void init_once(void *foo)
 184{
 185	struct ext2_inode_info *ei = (struct ext2_inode_info *) foo;
 186
 187	rwlock_init(&ei->i_meta_lock);
 188#ifdef CONFIG_EXT2_FS_XATTR
 189	init_rwsem(&ei->xattr_sem);
 190#endif
 191	mutex_init(&ei->truncate_mutex);
 192	inode_init_once(&ei->vfs_inode);
 193}
 194
 195static int __init init_inodecache(void)
 196{
 197	ext2_inode_cachep = kmem_cache_create("ext2_inode_cache",
 198					     sizeof(struct ext2_inode_info),
 199					     0, (SLAB_RECLAIM_ACCOUNT|
 200						SLAB_MEM_SPREAD),
 201					     init_once);
 
 202	if (ext2_inode_cachep == NULL)
 203		return -ENOMEM;
 204	return 0;
 205}
 206
 207static void destroy_inodecache(void)
 208{
 209	/*
 210	 * Make sure all delayed rcu free inodes are flushed before we
 211	 * destroy cache.
 212	 */
 213	rcu_barrier();
 214	kmem_cache_destroy(ext2_inode_cachep);
 215}
 216
 217static int ext2_show_options(struct seq_file *seq, struct dentry *root)
 218{
 219	struct super_block *sb = root->d_sb;
 220	struct ext2_sb_info *sbi = EXT2_SB(sb);
 221	struct ext2_super_block *es = sbi->s_es;
 222	unsigned long def_mount_opts;
 223
 224	spin_lock(&sbi->s_lock);
 225	def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
 226
 227	if (sbi->s_sb_block != 1)
 228		seq_printf(seq, ",sb=%lu", sbi->s_sb_block);
 229	if (test_opt(sb, MINIX_DF))
 230		seq_puts(seq, ",minixdf");
 231	if (test_opt(sb, GRPID))
 232		seq_puts(seq, ",grpid");
 233	if (!test_opt(sb, GRPID) && (def_mount_opts & EXT2_DEFM_BSDGROUPS))
 234		seq_puts(seq, ",nogrpid");
 235	if (!uid_eq(sbi->s_resuid, make_kuid(&init_user_ns, EXT2_DEF_RESUID)) ||
 236	    le16_to_cpu(es->s_def_resuid) != EXT2_DEF_RESUID) {
 237		seq_printf(seq, ",resuid=%u",
 238				from_kuid_munged(&init_user_ns, sbi->s_resuid));
 239	}
 240	if (!gid_eq(sbi->s_resgid, make_kgid(&init_user_ns, EXT2_DEF_RESGID)) ||
 241	    le16_to_cpu(es->s_def_resgid) != EXT2_DEF_RESGID) {
 242		seq_printf(seq, ",resgid=%u",
 243				from_kgid_munged(&init_user_ns, sbi->s_resgid));
 244	}
 245	if (test_opt(sb, ERRORS_RO)) {
 246		int def_errors = le16_to_cpu(es->s_errors);
 247
 248		if (def_errors == EXT2_ERRORS_PANIC ||
 249		    def_errors == EXT2_ERRORS_CONTINUE) {
 250			seq_puts(seq, ",errors=remount-ro");
 251		}
 252	}
 253	if (test_opt(sb, ERRORS_CONT))
 254		seq_puts(seq, ",errors=continue");
 255	if (test_opt(sb, ERRORS_PANIC))
 256		seq_puts(seq, ",errors=panic");
 257	if (test_opt(sb, NO_UID32))
 258		seq_puts(seq, ",nouid32");
 259	if (test_opt(sb, DEBUG))
 260		seq_puts(seq, ",debug");
 261	if (test_opt(sb, OLDALLOC))
 262		seq_puts(seq, ",oldalloc");
 263
 264#ifdef CONFIG_EXT2_FS_XATTR
 265	if (test_opt(sb, XATTR_USER))
 266		seq_puts(seq, ",user_xattr");
 267	if (!test_opt(sb, XATTR_USER) &&
 268	    (def_mount_opts & EXT2_DEFM_XATTR_USER)) {
 269		seq_puts(seq, ",nouser_xattr");
 270	}
 271#endif
 272
 273#ifdef CONFIG_EXT2_FS_POSIX_ACL
 274	if (test_opt(sb, POSIX_ACL))
 275		seq_puts(seq, ",acl");
 276	if (!test_opt(sb, POSIX_ACL) && (def_mount_opts & EXT2_DEFM_ACL))
 277		seq_puts(seq, ",noacl");
 278#endif
 279
 280	if (test_opt(sb, NOBH))
 281		seq_puts(seq, ",nobh");
 282
 283#if defined(CONFIG_QUOTA)
 284	if (sbi->s_mount_opt & EXT2_MOUNT_USRQUOTA)
 285		seq_puts(seq, ",usrquota");
 286
 287	if (sbi->s_mount_opt & EXT2_MOUNT_GRPQUOTA)
 288		seq_puts(seq, ",grpquota");
 289#endif
 290
 291#if defined(CONFIG_EXT2_FS_XIP)
 292	if (sbi->s_mount_opt & EXT2_MOUNT_XIP)
 293		seq_puts(seq, ",xip");
 294#endif
 
 
 295
 296	if (!test_opt(sb, RESERVATION))
 297		seq_puts(seq, ",noreservation");
 298
 299	spin_unlock(&sbi->s_lock);
 300	return 0;
 301}
 302
 303#ifdef CONFIG_QUOTA
 304static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data, size_t len, loff_t off);
 305static ssize_t ext2_quota_write(struct super_block *sb, int type, const char *data, size_t len, loff_t off);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 306#endif
 307
 308static const struct super_operations ext2_sops = {
 309	.alloc_inode	= ext2_alloc_inode,
 310	.destroy_inode	= ext2_destroy_inode,
 311	.write_inode	= ext2_write_inode,
 312	.evict_inode	= ext2_evict_inode,
 313	.put_super	= ext2_put_super,
 314	.sync_fs	= ext2_sync_fs,
 315	.freeze_fs	= ext2_freeze,
 316	.unfreeze_fs	= ext2_unfreeze,
 317	.statfs		= ext2_statfs,
 318	.remount_fs	= ext2_remount,
 319	.show_options	= ext2_show_options,
 320#ifdef CONFIG_QUOTA
 321	.quota_read	= ext2_quota_read,
 322	.quota_write	= ext2_quota_write,
 
 323#endif
 324};
 325
 326static struct inode *ext2_nfs_get_inode(struct super_block *sb,
 327		u64 ino, u32 generation)
 328{
 329	struct inode *inode;
 330
 331	if (ino < EXT2_FIRST_INO(sb) && ino != EXT2_ROOT_INO)
 332		return ERR_PTR(-ESTALE);
 333	if (ino > le32_to_cpu(EXT2_SB(sb)->s_es->s_inodes_count))
 334		return ERR_PTR(-ESTALE);
 335
 336	/*
 337	 * ext2_iget isn't quite right if the inode is currently unallocated!
 338	 * However ext2_iget currently does appropriate checks to handle stale
 339	 * inodes so everything is OK.
 340	 */
 341	inode = ext2_iget(sb, ino);
 342	if (IS_ERR(inode))
 343		return ERR_CAST(inode);
 344	if (generation && inode->i_generation != generation) {
 345		/* we didn't find the right inode.. */
 346		iput(inode);
 347		return ERR_PTR(-ESTALE);
 348	}
 349	return inode;
 350}
 351
 352static struct dentry *ext2_fh_to_dentry(struct super_block *sb, struct fid *fid,
 353		int fh_len, int fh_type)
 354{
 355	return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
 356				    ext2_nfs_get_inode);
 357}
 358
 359static struct dentry *ext2_fh_to_parent(struct super_block *sb, struct fid *fid,
 360		int fh_len, int fh_type)
 361{
 362	return generic_fh_to_parent(sb, fid, fh_len, fh_type,
 363				    ext2_nfs_get_inode);
 364}
 365
 366static const struct export_operations ext2_export_ops = {
 
 367	.fh_to_dentry = ext2_fh_to_dentry,
 368	.fh_to_parent = ext2_fh_to_parent,
 369	.get_parent = ext2_get_parent,
 370};
 371
 372static unsigned long get_sb_block(void **data)
 373{
 374	unsigned long 	sb_block;
 375	char 		*options = (char *) *data;
 376
 377	if (!options || strncmp(options, "sb=", 3) != 0)
 378		return 1;	/* Default location */
 379	options += 3;
 380	sb_block = simple_strtoul(options, &options, 0);
 381	if (*options && *options != ',') {
 382		printk("EXT2-fs: Invalid sb specification: %s\n",
 383		       (char *) *data);
 384		return 1;
 385	}
 386	if (*options == ',')
 387		options++;
 388	*data = (void *) options;
 389	return sb_block;
 390}
 391
 392enum {
 393	Opt_bsd_df, Opt_minix_df, Opt_grpid, Opt_nogrpid,
 394	Opt_resgid, Opt_resuid, Opt_sb, Opt_err_cont, Opt_err_panic,
 395	Opt_err_ro, Opt_nouid32, Opt_nocheck, Opt_debug,
 396	Opt_oldalloc, Opt_orlov, Opt_nobh, Opt_user_xattr, Opt_nouser_xattr,
 397	Opt_acl, Opt_noacl, Opt_xip, Opt_ignore, Opt_err, Opt_quota,
 398	Opt_usrquota, Opt_grpquota, Opt_reservation, Opt_noreservation
 399};
 400
 401static const match_table_t tokens = {
 402	{Opt_bsd_df, "bsddf"},
 403	{Opt_minix_df, "minixdf"},
 404	{Opt_grpid, "grpid"},
 405	{Opt_grpid, "bsdgroups"},
 406	{Opt_nogrpid, "nogrpid"},
 407	{Opt_nogrpid, "sysvgroups"},
 408	{Opt_resgid, "resgid=%u"},
 409	{Opt_resuid, "resuid=%u"},
 410	{Opt_sb, "sb=%u"},
 411	{Opt_err_cont, "errors=continue"},
 412	{Opt_err_panic, "errors=panic"},
 413	{Opt_err_ro, "errors=remount-ro"},
 414	{Opt_nouid32, "nouid32"},
 415	{Opt_nocheck, "check=none"},
 416	{Opt_nocheck, "nocheck"},
 417	{Opt_debug, "debug"},
 418	{Opt_oldalloc, "oldalloc"},
 419	{Opt_orlov, "orlov"},
 420	{Opt_nobh, "nobh"},
 421	{Opt_user_xattr, "user_xattr"},
 422	{Opt_nouser_xattr, "nouser_xattr"},
 423	{Opt_acl, "acl"},
 424	{Opt_noacl, "noacl"},
 425	{Opt_xip, "xip"},
 
 426	{Opt_grpquota, "grpquota"},
 427	{Opt_ignore, "noquota"},
 428	{Opt_quota, "quota"},
 429	{Opt_usrquota, "usrquota"},
 430	{Opt_reservation, "reservation"},
 431	{Opt_noreservation, "noreservation"},
 432	{Opt_err, NULL}
 433};
 434
 435static int parse_options(char *options, struct super_block *sb)
 
 436{
 437	char *p;
 438	struct ext2_sb_info *sbi = EXT2_SB(sb);
 439	substring_t args[MAX_OPT_ARGS];
 440	int option;
 441	kuid_t uid;
 442	kgid_t gid;
 443
 444	if (!options)
 445		return 1;
 446
 447	while ((p = strsep (&options, ",")) != NULL) {
 448		int token;
 449		if (!*p)
 450			continue;
 451
 452		token = match_token(p, tokens, args);
 453		switch (token) {
 454		case Opt_bsd_df:
 455			clear_opt (sbi->s_mount_opt, MINIX_DF);
 456			break;
 457		case Opt_minix_df:
 458			set_opt (sbi->s_mount_opt, MINIX_DF);
 459			break;
 460		case Opt_grpid:
 461			set_opt (sbi->s_mount_opt, GRPID);
 462			break;
 463		case Opt_nogrpid:
 464			clear_opt (sbi->s_mount_opt, GRPID);
 465			break;
 466		case Opt_resuid:
 467			if (match_int(&args[0], &option))
 468				return 0;
 469			uid = make_kuid(current_user_ns(), option);
 470			if (!uid_valid(uid)) {
 471				ext2_msg(sb, KERN_ERR, "Invalid uid value %d", option);
 472				return 0;
 473
 474			}
 475			sbi->s_resuid = uid;
 476			break;
 477		case Opt_resgid:
 478			if (match_int(&args[0], &option))
 479				return 0;
 480			gid = make_kgid(current_user_ns(), option);
 481			if (!gid_valid(gid)) {
 482				ext2_msg(sb, KERN_ERR, "Invalid gid value %d", option);
 483				return 0;
 484			}
 485			sbi->s_resgid = gid;
 486			break;
 487		case Opt_sb:
 488			/* handled by get_sb_block() instead of here */
 489			/* *sb_block = match_int(&args[0]); */
 490			break;
 491		case Opt_err_panic:
 492			clear_opt (sbi->s_mount_opt, ERRORS_CONT);
 493			clear_opt (sbi->s_mount_opt, ERRORS_RO);
 494			set_opt (sbi->s_mount_opt, ERRORS_PANIC);
 495			break;
 496		case Opt_err_ro:
 497			clear_opt (sbi->s_mount_opt, ERRORS_CONT);
 498			clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
 499			set_opt (sbi->s_mount_opt, ERRORS_RO);
 500			break;
 501		case Opt_err_cont:
 502			clear_opt (sbi->s_mount_opt, ERRORS_RO);
 503			clear_opt (sbi->s_mount_opt, ERRORS_PANIC);
 504			set_opt (sbi->s_mount_opt, ERRORS_CONT);
 505			break;
 506		case Opt_nouid32:
 507			set_opt (sbi->s_mount_opt, NO_UID32);
 508			break;
 509		case Opt_nocheck:
 510			clear_opt (sbi->s_mount_opt, CHECK);
 511			break;
 512		case Opt_debug:
 513			set_opt (sbi->s_mount_opt, DEBUG);
 514			break;
 515		case Opt_oldalloc:
 516			set_opt (sbi->s_mount_opt, OLDALLOC);
 517			break;
 518		case Opt_orlov:
 519			clear_opt (sbi->s_mount_opt, OLDALLOC);
 520			break;
 521		case Opt_nobh:
 522			set_opt (sbi->s_mount_opt, NOBH);
 
 523			break;
 524#ifdef CONFIG_EXT2_FS_XATTR
 525		case Opt_user_xattr:
 526			set_opt (sbi->s_mount_opt, XATTR_USER);
 527			break;
 528		case Opt_nouser_xattr:
 529			clear_opt (sbi->s_mount_opt, XATTR_USER);
 530			break;
 531#else
 532		case Opt_user_xattr:
 533		case Opt_nouser_xattr:
 534			ext2_msg(sb, KERN_INFO, "(no)user_xattr options"
 535				"not supported");
 536			break;
 537#endif
 538#ifdef CONFIG_EXT2_FS_POSIX_ACL
 539		case Opt_acl:
 540			set_opt(sbi->s_mount_opt, POSIX_ACL);
 541			break;
 542		case Opt_noacl:
 543			clear_opt(sbi->s_mount_opt, POSIX_ACL);
 544			break;
 545#else
 546		case Opt_acl:
 547		case Opt_noacl:
 548			ext2_msg(sb, KERN_INFO,
 549				"(no)acl options not supported");
 550			break;
 551#endif
 552		case Opt_xip:
 553#ifdef CONFIG_EXT2_FS_XIP
 554			set_opt (sbi->s_mount_opt, XIP);
 
 
 
 
 
 
 555#else
 556			ext2_msg(sb, KERN_INFO, "xip option not supported");
 557#endif
 558			break;
 559
 560#if defined(CONFIG_QUOTA)
 561		case Opt_quota:
 562		case Opt_usrquota:
 563			set_opt(sbi->s_mount_opt, USRQUOTA);
 564			break;
 565
 566		case Opt_grpquota:
 567			set_opt(sbi->s_mount_opt, GRPQUOTA);
 568			break;
 569#else
 570		case Opt_quota:
 571		case Opt_usrquota:
 572		case Opt_grpquota:
 573			ext2_msg(sb, KERN_INFO,
 574				"quota operations not supported");
 575			break;
 576#endif
 577
 578		case Opt_reservation:
 579			set_opt(sbi->s_mount_opt, RESERVATION);
 580			ext2_msg(sb, KERN_INFO, "reservations ON");
 581			break;
 582		case Opt_noreservation:
 583			clear_opt(sbi->s_mount_opt, RESERVATION);
 584			ext2_msg(sb, KERN_INFO, "reservations OFF");
 585			break;
 586		case Opt_ignore:
 587			break;
 588		default:
 589			return 0;
 590		}
 591	}
 592	return 1;
 593}
 594
 595static int ext2_setup_super (struct super_block * sb,
 596			      struct ext2_super_block * es,
 597			      int read_only)
 598{
 599	int res = 0;
 600	struct ext2_sb_info *sbi = EXT2_SB(sb);
 601
 602	if (le32_to_cpu(es->s_rev_level) > EXT2_MAX_SUPP_REV) {
 603		ext2_msg(sb, KERN_ERR,
 604			"error: revision level too high, "
 605			"forcing read-only mode");
 606		res = MS_RDONLY;
 607	}
 608	if (read_only)
 609		return res;
 610	if (!(sbi->s_mount_state & EXT2_VALID_FS))
 611		ext2_msg(sb, KERN_WARNING,
 612			"warning: mounting unchecked fs, "
 613			"running e2fsck is recommended");
 614	else if ((sbi->s_mount_state & EXT2_ERROR_FS))
 615		ext2_msg(sb, KERN_WARNING,
 616			"warning: mounting fs with errors, "
 617			"running e2fsck is recommended");
 618	else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&
 619		 le16_to_cpu(es->s_mnt_count) >=
 620		 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))
 621		ext2_msg(sb, KERN_WARNING,
 622			"warning: maximal mount count reached, "
 623			"running e2fsck is recommended");
 624	else if (le32_to_cpu(es->s_checkinterval) &&
 625		(le32_to_cpu(es->s_lastcheck) +
 626			le32_to_cpu(es->s_checkinterval) <= get_seconds()))
 
 627		ext2_msg(sb, KERN_WARNING,
 628			"warning: checktime reached, "
 629			"running e2fsck is recommended");
 630	if (!le16_to_cpu(es->s_max_mnt_count))
 631		es->s_max_mnt_count = cpu_to_le16(EXT2_DFL_MAX_MNT_COUNT);
 632	le16_add_cpu(&es->s_mnt_count, 1);
 633	if (test_opt (sb, DEBUG))
 634		ext2_msg(sb, KERN_INFO, "%s, %s, bs=%lu, fs=%lu, gc=%lu, "
 635			"bpg=%lu, ipg=%lu, mo=%04lx]",
 636			EXT2FS_VERSION, EXT2FS_DATE, sb->s_blocksize,
 637			sbi->s_frag_size,
 638			sbi->s_groups_count,
 639			EXT2_BLOCKS_PER_GROUP(sb),
 640			EXT2_INODES_PER_GROUP(sb),
 641			sbi->s_mount_opt);
 642	return res;
 643}
 644
 645static int ext2_check_descriptors(struct super_block *sb)
 646{
 647	int i;
 648	struct ext2_sb_info *sbi = EXT2_SB(sb);
 649
 650	ext2_debug ("Checking group descriptors");
 651
 652	for (i = 0; i < sbi->s_groups_count; i++) {
 653		struct ext2_group_desc *gdp = ext2_get_group_desc(sb, i, NULL);
 654		ext2_fsblk_t first_block = ext2_group_first_block_no(sb, i);
 655		ext2_fsblk_t last_block;
 656
 657		if (i == sbi->s_groups_count - 1)
 658			last_block = le32_to_cpu(sbi->s_es->s_blocks_count) - 1;
 659		else
 660			last_block = first_block +
 661				(EXT2_BLOCKS_PER_GROUP(sb) - 1);
 662
 663		if (le32_to_cpu(gdp->bg_block_bitmap) < first_block ||
 664		    le32_to_cpu(gdp->bg_block_bitmap) > last_block)
 665		{
 666			ext2_error (sb, "ext2_check_descriptors",
 667				    "Block bitmap for group %d"
 668				    " not in group (block %lu)!",
 669				    i, (unsigned long) le32_to_cpu(gdp->bg_block_bitmap));
 670			return 0;
 671		}
 672		if (le32_to_cpu(gdp->bg_inode_bitmap) < first_block ||
 673		    le32_to_cpu(gdp->bg_inode_bitmap) > last_block)
 674		{
 675			ext2_error (sb, "ext2_check_descriptors",
 676				    "Inode bitmap for group %d"
 677				    " not in group (block %lu)!",
 678				    i, (unsigned long) le32_to_cpu(gdp->bg_inode_bitmap));
 679			return 0;
 680		}
 681		if (le32_to_cpu(gdp->bg_inode_table) < first_block ||
 682		    le32_to_cpu(gdp->bg_inode_table) + sbi->s_itb_per_group - 1 >
 683		    last_block)
 684		{
 685			ext2_error (sb, "ext2_check_descriptors",
 686				    "Inode table for group %d"
 687				    " not in group (block %lu)!",
 688				    i, (unsigned long) le32_to_cpu(gdp->bg_inode_table));
 689			return 0;
 690		}
 691	}
 692	return 1;
 693}
 694
 695/*
 696 * Maximal file size.  There is a direct, and {,double-,triple-}indirect
 697 * block limit, and also a limit of (2^32 - 1) 512-byte sectors in i_blocks.
 698 * We need to be 1 filesystem block less than the 2^32 sector limit.
 699 */
 700static loff_t ext2_max_size(int bits)
 701{
 702	loff_t res = EXT2_NDIR_BLOCKS;
 703	int meta_blocks;
 704	loff_t upper_limit;
 
 705
 706	/* This is calculated to be the largest file size for a
 707	 * dense, file such that the total number of
 708	 * sectors in the file, including data and all indirect blocks,
 709	 * does not exceed 2^32 -1
 710	 * __u32 i_blocks representing the total number of
 711	 * 512 bytes blocks of the file
 712	 */
 713	upper_limit = (1LL << 32) - 1;
 714
 715	/* total blocks in file system block size */
 716	upper_limit >>= (bits - 9);
 717
 718
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 719	/* indirect blocks */
 720	meta_blocks = 1;
 
 721	/* double indirect blocks */
 722	meta_blocks += 1 + (1LL << (bits-2));
 723	/* tripple indirect blocks */
 724	meta_blocks += 1 + (1LL << (bits-2)) + (1LL << (2*(bits-2)));
 725
 726	upper_limit -= meta_blocks;
 727	upper_limit <<= bits;
 728
 729	res += 1LL << (bits-2);
 730	res += 1LL << (2*(bits-2));
 731	res += 1LL << (3*(bits-2));
 
 
 732	res <<= bits;
 733	if (res > upper_limit)
 734		res = upper_limit;
 735
 736	if (res > MAX_LFS_FILESIZE)
 737		res = MAX_LFS_FILESIZE;
 738
 739	return res;
 740}
 741
 742static unsigned long descriptor_loc(struct super_block *sb,
 743				    unsigned long logic_sb_block,
 744				    int nr)
 745{
 746	struct ext2_sb_info *sbi = EXT2_SB(sb);
 747	unsigned long bg, first_meta_bg;
 748	int has_super = 0;
 749	
 750	first_meta_bg = le32_to_cpu(sbi->s_es->s_first_meta_bg);
 751
 752	if (!EXT2_HAS_INCOMPAT_FEATURE(sb, EXT2_FEATURE_INCOMPAT_META_BG) ||
 753	    nr < first_meta_bg)
 754		return (logic_sb_block + nr + 1);
 755	bg = sbi->s_desc_per_block * nr;
 756	if (ext2_bg_has_super(sb, bg))
 757		has_super = 1;
 758
 759	return ext2_group_first_block_no(sb, bg) + has_super;
 760}
 761
 762static int ext2_fill_super(struct super_block *sb, void *data, int silent)
 763{
 764	struct buffer_head * bh;
 765	struct ext2_sb_info * sbi;
 766	struct ext2_super_block * es;
 767	struct inode *root;
 768	unsigned long block;
 769	unsigned long sb_block = get_sb_block(&data);
 770	unsigned long logic_sb_block;
 771	unsigned long offset = 0;
 772	unsigned long def_mount_opts;
 773	long ret = -EINVAL;
 774	int blocksize = BLOCK_SIZE;
 775	int db_count;
 776	int i, j;
 777	__le32 features;
 778	int err;
 
 779
 780	err = -ENOMEM;
 781	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
 782	if (!sbi)
 783		goto failed;
 784
 785	sbi->s_blockgroup_lock =
 786		kzalloc(sizeof(struct blockgroup_lock), GFP_KERNEL);
 787	if (!sbi->s_blockgroup_lock) {
 788		kfree(sbi);
 789		goto failed;
 790	}
 791	sb->s_fs_info = sbi;
 792	sbi->s_sb_block = sb_block;
 
 
 793
 794	spin_lock_init(&sbi->s_lock);
 
 795
 796	/*
 797	 * See what the current blocksize for the device is, and
 798	 * use that as the blocksize.  Otherwise (or if the blocksize
 799	 * is smaller than the default) use the default.
 800	 * This is important for devices that have a hardware
 801	 * sectorsize that is larger than the default.
 802	 */
 803	blocksize = sb_min_blocksize(sb, BLOCK_SIZE);
 804	if (!blocksize) {
 805		ext2_msg(sb, KERN_ERR, "error: unable to set blocksize");
 806		goto failed_sbi;
 807	}
 808
 809	/*
 810	 * If the superblock doesn't start on a hardware sector boundary,
 811	 * calculate the offset.  
 812	 */
 813	if (blocksize != BLOCK_SIZE) {
 814		logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
 815		offset = (sb_block*BLOCK_SIZE) % blocksize;
 816	} else {
 817		logic_sb_block = sb_block;
 818	}
 819
 820	if (!(bh = sb_bread(sb, logic_sb_block))) {
 821		ext2_msg(sb, KERN_ERR, "error: unable to read superblock");
 822		goto failed_sbi;
 823	}
 824	/*
 825	 * Note: s_es must be initialized as soon as possible because
 826	 *       some ext2 macro-instructions depend on its value
 827	 */
 828	es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
 829	sbi->s_es = es;
 830	sb->s_magic = le16_to_cpu(es->s_magic);
 831
 832	if (sb->s_magic != EXT2_SUPER_MAGIC)
 833		goto cantfind_ext2;
 834
 
 835	/* Set defaults before we parse the mount options */
 836	def_mount_opts = le32_to_cpu(es->s_default_mount_opts);
 837	if (def_mount_opts & EXT2_DEFM_DEBUG)
 838		set_opt(sbi->s_mount_opt, DEBUG);
 839	if (def_mount_opts & EXT2_DEFM_BSDGROUPS)
 840		set_opt(sbi->s_mount_opt, GRPID);
 841	if (def_mount_opts & EXT2_DEFM_UID16)
 842		set_opt(sbi->s_mount_opt, NO_UID32);
 843#ifdef CONFIG_EXT2_FS_XATTR
 844	if (def_mount_opts & EXT2_DEFM_XATTR_USER)
 845		set_opt(sbi->s_mount_opt, XATTR_USER);
 846#endif
 847#ifdef CONFIG_EXT2_FS_POSIX_ACL
 848	if (def_mount_opts & EXT2_DEFM_ACL)
 849		set_opt(sbi->s_mount_opt, POSIX_ACL);
 850#endif
 851	
 852	if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_PANIC)
 853		set_opt(sbi->s_mount_opt, ERRORS_PANIC);
 854	else if (le16_to_cpu(sbi->s_es->s_errors) == EXT2_ERRORS_CONTINUE)
 855		set_opt(sbi->s_mount_opt, ERRORS_CONT);
 856	else
 857		set_opt(sbi->s_mount_opt, ERRORS_RO);
 858
 859	sbi->s_resuid = make_kuid(&init_user_ns, le16_to_cpu(es->s_def_resuid));
 860	sbi->s_resgid = make_kgid(&init_user_ns, le16_to_cpu(es->s_def_resgid));
 861	
 862	set_opt(sbi->s_mount_opt, RESERVATION);
 863
 864	if (!parse_options((char *) data, sb))
 865		goto failed_mount;
 866
 867	sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
 868		((EXT2_SB(sb)->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ?
 869		 MS_POSIXACL : 0);
 870
 871	ext2_xip_verify_sb(sb); /* see if bdev supports xip, unset
 872				    EXT2_MOUNT_XIP if not */
 
 873
 874	if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV &&
 875	    (EXT2_HAS_COMPAT_FEATURE(sb, ~0U) ||
 876	     EXT2_HAS_RO_COMPAT_FEATURE(sb, ~0U) ||
 877	     EXT2_HAS_INCOMPAT_FEATURE(sb, ~0U)))
 878		ext2_msg(sb, KERN_WARNING,
 879			"warning: feature flags set on rev 0 fs, "
 880			"running e2fsck is recommended");
 881	/*
 882	 * Check feature flags regardless of the revision level, since we
 883	 * previously didn't change the revision level when setting the flags,
 884	 * so there is a chance incompat flags are set on a rev 0 filesystem.
 885	 */
 886	features = EXT2_HAS_INCOMPAT_FEATURE(sb, ~EXT2_FEATURE_INCOMPAT_SUPP);
 887	if (features) {
 888		ext2_msg(sb, KERN_ERR,	"error: couldn't mount because of "
 889		       "unsupported optional features (%x)",
 890			le32_to_cpu(features));
 891		goto failed_mount;
 892	}
 893	if (!(sb->s_flags & MS_RDONLY) &&
 894	    (features = EXT2_HAS_RO_COMPAT_FEATURE(sb, ~EXT2_FEATURE_RO_COMPAT_SUPP))){
 895		ext2_msg(sb, KERN_ERR, "error: couldn't mount RDWR because of "
 896		       "unsupported optional features (%x)",
 897		       le32_to_cpu(features));
 898		goto failed_mount;
 899	}
 900
 
 
 
 
 
 
 
 901	blocksize = BLOCK_SIZE << le32_to_cpu(sbi->s_es->s_log_block_size);
 902
 903	if (ext2_use_xip(sb) && blocksize != PAGE_SIZE) {
 904		if (!silent)
 905			ext2_msg(sb, KERN_ERR,
 906				"error: unsupported blocksize for xip");
 907		goto failed_mount;
 
 
 
 
 908	}
 909
 910	/* If the blocksize doesn't match, re-read the thing.. */
 911	if (sb->s_blocksize != blocksize) {
 912		brelse(bh);
 913
 914		if (!sb_set_blocksize(sb, blocksize)) {
 915			ext2_msg(sb, KERN_ERR,
 916				"error: bad blocksize %d", blocksize);
 917			goto failed_sbi;
 918		}
 919
 920		logic_sb_block = (sb_block*BLOCK_SIZE) / blocksize;
 921		offset = (sb_block*BLOCK_SIZE) % blocksize;
 922		bh = sb_bread(sb, logic_sb_block);
 923		if(!bh) {
 924			ext2_msg(sb, KERN_ERR, "error: couldn't read"
 925				"superblock on 2nd try");
 926			goto failed_sbi;
 927		}
 928		es = (struct ext2_super_block *) (((char *)bh->b_data) + offset);
 929		sbi->s_es = es;
 930		if (es->s_magic != cpu_to_le16(EXT2_SUPER_MAGIC)) {
 931			ext2_msg(sb, KERN_ERR, "error: magic mismatch");
 932			goto failed_mount;
 933		}
 934	}
 935
 936	sb->s_maxbytes = ext2_max_size(sb->s_blocksize_bits);
 937	sb->s_max_links = EXT2_LINK_MAX;
 
 
 938
 939	if (le32_to_cpu(es->s_rev_level) == EXT2_GOOD_OLD_REV) {
 940		sbi->s_inode_size = EXT2_GOOD_OLD_INODE_SIZE;
 941		sbi->s_first_ino = EXT2_GOOD_OLD_FIRST_INO;
 942	} else {
 943		sbi->s_inode_size = le16_to_cpu(es->s_inode_size);
 944		sbi->s_first_ino = le32_to_cpu(es->s_first_ino);
 945		if ((sbi->s_inode_size < EXT2_GOOD_OLD_INODE_SIZE) ||
 946		    !is_power_of_2(sbi->s_inode_size) ||
 947		    (sbi->s_inode_size > blocksize)) {
 948			ext2_msg(sb, KERN_ERR,
 949				"error: unsupported inode size: %d",
 950				sbi->s_inode_size);
 951			goto failed_mount;
 952		}
 953	}
 954
 955	sbi->s_frag_size = EXT2_MIN_FRAG_SIZE <<
 956				   le32_to_cpu(es->s_log_frag_size);
 957	if (sbi->s_frag_size == 0)
 958		goto cantfind_ext2;
 959	sbi->s_frags_per_block = sb->s_blocksize / sbi->s_frag_size;
 960
 961	sbi->s_blocks_per_group = le32_to_cpu(es->s_blocks_per_group);
 962	sbi->s_frags_per_group = le32_to_cpu(es->s_frags_per_group);
 963	sbi->s_inodes_per_group = le32_to_cpu(es->s_inodes_per_group);
 964
 965	if (EXT2_INODE_SIZE(sb) == 0)
 966		goto cantfind_ext2;
 967	sbi->s_inodes_per_block = sb->s_blocksize / EXT2_INODE_SIZE(sb);
 968	if (sbi->s_inodes_per_block == 0 || sbi->s_inodes_per_group == 0)
 969		goto cantfind_ext2;
 970	sbi->s_itb_per_group = sbi->s_inodes_per_group /
 971					sbi->s_inodes_per_block;
 972	sbi->s_desc_per_block = sb->s_blocksize /
 973					sizeof (struct ext2_group_desc);
 974	sbi->s_sbh = bh;
 975	sbi->s_mount_state = le16_to_cpu(es->s_state);
 976	sbi->s_addr_per_block_bits =
 977		ilog2 (EXT2_ADDR_PER_BLOCK(sb));
 978	sbi->s_desc_per_block_bits =
 979		ilog2 (EXT2_DESC_PER_BLOCK(sb));
 980
 981	if (sb->s_magic != EXT2_SUPER_MAGIC)
 982		goto cantfind_ext2;
 983
 984	if (sb->s_blocksize != bh->b_size) {
 985		if (!silent)
 986			ext2_msg(sb, KERN_ERR, "error: unsupported blocksize");
 987		goto failed_mount;
 988	}
 989
 990	if (sb->s_blocksize != sbi->s_frag_size) {
 991		ext2_msg(sb, KERN_ERR,
 992			"error: fragsize %lu != blocksize %lu"
 993			"(not supported yet)",
 994			sbi->s_frag_size, sb->s_blocksize);
 995		goto failed_mount;
 996	}
 997
 998	if (sbi->s_blocks_per_group > sb->s_blocksize * 8) {
 999		ext2_msg(sb, KERN_ERR,
1000			"error: #blocks per group too big: %lu",
1001			sbi->s_blocks_per_group);
1002		goto failed_mount;
1003	}
1004	if (sbi->s_frags_per_group > sb->s_blocksize * 8) {
 
1005		ext2_msg(sb, KERN_ERR,
1006			"error: #fragments per group too big: %lu",
1007			sbi->s_frags_per_group);
1008		goto failed_mount;
1009	}
1010	if (sbi->s_inodes_per_group > sb->s_blocksize * 8) {
 
1011		ext2_msg(sb, KERN_ERR,
1012			"error: #inodes per group too big: %lu",
1013			sbi->s_inodes_per_group);
1014		goto failed_mount;
1015	}
 
 
 
 
 
 
 
1016
1017	if (EXT2_BLOCKS_PER_GROUP(sb) == 0)
1018		goto cantfind_ext2;
1019 	sbi->s_groups_count = ((le32_to_cpu(es->s_blocks_count) -
1020 				le32_to_cpu(es->s_first_data_block) - 1)
1021 					/ EXT2_BLOCKS_PER_GROUP(sb)) + 1;
 
 
 
 
 
1022	db_count = (sbi->s_groups_count + EXT2_DESC_PER_BLOCK(sb) - 1) /
1023		   EXT2_DESC_PER_BLOCK(sb);
1024	sbi->s_group_desc = kmalloc (db_count * sizeof (struct buffer_head *), GFP_KERNEL);
 
 
1025	if (sbi->s_group_desc == NULL) {
 
1026		ext2_msg(sb, KERN_ERR, "error: not enough memory");
1027		goto failed_mount;
1028	}
1029	bgl_lock_init(sbi->s_blockgroup_lock);
1030	sbi->s_debts = kcalloc(sbi->s_groups_count, sizeof(*sbi->s_debts), GFP_KERNEL);
1031	if (!sbi->s_debts) {
 
1032		ext2_msg(sb, KERN_ERR, "error: not enough memory");
1033		goto failed_mount_group_desc;
1034	}
1035	for (i = 0; i < db_count; i++) {
1036		block = descriptor_loc(sb, logic_sb_block, i);
1037		sbi->s_group_desc[i] = sb_bread(sb, block);
1038		if (!sbi->s_group_desc[i]) {
1039			for (j = 0; j < i; j++)
1040				brelse (sbi->s_group_desc[j]);
1041			ext2_msg(sb, KERN_ERR,
1042				"error: unable to read group descriptors");
1043			goto failed_mount_group_desc;
1044		}
1045	}
1046	if (!ext2_check_descriptors (sb)) {
1047		ext2_msg(sb, KERN_ERR, "group descriptors corrupted");
1048		goto failed_mount2;
1049	}
1050	sbi->s_gdb_count = db_count;
1051	get_random_bytes(&sbi->s_next_generation, sizeof(u32));
1052	spin_lock_init(&sbi->s_next_gen_lock);
1053
1054	/* per fileystem reservation list head & lock */
1055	spin_lock_init(&sbi->s_rsv_window_lock);
1056	sbi->s_rsv_window_root = RB_ROOT;
1057	/*
1058	 * Add a single, static dummy reservation to the start of the
1059	 * reservation window list --- it gives us a placeholder for
1060	 * append-at-start-of-list which makes the allocation logic
1061	 * _much_ simpler.
1062	 */
1063	sbi->s_rsv_window_head.rsv_start = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1064	sbi->s_rsv_window_head.rsv_end = EXT2_RESERVE_WINDOW_NOT_ALLOCATED;
1065	sbi->s_rsv_window_head.rsv_alloc_hit = 0;
1066	sbi->s_rsv_window_head.rsv_goal_size = 0;
1067	ext2_rsv_window_add(sb, &sbi->s_rsv_window_head);
1068
1069	err = percpu_counter_init(&sbi->s_freeblocks_counter,
1070				ext2_count_free_blocks(sb));
1071	if (!err) {
1072		err = percpu_counter_init(&sbi->s_freeinodes_counter,
1073				ext2_count_free_inodes(sb));
1074	}
1075	if (!err) {
1076		err = percpu_counter_init(&sbi->s_dirs_counter,
1077				ext2_count_dirs(sb));
1078	}
1079	if (err) {
 
1080		ext2_msg(sb, KERN_ERR, "error: insufficient memory");
1081		goto failed_mount3;
1082	}
 
 
 
 
 
 
 
 
 
1083	/*
1084	 * set up enough so that it can read an inode
1085	 */
1086	sb->s_op = &ext2_sops;
1087	sb->s_export_op = &ext2_export_ops;
1088	sb->s_xattr = ext2_xattr_handlers;
1089
1090#ifdef CONFIG_QUOTA
1091	sb->dq_op = &dquot_operations;
1092	sb->s_qcop = &dquot_quotactl_ops;
 
1093#endif
1094
1095	root = ext2_iget(sb, EXT2_ROOT_INO);
1096	if (IS_ERR(root)) {
1097		ret = PTR_ERR(root);
1098		goto failed_mount3;
1099	}
1100	if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
1101		iput(root);
1102		ext2_msg(sb, KERN_ERR, "error: corrupt root inode, run e2fsck");
1103		goto failed_mount3;
1104	}
1105
1106	sb->s_root = d_make_root(root);
1107	if (!sb->s_root) {
1108		ext2_msg(sb, KERN_ERR, "error: get root inode failed");
1109		ret = -ENOMEM;
1110		goto failed_mount3;
1111	}
1112	if (EXT2_HAS_COMPAT_FEATURE(sb, EXT3_FEATURE_COMPAT_HAS_JOURNAL))
1113		ext2_msg(sb, KERN_WARNING,
1114			"warning: mounting ext3 filesystem as ext2");
1115	if (ext2_setup_super (sb, es, sb->s_flags & MS_RDONLY))
1116		sb->s_flags |= MS_RDONLY;
1117	ext2_write_super(sb);
1118	return 0;
1119
1120cantfind_ext2:
1121	if (!silent)
1122		ext2_msg(sb, KERN_ERR,
1123			"error: can't find an ext2 filesystem on dev %s.",
1124			sb->s_id);
1125	goto failed_mount;
1126failed_mount3:
 
1127	percpu_counter_destroy(&sbi->s_freeblocks_counter);
1128	percpu_counter_destroy(&sbi->s_freeinodes_counter);
1129	percpu_counter_destroy(&sbi->s_dirs_counter);
1130failed_mount2:
1131	for (i = 0; i < db_count; i++)
1132		brelse(sbi->s_group_desc[i]);
1133failed_mount_group_desc:
1134	kfree(sbi->s_group_desc);
1135	kfree(sbi->s_debts);
1136failed_mount:
1137	brelse(bh);
1138failed_sbi:
 
1139	sb->s_fs_info = NULL;
1140	kfree(sbi->s_blockgroup_lock);
1141	kfree(sbi);
1142failed:
1143	return ret;
1144}
1145
1146static void ext2_clear_super_error(struct super_block *sb)
1147{
1148	struct buffer_head *sbh = EXT2_SB(sb)->s_sbh;
1149
1150	if (buffer_write_io_error(sbh)) {
1151		/*
1152		 * Oh, dear.  A previous attempt to write the
1153		 * superblock failed.  This could happen because the
1154		 * USB device was yanked out.  Or it could happen to
1155		 * be a transient write error and maybe the block will
1156		 * be remapped.  Nothing we can do but to retry the
1157		 * write and hope for the best.
1158		 */
1159		ext2_msg(sb, KERN_ERR,
1160		       "previous I/O error to superblock detected\n");
1161		clear_buffer_write_io_error(sbh);
1162		set_buffer_uptodate(sbh);
1163	}
1164}
1165
1166static void ext2_sync_super(struct super_block *sb, struct ext2_super_block *es,
1167			    int wait)
1168{
1169	ext2_clear_super_error(sb);
1170	spin_lock(&EXT2_SB(sb)->s_lock);
1171	es->s_free_blocks_count = cpu_to_le32(ext2_count_free_blocks(sb));
1172	es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb));
1173	es->s_wtime = cpu_to_le32(get_seconds());
1174	/* unlock before we do IO */
1175	spin_unlock(&EXT2_SB(sb)->s_lock);
1176	mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
1177	if (wait)
1178		sync_dirty_buffer(EXT2_SB(sb)->s_sbh);
1179}
1180
1181/*
1182 * In the second extended file system, it is not necessary to
1183 * write the super block since we use a mapping of the
1184 * disk super block in a buffer.
1185 *
1186 * However, this function is still used to set the fs valid
1187 * flags to 0.  We need to set this flag to 0 since the fs
1188 * may have been checked while mounted and e2fsck may have
1189 * set s_state to EXT2_VALID_FS after some corrections.
1190 */
1191static int ext2_sync_fs(struct super_block *sb, int wait)
1192{
1193	struct ext2_sb_info *sbi = EXT2_SB(sb);
1194	struct ext2_super_block *es = EXT2_SB(sb)->s_es;
1195
1196	/*
1197	 * Write quota structures to quota file, sync_blockdev() will write
1198	 * them to disk later
1199	 */
1200	dquot_writeback_dquots(sb, -1);
1201
1202	spin_lock(&sbi->s_lock);
1203	if (es->s_state & cpu_to_le16(EXT2_VALID_FS)) {
1204		ext2_debug("setting valid to 0\n");
1205		es->s_state &= cpu_to_le16(~EXT2_VALID_FS);
1206	}
1207	spin_unlock(&sbi->s_lock);
1208	ext2_sync_super(sb, es, wait);
1209	return 0;
1210}
1211
1212static int ext2_freeze(struct super_block *sb)
1213{
1214	struct ext2_sb_info *sbi = EXT2_SB(sb);
1215
1216	/*
1217	 * Open but unlinked files present? Keep EXT2_VALID_FS flag cleared
1218	 * because we have unattached inodes and thus filesystem is not fully
1219	 * consistent.
1220	 */
1221	if (atomic_long_read(&sb->s_remove_count)) {
1222		ext2_sync_fs(sb, 1);
1223		return 0;
1224	}
1225	/* Set EXT2_FS_VALID flag */
1226	spin_lock(&sbi->s_lock);
1227	sbi->s_es->s_state = cpu_to_le16(sbi->s_mount_state);
1228	spin_unlock(&sbi->s_lock);
1229	ext2_sync_super(sb, sbi->s_es, 1);
1230
1231	return 0;
1232}
1233
1234static int ext2_unfreeze(struct super_block *sb)
1235{
1236	/* Just write sb to clear EXT2_VALID_FS flag */
1237	ext2_write_super(sb);
1238
1239	return 0;
1240}
1241
1242void ext2_write_super(struct super_block *sb)
1243{
1244	if (!(sb->s_flags & MS_RDONLY))
1245		ext2_sync_fs(sb, 1);
1246}
1247
1248static int ext2_remount (struct super_block * sb, int * flags, char * data)
1249{
1250	struct ext2_sb_info * sbi = EXT2_SB(sb);
1251	struct ext2_super_block * es;
1252	unsigned long old_mount_opt = sbi->s_mount_opt;
1253	struct ext2_mount_options old_opts;
1254	unsigned long old_sb_flags;
1255	int err;
1256
1257	sync_filesystem(sb);
 
1258	spin_lock(&sbi->s_lock);
 
 
 
 
1259
1260	/* Store the old options */
1261	old_sb_flags = sb->s_flags;
1262	old_opts.s_mount_opt = sbi->s_mount_opt;
1263	old_opts.s_resuid = sbi->s_resuid;
1264	old_opts.s_resgid = sbi->s_resgid;
1265
1266	/*
1267	 * Allow the "check" option to be passed as a remount option.
1268	 */
1269	if (!parse_options(data, sb)) {
1270		err = -EINVAL;
1271		goto restore_opts;
1272	}
1273
1274	sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
1275		((sbi->s_mount_opt & EXT2_MOUNT_POSIX_ACL) ? MS_POSIXACL : 0);
1276
1277	ext2_xip_verify_sb(sb); /* see if bdev supports xip, unset
1278				    EXT2_MOUNT_XIP if not */
1279
1280	if ((ext2_use_xip(sb)) && (sb->s_blocksize != PAGE_SIZE)) {
1281		ext2_msg(sb, KERN_WARNING,
1282			"warning: unsupported blocksize for xip");
1283		err = -EINVAL;
1284		goto restore_opts;
1285	}
1286
 
1287	es = sbi->s_es;
1288	if ((sbi->s_mount_opt ^ old_mount_opt) & EXT2_MOUNT_XIP) {
1289		ext2_msg(sb, KERN_WARNING, "warning: refusing change of "
1290			 "xip flag with busy inodes while remounting");
1291		sbi->s_mount_opt &= ~EXT2_MOUNT_XIP;
1292		sbi->s_mount_opt |= old_mount_opt & EXT2_MOUNT_XIP;
1293	}
1294	if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
1295		spin_unlock(&sbi->s_lock);
1296		return 0;
1297	}
1298	if (*flags & MS_RDONLY) {
 
 
1299		if (le16_to_cpu(es->s_state) & EXT2_VALID_FS ||
1300		    !(sbi->s_mount_state & EXT2_VALID_FS)) {
1301			spin_unlock(&sbi->s_lock);
1302			return 0;
1303		}
1304
1305		/*
1306		 * OK, we are remounting a valid rw partition rdonly, so set
1307		 * the rdonly flag and then mark the partition as valid again.
1308		 */
1309		es->s_state = cpu_to_le16(sbi->s_mount_state);
1310		es->s_mtime = cpu_to_le32(get_seconds());
1311		spin_unlock(&sbi->s_lock);
1312
1313		err = dquot_suspend(sb, -1);
1314		if (err < 0) {
1315			spin_lock(&sbi->s_lock);
1316			goto restore_opts;
1317		}
1318
1319		ext2_sync_super(sb, es, 1);
1320	} else {
1321		__le32 ret = EXT2_HAS_RO_COMPAT_FEATURE(sb,
1322					       ~EXT2_FEATURE_RO_COMPAT_SUPP);
1323		if (ret) {
 
1324			ext2_msg(sb, KERN_WARNING,
1325				"warning: couldn't remount RDWR because of "
1326				"unsupported optional features (%x).",
1327				le32_to_cpu(ret));
1328			err = -EROFS;
1329			goto restore_opts;
1330		}
1331		/*
1332		 * Mounting a RDONLY partition read-write, so reread and
1333		 * store the current valid flag.  (It may have been changed
1334		 * by e2fsck since we originally mounted the partition.)
1335		 */
1336		sbi->s_mount_state = le16_to_cpu(es->s_state);
1337		if (!ext2_setup_super (sb, es, 0))
1338			sb->s_flags &= ~MS_RDONLY;
1339		spin_unlock(&sbi->s_lock);
1340
1341		ext2_write_super(sb);
1342
1343		dquot_resume(sb, -1);
1344	}
1345
 
 
 
 
 
 
 
 
 
1346	return 0;
1347restore_opts:
1348	sbi->s_mount_opt = old_opts.s_mount_opt;
1349	sbi->s_resuid = old_opts.s_resuid;
1350	sbi->s_resgid = old_opts.s_resgid;
1351	sb->s_flags = old_sb_flags;
1352	spin_unlock(&sbi->s_lock);
1353	return err;
1354}
1355
1356static int ext2_statfs (struct dentry * dentry, struct kstatfs * buf)
1357{
1358	struct super_block *sb = dentry->d_sb;
1359	struct ext2_sb_info *sbi = EXT2_SB(sb);
1360	struct ext2_super_block *es = sbi->s_es;
1361	u64 fsid;
1362
1363	spin_lock(&sbi->s_lock);
1364
1365	if (test_opt (sb, MINIX_DF))
1366		sbi->s_overhead_last = 0;
1367	else if (sbi->s_blocks_last != le32_to_cpu(es->s_blocks_count)) {
1368		unsigned long i, overhead = 0;
1369		smp_rmb();
1370
1371		/*
1372		 * Compute the overhead (FS structures). This is constant
1373		 * for a given filesystem unless the number of block groups
1374		 * changes so we cache the previous value until it does.
1375		 */
1376
1377		/*
1378		 * All of the blocks before first_data_block are
1379		 * overhead
1380		 */
1381		overhead = le32_to_cpu(es->s_first_data_block);
1382
1383		/*
1384		 * Add the overhead attributed to the superblock and
1385		 * block group descriptors.  If the sparse superblocks
1386		 * feature is turned on, then not all groups have this.
1387		 */
1388		for (i = 0; i < sbi->s_groups_count; i++)
1389			overhead += ext2_bg_has_super(sb, i) +
1390				ext2_bg_num_gdb(sb, i);
1391
1392		/*
1393		 * Every block group has an inode bitmap, a block
1394		 * bitmap, and an inode table.
1395		 */
1396		overhead += (sbi->s_groups_count *
1397			     (2 + sbi->s_itb_per_group));
1398		sbi->s_overhead_last = overhead;
1399		smp_wmb();
1400		sbi->s_blocks_last = le32_to_cpu(es->s_blocks_count);
1401	}
1402
1403	buf->f_type = EXT2_SUPER_MAGIC;
1404	buf->f_bsize = sb->s_blocksize;
1405	buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
1406	buf->f_bfree = ext2_count_free_blocks(sb);
1407	es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
1408	buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
1409	if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
1410		buf->f_bavail = 0;
1411	buf->f_files = le32_to_cpu(es->s_inodes_count);
1412	buf->f_ffree = ext2_count_free_inodes(sb);
1413	es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
1414	buf->f_namelen = EXT2_NAME_LEN;
1415	fsid = le64_to_cpup((void *)es->s_uuid) ^
1416	       le64_to_cpup((void *)es->s_uuid + sizeof(u64));
1417	buf->f_fsid.val[0] = fsid & 0xFFFFFFFFUL;
1418	buf->f_fsid.val[1] = (fsid >> 32) & 0xFFFFFFFFUL;
1419	spin_unlock(&sbi->s_lock);
1420	return 0;
1421}
1422
1423static struct dentry *ext2_mount(struct file_system_type *fs_type,
1424	int flags, const char *dev_name, void *data)
1425{
1426	return mount_bdev(fs_type, flags, dev_name, data, ext2_fill_super);
1427}
1428
1429#ifdef CONFIG_QUOTA
1430
1431/* Read data from quotafile - avoid pagecache and such because we cannot afford
1432 * acquiring the locks... As quota files are never truncated and quota code
1433 * itself serializes the operations (and no one else should touch the files)
1434 * we don't have to be afraid of races */
1435static ssize_t ext2_quota_read(struct super_block *sb, int type, char *data,
1436			       size_t len, loff_t off)
1437{
1438	struct inode *inode = sb_dqopt(sb)->files[type];
1439	sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1440	int err = 0;
1441	int offset = off & (sb->s_blocksize - 1);
1442	int tocopy;
1443	size_t toread;
1444	struct buffer_head tmp_bh;
1445	struct buffer_head *bh;
1446	loff_t i_size = i_size_read(inode);
1447
1448	if (off > i_size)
1449		return 0;
1450	if (off+len > i_size)
1451		len = i_size-off;
1452	toread = len;
1453	while (toread > 0) {
1454		tocopy = sb->s_blocksize - offset < toread ?
1455				sb->s_blocksize - offset : toread;
1456
1457		tmp_bh.b_state = 0;
1458		tmp_bh.b_size = sb->s_blocksize;
1459		err = ext2_get_block(inode, blk, &tmp_bh, 0);
1460		if (err < 0)
1461			return err;
1462		if (!buffer_mapped(&tmp_bh))	/* A hole? */
1463			memset(data, 0, tocopy);
1464		else {
1465			bh = sb_bread(sb, tmp_bh.b_blocknr);
1466			if (!bh)
1467				return -EIO;
1468			memcpy(data, bh->b_data+offset, tocopy);
1469			brelse(bh);
1470		}
1471		offset = 0;
1472		toread -= tocopy;
1473		data += tocopy;
1474		blk++;
1475	}
1476	return len;
1477}
1478
1479/* Write to quotafile */
1480static ssize_t ext2_quota_write(struct super_block *sb, int type,
1481				const char *data, size_t len, loff_t off)
1482{
1483	struct inode *inode = sb_dqopt(sb)->files[type];
1484	sector_t blk = off >> EXT2_BLOCK_SIZE_BITS(sb);
1485	int err = 0;
1486	int offset = off & (sb->s_blocksize - 1);
1487	int tocopy;
1488	size_t towrite = len;
1489	struct buffer_head tmp_bh;
1490	struct buffer_head *bh;
1491
1492	while (towrite > 0) {
1493		tocopy = sb->s_blocksize - offset < towrite ?
1494				sb->s_blocksize - offset : towrite;
1495
1496		tmp_bh.b_state = 0;
1497		tmp_bh.b_size = sb->s_blocksize;
1498		err = ext2_get_block(inode, blk, &tmp_bh, 1);
1499		if (err < 0)
1500			goto out;
1501		if (offset || tocopy != EXT2_BLOCK_SIZE(sb))
1502			bh = sb_bread(sb, tmp_bh.b_blocknr);
1503		else
1504			bh = sb_getblk(sb, tmp_bh.b_blocknr);
1505		if (unlikely(!bh)) {
1506			err = -EIO;
1507			goto out;
1508		}
1509		lock_buffer(bh);
1510		memcpy(bh->b_data+offset, data, tocopy);
1511		flush_dcache_page(bh->b_page);
1512		set_buffer_uptodate(bh);
1513		mark_buffer_dirty(bh);
1514		unlock_buffer(bh);
1515		brelse(bh);
1516		offset = 0;
1517		towrite -= tocopy;
1518		data += tocopy;
1519		blk++;
1520	}
1521out:
1522	if (len == towrite)
1523		return err;
1524	if (inode->i_size < off+len-towrite)
1525		i_size_write(inode, off+len-towrite);
1526	inode->i_version++;
1527	inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1528	mark_inode_dirty(inode);
1529	return len - towrite;
1530}
1531
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1532#endif
1533
1534static struct file_system_type ext2_fs_type = {
1535	.owner		= THIS_MODULE,
1536	.name		= "ext2",
1537	.mount		= ext2_mount,
1538	.kill_sb	= kill_block_super,
1539	.fs_flags	= FS_REQUIRES_DEV,
1540};
1541MODULE_ALIAS_FS("ext2");
1542
1543static int __init init_ext2_fs(void)
1544{
1545	int err = init_ext2_xattr();
 
 
1546	if (err)
1547		return err;
1548	err = init_inodecache();
1549	if (err)
1550		goto out1;
1551        err = register_filesystem(&ext2_fs_type);
1552	if (err)
1553		goto out;
1554	return 0;
1555out:
1556	destroy_inodecache();
1557out1:
1558	exit_ext2_xattr();
1559	return err;
1560}
1561
1562static void __exit exit_ext2_fs(void)
1563{
1564	unregister_filesystem(&ext2_fs_type);
1565	destroy_inodecache();
1566	exit_ext2_xattr();
1567}
1568
1569MODULE_AUTHOR("Remy Card and others");
1570MODULE_DESCRIPTION("Second Extended Filesystem");
1571MODULE_LICENSE("GPL");
1572module_init(init_ext2_fs)
1573module_exit(exit_ext2_fs)