aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext3/xattr.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-02-05 16:50:15 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2004-02-05 16:50:15 -0800
commit1448491581e6b28b5e607fbe78207e3bdac779b6 (patch)
tree2aa4d7ee03677c34ef14201b279518a675cb7861 /fs/ext3/xattr.c
parent389f24aa525f2fd0d386858bfaa5d46c5a7c6a3f (diff)
downloadhistory-1448491581e6b28b5e607fbe78207e3bdac779b6.tar.gz
[PATCH] ext2/3: incorrect increment of i_blocks when keeping the same xattr block
From: Andreas Gruenbacher <agruen@suse.de> Here is a fix for extended attributes on ext2 and ext3, reported by Stephen Tweedie <sct@redhat.com>. From: Stephen Tweedie <sct@redhat.com>: When you have an EA block that is shared between multiple inodes; AND you then change an attribute in that on one inode, AND the new attribute value is the same as the old, then xattr computes the new EA block, finds it still in the cache, bumps the reference count on it (and the i_blocks field on the inode, incidentally), and leaves it incremented because we haven't changed EA block so there's no need to drop the refcount on the old block. So *every* time you have more than one inode sharing an EA block and you perform an identical write to an EA, you get a leak on both i_blocks and the EA refcount. This is a big problem for symlinks, which rely on correct i_blocks accounting to determine the difference between fast and slow symlinks. With the leak, you end up thinking that a fast symlink (ie. one small enough to be stored in the inode direct blocks) is slow, so you dereference the ascii contents of the symlink as if they were a disk block address. That typically results in EIO all over the place.
Diffstat (limited to 'fs/ext3/xattr.c')
-rw-r--r--fs/ext3/xattr.c37
1 files changed, 19 insertions, 18 deletions
diff --git a/fs/ext3/xattr.c b/fs/ext3/xattr.c
index 323e79729b9a1d..97b74fed688d20 100644
--- a/fs/ext3/xattr.c
+++ b/fs/ext3/xattr.c
@@ -753,25 +753,26 @@ ext3_xattr_set_handle2(handle_t *handle, struct inode *inode,
if (header) {
new_bh = ext3_xattr_cache_find(handle, inode, header, &credits);
if (new_bh) {
- /*
- * We found an identical block in the cache. The
- * block returned is locked. The old block will
- * be released after updating the inode.
- */
- ea_bdebug(new_bh, "%s block %lu",
- (old_bh == new_bh) ? "keeping" : "reusing",
- (unsigned long) new_bh->b_blocknr);
-
- error = -EDQUOT;
- if (DQUOT_ALLOC_BLOCK(inode, 1)) {
- unlock_buffer(new_bh);
- journal_release_buffer(handle, new_bh, credits);
- goto cleanup;
+ /* We found an identical block in the cache. */
+ if (new_bh == old_bh)
+ ea_bdebug(new_bh, "keeping this block");
+ else {
+ /* The old block is released after updating
+ the inode. */
+ ea_bdebug(new_bh, "reusing block");
+
+ error = -EDQUOT;
+ if (DQUOT_ALLOC_BLOCK(inode, 1)) {
+ unlock_buffer(new_bh);
+ journal_release_buffer(handle, new_bh,
+ credits);
+ goto cleanup;
+ }
+ HDR(new_bh)->h_refcount = cpu_to_le32(1 +
+ le32_to_cpu(HDR(new_bh)->h_refcount));
+ ea_bdebug(new_bh, "refcount now=%d",
+ le32_to_cpu(HDR(new_bh)->h_refcount));
}
- HDR(new_bh)->h_refcount = cpu_to_le32(
- le32_to_cpu(HDR(new_bh)->h_refcount) + 1);
- ea_bdebug(new_bh, "refcount now=%d",
- le32_to_cpu(HDR(new_bh)->h_refcount));
unlock_buffer(new_bh);
} else if (old_bh && header == HDR(old_bh)) {
/* Keep this block. No need to lock the block as we