2 * Copyright IBM Corporation, 2010
3 * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
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>
28 static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
32 struct posix_acl *acl = NULL;
34 size = v9fs_fid_xattr_get(fid, name, NULL, 0);
36 value = kzalloc(size, GFP_NOFS);
38 return ERR_PTR(-ENOMEM);
39 size = v9fs_fid_xattr_get(fid, name, value, size);
41 acl = posix_acl_from_xattr(&init_user_ns, value, size);
45 } else if (size == -ENODATA || size == 0 ||
46 size == -ENOSYS || size == -EOPNOTSUPP) {
56 int v9fs_get_acl(struct inode *inode, struct p9_fid *fid)
59 struct posix_acl *pacl, *dacl;
60 struct v9fs_session_info *v9ses;
62 v9ses = v9fs_inode2v9ses(inode);
63 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
64 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
65 set_cached_acl(inode, ACL_TYPE_DEFAULT, NULL);
66 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
69 /* get the default/access acl values and cache them */
70 dacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_DEFAULT);
71 pacl = __v9fs_get_acl(fid, XATTR_NAME_POSIX_ACL_ACCESS);
73 if (!IS_ERR(dacl) && !IS_ERR(pacl)) {
74 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
75 set_cached_acl(inode, ACL_TYPE_ACCESS, pacl);
80 posix_acl_release(dacl);
83 posix_acl_release(pacl);
88 static struct posix_acl *v9fs_get_cached_acl(struct inode *inode, int type)
90 struct posix_acl *acl;
92 * 9p Always cache the acl value when
93 * instantiating the inode (v9fs_inode_from_fid)
95 acl = get_cached_acl(inode, type);
96 BUG_ON(is_uncached_acl(acl));
100 struct posix_acl *v9fs_iop_get_acl(struct inode *inode, int type, bool rcu)
102 struct v9fs_session_info *v9ses;
105 return ERR_PTR(-ECHILD);
107 v9ses = v9fs_inode2v9ses(inode);
108 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) ||
109 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) {
111 * On access = client and acl = on mode get the acl
112 * values from the server
116 return v9fs_get_cached_acl(inode, type);
120 static int v9fs_set_acl(struct p9_fid *fid, int type, struct posix_acl *acl)
129 /* Set a setxattr request to server */
130 size = posix_acl_xattr_size(acl->a_count);
131 buffer = kmalloc(size, GFP_KERNEL);
134 retval = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
138 case ACL_TYPE_ACCESS:
139 name = XATTR_NAME_POSIX_ACL_ACCESS;
141 case ACL_TYPE_DEFAULT:
142 name = XATTR_NAME_POSIX_ACL_DEFAULT;
147 retval = v9fs_fid_xattr_set(fid, name, buffer, size, 0);
153 int v9fs_acl_chmod(struct inode *inode, struct p9_fid *fid)
156 struct posix_acl *acl;
158 if (S_ISLNK(inode->i_mode))
160 acl = v9fs_get_cached_acl(inode, ACL_TYPE_ACCESS);
162 retval = __posix_acl_chmod(&acl, GFP_KERNEL, inode->i_mode);
165 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
166 retval = v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
167 posix_acl_release(acl);
172 int v9fs_set_create_acl(struct inode *inode, struct p9_fid *fid,
173 struct posix_acl *dacl, struct posix_acl *acl)
175 set_cached_acl(inode, ACL_TYPE_DEFAULT, dacl);
176 set_cached_acl(inode, ACL_TYPE_ACCESS, acl);
177 v9fs_set_acl(fid, ACL_TYPE_DEFAULT, dacl);
178 v9fs_set_acl(fid, ACL_TYPE_ACCESS, acl);
182 void v9fs_put_acl(struct posix_acl *dacl,
183 struct posix_acl *acl)
185 posix_acl_release(dacl);
186 posix_acl_release(acl);
189 int v9fs_acl_mode(struct inode *dir, umode_t *modep,
190 struct posix_acl **dpacl, struct posix_acl **pacl)
193 umode_t mode = *modep;
194 struct posix_acl *acl = NULL;
196 if (!S_ISLNK(mode)) {
197 acl = v9fs_get_cached_acl(dir, ACL_TYPE_DEFAULT);
201 mode &= ~current_umask();
205 *dpacl = posix_acl_dup(acl);
206 retval = __posix_acl_create(&acl, GFP_NOFS, &mode);
212 posix_acl_release(acl);
218 static int v9fs_xattr_get_acl(const struct xattr_handler *handler,
219 struct dentry *dentry, struct inode *inode,
220 const char *name, void *buffer, size_t size)
222 struct v9fs_session_info *v9ses;
223 struct posix_acl *acl;
226 v9ses = v9fs_dentry2v9ses(dentry);
228 * We allow set/get/list of acl when access=client is not specified
230 if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
231 return v9fs_xattr_get(dentry, handler->name, buffer, size);
233 acl = v9fs_get_cached_acl(inode, handler->flags);
238 error = posix_acl_to_xattr(&init_user_ns, acl, buffer, size);
239 posix_acl_release(acl);
244 static int v9fs_xattr_set_acl(const struct xattr_handler *handler,
245 struct user_namespace *mnt_userns,
246 struct dentry *dentry, struct inode *inode,
247 const char *name, const void *value,
248 size_t size, int flags)
251 struct posix_acl *acl;
252 struct v9fs_session_info *v9ses;
254 v9ses = v9fs_dentry2v9ses(dentry);
256 * set the attribute on the remote. Without even looking at the
257 * xattr value. We leave it to the server to validate
259 if ((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT)
260 return v9fs_xattr_set(dentry, handler->name, value, size,
263 if (S_ISLNK(inode->i_mode))
265 if (!inode_owner_or_capable(&init_user_ns, inode))
268 /* update the cached acl value */
269 acl = posix_acl_from_xattr(&init_user_ns, value, size);
273 retval = posix_acl_valid(inode->i_sb->s_user_ns, acl);
280 switch (handler->flags) {
281 case ACL_TYPE_ACCESS:
283 struct iattr iattr = { 0 };
284 struct posix_acl *old_acl = acl;
286 retval = posix_acl_update_mode(&init_user_ns, inode,
287 &iattr.ia_mode, &acl);
292 * ACL can be represented
293 * by the mode bits. So don't
296 posix_acl_release(old_acl);
300 iattr.ia_valid = ATTR_MODE;
301 /* FIXME should we update ctime ?
302 * What is the following setxattr update the
305 v9fs_vfs_setattr_dotl(&init_user_ns, dentry, &iattr);
308 case ACL_TYPE_DEFAULT:
309 if (!S_ISDIR(inode->i_mode)) {
310 retval = acl ? -EINVAL : 0;
317 retval = v9fs_xattr_set(dentry, handler->name, value, size, flags);
319 set_cached_acl(inode, handler->flags, acl);
321 posix_acl_release(acl);
325 const struct xattr_handler v9fs_xattr_acl_access_handler = {
326 .name = XATTR_NAME_POSIX_ACL_ACCESS,
327 .flags = ACL_TYPE_ACCESS,
328 .get = v9fs_xattr_get_acl,
329 .set = v9fs_xattr_set_acl,
332 const struct xattr_handler v9fs_xattr_acl_default_handler = {
333 .name = XATTR_NAME_POSIX_ACL_DEFAULT,
334 .flags = ACL_TYPE_DEFAULT,
335 .get = v9fs_xattr_get_acl,
336 .set = v9fs_xattr_set_acl,