2 * FUSE: Filesystem in Userspace
5 * This program can be distributed under the terms of the GNU GPL.
6 * See the file COPYING.
11 #include <linux/posix_acl.h>
12 #include <linux/posix_acl_xattr.h>
14 struct posix_acl *fuse_get_acl(struct inode *inode, int type)
16 struct fuse_conn *fc = get_fuse_conn(inode);
20 struct posix_acl *acl;
22 if (fuse_is_bad(inode))
25 if (!fc->posix_acl || fc->no_getxattr)
28 if (type == ACL_TYPE_ACCESS)
29 name = XATTR_NAME_POSIX_ACL_ACCESS;
30 else if (type == ACL_TYPE_DEFAULT)
31 name = XATTR_NAME_POSIX_ACL_DEFAULT;
33 return ERR_PTR(-EOPNOTSUPP);
35 value = kmalloc(PAGE_SIZE, GFP_KERNEL);
37 return ERR_PTR(-ENOMEM);
38 size = fuse_getxattr(inode, name, value, PAGE_SIZE);
40 acl = posix_acl_from_xattr(fc->user_ns, value, size);
41 else if ((size == 0) || (size == -ENODATA) ||
42 (size == -EOPNOTSUPP && fc->no_getxattr))
44 else if (size == -ERANGE)
45 acl = ERR_PTR(-E2BIG);
53 int fuse_set_acl(struct user_namespace *mnt_userns, struct inode *inode,
54 struct posix_acl *acl, int type)
56 struct fuse_conn *fc = get_fuse_conn(inode);
60 if (fuse_is_bad(inode))
63 if (!fc->posix_acl || fc->no_setxattr)
66 if (type == ACL_TYPE_ACCESS)
67 name = XATTR_NAME_POSIX_ACL_ACCESS;
68 else if (type == ACL_TYPE_DEFAULT)
69 name = XATTR_NAME_POSIX_ACL_DEFAULT;
75 * Fuse userspace is responsible for updating access
76 * permissions in the inode, if needed. fuse_setxattr
77 * invalidates the inode attributes, which will force
78 * them to be refreshed the next time they are used,
79 * and it also updates i_ctime.
81 size_t size = posix_acl_xattr_size(acl->a_count);
87 value = kmalloc(size, GFP_KERNEL);
91 ret = posix_acl_to_xattr(fc->user_ns, acl, value, size);
97 ret = fuse_setxattr(inode, name, value, size, 0);
100 ret = fuse_removexattr(inode, name);
102 forget_all_cached_acls(inode);
103 fuse_invalidate_attr(inode);