Skip to content

Commit

Permalink
ocfs2: take inode lock in ocfs2_iop_set/get_acl()
Browse files Browse the repository at this point in the history
This bug in mainline code is pointed out by Mark Fasheh.  When
ocfs2_iop_set_acl() and ocfs2_iop_get_acl() are entered from VFS layer,
inode lock is not held.  This seems to be regression from older kernels.
The patch is to fix that.

Orabug: 20189959
Signed-off-by: Tariq Saeed <[email protected]>
Reviewed-by: Mark Fasheh <[email protected]>
Cc: Joel Becker <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Tariq Saeed authored and torvalds committed Sep 4, 2015
1 parent 3d46a44 commit 743b5f1
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions fs/ocfs2/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,27 +284,41 @@ int ocfs2_set_acl(handle_t *handle,

int ocfs2_iop_set_acl(struct inode *inode, struct posix_acl *acl, int type)
{
return ocfs2_set_acl(NULL, inode, NULL, type, acl, NULL, NULL);
struct buffer_head *bh = NULL;
int status = 0;

status = ocfs2_inode_lock(inode, &bh, 1);
if (status < 0) {
if (status != -ENOENT)
mlog_errno(status);
return status;
}
status = ocfs2_set_acl(NULL, inode, bh, type, acl, NULL, NULL);
ocfs2_inode_unlock(inode, 1);
brelse(bh);
return status;
}

struct posix_acl *ocfs2_iop_get_acl(struct inode *inode, int type)
{
struct ocfs2_super *osb;
struct buffer_head *di_bh = NULL;
struct posix_acl *acl;
int ret = -EAGAIN;
int ret;

osb = OCFS2_SB(inode->i_sb);
if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
return NULL;

ret = ocfs2_read_inode_block(inode, &di_bh);
if (ret < 0)
ret = ocfs2_inode_lock(inode, &di_bh, 0);
if (ret < 0) {
if (ret != -ENOENT)
mlog_errno(ret);
return ERR_PTR(ret);
}

acl = ocfs2_get_acl_nolock(inode, type, di_bh);

ocfs2_inode_unlock(inode, 0);
brelse(di_bh);

return acl;
}

0 comments on commit 743b5f1

Please sign in to comment.