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>
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(&init_user_ns
, 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 v9fs_session_info
*v9ses
;
103 v9ses
= v9fs_inode2v9ses(inode
);
104 if (((v9ses
->flags
& V9FS_ACCESS_MASK
) != V9FS_ACCESS_CLIENT
) ||
105 ((v9ses
->flags
& V9FS_ACL_MASK
) != V9FS_POSIX_ACL
)) {
107 * On access = client and acl = on mode get the acl
108 * values from the server
112 return v9fs_get_cached_acl(inode
, type
);
116 static int v9fs_set_acl(struct dentry
*dentry
, int type
, struct posix_acl
*acl
)
122 struct inode
*inode
= dentry
->d_inode
;
124 set_cached_acl(inode
, type
, 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
= POSIX_ACL_XATTR_ACCESS
;
141 case ACL_TYPE_DEFAULT
:
142 name
= POSIX_ACL_XATTR_DEFAULT
;
147 retval
= v9fs_xattr_set(dentry
, name
, buffer
, size
, 0);
153 int v9fs_acl_chmod(struct dentry
*dentry
)
156 struct posix_acl
*acl
;
157 struct inode
*inode
= dentry
->d_inode
;
159 if (S_ISLNK(inode
->i_mode
))
161 acl
= v9fs_get_cached_acl(inode
, ACL_TYPE_ACCESS
);
163 retval
= posix_acl_chmod(&acl
, GFP_KERNEL
, inode
->i_mode
);
166 retval
= v9fs_set_acl(dentry
, ACL_TYPE_ACCESS
, acl
);
167 posix_acl_release(acl
);
172 int v9fs_set_create_acl(struct dentry
*dentry
,
173 struct posix_acl
**dpacl
, struct posix_acl
**pacl
)
176 v9fs_set_acl(dentry
, ACL_TYPE_DEFAULT
, *dpacl
);
177 v9fs_set_acl(dentry
, ACL_TYPE_ACCESS
, *pacl
);
179 posix_acl_release(*dpacl
);
180 posix_acl_release(*pacl
);
181 *dpacl
= *pacl
= NULL
;
185 int v9fs_acl_mode(struct inode
*dir
, umode_t
*modep
,
186 struct posix_acl
**dpacl
, struct posix_acl
**pacl
)
189 umode_t mode
= *modep
;
190 struct posix_acl
*acl
= NULL
;
192 if (!S_ISLNK(mode
)) {
193 acl
= v9fs_get_cached_acl(dir
, ACL_TYPE_DEFAULT
);
197 mode
&= ~current_umask();
201 *dpacl
= posix_acl_dup(acl
);
202 retval
= posix_acl_create(&acl
, GFP_NOFS
, &mode
);
208 posix_acl_release(acl
);
214 static int v9fs_remote_get_acl(struct dentry
*dentry
, const char *name
,
215 void *buffer
, size_t size
, int type
)
220 case ACL_TYPE_ACCESS
:
221 full_name
= POSIX_ACL_XATTR_ACCESS
;
223 case ACL_TYPE_DEFAULT
:
224 full_name
= POSIX_ACL_XATTR_DEFAULT
;
229 return v9fs_xattr_get(dentry
, full_name
, buffer
, size
);
232 static int v9fs_xattr_get_acl(struct dentry
*dentry
, const char *name
,
233 void *buffer
, size_t size
, int type
)
235 struct v9fs_session_info
*v9ses
;
236 struct posix_acl
*acl
;
239 if (strcmp(name
, "") != 0)
242 v9ses
= v9fs_dentry2v9ses(dentry
);
244 * We allow set/get/list of acl when access=client is not specified
246 if ((v9ses
->flags
& V9FS_ACCESS_MASK
) != V9FS_ACCESS_CLIENT
)
247 return v9fs_remote_get_acl(dentry
, name
, buffer
, size
, type
);
249 acl
= v9fs_get_cached_acl(dentry
->d_inode
, type
);
254 error
= posix_acl_to_xattr(&init_user_ns
, acl
, buffer
, size
);
255 posix_acl_release(acl
);
260 static int v9fs_remote_set_acl(struct dentry
*dentry
, const char *name
,
261 const void *value
, size_t size
,
267 case ACL_TYPE_ACCESS
:
268 full_name
= POSIX_ACL_XATTR_ACCESS
;
270 case ACL_TYPE_DEFAULT
:
271 full_name
= POSIX_ACL_XATTR_DEFAULT
;
276 return v9fs_xattr_set(dentry
, full_name
, value
, size
, flags
);
280 static int v9fs_xattr_set_acl(struct dentry
*dentry
, const char *name
,
281 const void *value
, size_t size
,
285 struct posix_acl
*acl
;
286 struct v9fs_session_info
*v9ses
;
287 struct inode
*inode
= dentry
->d_inode
;
289 if (strcmp(name
, "") != 0)
292 v9ses
= v9fs_dentry2v9ses(dentry
);
294 * set the attribute on the remote. Without even looking at the
295 * xattr value. We leave it to the server to validate
297 if ((v9ses
->flags
& V9FS_ACCESS_MASK
) != V9FS_ACCESS_CLIENT
)
298 return v9fs_remote_set_acl(dentry
, name
,
299 value
, size
, flags
, type
);
301 if (S_ISLNK(inode
->i_mode
))
303 if (!inode_owner_or_capable(inode
))
306 /* update the cached acl value */
307 acl
= posix_acl_from_xattr(&init_user_ns
, value
, size
);
311 retval
= posix_acl_valid(acl
);
319 case ACL_TYPE_ACCESS
:
320 name
= POSIX_ACL_XATTR_ACCESS
;
322 umode_t mode
= inode
->i_mode
;
323 retval
= posix_acl_equiv_mode(acl
, &mode
);
330 * ACL can be represented
331 * by the mode bits. So don't
338 /* Updte the mode bits */
339 iattr
.ia_mode
= ((mode
& S_IALLUGO
) |
340 (inode
->i_mode
& ~S_IALLUGO
));
341 iattr
.ia_valid
= ATTR_MODE
;
342 /* FIXME should we update ctime ?
343 * What is the following setxattr update the
346 v9fs_vfs_setattr_dotl(dentry
, &iattr
);
350 case ACL_TYPE_DEFAULT
:
351 name
= POSIX_ACL_XATTR_DEFAULT
;
352 if (!S_ISDIR(inode
->i_mode
)) {
353 retval
= acl
? -EINVAL
: 0;
360 retval
= v9fs_xattr_set(dentry
, name
, value
, size
, flags
);
362 set_cached_acl(inode
, type
, acl
);
364 posix_acl_release(acl
);
368 const struct xattr_handler v9fs_xattr_acl_access_handler
= {
369 .prefix
= POSIX_ACL_XATTR_ACCESS
,
370 .flags
= ACL_TYPE_ACCESS
,
371 .get
= v9fs_xattr_get_acl
,
372 .set
= v9fs_xattr_set_acl
,
375 const struct xattr_handler v9fs_xattr_acl_default_handler
= {
376 .prefix
= POSIX_ACL_XATTR_DEFAULT
,
377 .flags
= ACL_TYPE_DEFAULT
,
378 .get
= v9fs_xattr_get_acl
,
379 .set
= v9fs_xattr_set_acl
,