super.c

来自「基于组件方式开发操作系统的OSKIT源代码」· C语言 代码 · 共 817 行 · 第 1/2 页

C
817
字号
/* *  linux/fs/ext2/super.c * * Copyright (C) 1992, 1993, 1994, 1995 * Remy Card (card@masi.ibp.fr) * Laboratoire MASI - Institut Blaise Pascal * Universite Pierre et Marie Curie (Paris VI) * *  from * *  linux/fs/minix/inode.c * *  Copyright (C) 1991, 1992  Linus Torvalds * *  Big-endian to little-endian byte-swapping/bitmaps by *        David S. Miller (davem@caip.rutgers.edu), 1995 */#include <linux/module.h>#include <stdarg.h>#include <asm/bitops.h>#include <asm/uaccess.h>#include <asm/system.h>#include <linux/errno.h>#include <linux/fs.h>#include <linux/ext2_fs.h>#include <linux/malloc.h>#include <linux/sched.h>#include <linux/stat.h>#include <linux/string.h>#include <linux/locks.h>#include <linux/blkdev.h>#include <linux/init.h>static char error_buf[1024];void ext2_error (struct super_block * sb, const char * function,		 const char * fmt, ...){	va_list args;	if (!(sb->s_flags & MS_RDONLY)) {		sb->u.ext2_sb.s_mount_state |= EXT2_ERROR_FS;		sb->u.ext2_sb.s_es->s_state =			cpu_to_le16(le16_to_cpu(sb->u.ext2_sb.s_es->s_state) | EXT2_ERROR_FS);		mark_buffer_dirty(sb->u.ext2_sb.s_sbh, 1);		sb->s_dirt = 1;	}	va_start (args, fmt);	vsprintf (error_buf, fmt, args);	va_end (args);	if (test_opt (sb, ERRORS_PANIC) ||	    (le16_to_cpu(sb->u.ext2_sb.s_es->s_errors) == EXT2_ERRORS_PANIC &&	     !test_opt (sb, ERRORS_CONT) && !test_opt (sb, ERRORS_RO)))		panic ("EXT2-fs panic (device %s): %s: %s\n",		       bdevname(sb->s_dev), function, error_buf);	printk (KERN_CRIT "EXT2-fs error (device %s): %s: %s\n",		bdevname(sb->s_dev), function, error_buf);	if (test_opt (sb, ERRORS_RO) ||	    (le16_to_cpu(sb->u.ext2_sb.s_es->s_errors) == EXT2_ERRORS_RO &&	     !test_opt (sb, ERRORS_CONT) && !test_opt (sb, ERRORS_PANIC))) {		printk ("Remounting filesystem read-only\n");		sb->s_flags |= MS_RDONLY;	}}NORET_TYPE void ext2_panic (struct super_block * sb, const char * function,			    const char * fmt, ...){	va_list args;	if (!(sb->s_flags & MS_RDONLY)) {		sb->u.ext2_sb.s_mount_state |= EXT2_ERROR_FS;		sb->u.ext2_sb.s_es->s_state =			cpu_to_le16(le16_to_cpu(sb->u.ext2_sb.s_es->s_state) | EXT2_ERROR_FS);		mark_buffer_dirty(sb->u.ext2_sb.s_sbh, 1);		sb->s_dirt = 1;	}	va_start (args, fmt);	vsprintf (error_buf, fmt, args);	va_end (args);	/* this is to prevent panic from syncing this filesystem */	if (sb->s_lock)		sb->s_lock=0;	sb->s_flags |= MS_RDONLY;	panic ("EXT2-fs panic (device %s): %s: %s\n",	       bdevname(sb->s_dev), function, error_buf);}void ext2_warning (struct super_block * sb, const char * function,		   const char * fmt, ...){	va_list args;	va_start (args, fmt);	vsprintf (error_buf, fmt, args);	va_end (args);	printk (KERN_WARNING "EXT2-fs warning (device %s): %s: %s\n",		bdevname(sb->s_dev), function, error_buf);}void ext2_put_super (struct super_block * sb){	int db_count;	int i;	if (!(sb->s_flags & MS_RDONLY)) {		sb->u.ext2_sb.s_es->s_state = le16_to_cpu(sb->u.ext2_sb.s_mount_state);		mark_buffer_dirty(sb->u.ext2_sb.s_sbh, 1);	}	db_count = sb->u.ext2_sb.s_db_per_group;	for (i = 0; i < db_count; i++)		if (sb->u.ext2_sb.s_group_desc[i])			brelse (sb->u.ext2_sb.s_group_desc[i]);	kfree_s (sb->u.ext2_sb.s_group_desc,		 db_count * sizeof (struct buffer_head *));	for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)		if (sb->u.ext2_sb.s_inode_bitmap[i])			brelse (sb->u.ext2_sb.s_inode_bitmap[i]);	for (i = 0; i < EXT2_MAX_GROUP_LOADED; i++)		if (sb->u.ext2_sb.s_block_bitmap[i])			brelse (sb->u.ext2_sb.s_block_bitmap[i]);	brelse (sb->u.ext2_sb.s_sbh);	MOD_DEC_USE_COUNT;	return;}static struct super_operations ext2_sops = {	ext2_read_inode,	ext2_write_inode,	ext2_put_inode,	ext2_delete_inode,	ext2_notify_change,	ext2_put_super,	ext2_write_super,	ext2_statfs,	ext2_remount};/* * This function has been shamelessly adapted from the msdos fs */static int parse_options (char * options, unsigned long * sb_block,			  unsigned short *resuid, unsigned short * resgid,			  unsigned long * mount_options){	char * this_char;	char * value;	if (!options)		return 1;	for (this_char = strtok (options, ",");	     this_char != NULL;	     this_char = strtok (NULL, ",")) {		if ((value = strchr (this_char, '=')) != NULL)			*value++ = 0;		if (!strcmp (this_char, "bsddf"))			clear_opt (*mount_options, MINIX_DF);		else if (!strcmp (this_char, "check")) {			if (!value || !*value)				set_opt (*mount_options, CHECK_NORMAL);			else if (!strcmp (value, "none")) {				clear_opt (*mount_options, CHECK_NORMAL);				clear_opt (*mount_options, CHECK_STRICT);			}			else if (!strcmp (value, "normal"))				set_opt (*mount_options, CHECK_NORMAL);			else if (!strcmp (value, "strict")) {				set_opt (*mount_options, CHECK_NORMAL);				set_opt (*mount_options, CHECK_STRICT);			}			else {				printk ("EXT2-fs: Invalid check option: %s\n",					value);				return 0;			}		}		else if (!strcmp (this_char, "debug"))			set_opt (*mount_options, DEBUG);		else if (!strcmp (this_char, "errors")) {			if (!value || !*value) {				printk ("EXT2-fs: the errors option requires "					"an argument");				return 0;			}			if (!strcmp (value, "continue")) {				clear_opt (*mount_options, ERRORS_RO);				clear_opt (*mount_options, ERRORS_PANIC);				set_opt (*mount_options, ERRORS_CONT);			}			else if (!strcmp (value, "remount-ro")) {				clear_opt (*mount_options, ERRORS_CONT);				clear_opt (*mount_options, ERRORS_PANIC);				set_opt (*mount_options, ERRORS_RO);			}			else if (!strcmp (value, "panic")) {				clear_opt (*mount_options, ERRORS_CONT);				clear_opt (*mount_options, ERRORS_RO);				set_opt (*mount_options, ERRORS_PANIC);			}			else {				printk ("EXT2-fs: Invalid errors option: %s\n",					value);				return 0;			}		}		else if (!strcmp (this_char, "grpid") ||			 !strcmp (this_char, "bsdgroups"))			set_opt (*mount_options, GRPID);		else if (!strcmp (this_char, "minixdf"))			set_opt (*mount_options, MINIX_DF);		else if (!strcmp (this_char, "nocheck")) {			clear_opt (*mount_options, CHECK_NORMAL);			clear_opt (*mount_options, CHECK_STRICT);		}		else if (!strcmp (this_char, "nogrpid") ||			 !strcmp (this_char, "sysvgroups"))			clear_opt (*mount_options, GRPID);		else if (!strcmp (this_char, "resgid")) {			if (!value || !*value) {				printk ("EXT2-fs: the resgid option requires "					"an argument");				return 0;			}			*resgid = simple_strtoul (value, &value, 0);			if (*value) {				printk ("EXT2-fs: Invalid resgid option: %s\n",					value);				return 0;			}		}		else if (!strcmp (this_char, "resuid")) {			if (!value || !*value) {				printk ("EXT2-fs: the resuid option requires "					"an argument");				return 0;			}			*resuid = simple_strtoul (value, &value, 0);			if (*value) {				printk ("EXT2-fs: Invalid resuid option: %s\n",					value);				return 0;			}		}		else if (!strcmp (this_char, "sb")) {			if (!value || !*value) {				printk ("EXT2-fs: the sb option requires "					"an argument");				return 0;			}			*sb_block = simple_strtoul (value, &value, 0);			if (*value) {				printk ("EXT2-fs: Invalid sb option: %s\n",					value);				return 0;			}		}		/* Silently ignore the quota options */		else if (!strcmp (this_char, "grpquota")		         || !strcmp (this_char, "noquota")		         || !strcmp (this_char, "quota")		         || !strcmp (this_char, "usrquota"))			/* Don't do anything ;-) */ ;		else {			printk ("EXT2-fs: Unrecognized mount option %s\n", this_char);			return 0;		}	}	return 1;}static void ext2_setup_super (struct super_block * sb,			      struct ext2_super_block * es){	if (le32_to_cpu(es->s_rev_level) > EXT2_MAX_SUPP_REV) {			printk ("EXT2-fs warning: revision level too high, "				"forcing read/only mode\n");			sb->s_flags |= MS_RDONLY;	}	if (!(sb->s_flags & MS_RDONLY)) {		if (!(sb->u.ext2_sb.s_mount_state & EXT2_VALID_FS))			printk ("EXT2-fs warning: mounting unchecked fs, "				"running e2fsck is recommended\n");		else if ((sb->u.ext2_sb.s_mount_state & EXT2_ERROR_FS))			printk ("EXT2-fs warning: mounting fs with errors, "				"running e2fsck is recommended\n");		else if ((__s16) le16_to_cpu(es->s_max_mnt_count) >= 0 &&		         le16_to_cpu(es->s_mnt_count) >=			 (unsigned short) (__s16) le16_to_cpu(es->s_max_mnt_count))			printk ("EXT2-fs warning: maximal mount count reached, "				"running e2fsck is recommended\n");		else if (le32_to_cpu(es->s_checkinterval) &&			(le32_to_cpu(es->s_lastcheck) + le32_to_cpu(es->s_checkinterval) <= CURRENT_TIME))			printk ("EXT2-fs warning: checktime reached, "				"running e2fsck is recommended\n");		es->s_state = cpu_to_le16(le16_to_cpu(es->s_state) & ~EXT2_VALID_FS);		if (!(__s16) le16_to_cpu(es->s_max_mnt_count))			es->s_max_mnt_count = (__s16) cpu_to_le16(EXT2_DFL_MAX_MNT_COUNT);		es->s_mnt_count=cpu_to_le16(le16_to_cpu(es->s_mnt_count) + 1);		es->s_mtime = cpu_to_le32(CURRENT_TIME);		mark_buffer_dirty(sb->u.ext2_sb.s_sbh, 1);		sb->s_dirt = 1;		if (test_opt (sb, DEBUG))			printk ("[EXT II FS %s, %s, bs=%lu, fs=%lu, gc=%lu, "				"bpg=%lu, ipg=%lu, mo=%04lx]\n",				EXT2FS_VERSION, EXT2FS_DATE, sb->s_blocksize,				sb->u.ext2_sb.s_frag_size,				sb->u.ext2_sb.s_groups_count,				EXT2_BLOCKS_PER_GROUP(sb),				EXT2_INODES_PER_GROUP(sb),				sb->u.ext2_sb.s_mount_opt);		if (test_opt (sb, CHECK)) {			ext2_check_blocks_bitmap (sb);			ext2_check_inodes_bitmap (sb);		}	}#if 0 /* ibasket's still have unresolved bugs... -DaveM */	/* [T. Schoebel-Theuer] This limit should be maintained on disk.	 * This is just provisionary.	 */	sb->s_ibasket_max = 100;#endif}static int ext2_check_descriptors (struct super_block * sb){	int i;	int desc_block = 0;	unsigned long block = le32_to_cpu(sb->u.ext2_sb.s_es->s_first_data_block);	struct ext2_group_desc * gdp = NULL;	ext2_debug ("Checking group descriptors");	for (i = 0; i < sb->u.ext2_sb.s_groups_count; i++)	{		if ((i % EXT2_DESC_PER_BLOCK(sb)) == 0)			gdp = (struct ext2_group_desc *) sb->u.ext2_sb.s_group_desc[desc_block++]->b_data;		if (le32_to_cpu(gdp->bg_block_bitmap) < block ||		    le32_to_cpu(gdp->bg_block_bitmap) >= block + EXT2_BLOCKS_PER_GROUP(sb))		{			ext2_error (sb, "ext2_check_descriptors",				    "Block bitmap for group %d"				    " not in group (block %lu)!",				    i, (unsigned long) le32_to_cpu(gdp->bg_block_bitmap));			return 0;		}		if (le32_to_cpu(gdp->bg_inode_bitmap) < block ||		    le32_to_cpu(gdp->bg_inode_bitmap) >= block + EXT2_BLOCKS_PER_GROUP(sb))		{			ext2_error (sb, "ext2_check_descriptors",				    "Inode bitmap for group %d"				    " not in group (block %lu)!",				    i, (unsigned long) le32_to_cpu(gdp->bg_inode_bitmap));			return 0;		}		if (le32_to_cpu(gdp->bg_inode_table) < block ||		    le32_to_cpu(gdp->bg_inode_table) + sb->u.ext2_sb.s_itb_per_group >=		    block + EXT2_BLOCKS_PER_GROUP(sb))		{			ext2_error (sb, "ext2_check_descriptors",				    "Inode table for group %d"				    " not in group (block %lu)!",				    i, (unsigned long) le32_to_cpu(gdp->bg_inode_table));			return 0;		}		block += EXT2_BLOCKS_PER_GROUP(sb);		gdp++;	}	return 1;}#define log2(n) ffz(~(n))struct super_block * ext2_read_super (struct super_block * sb, void * data,				      int silent){	struct buffer_head * bh;	struct ext2_super_block * es;	unsigned long sb_block = 1;	unsigned short resuid = EXT2_DEF_RESUID;	unsigned short resgid = EXT2_DEF_RESGID;	unsigned long logic_sb_block = 1;	unsigned long offset = 0;	kdev_t dev = sb->s_dev;	int blocksize = BLOCK_SIZE;	int hblock;	int db_count;	int i, j;	/*	 * See what the current blocksize for the device is, and	 * use that as the blocksize.  Otherwise (or if the blocksize	 * is smaller than the default) use the default.	 * This is important for devices that have a hardware	 * sectorsize that is larger than the default.	 */	blocksize = get_hardblocksize(dev);	if( blocksize == 0 || blocksize < BLOCK_SIZE )	  {	    blocksize = BLOCK_SIZE;	  }	sb->u.ext2_sb.s_mount_opt = 0;	set_opt (sb->u.ext2_sb.s_mount_opt, CHECK_NORMAL);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?