2 * Copyright IBM Corporation, 2010
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 #include <linux/module.h>
17 #include <net/9p/9p.h>
18 #include <net/9p/client.h>
19 #include <linux/slab.h>
20 #include <linux/sched.h>
21 #include <linux/posix_acl_xattr.h>
27 static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
31 struct posix_acl *acl = NULL;
33 size = v9fs_fid_xattr_get(fid, name, NULL, 0);
35 value = kzalloc(size, GFP_NOFS);
37 return ERR_PTR(-ENOMEM);
38 size = v9fs_fid_xattr_get(fid, name, value, size);
40 acl = posix_acl_from_xattr(value, size);
44 } else if (size == -ENODATA || size == 0 ||
45 size == -ENOSYS || size == -EOPNOTSUPP) {
55 int v9fs_get_acl(struct inode *inode, struct p9_fid *fid)
58 struct posix_acl *pacl, *dacl;
59 struct v9fs_session_info *v9ses;
61 v9ses = v9fs_inode2v9ses(inode);
62 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
63 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
64 set_cached_acl(inode, ACL_TYPE_DEFAULT, NULL);
65 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
68 /* get the default/access acl values and cache them */
69 dacl = __v9fs_get_acl(fid, POSIX_ACL_XATTR_DEFAULT);
70 pacl = __v9fs_get_acl(fid, POSIX_ACL_XATTR_ACCESS);
72 if (!IS_ERR(dacl) && !IS_ERR(pacl)) {
73 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
74 set_cached_acl(inode, ACL_TYPE_ACCESS, pacl);
79 posix_acl_release(dacl);
82 posix_acl_release(pacl);
87 static struct posix_acl *v9fs_get_cached_acl(struct inode *inode, int type)
89 struct posix_acl *acl;
91 * 9p Always cache the acl value when
92 * instantiating the inode (v9fs_inode_from_fid)
94 acl = get_cached_acl(inode, type);
95 BUG_ON(acl == ACL_NOT_CACHED);
99 struct posix_acl *v9fs_iop_get_acl(struct inode *inode, int type)
101 struct posix_acl *acl;
102 struct v9fs_session_info *v9ses;
104 v9ses = v9fs_inode2v9ses(inode);
105 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
106 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
108 * On access = client and acl = on mode get the acl
109 * values from the server
113 return v9fs_get_cached_acl(inode, type);
117 static int v9fs_set_acl(struct dentry *dentry, int type, struct posix_acl *acl)
123 struct inode *inode = dentry->d_inode;
125 set_cached_acl(inode, type, acl);
130 /* Set a setxattr request to server */
131 size = posix_acl_xattr_size(acl->a_count);
132 buffer = kmalloc(size, GFP_KERNEL);
135 retval = posix_acl_to_xattr(acl, buffer, size);
139 case ACL_TYPE_ACCESS:
140 name = POSIX_ACL_XATTR_ACCESS;
142 case ACL_TYPE_DEFAULT:
143 name = POSIX_ACL_XATTR_DEFAULT;
148 retval = v9fs_xattr_set(dentry, name, buffer, size, 0);
154 int v9fs_acl_chmod(struct dentry *dentry)
157 struct posix_acl *acl;
158 struct inode *inode = dentry->d_inode;
160 if (S_ISLNK(inode->i_mode))
162 acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS);
164 retval = posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
167 retval = v9fs_set_acl(dentry, ACL_TYPE_ACCESS, acl);
168 posix_acl_release(acl);
173 int v9fs_set_create_acl(struct dentry *dentry,
174 struct posix_acl **dpacl, struct posix_acl **pacl)
177 v9fs_set_acl(dentry, ACL_TYPE_DEFAULT, *dpacl);
178 v9fs_set_acl(dentry, ACL_TYPE_ACCESS, *pacl);
180 posix_acl_release(*dpacl);
181 posix_acl_release(*pacl);
182 *dpacl = *pacl = NULL;
186 int v9fs_acl_mode(struct inode *dir, mode_t *modep,
187 struct posix_acl **dpacl, struct posix_acl **pacl)
190 mode_t mode = *modep;
191 struct posix_acl *acl = NULL;
193 if (!S_ISLNK(mode)) {
194 acl = v9fs_get_cached_acl(dir, ACL_TYPE_DEFAULT);
198 mode &= ~current_umask();
202 *dpacl = posix_acl_dup(acl);
203 retval = posix_acl_create(&acl, GFP_NOFS, &mode);
209 posix_acl_release(acl);
215 static int v9fs_remote_get_acl(struct dentry *dentry, const char *name,
216 void *buffer, size_t size, int type)
221 case ACL_TYPE_ACCESS:
222 full_name = POSIX_ACL_XATTR_ACCESS;
224 case ACL_TYPE_DEFAULT:
225 full_name = POSIX_ACL_XATTR_DEFAULT;
230 return v9fs_xattr_get(dentry, full_name, buffer, size);
233 static int v9fs_xattr_get_acl(struct dentry *dentry, const char *name,
234 void *buffer, size_t size, int type)
236 struct v9fs_session_info *v9ses;
237 struct posix_acl *acl;
240 if (strcmp(name, "") != 0)
243 v9ses = v9fs_dentry2v9ses(dentry);
245 * We allow set/get/list of acl when access=client is not specified
247 if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
248 return v9fs_remote_get_acl(dentry, name, buffer, size, type);
250 acl = v9fs_get_cached_acl(dentry->d_inode, type);
255 error = posix_acl_to_xattr(acl, buffer, size);
256 posix_acl_release(acl);
261 static int v9fs_remote_set_acl(struct dentry *dentry, const char *name,
262 const void *value, size_t size,
268 case ACL_TYPE_ACCESS:
269 full_name = POSIX_ACL_XATTR_ACCESS;
271 case ACL_TYPE_DEFAULT:
272 full_name = POSIX_ACL_XATTR_DEFAULT;
277 return v9fs_xattr_set(dentry, full_name, value, size, flags);
281 static int v9fs_xattr_set_acl(struct dentry *dentry, const char *name,
282 const void *value, size_t size,
286 struct posix_acl *acl;
287 struct v9fs_session_info *v9ses;
288 struct inode *inode = dentry->d_inode;
290 if (strcmp(name, "") != 0)
293 v9ses = v9fs_dentry2v9ses(dentry);
295 * set the attribute on the remote. Without even looking at the
296 * xattr value. We leave it to the server to validate
298 if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
299 return v9fs_remote_set_acl(dentry, name,
300 value, size, flags, type);
302 if (S_ISLNK(inode->i_mode))
304 if (!inode_owner_or_capable(inode))
307 /* update the cached acl value */
308 acl = posix_acl_from_xattr(value, size);
312 retval = posix_acl_valid(acl);
320 case ACL_TYPE_ACCESS:
321 name = POSIX_ACL_XATTR_ACCESS;
323 mode_t mode = inode->i_mode;
324 retval = posix_acl_equiv_mode(acl, &mode);
331 * ACL can be represented
332 * by the mode bits. So don't
339 /* Updte the mode bits */
340 iattr.ia_mode = ((mode & S_IALLUGO) |
341 (inode->i_mode & ~S_IALLUGO));
342 iattr.ia_valid = ATTR_MODE;
343 /* FIXME should we update ctime ?
344 * What is the following setxattr update the
347 v9fs_vfs_setattr_dotl(dentry, &iattr);
351 case ACL_TYPE_DEFAULT:
352 name = POSIX_ACL_XATTR_DEFAULT;
353 if (!S_ISDIR(inode->i_mode)) {
354 retval = acl ? -EINVAL : 0;
361 retval = v9fs_xattr_set(dentry, name, value, size, flags);
363 set_cached_acl(inode, type, acl);
365 posix_acl_release(acl);
369 const struct xattr_handler v9fs_xattr_acl_access_handler = {
370 .prefix = POSIX_ACL_XATTR_ACCESS,
371 .flags = ACL_TYPE_ACCESS,
372 .get = v9fs_xattr_get_acl,
373 .set = v9fs_xattr_set_acl,
376 const struct xattr_handler v9fs_xattr_acl_default_handler = {
377 .prefix = POSIX_ACL_XATTR_DEFAULT,
378 .flags = ACL_TYPE_DEFAULT,
379 .get = v9fs_xattr_get_acl,
380 .set = v9fs_xattr_set_acl,