Skip to content

Commit

Permalink
ocfs2: add ocfs2_acl_chmod
Browse files Browse the repository at this point in the history
This function is used to update acl xattrs during file mode changes.

Signed-off-by: Tiger Yang <tiger.yang@oracle.com>
Signed-off-by: Mark Fasheh <mfasheh@suse.com>
  • Loading branch information
Tiger Yang authored and Mark Fasheh committed Jan 5, 2009
1 parent 23fc270 commit 060bc66
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
27 changes: 27 additions & 0 deletions fs/ocfs2/acl.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,33 @@ int ocfs2_check_acl(struct inode *inode, int mask)
return -EAGAIN;
}

int ocfs2_acl_chmod(struct inode *inode)
{
struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
struct posix_acl *acl, *clone;
int ret;

if (S_ISLNK(inode->i_mode))
return -EOPNOTSUPP;

if (!(osb->s_mount_opt & OCFS2_MOUNT_POSIX_ACL))
return 0;

acl = ocfs2_get_acl(inode, ACL_TYPE_ACCESS);
if (IS_ERR(acl) || !acl)
return PTR_ERR(acl);
clone = posix_acl_clone(acl, GFP_KERNEL);
posix_acl_release(acl);
if (!clone)
return -ENOMEM;
ret = posix_acl_chmod_masq(clone, inode->i_mode);
if (!ret)
ret = ocfs2_set_acl(NULL, inode, NULL, ACL_TYPE_ACCESS,
clone, NULL, NULL);
posix_acl_release(clone);
return ret;
}

static size_t ocfs2_xattr_list_acl_access(struct inode *inode,
char *list,
size_t list_len,
Expand Down
5 changes: 5 additions & 0 deletions fs/ocfs2/acl.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@ struct ocfs2_acl_entry {
#ifdef CONFIG_OCFS2_FS_POSIX_ACL

extern int ocfs2_check_acl(struct inode *, int);
extern int ocfs2_acl_chmod(struct inode *);

#else /* CONFIG_OCFS2_FS_POSIX_ACL*/

#define ocfs2_check_acl NULL
static inline int ocfs2_acl_chmod(struct inode *inode)
{
return 0;
}

#endif /* CONFIG_OCFS2_FS_POSIX_ACL*/

Expand Down
6 changes: 6 additions & 0 deletions fs/ocfs2/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -990,6 +990,12 @@ int ocfs2_setattr(struct dentry *dentry, struct iattr *attr)
bail:
brelse(bh);

if (!status && attr->ia_valid & ATTR_MODE) {
status = ocfs2_acl_chmod(inode);
if (status < 0)
mlog_errno(status);
}

mlog_exit(status);
return status;
}
Expand Down

0 comments on commit 060bc66

Please sign in to comment.