Skip to content

Commit

Permalink
ext4: release buffer when checksum failed
Browse files Browse the repository at this point in the history
Commit b0336e8 (ext4: calculate and verify checksums of directory
leaf blocks) and commit dbe8944 (ext4: Calculate and verify checksums
for htree nodes) forget to release buffer when checksum failed, at
some places.

Signed-off-by: Guo Chao <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
Reviewed-by: Darrick J. Wong <[email protected]>
  • Loading branch information
Guo Chao authored and tytso committed Jan 29, 2013
1 parent b06acd3 commit d5ac777
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions fs/ext4/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ static int ext4_readdir(struct file *filp,
"at offset %llu",
(unsigned long long)filp->f_pos);
filp->f_pos += sb->s_blocksize - offset;
brelse(bh);
continue;
}
set_buffer_verified(bh);
Expand Down
12 changes: 10 additions & 2 deletions fs/ext4/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -837,6 +837,7 @@ static int ext4_htree_next_block(struct inode *dir, __u32 hash,
!ext4_dx_csum_verify(dir,
(struct ext4_dir_entry *)bh->b_data)) {
ext4_warning(dir->i_sb, "Node failed checksum");
brelse(bh);
return -EIO;
}
set_buffer_verified(bh);
Expand Down Expand Up @@ -877,8 +878,11 @@ static int htree_dirblock_to_tree(struct file *dir_file,
}

if (!buffer_verified(bh) &&
!ext4_dirent_csum_verify(dir, (struct ext4_dir_entry *)bh->b_data))
!ext4_dirent_csum_verify(dir,
(struct ext4_dir_entry *)bh->b_data)) {
brelse(bh);
return -EIO;
}
set_buffer_verified(bh);

de = (struct ext4_dir_entry_2 *) bh->b_data;
Expand Down Expand Up @@ -1929,8 +1933,10 @@ static int ext4_add_entry(handle_t *handle, struct dentry *dentry,
}
if (!buffer_verified(bh) &&
!ext4_dirent_csum_verify(dir,
(struct ext4_dir_entry *)bh->b_data))
(struct ext4_dir_entry *)bh->b_data)) {
brelse(bh);
return -EIO;
}
set_buffer_verified(bh);
retval = add_dirent_to_buf(handle, dentry, inode, NULL, bh);
if (retval != -ENOSPC) {
Expand Down Expand Up @@ -2492,6 +2498,7 @@ static int empty_dir(struct inode *inode)
(struct ext4_dir_entry *)bh->b_data)) {
EXT4_ERROR_INODE(inode, "checksum error reading directory "
"lblock 0");
brelse(bh);
return -EIO;
}
set_buffer_verified(bh);
Expand Down Expand Up @@ -2536,6 +2543,7 @@ static int empty_dir(struct inode *inode)
(struct ext4_dir_entry *)bh->b_data)) {
EXT4_ERROR_INODE(inode, "checksum error "
"reading directory lblock 0");
brelse(bh);
return -EIO;
}
set_buffer_verified(bh);
Expand Down

0 comments on commit d5ac777

Please sign in to comment.