2 * (C) 2005 Andreas Gruenbacher <agruen@suse.de>
4 * This file is released under the GPL.
6 * Generic ACL support for in-memory filesystems.
9 #include <linux/sched.h>
10 #include <linux/gfp.h>
12 #include <linux/generic_acl.h>
13 #include <linux/posix_acl.h>
14 #include <linux/posix_acl_xattr.h>
18 generic_acl_list(struct dentry *dentry, char *list, size_t list_size,
19 const char *name, size_t name_len, int type)
21 struct posix_acl *acl;
25 acl = get_cached_acl(dentry->d_inode, type);
28 posix_acl_release(acl);
32 xname = POSIX_ACL_XATTR_ACCESS;
34 case ACL_TYPE_DEFAULT:
35 xname = POSIX_ACL_XATTR_DEFAULT;
40 size = strlen(xname) + 1;
41 if (list && size <= list_size)
42 memcpy(list, xname, size);
47 generic_acl_get(struct dentry *dentry, const char *name, void *buffer,
48 size_t size, int type)
50 struct posix_acl *acl;
53 if (strcmp(name, "") != 0)
56 acl = get_cached_acl(dentry->d_inode, type);
59 error = posix_acl_to_xattr(acl, buffer, size);
60 posix_acl_release(acl);
66 generic_acl_set(struct dentry *dentry, const char *name, const void *value,
67 size_t size, int flags, int type)
69 struct inode *inode = dentry->d_inode;
70 struct posix_acl *acl = NULL;
73 if (strcmp(name, "") != 0)
75 if (S_ISLNK(inode->i_mode))
77 if (!is_owner_or_cap(inode))
80 acl = posix_acl_from_xattr(value, size);
87 error = posix_acl_valid(acl);
93 error = posix_acl_equiv_mode(acl, &mode);
98 posix_acl_release(acl);
102 case ACL_TYPE_DEFAULT:
103 if (!S_ISDIR(inode->i_mode)) {
110 set_cached_acl(inode, type, acl);
113 posix_acl_release(acl);
118 * generic_acl_init - Take care of acl inheritance at @inode create time
120 * Files created inside a directory with a default ACL inherit the
121 * directory's default ACL.
124 generic_acl_init(struct inode *inode, struct inode *dir)
126 struct posix_acl *acl = NULL;
127 mode_t mode = inode->i_mode;
130 inode->i_mode = mode & ~current_umask();
131 if (!S_ISLNK(inode->i_mode))
132 acl = get_cached_acl(dir, ACL_TYPE_DEFAULT);
134 struct posix_acl *clone;
136 if (S_ISDIR(inode->i_mode)) {
137 clone = posix_acl_clone(acl, GFP_KERNEL);
141 set_cached_acl(inode, ACL_TYPE_DEFAULT, clone);
142 posix_acl_release(clone);
144 clone = posix_acl_clone(acl, GFP_KERNEL);
148 error = posix_acl_create_masq(clone, &mode);
150 inode->i_mode = mode;
152 set_cached_acl(inode, ACL_TYPE_ACCESS, clone);
154 posix_acl_release(clone);
159 posix_acl_release(acl);
164 * generic_acl_chmod - change the access acl of @inode upon chmod()
166 * A chmod also changes the permissions of the owner, group/mask, and
170 generic_acl_chmod(struct inode *inode)
172 struct posix_acl *acl, *clone;
175 if (S_ISLNK(inode->i_mode))
177 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
179 clone = posix_acl_clone(acl, GFP_KERNEL);
180 posix_acl_release(acl);
183 error = posix_acl_chmod_masq(clone, inode->i_mode);
185 set_cached_acl(inode, ACL_TYPE_ACCESS, clone);
186 posix_acl_release(clone);
192 generic_check_acl(struct inode *inode, int mask)
194 struct posix_acl *acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
197 int error = posix_acl_permission(inode, acl, mask);
198 posix_acl_release(acl);
204 const struct xattr_handler generic_acl_access_handler = {
205 .prefix = POSIX_ACL_XATTR_ACCESS,
206 .flags = ACL_TYPE_ACCESS,
207 .list = generic_acl_list,
208 .get = generic_acl_get,
209 .set = generic_acl_set,
212 const struct xattr_handler generic_acl_default_handler = {
213 .prefix = POSIX_ACL_XATTR_DEFAULT,
214 .flags = ACL_TYPE_DEFAULT,
215 .list = generic_acl_list,
216 .get = generic_acl_get,
217 .set = generic_acl_set,