|
@@ -245,6 +245,33 @@ int ocfs2_check_acl(struct inode *inode, int mask)
|
|
return -EAGAIN;
|
|
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,
|
|
static size_t ocfs2_xattr_list_acl_access(struct inode *inode,
|
|
char *list,
|
|
char *list,
|
|
size_t list_len,
|
|
size_t list_len,
|