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(acl
== ACL_NOT_CACHED
);
100 struct posix_acl
*v9fs_iop_get_acl(struct inode
*inode
, int type
)
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 p9_fid
*fid
, int type
, struct posix_acl
*acl
)
126 /* Set a setxattr request to server */
127 size
= posix_acl_xattr_size(acl
->a_count
);
128 buffer
= kmalloc(size
, GFP_KERNEL
);
131 retval
= posix_acl_to_xattr(&init_user_ns
, acl
, buffer
, size
);
135 case ACL_TYPE_ACCESS
:
136 name
= XATTR_NAME_POSIX_ACL_ACCESS
;
138 case ACL_TYPE_DEFAULT
:
139 name
= XATTR_NAME_POSIX_ACL_DEFAULT
;
144 retval
= v9fs_fid_xattr_set(fid
, name
, buffer
, size
, 0);
150 int v9fs_acl_chmod(struct inode
*inode
, struct p9_fid
*fid
)
153 struct posix_acl
*acl
;
155 if (S_ISLNK(inode
->i_mode
))
157 acl
= v9fs_get_cached_acl(inode
, ACL_TYPE_ACCESS
);
159 retval
= __posix_acl_chmod(&acl
, GFP_KERNEL
, inode
->i_mode
);
162 set_cached_acl(inode
, ACL_TYPE_ACCESS
, acl
);
163 retval
= v9fs_set_acl(fid
, ACL_TYPE_ACCESS
, acl
);
164 posix_acl_release(acl
);
169 int v9fs_set_create_acl(struct inode
*inode
, struct p9_fid
*fid
,
170 struct posix_acl
*dacl
, struct posix_acl
*acl
)
172 set_cached_acl(inode
, ACL_TYPE_DEFAULT
, dacl
);
173 set_cached_acl(inode
, ACL_TYPE_ACCESS
, acl
);
174 v9fs_set_acl(fid
, ACL_TYPE_DEFAULT
, dacl
);
175 v9fs_set_acl(fid
, ACL_TYPE_ACCESS
, acl
);
179 void v9fs_put_acl(struct posix_acl
*dacl
,
180 struct posix_acl
*acl
)
182 posix_acl_release(dacl
);
183 posix_acl_release(acl
);
186 int v9fs_acl_mode(struct inode
*dir
, umode_t
*modep
,
187 struct posix_acl
**dpacl
, struct posix_acl
**pacl
)
190 umode_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_xattr_get_acl(const struct xattr_handler
*handler
,
216 struct dentry
*dentry
, const char *name
,
217 void *buffer
, size_t size
)
219 struct v9fs_session_info
*v9ses
;
220 struct posix_acl
*acl
;
223 v9ses
= v9fs_dentry2v9ses(dentry
);
225 * We allow set/get/list of acl when access=client is not specified
227 if ((v9ses
->flags
& V9FS_ACCESS_MASK
) != V9FS_ACCESS_CLIENT
)
228 return v9fs_xattr_get(dentry
, handler
->name
, buffer
, size
);
230 acl
= v9fs_get_cached_acl(d_inode(dentry
), handler
->flags
);
235 error
= posix_acl_to_xattr(&init_user_ns
, acl
, buffer
, size
);
236 posix_acl_release(acl
);
241 static int v9fs_xattr_set_acl(const struct xattr_handler
*handler
,
242 struct dentry
*dentry
, const char *name
,
243 const void *value
, size_t size
, int flags
)
246 struct posix_acl
*acl
;
247 struct v9fs_session_info
*v9ses
;
248 struct inode
*inode
= d_inode(dentry
);
250 v9ses
= v9fs_dentry2v9ses(dentry
);
252 * set the attribute on the remote. Without even looking at the
253 * xattr value. We leave it to the server to validate
255 if ((v9ses
->flags
& V9FS_ACCESS_MASK
) != V9FS_ACCESS_CLIENT
)
256 return v9fs_xattr_set(dentry
, handler
->name
, value
, size
,
259 if (S_ISLNK(inode
->i_mode
))
261 if (!inode_owner_or_capable(inode
))
264 /* update the cached acl value */
265 acl
= posix_acl_from_xattr(&init_user_ns
, value
, size
);
269 retval
= posix_acl_valid(acl
);
276 switch (handler
->flags
) {
277 case ACL_TYPE_ACCESS
:
279 umode_t mode
= inode
->i_mode
;
280 retval
= posix_acl_equiv_mode(acl
, &mode
);
287 * ACL can be represented
288 * by the mode bits. So don't
295 /* Updte the mode bits */
296 iattr
.ia_mode
= ((mode
& S_IALLUGO
) |
297 (inode
->i_mode
& ~S_IALLUGO
));
298 iattr
.ia_valid
= ATTR_MODE
;
299 /* FIXME should we update ctime ?
300 * What is the following setxattr update the
303 v9fs_vfs_setattr_dotl(dentry
, &iattr
);
307 case ACL_TYPE_DEFAULT
:
308 if (!S_ISDIR(inode
->i_mode
)) {
309 retval
= acl
? -EINVAL
: 0;
316 retval
= v9fs_xattr_set(dentry
, handler
->name
, value
, size
, flags
);
318 set_cached_acl(inode
, handler
->flags
, acl
);
320 posix_acl_release(acl
);
324 const struct xattr_handler v9fs_xattr_acl_access_handler
= {
325 .name
= XATTR_NAME_POSIX_ACL_ACCESS
,
326 .flags
= ACL_TYPE_ACCESS
,
327 .get
= v9fs_xattr_get_acl
,
328 .set
= v9fs_xattr_set_acl
,
331 const struct xattr_handler v9fs_xattr_acl_default_handler
= {
332 .name
= XATTR_NAME_POSIX_ACL_DEFAULT
,
333 .flags
= ACL_TYPE_DEFAULT
,
334 .get
= v9fs_xattr_get_acl
,
335 .set
= v9fs_xattr_set_acl
,