⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 super.c

📁 elinux jffs初始版本 具体了解JFFS的文件系统!
💻 C
📖 第 1 页 / 共 2 页
字号:
/* *  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 */#include <linux/module.h>#include <stdarg.h>#include <asm/bitops.h>#include <asm/segment.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>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 |= 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) ||	    (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",		       kdevname(sb->s_dev), function, error_buf);	printk (KERN_CRIT "EXT2-fs error (device %s): %s: %s\n",		kdevname(sb->s_dev), function, error_buf);	if (test_opt (sb, ERRORS_RO) ||	    (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 |= 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",	       kdevname(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",		kdevname(sb->s_dev), function, error_buf);}void ext2_put_super (struct super_block * sb){	int db_count;	int i;	lock_super (sb);	if (!(sb->s_flags & MS_RDONLY)) {		sb->u.ext2_sb.s_es->s_state = sb->u.ext2_sb.s_mount_state;		mark_buffer_dirty(sb->u.ext2_sb.s_sbh, 1);	}	sb->s_dev = 0;	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);	unlock_super (sb);	MOD_DEC_USE_COUNT;	return;}static struct super_operations ext2_sops = { 	ext2_read_inode,	NULL,	ext2_write_inode,	ext2_put_inode,	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 (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 (es->s_max_mnt_count >= 0 &&		         es->s_mnt_count >= (unsigned short) es->s_max_mnt_count)			printk ("EXT2-fs warning: maximal mount count reached, "				"running e2fsck is recommended\n");		else if (es->s_checkinterval &&			(es->s_lastcheck + es->s_checkinterval <= CURRENT_TIME))			printk ("EXT2-fs warning: checktime reached, "				"running e2fsck is recommended\n");		es->s_state &= ~EXT2_VALID_FS;		if (!es->s_max_mnt_count)			es->s_max_mnt_count = EXT2_DFL_MAX_MNT_COUNT;		es->s_mnt_count++;		es->s_mtime = 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);		}	}}static int ext2_check_descriptors (struct super_block * sb){	int i;	int desc_block = 0;	unsigned long block = 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 (gdp->bg_block_bitmap < block ||		    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) gdp->bg_block_bitmap);			return 0;		}		if (gdp->bg_inode_bitmap < block ||		    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) gdp->bg_inode_bitmap);			return 0;		}		if (gdp->bg_inode_table < block ||		    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) 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;

⌨️ 快捷键说明

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