diff options
Diffstat (limited to 'fs/hfsplus/extents.c')
| -rw-r--r-- | fs/hfsplus/extents.c | 216 | 
1 files changed, 147 insertions, 69 deletions
diff --git a/fs/hfsplus/extents.c b/fs/hfsplus/extents.c index 0c9cb1820a5..feca524ce2a 100644 --- a/fs/hfsplus/extents.c +++ b/fs/hfsplus/extents.c @@ -83,7 +83,8 @@ static u32 hfsplus_ext_lastblock(struct hfsplus_extent *ext)  	return be32_to_cpu(ext->start_block) + be32_to_cpu(ext->block_count);  } -static void __hfsplus_ext_write_extent(struct inode *inode, struct hfs_find_data *fd) +static int __hfsplus_ext_write_extent(struct inode *inode, +		struct hfs_find_data *fd)  {  	struct hfsplus_inode_info *hip = HFSPLUS_I(inode);  	int res; @@ -94,38 +95,57 @@ static void __hfsplus_ext_write_extent(struct inode *inode, struct hfs_find_data  			      HFSPLUS_IS_RSRC(inode) ?  				HFSPLUS_TYPE_RSRC : HFSPLUS_TYPE_DATA); -	res = hfs_brec_find(fd); -	if (hip->flags & HFSPLUS_FLG_EXT_NEW) { +	res = hfs_brec_find(fd, hfs_find_rec_by_key); +	if (hip->extent_state & HFSPLUS_EXT_NEW) {  		if (res != -ENOENT) -			return; +			return res;  		hfs_brec_insert(fd, hip->cached_extents,  				sizeof(hfsplus_extent_rec)); -		hip->flags &= ~(HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW); +		hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);  	} else {  		if (res) -			return; +			return res;  		hfs_bnode_write(fd->bnode, hip->cached_extents,  				fd->entryoffset, fd->entrylength); -		hip->flags &= ~HFSPLUS_FLG_EXT_DIRTY; +		hip->extent_state &= ~HFSPLUS_EXT_DIRTY;  	} + +	/* +	 * We can't just use hfsplus_mark_inode_dirty here, because we +	 * also get called from hfsplus_write_inode, which should not +	 * redirty the inode.  Instead the callers have to be careful +	 * to explicily mark the inode dirty, too. +	 */ +	set_bit(HFSPLUS_I_EXT_DIRTY, &hip->flags); + +	return 0;  } -static void hfsplus_ext_write_extent_locked(struct inode *inode) +static int hfsplus_ext_write_extent_locked(struct inode *inode)  { -	if (HFSPLUS_I(inode)->flags & HFSPLUS_FLG_EXT_DIRTY) { +	int res = 0; + +	if (HFSPLUS_I(inode)->extent_state & HFSPLUS_EXT_DIRTY) {  		struct hfs_find_data fd; -		hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd); -		__hfsplus_ext_write_extent(inode, &fd); +		res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd); +		if (res) +			return res; +		res = __hfsplus_ext_write_extent(inode, &fd);  		hfs_find_exit(&fd);  	} +	return res;  } -void hfsplus_ext_write_extent(struct inode *inode) +int hfsplus_ext_write_extent(struct inode *inode)  { +	int res; +  	mutex_lock(&HFSPLUS_I(inode)->extents_lock); -	hfsplus_ext_write_extent_locked(inode); +	res = hfsplus_ext_write_extent_locked(inode);  	mutex_unlock(&HFSPLUS_I(inode)->extents_lock); + +	return res;  }  static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd, @@ -136,7 +156,7 @@ static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,  	hfsplus_ext_build_key(fd->search_key, cnid, block, type);  	fd->key->ext.cnid = 0; -	res = hfs_brec_find(fd); +	res = hfs_brec_find(fd, hfs_find_rec_by_key);  	if (res && res != -ENOENT)  		return res;  	if (fd->key->ext.cnid != fd->search_key->ext.cnid || @@ -144,19 +164,24 @@ static inline int __hfsplus_ext_read_extent(struct hfs_find_data *fd,  		return -ENOENT;  	if (fd->entrylength != sizeof(hfsplus_extent_rec))  		return -EIO; -	hfs_bnode_read(fd->bnode, extent, fd->entryoffset, sizeof(hfsplus_extent_rec)); +	hfs_bnode_read(fd->bnode, extent, fd->entryoffset, +		sizeof(hfsplus_extent_rec));  	return 0;  } -static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd, struct inode *inode, u32 block) +static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd, +		struct inode *inode, u32 block)  {  	struct hfsplus_inode_info *hip = HFSPLUS_I(inode);  	int res;  	WARN_ON(!mutex_is_locked(&hip->extents_lock)); -	if (hip->flags & HFSPLUS_FLG_EXT_DIRTY) -		__hfsplus_ext_write_extent(inode, fd); +	if (hip->extent_state & HFSPLUS_EXT_DIRTY) { +		res = __hfsplus_ext_write_extent(inode, fd); +		if (res) +			return res; +	}  	res = __hfsplus_ext_read_extent(fd, hip->cached_extents, inode->i_ino,  					block, HFSPLUS_IS_RSRC(inode) ? @@ -164,10 +189,11 @@ static inline int __hfsplus_ext_cache_extent(struct hfs_find_data *fd, struct in  						HFSPLUS_TYPE_DATA);  	if (!res) {  		hip->cached_start = be32_to_cpu(fd->key->ext.start_block); -		hip->cached_blocks = hfsplus_ext_block_count(hip->cached_extents); +		hip->cached_blocks = +			hfsplus_ext_block_count(hip->cached_extents);  	} else {  		hip->cached_start = hip->cached_blocks = 0; -		hip->flags &= ~(HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW); +		hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);  	}  	return res;  } @@ -182,9 +208,11 @@ static int hfsplus_ext_read_extent(struct inode *inode, u32 block)  	    block < hip->cached_start + hip->cached_blocks)  		return 0; -	hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd); -	res = __hfsplus_ext_cache_extent(&fd, inode, block); -	hfs_find_exit(&fd); +	res = hfs_find_init(HFSPLUS_SB(inode->i_sb)->ext_tree, &fd); +	if (!res) { +		res = __hfsplus_ext_cache_extent(&fd, inode, block); +		hfs_find_exit(&fd); +	}  	return res;  } @@ -197,17 +225,17 @@ int hfsplus_get_block(struct inode *inode, sector_t iblock,  	struct hfsplus_inode_info *hip = HFSPLUS_I(inode);  	int res = -EIO;  	u32 ablock, dblock, mask; -	int shift; +	sector_t sector; +	int was_dirty = 0;  	/* Convert inode block to disk allocation block */ -	shift = sbi->alloc_blksz_shift - sb->s_blocksize_bits;  	ablock = iblock >> sbi->fs_shift;  	if (iblock >= hip->fs_blocks) {  		if (iblock > hip->fs_blocks || !create)  			return -EIO;  		if (ablock >= hip->alloc_blocks) { -			res = hfsplus_file_extend(inode); +			res = hfsplus_file_extend(inode, false);  			if (res)  				return res;  		} @@ -223,27 +251,39 @@ int hfsplus_get_block(struct inode *inode, sector_t iblock,  		return -EIO;  	mutex_lock(&hip->extents_lock); + +	/* +	 * hfsplus_ext_read_extent will write out a cached extent into +	 * the extents btree.  In that case we may have to mark the inode +	 * dirty even for a pure read of an extent here. +	 */ +	was_dirty = (hip->extent_state & HFSPLUS_EXT_DIRTY);  	res = hfsplus_ext_read_extent(inode, ablock); -	if (!res) { -		dblock = hfsplus_ext_find_block(hip->cached_extents, -						ablock - hip->cached_start); -	} else { +	if (res) {  		mutex_unlock(&hip->extents_lock);  		return -EIO;  	} +	dblock = hfsplus_ext_find_block(hip->cached_extents, +					ablock - hip->cached_start);  	mutex_unlock(&hip->extents_lock);  done: -	dprint(DBG_EXTENT, "get_block(%lu): %llu - %u\n", inode->i_ino, (long long)iblock, dblock); +	hfs_dbg(EXTENT, "get_block(%lu): %llu - %u\n", +		inode->i_ino, (long long)iblock, dblock); +  	mask = (1 << sbi->fs_shift) - 1; -	map_bh(bh_result, sb, (dblock << sbi->fs_shift) + sbi->blockoffset + (iblock & mask)); +	sector = ((sector_t)dblock << sbi->fs_shift) + +		  sbi->blockoffset + (iblock & mask); +	map_bh(bh_result, sb, sector); +  	if (create) {  		set_buffer_new(bh_result);  		hip->phys_size += sb->s_blocksize;  		hip->fs_blocks++;  		inode_add_bytes(inode, sb->s_blocksize); -		mark_inode_dirty(inode);  	} +	if (create || was_dirty) +		mark_inode_dirty(inode);  	return 0;  } @@ -251,11 +291,12 @@ static void hfsplus_dump_extent(struct hfsplus_extent *extent)  {  	int i; -	dprint(DBG_EXTENT, "   "); +	hfs_dbg(EXTENT, "   ");  	for (i = 0; i < 8; i++) -		dprint(DBG_EXTENT, " %u:%u", be32_to_cpu(extent[i].start_block), -				 be32_to_cpu(extent[i].block_count)); -	dprint(DBG_EXTENT, "\n"); +		hfs_dbg_cont(EXTENT, " %u:%u", +			     be32_to_cpu(extent[i].start_block), +			     be32_to_cpu(extent[i].block_count)); +	hfs_dbg_cont(EXTENT, "\n");  }  static int hfsplus_add_extent(struct hfsplus_extent *extent, u32 offset, @@ -292,6 +333,7 @@ static int hfsplus_free_extents(struct super_block *sb,  {  	u32 count, start;  	int i; +	int err = 0;  	hfsplus_dump_extent(extent);  	for (i = 0; i < 8; extent++, i++) { @@ -308,25 +350,41 @@ found:  	for (;;) {  		start = be32_to_cpu(extent->start_block);  		if (count <= block_nr) { -			hfsplus_block_free(sb, start, count); +			err = hfsplus_block_free(sb, start, count); +			if (err) { +				pr_err("can't free extent\n"); +				hfs_dbg(EXTENT, " start: %u count: %u\n", +					start, count); +			}  			extent->block_count = 0;  			extent->start_block = 0;  			block_nr -= count;  		} else {  			count -= block_nr; -			hfsplus_block_free(sb, start + count, block_nr); +			err = hfsplus_block_free(sb, start + count, block_nr); +			if (err) { +				pr_err("can't free extent\n"); +				hfs_dbg(EXTENT, " start: %u count: %u\n", +					start, count); +			}  			extent->block_count = cpu_to_be32(count);  			block_nr = 0;  		} -		if (!block_nr || !i) -			return 0; +		if (!block_nr || !i) { +			/* +			 * Try to free all extents and +			 * return only last error +			 */ +			return err; +		}  		i--;  		extent--;  		count = be32_to_cpu(extent->block_count);  	}  } -int hfsplus_free_fork(struct super_block *sb, u32 cnid, struct hfsplus_fork_raw *fork, int type) +int hfsplus_free_fork(struct super_block *sb, u32 cnid, +		struct hfsplus_fork_raw *fork, int type)  {  	struct hfs_find_data fd;  	hfsplus_extent_rec ext_entry; @@ -347,7 +405,9 @@ int hfsplus_free_fork(struct super_block *sb, u32 cnid, struct hfsplus_fork_raw  	if (total_blocks == blocks)  		return 0; -	hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd); +	res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd); +	if (res) +		return res;  	do {  		res = __hfsplus_ext_read_extent(&fd, ext_entry, cnid,  						total_blocks, type); @@ -365,7 +425,7 @@ int hfsplus_free_fork(struct super_block *sb, u32 cnid, struct hfsplus_fork_raw  	return res;  } -int hfsplus_file_extend(struct inode *inode) +int hfsplus_file_extend(struct inode *inode, bool zeroout)  {  	struct super_block *sb = inode->i_sb;  	struct hfsplus_sb_info *sbi = HFSPLUS_SB(sb); @@ -375,10 +435,10 @@ int hfsplus_file_extend(struct inode *inode)  	if (sbi->alloc_file->i_size * 8 <  	    sbi->total_blocks - sbi->free_blocks + 8) { -		// extend alloc file -		printk(KERN_ERR "hfs: extend alloc file! (%Lu,%u,%u)\n", -				sbi->alloc_file->i_size * 8, -				sbi->total_blocks, sbi->free_blocks); +		/* extend alloc file */ +		pr_err("extend alloc file! (%llu,%u,%u)\n", +		       sbi->alloc_file->i_size * 8, +		       sbi->total_blocks, sbi->free_blocks);  		return -ENOSPC;  	} @@ -402,11 +462,17 @@ int hfsplus_file_extend(struct inode *inode)  		}  	} -	dprint(DBG_EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len); +	if (zeroout) { +		res = sb_issue_zeroout(sb, start, len, GFP_NOFS); +		if (res) +			goto out; +	} + +	hfs_dbg(EXTENT, "extend %lu: %u,%u\n", inode->i_ino, start, len);  	if (hip->alloc_blocks <= hip->first_blocks) {  		if (!hip->first_blocks) { -			dprint(DBG_EXTENT, "first extents\n"); +			hfs_dbg(EXTENT, "first extents\n");  			/* no extents yet */  			hip->first_extents[0].start_block = cpu_to_be32(start);  			hip->first_extents[0].block_count = cpu_to_be32(len); @@ -429,28 +495,32 @@ int hfsplus_file_extend(struct inode *inode)  					 start, len);  		if (!res) {  			hfsplus_dump_extent(hip->cached_extents); -			hip->flags |= HFSPLUS_FLG_EXT_DIRTY; +			hip->extent_state |= HFSPLUS_EXT_DIRTY;  			hip->cached_blocks += len;  		} else if (res == -ENOSPC)  			goto insert_extent;  	}  out: -	mutex_unlock(&hip->extents_lock);  	if (!res) {  		hip->alloc_blocks += len; -		mark_inode_dirty(inode); +		mutex_unlock(&hip->extents_lock); +		hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY); +		return 0;  	} +	mutex_unlock(&hip->extents_lock);  	return res;  insert_extent: -	dprint(DBG_EXTENT, "insert new extent\n"); -	hfsplus_ext_write_extent_locked(inode); +	hfs_dbg(EXTENT, "insert new extent\n"); +	res = hfsplus_ext_write_extent_locked(inode); +	if (res) +		goto out;  	memset(hip->cached_extents, 0, sizeof(hfsplus_extent_rec));  	hip->cached_extents[0].start_block = cpu_to_be32(start);  	hip->cached_extents[0].block_count = cpu_to_be32(len);  	hfsplus_dump_extent(hip->cached_extents); -	hip->flags |= HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW; +	hip->extent_state |= HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW;  	hip->cached_start = hip->alloc_blocks;  	hip->cached_blocks = len; @@ -466,22 +536,22 @@ void hfsplus_file_truncate(struct inode *inode)  	u32 alloc_cnt, blk_cnt, start;  	int res; -	dprint(DBG_INODE, "truncate: %lu, %Lu -> %Lu\n", +	hfs_dbg(INODE, "truncate: %lu, %llu -> %llu\n",  		inode->i_ino, (long long)hip->phys_size, inode->i_size);  	if (inode->i_size > hip->phys_size) {  		struct address_space *mapping = inode->i_mapping;  		struct page *page;  		void *fsdata; -		u32 size = inode->i_size; -		int res; +		loff_t size = inode->i_size;  		res = pagecache_write_begin(NULL, mapping, size, 0,  						AOP_FLAG_UNINTERRUPTIBLE,  						&page, &fsdata);  		if (res)  			return; -		res = pagecache_write_end(NULL, mapping, size, 0, 0, page, fsdata); +		res = pagecache_write_end(NULL, mapping, size, +			0, 0, page, fsdata);  		if (res < 0)  			return;  		mark_inode_dirty(inode); @@ -491,12 +561,19 @@ void hfsplus_file_truncate(struct inode *inode)  	blk_cnt = (inode->i_size + HFSPLUS_SB(sb)->alloc_blksz - 1) >>  			HFSPLUS_SB(sb)->alloc_blksz_shift; + +	mutex_lock(&hip->extents_lock); +  	alloc_cnt = hip->alloc_blocks;  	if (blk_cnt == alloc_cnt) -		goto out; +		goto out_unlock; -	mutex_lock(&hip->extents_lock); -	hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd); +	res = hfs_find_init(HFSPLUS_SB(sb)->ext_tree, &fd); +	if (res) { +		mutex_unlock(&hip->extents_lock); +		/* XXX: We lack error handling of hfsplus_file_truncate() */ +		return; +	}  	while (1) {  		if (alloc_cnt == hip->first_blocks) {  			hfsplus_free_extents(sb, hip->first_extents, @@ -513,21 +590,22 @@ void hfsplus_file_truncate(struct inode *inode)  				     alloc_cnt - start, alloc_cnt - blk_cnt);  		hfsplus_dump_extent(hip->cached_extents);  		if (blk_cnt > start) { -			hip->flags |= HFSPLUS_FLG_EXT_DIRTY; +			hip->extent_state |= HFSPLUS_EXT_DIRTY;  			break;  		}  		alloc_cnt = start;  		hip->cached_start = hip->cached_blocks = 0; -		hip->flags &= ~(HFSPLUS_FLG_EXT_DIRTY | HFSPLUS_FLG_EXT_NEW); +		hip->extent_state &= ~(HFSPLUS_EXT_DIRTY | HFSPLUS_EXT_NEW);  		hfs_brec_remove(&fd);  	}  	hfs_find_exit(&fd); -	mutex_unlock(&hip->extents_lock);  	hip->alloc_blocks = blk_cnt; -out: +out_unlock: +	mutex_unlock(&hip->extents_lock);  	hip->phys_size = inode->i_size; -	hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> sb->s_blocksize_bits; +	hip->fs_blocks = (inode->i_size + sb->s_blocksize - 1) >> +		sb->s_blocksize_bits;  	inode_set_bytes(inode, hip->fs_blocks << sb->s_blocksize_bits); -	mark_inode_dirty(inode); +	hfsplus_mark_inode_dirty(inode, HFSPLUS_I_ALLOC_DIRTY);  }  | 
