diff options
Diffstat (limited to 'fs/hpfs/super.c')
| -rw-r--r-- | fs/hpfs/super.c | 297 | 
1 files changed, 162 insertions, 135 deletions
diff --git a/fs/hpfs/super.c b/fs/hpfs/super.c index 6c5f01597c3..7cd00d3a7c9 100644 --- a/fs/hpfs/super.c +++ b/fs/hpfs/super.c @@ -13,21 +13,21 @@  #include <linux/statfs.h>  #include <linux/magic.h>  #include <linux/sched.h> -#include <linux/smp_lock.h>  #include <linux/bitmap.h>  #include <linux/slab.h>  /* Mark the filesystem dirty, so that chkdsk checks it when os/2 booted */ -static void mark_dirty(struct super_block *s) +static void mark_dirty(struct super_block *s, int remount)  { -	if (hpfs_sb(s)->sb_chkdsk && !(s->s_flags & MS_RDONLY)) { +	if (hpfs_sb(s)->sb_chkdsk && (remount || !(s->s_flags & MS_RDONLY))) {  		struct buffer_head *bh;  		struct hpfs_spare_block *sb;  		if ((sb = hpfs_map_sector(s, 17, &bh, 0))) {  			sb->dirty = 1;  			sb->old_wrote = 0;  			mark_buffer_dirty(bh); +			sync_dirty_buffer(bh);  			brelse(bh);  		}  	} @@ -41,10 +41,12 @@ static void unmark_dirty(struct super_block *s)  	struct buffer_head *bh;  	struct hpfs_spare_block *sb;  	if (s->s_flags & MS_RDONLY) return; +	sync_blockdev(s->s_bdev);  	if ((sb = hpfs_map_sector(s, 17, &bh, 0))) {  		sb->dirty = hpfs_sb(s)->sb_chkdsk > 1 - hpfs_sb(s)->sb_was_error;  		sb->old_wrote = hpfs_sb(s)->sb_chkdsk >= 2 && !hpfs_sb(s)->sb_was_error;  		mark_buffer_dirty(bh); +		sync_dirty_buffer(bh);  		brelse(bh);  	}  } @@ -60,22 +62,26 @@ void hpfs_error(struct super_block *s, const char *fmt, ...)  	vsnprintf(err_buf, sizeof(err_buf), fmt, args);  	va_end(args); -	printk("HPFS: filesystem error: %s", err_buf); +	pr_err("filesystem error: %s", err_buf);  	if (!hpfs_sb(s)->sb_was_error) {  		if (hpfs_sb(s)->sb_err == 2) { -			printk("; crashing the system because you wanted it\n"); -			mark_dirty(s); +			pr_cont("; crashing the system because you wanted it\n"); +			mark_dirty(s, 0);  			panic("HPFS panic");  		} else if (hpfs_sb(s)->sb_err == 1) { -			if (s->s_flags & MS_RDONLY) printk("; already mounted read-only\n"); +			if (s->s_flags & MS_RDONLY) +				pr_cont("; already mounted read-only\n");  			else { -				printk("; remounting read-only\n"); -				mark_dirty(s); +				pr_cont("; remounting read-only\n"); +				mark_dirty(s, 0);  				s->s_flags |= MS_RDONLY;  			} -		} else if (s->s_flags & MS_RDONLY) printk("; going on - but anything won't be destroyed because it's read-only\n"); -		else printk("; corrupted filesystem mounted read/write - your computer will explode within 20 seconds ... but you wanted it so!\n"); -	} else printk("\n"); +		} else if (s->s_flags & MS_RDONLY) +				pr_cont("; going on - but anything won't be destroyed because it's read-only\n"); +		else +			pr_cont("; corrupted filesystem mounted read/write - your computer will explode within 20 seconds ... but you wanted it so!\n"); +	} else +		pr_cont("\n");  	hpfs_sb(s)->sb_was_error = 1;  } @@ -99,30 +105,35 @@ int hpfs_stop_cycles(struct super_block *s, int key, int *c1, int *c2,  	return 0;  } -static void hpfs_put_super(struct super_block *s) +static void free_sbi(struct hpfs_sb_info *sbi)  { -	struct hpfs_sb_info *sbi = hpfs_sb(s); - -	lock_kernel(); -  	kfree(sbi->sb_cp_table);  	kfree(sbi->sb_bmp_dir); -	unmark_dirty(s); -	s->s_fs_info = NULL;  	kfree(sbi); +} -	unlock_kernel(); +static void lazy_free_sbi(struct rcu_head *rcu) +{ +	free_sbi(container_of(rcu, struct hpfs_sb_info, rcu));  } -unsigned hpfs_count_one_bitmap(struct super_block *s, secno secno) +static void hpfs_put_super(struct super_block *s) +{ +	hpfs_lock(s); +	unmark_dirty(s); +	hpfs_unlock(s); +	call_rcu(&hpfs_sb(s)->rcu, lazy_free_sbi); +} + +static unsigned hpfs_count_one_bitmap(struct super_block *s, secno secno)  {  	struct quad_buffer_head qbh;  	unsigned long *bits;  	unsigned count; -	bits = hpfs_map_4sectors(s, secno, &qbh, 4); +	bits = hpfs_map_4sectors(s, secno, &qbh, 0);  	if (!bits) -		return 0; +		return (unsigned)-1;  	count = bitmap_weight(bits, 2048 * BITS_PER_BYTE);  	hpfs_brelse4(&qbh);  	return count; @@ -133,34 +144,54 @@ static unsigned count_bitmaps(struct super_block *s)  	unsigned n, count, n_bands;  	n_bands = (hpfs_sb(s)->sb_fs_size + 0x3fff) >> 14;  	count = 0; -	for (n = 0; n < n_bands; n++) -		count += hpfs_count_one_bitmap(s, hpfs_sb(s)->sb_bmp_dir[n]); +	for (n = 0; n < COUNT_RD_AHEAD; n++) { +		hpfs_prefetch_bitmap(s, n); +	} +	for (n = 0; n < n_bands; n++) { +		unsigned c; +		hpfs_prefetch_bitmap(s, n + COUNT_RD_AHEAD); +		c = hpfs_count_one_bitmap(s, le32_to_cpu(hpfs_sb(s)->sb_bmp_dir[n])); +		if (c != (unsigned)-1) +			count += c; +	}  	return count;  } +unsigned hpfs_get_free_dnodes(struct super_block *s) +{ +	struct hpfs_sb_info *sbi = hpfs_sb(s); +	if (sbi->sb_n_free_dnodes == (unsigned)-1) { +		unsigned c = hpfs_count_one_bitmap(s, sbi->sb_dmap); +		if (c == (unsigned)-1) +			return 0; +		sbi->sb_n_free_dnodes = c; +	} +	return sbi->sb_n_free_dnodes; +} +  static int hpfs_statfs(struct dentry *dentry, struct kstatfs *buf)  {  	struct super_block *s = dentry->d_sb;  	struct hpfs_sb_info *sbi = hpfs_sb(s);  	u64 id = huge_encode_dev(s->s_bdev->bd_dev); -	lock_kernel(); -	/*if (sbi->sb_n_free == -1) {*/ +	hpfs_lock(s); + +	if (sbi->sb_n_free == (unsigned)-1)  		sbi->sb_n_free = count_bitmaps(s); -		sbi->sb_n_free_dnodes = hpfs_count_one_bitmap(s, sbi->sb_dmap); -	/*}*/ +  	buf->f_type = s->s_magic;  	buf->f_bsize = 512;  	buf->f_blocks = sbi->sb_fs_size;  	buf->f_bfree = sbi->sb_n_free;  	buf->f_bavail = sbi->sb_n_free;  	buf->f_files = sbi->sb_dirband_size / 4; -	buf->f_ffree = sbi->sb_n_free_dnodes; +	buf->f_ffree = hpfs_get_free_dnodes(s);  	buf->f_fsid.val[0] = (u32)id;  	buf->f_fsid.val[1] = (u32)(id >> 32);  	buf->f_namelen = 254; -	unlock_kernel(); +	hpfs_unlock(s);  	return 0;  } @@ -177,17 +208,21 @@ static struct inode *hpfs_alloc_inode(struct super_block *sb)  	return &ei->vfs_inode;  } -static void hpfs_destroy_inode(struct inode *inode) +static void hpfs_i_callback(struct rcu_head *head)  { +	struct inode *inode = container_of(head, struct inode, i_rcu);  	kmem_cache_free(hpfs_inode_cachep, hpfs_i(inode));  } +static void hpfs_destroy_inode(struct inode *inode) +{ +	call_rcu(&inode->i_rcu, hpfs_i_callback); +} +  static void init_once(void *foo)  {  	struct hpfs_inode_info *ei = (struct hpfs_inode_info *) foo; -	mutex_init(&ei->i_mutex); -	mutex_init(&ei->i_parent_mutex);  	inode_init_once(&ei->vfs_inode);  } @@ -205,6 +240,11 @@ static int init_inodecache(void)  static void destroy_inodecache(void)  { +	/* +	 * Make sure all delayed rcu free inodes are flushed before we +	 * destroy cache. +	 */ +	rcu_barrier();  	kmem_cache_destroy(hpfs_inode_cachep);  } @@ -216,7 +256,6 @@ static void destroy_inodecache(void)  enum {  	Opt_help, Opt_uid, Opt_gid, Opt_umask, Opt_case_lower, Opt_case_asis, -	Opt_conv_binary, Opt_conv_text, Opt_conv_auto,  	Opt_check_none, Opt_check_normal, Opt_check_strict,  	Opt_err_cont, Opt_err_ro, Opt_err_panic,  	Opt_eas_no, Opt_eas_ro, Opt_eas_rw, @@ -231,9 +270,6 @@ static const match_table_t tokens = {  	{Opt_umask, "umask=%o"},  	{Opt_case_lower, "case=lower"},  	{Opt_case_asis, "case=asis"}, -	{Opt_conv_binary, "conv=binary"}, -	{Opt_conv_text, "conv=text"}, -	{Opt_conv_auto, "conv=auto"},  	{Opt_check_none, "check=none"},  	{Opt_check_normal, "check=normal"},  	{Opt_check_strict, "check=strict"}, @@ -250,8 +286,8 @@ static const match_table_t tokens = {  	{Opt_err, NULL},  }; -static int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask, -		      int *lowercase, int *conv, int *eas, int *chk, int *errs, +static int parse_opts(char *opts, kuid_t *uid, kgid_t *gid, umode_t *umask, +		      int *lowercase, int *eas, int *chk, int *errs,  		      int *chkdsk, int *timeshift)  {  	char *p; @@ -260,7 +296,7 @@ static int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,  	if (!opts)  		return 1; -	/*printk("Parsing opts: '%s'\n",opts);*/ +	/*pr_info("Parsing opts: '%s'\n",opts);*/  	while ((p = strsep(&opts, ",")) != NULL) {  		substring_t args[MAX_OPT_ARGS]; @@ -275,12 +311,16 @@ static int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,  		case Opt_uid:  			if (match_int(args, &option))  				return 0; -			*uid = option; +			*uid = make_kuid(current_user_ns(), option); +			if (!uid_valid(*uid)) +				return 0;  			break;  		case Opt_gid:  			if (match_int(args, &option))  				return 0; -			*gid = option; +			*gid = make_kgid(current_user_ns(), option); +			if (!gid_valid(*gid)) +				return 0;  			break;  		case Opt_umask:  			if (match_octal(args, &option)) @@ -293,15 +333,6 @@ static int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,  		case Opt_case_asis:  			*lowercase = 0;  			break; -		case Opt_conv_binary: -			*conv = CONV_BINARY; -			break; -		case Opt_conv_text: -			*conv = CONV_TEXT; -			break; -		case Opt_conv_auto: -			*conv = CONV_AUTO; -			break;  		case Opt_check_none:  			*chk = 0;  			break; @@ -360,7 +391,7 @@ static int parse_opts(char *opts, uid_t *uid, gid_t *gid, umode_t *umask,  static inline void hpfs_help(void)  { -	printk("\n\ +	pr_info("\n\  HPFS filesystem options:\n\        help              do not mount and display this text\n\        uid=xxx           set uid of files that don't have uid specified in eas\n\ @@ -368,9 +399,6 @@ HPFS filesystem options:\n\        umask=xxx         set mode of files that don't have mode specified in eas\n\        case=lower        lowercase all files\n\        case=asis         do not lowercase files (default)\n\ -      conv=binary       do not convert CR/LF -> LF (default)\n\ -      conv=auto         convert only files with known text extensions\n\ -      conv=text         convert all files\n\        check=none        no fs checks - kernel may crash on corrupted filesystem\n\        check=normal      do some checks - it should not crash (default)\n\        check=strict      do extra time-consuming checks, used for debugging\n\ @@ -389,27 +417,28 @@ HPFS filesystem options:\n\  static int hpfs_remount_fs(struct super_block *s, int *flags, char *data)  { -	uid_t uid; -	gid_t gid; +	kuid_t uid; +	kgid_t gid;  	umode_t umask; -	int lowercase, conv, eas, chk, errs, chkdsk, timeshift; +	int lowercase, eas, chk, errs, chkdsk, timeshift;  	int o;  	struct hpfs_sb_info *sbi = hpfs_sb(s);  	char *new_opts = kstrdup(data, GFP_KERNEL); +	sync_filesystem(s); +  	*flags |= MS_NOATIME; -	lock_kernel(); -	lock_super(s); +	hpfs_lock(s);  	uid = sbi->sb_uid; gid = sbi->sb_gid;  	umask = 0777 & ~sbi->sb_mode; -	lowercase = sbi->sb_lowercase; conv = sbi->sb_conv; +	lowercase = sbi->sb_lowercase;  	eas = sbi->sb_eas; chk = sbi->sb_chk; chkdsk = sbi->sb_chkdsk;  	errs = sbi->sb_err; timeshift = sbi->sb_timeshift; -	if (!(o = parse_opts(data, &uid, &gid, &umask, &lowercase, &conv, +	if (!(o = parse_opts(data, &uid, &gid, &umask, &lowercase,  	    &eas, &chk, &errs, &chkdsk, ×hift))) { -		printk("HPFS: bad mount options.\n"); +		pr_err("bad mount options.\n");  		goto out_err;  	}  	if (o == 2) { @@ -417,7 +446,7 @@ static int hpfs_remount_fs(struct super_block *s, int *flags, char *data)  		goto out_err;  	}  	if (timeshift != sbi->sb_timeshift) { -		printk("HPFS: timeshift can't be changed using remount.\n"); +		pr_err("timeshift can't be changed using remount.\n");  		goto out_err;  	} @@ -425,21 +454,19 @@ static int hpfs_remount_fs(struct super_block *s, int *flags, char *data)  	sbi->sb_uid = uid; sbi->sb_gid = gid;  	sbi->sb_mode = 0777 & ~umask; -	sbi->sb_lowercase = lowercase; sbi->sb_conv = conv; +	sbi->sb_lowercase = lowercase;  	sbi->sb_eas = eas; sbi->sb_chk = chk; sbi->sb_chkdsk = chkdsk;  	sbi->sb_err = errs; sbi->sb_timeshift = timeshift; -	if (!(*flags & MS_RDONLY)) mark_dirty(s); +	if (!(*flags & MS_RDONLY)) mark_dirty(s, 1);  	replace_mount_options(s, new_opts); -	unlock_super(s); -	unlock_kernel(); +	hpfs_unlock(s);  	return 0;  out_err: -	unlock_super(s); -	unlock_kernel(); +	hpfs_unlock(s);  	kfree(new_opts);  	return -EINVAL;  } @@ -466,10 +493,10 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	struct hpfs_sb_info *sbi;  	struct inode *root; -	uid_t uid; -	gid_t gid; +	kuid_t uid; +	kgid_t gid;  	umode_t umask; -	int lowercase, conv, eas, chk, errs, chkdsk, timeshift; +	int lowercase, eas, chk, errs, chkdsk, timeshift;  	dnode_secno root_dno;  	struct hpfs_dirent *de = NULL; @@ -477,36 +504,30 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	int o; -	lock_kernel(); -  	save_mount_options(s, options);  	sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);  	if (!sbi) { -		unlock_kernel();  		return -ENOMEM;  	}  	s->s_fs_info = sbi; -	sbi->sb_bmp_dir = NULL; -	sbi->sb_cp_table = NULL; - -	mutex_init(&sbi->hpfs_creation_de); +	mutex_init(&sbi->hpfs_mutex); +	hpfs_lock(s);  	uid = current_uid();  	gid = current_gid();  	umask = current_umask();  	lowercase = 0; -	conv = CONV_BINARY;  	eas = 2;  	chk = 1;  	errs = 1;  	chkdsk = 1;  	timeshift = 0; -	if (!(o = parse_opts(options, &uid, &gid, &umask, &lowercase, &conv, +	if (!(o = parse_opts(options, &uid, &gid, &umask, &lowercase,  	    &eas, &chk, &errs, &chkdsk, ×hift))) { -		printk("HPFS: bad mount options.\n"); +		pr_err("bad mount options.\n");  		goto bail0;  	}  	if (o==2) { @@ -522,19 +543,20 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	if (!(spareblock = hpfs_map_sector(s, 17, &bh2, 0))) goto bail3;  	/* Check magics */ -	if (/*bootblock->magic != BB_MAGIC -	    ||*/ superblock->magic != SB_MAGIC -	    || spareblock->magic != SP_MAGIC) { -		if (!silent) printk("HPFS: Bad magic ... probably not HPFS\n"); +	if (/*le16_to_cpu(bootblock->magic) != BB_MAGIC +	    ||*/ le32_to_cpu(superblock->magic) != SB_MAGIC +	    || le32_to_cpu(spareblock->magic) != SP_MAGIC) { +		if (!silent) +			pr_err("Bad magic ... probably not HPFS\n");  		goto bail4;  	}  	/* Check version */  	if (!(s->s_flags & MS_RDONLY) &&  	      superblock->funcversion != 2 && superblock->funcversion != 3) { -		printk("HPFS: Bad version %d,%d. Mount readonly to go around\n", +		pr_err("Bad version %d,%d. Mount readonly to go around\n",  			(int)superblock->version, (int)superblock->funcversion); -		printk("HPFS: please try recent version of HPFS driver at http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi and if it still can't understand this format, contact author - mikulas@artax.karlin.mff.cuni.cz\n"); +		pr_err("please try recent version of HPFS driver at http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi and if it still can't understand this format, contact author - mikulas@artax.karlin.mff.cuni.cz\n");  		goto bail4;  	} @@ -543,20 +565,20 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	/* Fill superblock stuff */  	s->s_magic = HPFS_SUPER_MAGIC;  	s->s_op = &hpfs_sops; - -	sbi->sb_root = superblock->root; -	sbi->sb_fs_size = superblock->n_sectors; -	sbi->sb_bitmaps = superblock->bitmaps; -	sbi->sb_dirband_start = superblock->dir_band_start; -	sbi->sb_dirband_size = superblock->n_dir_band; -	sbi->sb_dmap = superblock->dir_band_bitmap; +	s->s_d_op = &hpfs_dentry_operations; + +	sbi->sb_root = le32_to_cpu(superblock->root); +	sbi->sb_fs_size = le32_to_cpu(superblock->n_sectors); +	sbi->sb_bitmaps = le32_to_cpu(superblock->bitmaps); +	sbi->sb_dirband_start = le32_to_cpu(superblock->dir_band_start); +	sbi->sb_dirband_size = le32_to_cpu(superblock->n_dir_band); +	sbi->sb_dmap = le32_to_cpu(superblock->dir_band_bitmap);  	sbi->sb_uid = uid;  	sbi->sb_gid = gid;  	sbi->sb_mode = 0777 & ~umask;  	sbi->sb_n_free = -1;  	sbi->sb_n_free_dnodes = -1;  	sbi->sb_lowercase = lowercase; -	sbi->sb_conv = conv;  	sbi->sb_eas = eas;  	sbi->sb_chk = chk;  	sbi->sb_chkdsk = chkdsk; @@ -566,15 +588,21 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	sbi->sb_cp_table = NULL;  	sbi->sb_c_bitmap = -1;  	sbi->sb_max_fwd_alloc = 0xffffff; -	 + +	if (sbi->sb_fs_size >= 0x80000000) { +		hpfs_error(s, "invalid size in superblock: %08x", +			(unsigned)sbi->sb_fs_size); +		goto bail4; +	} +  	/* Load bitmap directory */ -	if (!(sbi->sb_bmp_dir = hpfs_load_bitmap_directory(s, superblock->bitmaps))) +	if (!(sbi->sb_bmp_dir = hpfs_load_bitmap_directory(s, le32_to_cpu(superblock->bitmaps))))  		goto bail4;  	/* Check for general fs errors*/  	if (spareblock->dirty && !spareblock->old_wrote) {  		if (errs == 2) { -			printk("HPFS: Improperly stopped, not mounted\n"); +			pr_err("Improperly stopped, not mounted\n");  			goto bail4;  		}  		hpfs_error(s, "improperly stopped"); @@ -588,46 +616,50 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	if (spareblock->hotfixes_used || spareblock->n_spares_used) {  		if (errs >= 2) { -			printk("HPFS: Hotfixes not supported here, try chkdsk\n"); -			mark_dirty(s); +			pr_err("Hotfixes not supported here, try chkdsk\n"); +			mark_dirty(s, 0);  			goto bail4;  		}  		hpfs_error(s, "hotfixes not supported here, try chkdsk"); -		if (errs == 0) printk("HPFS: Proceeding, but your filesystem will be probably corrupted by this driver...\n"); -		else printk("HPFS: This driver may read bad files or crash when operating on disk with hotfixes.\n"); +		if (errs == 0) +			pr_err("Proceeding, but your filesystem will be probably corrupted by this driver...\n"); +		else +			pr_err("This driver may read bad files or crash when operating on disk with hotfixes.\n");  	} -	if (spareblock->n_dnode_spares != spareblock->n_dnode_spares_free) { +	if (le32_to_cpu(spareblock->n_dnode_spares) != le32_to_cpu(spareblock->n_dnode_spares_free)) {  		if (errs >= 2) { -			printk("HPFS: Spare dnodes used, try chkdsk\n"); -			mark_dirty(s); +			pr_err("Spare dnodes used, try chkdsk\n"); +			mark_dirty(s, 0);  			goto bail4;  		}  		hpfs_error(s, "warning: spare dnodes used, try chkdsk"); -		if (errs == 0) printk("HPFS: Proceeding, but your filesystem could be corrupted if you delete files or directories\n"); +		if (errs == 0) +			pr_err("Proceeding, but your filesystem could be corrupted if you delete files or directories\n");  	}  	if (chk) {  		unsigned a; -		if (superblock->dir_band_end - superblock->dir_band_start + 1 != superblock->n_dir_band || -		    superblock->dir_band_end < superblock->dir_band_start || superblock->n_dir_band > 0x4000) { +		if (le32_to_cpu(superblock->dir_band_end) - le32_to_cpu(superblock->dir_band_start) + 1 != le32_to_cpu(superblock->n_dir_band) || +		    le32_to_cpu(superblock->dir_band_end) < le32_to_cpu(superblock->dir_band_start) || le32_to_cpu(superblock->n_dir_band) > 0x4000) {  			hpfs_error(s, "dir band size mismatch: dir_band_start==%08x, dir_band_end==%08x, n_dir_band==%08x", -				superblock->dir_band_start, superblock->dir_band_end, superblock->n_dir_band); +				le32_to_cpu(superblock->dir_band_start), le32_to_cpu(superblock->dir_band_end), le32_to_cpu(superblock->n_dir_band));  			goto bail4;  		}  		a = sbi->sb_dirband_size;  		sbi->sb_dirband_size = 0; -		if (hpfs_chk_sectors(s, superblock->dir_band_start, superblock->n_dir_band, "dir_band") || -		    hpfs_chk_sectors(s, superblock->dir_band_bitmap, 4, "dir_band_bitmap") || -		    hpfs_chk_sectors(s, superblock->bitmaps, 4, "bitmaps")) { -			mark_dirty(s); +		if (hpfs_chk_sectors(s, le32_to_cpu(superblock->dir_band_start), le32_to_cpu(superblock->n_dir_band), "dir_band") || +		    hpfs_chk_sectors(s, le32_to_cpu(superblock->dir_band_bitmap), 4, "dir_band_bitmap") || +		    hpfs_chk_sectors(s, le32_to_cpu(superblock->bitmaps), 4, "bitmaps")) { +			mark_dirty(s, 0);  			goto bail4;  		}  		sbi->sb_dirband_size = a; -	} else printk("HPFS: You really don't want any checks? You are crazy...\n"); +	} else +		pr_err("You really don't want any checks? You are crazy...\n");  	/* Load code page table */ -	if (spareblock->n_code_pages) -		if (!(sbi->sb_cp_table = hpfs_load_code_page(s, spareblock->code_page_dir))) -			printk("HPFS: Warning: code page support is disabled\n"); +	if (le32_to_cpu(spareblock->n_code_pages)) +		if (!(sbi->sb_cp_table = hpfs_load_code_page(s, le32_to_cpu(spareblock->code_page_dir)))) +			pr_err("code page support is disabled\n");  	brelse(bh2);  	brelse(bh1); @@ -639,12 +671,9 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	hpfs_init_inode(root);  	hpfs_read_inode(root);  	unlock_new_inode(root); -	s->s_root = d_alloc_root(root); -	if (!s->s_root) { -		iput(root); +	s->s_root = d_make_root(root); +	if (!s->s_root)  		goto bail0; -	} -	hpfs_set_dentry_operations(s->s_root);  	/*  	 * find the root directory's . pointer & finish filling in the inode @@ -656,13 +685,13 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  	if (!de)  		hpfs_error(s, "unable to find root dir");  	else { -		root->i_atime.tv_sec = local_to_gmt(s, de->read_date); +		root->i_atime.tv_sec = local_to_gmt(s, le32_to_cpu(de->read_date));  		root->i_atime.tv_nsec = 0; -		root->i_mtime.tv_sec = local_to_gmt(s, de->write_date); +		root->i_mtime.tv_sec = local_to_gmt(s, le32_to_cpu(de->write_date));  		root->i_mtime.tv_nsec = 0; -		root->i_ctime.tv_sec = local_to_gmt(s, de->creation_date); +		root->i_ctime.tv_sec = local_to_gmt(s, le32_to_cpu(de->creation_date));  		root->i_ctime.tv_nsec = 0; -		hpfs_i(root)->i_ea_size = de->ea_size; +		hpfs_i(root)->i_ea_size = le32_to_cpu(de->ea_size);  		hpfs_i(root)->i_parent_dir = root->i_ino;  		if (root->i_size == -1)  			root->i_size = 2048; @@ -670,7 +699,7 @@ static int hpfs_fill_super(struct super_block *s, void *options, int silent)  			root->i_blocks = 5;  		hpfs_brelse4(&qbh);  	} -	unlock_kernel(); +	hpfs_unlock(s);  	return 0;  bail4:	brelse(bh2); @@ -678,11 +707,8 @@ bail3:	brelse(bh1);  bail2:	brelse(bh0);  bail1:  bail0: -	kfree(sbi->sb_bmp_dir); -	kfree(sbi->sb_cp_table); -	s->s_fs_info = NULL; -	kfree(sbi); -	unlock_kernel(); +	hpfs_unlock(s); +	free_sbi(sbi);  	return -EINVAL;  } @@ -699,6 +725,7 @@ static struct file_system_type hpfs_fs_type = {  	.kill_sb	= kill_block_super,  	.fs_flags	= FS_REQUIRES_DEV,  }; +MODULE_ALIAS_FS("hpfs");  static int __init init_hpfs_fs(void)  {  | 
