3 #include <linux/nfs3.h>
4 #include <linux/nfs_fs.h>
5 #include <linux/posix_acl_xattr.h>
6 #include <linux/nfsacl.h>
8 #define NFSDBG_FACILITY NFSDBG_PROC
10 ssize_t nfs3_listxattr(struct dentry *dentry, char *buffer, size_t size)
12 struct inode *inode = dentry->d_inode;
13 struct posix_acl *acl;
16 # define output(s) do { \
17 if (pos + sizeof(s) <= size) { \
18 memcpy(buffer + pos, s, sizeof(s)); \
24 acl = nfs3_proc_getacl(inode, ACL_TYPE_ACCESS);
28 output("system.posix_acl_access");
29 posix_acl_release(acl);
32 if (S_ISDIR(inode->i_mode)) {
33 acl = nfs3_proc_getacl(inode, ACL_TYPE_DEFAULT);
37 output("system.posix_acl_default");
38 posix_acl_release(acl);
44 if (!buffer || len <= size)
49 ssize_t nfs3_getxattr(struct dentry *dentry, const char *name,
50 void *buffer, size_t size)
52 struct inode *inode = dentry->d_inode;
53 struct posix_acl *acl;
56 if (strcmp(name, POSIX_ACL_XATTR_ACCESS) == 0)
57 type = ACL_TYPE_ACCESS;
58 else if (strcmp(name, POSIX_ACL_XATTR_DEFAULT) == 0)
59 type = ACL_TYPE_DEFAULT;
63 acl = nfs3_proc_getacl(inode, type);
67 if (type == ACL_TYPE_ACCESS && acl->a_count == 0)
70 error = posix_acl_to_xattr(acl, buffer, size);
71 posix_acl_release(acl);
78 int nfs3_setxattr(struct dentry *dentry, const char *name,
79 const void *value, size_t size, int flags)
81 struct inode *inode = dentry->d_inode;
82 struct posix_acl *acl;
85 if (strcmp(name, POSIX_ACL_XATTR_ACCESS) == 0)
86 type = ACL_TYPE_ACCESS;
87 else if (strcmp(name, POSIX_ACL_XATTR_DEFAULT) == 0)
88 type = ACL_TYPE_DEFAULT;
92 acl = posix_acl_from_xattr(value, size);
95 error = nfs3_proc_setacl(inode, type, acl);
96 posix_acl_release(acl);
101 int nfs3_removexattr(struct dentry *dentry, const char *name)
103 struct inode *inode = dentry->d_inode;
106 if (strcmp(name, POSIX_ACL_XATTR_ACCESS) == 0)
107 type = ACL_TYPE_ACCESS;
108 else if (strcmp(name, POSIX_ACL_XATTR_DEFAULT) == 0)
109 type = ACL_TYPE_DEFAULT;
113 return nfs3_proc_setacl(inode, type, NULL);
116 static void __nfs3_forget_cached_acls(struct nfs_inode *nfsi)
118 if (!IS_ERR(nfsi->acl_access)) {
119 posix_acl_release(nfsi->acl_access);
120 nfsi->acl_access = ERR_PTR(-EAGAIN);
122 if (!IS_ERR(nfsi->acl_default)) {
123 posix_acl_release(nfsi->acl_default);
124 nfsi->acl_default = ERR_PTR(-EAGAIN);
128 void nfs3_forget_cached_acls(struct inode *inode)
130 dprintk("NFS: nfs3_forget_cached_acls(%s/%ld)\n", inode->i_sb->s_id,
132 spin_lock(&inode->i_lock);
133 __nfs3_forget_cached_acls(NFS_I(inode));
134 spin_unlock(&inode->i_lock);
137 static struct posix_acl *nfs3_get_cached_acl(struct inode *inode, int type)
139 struct nfs_inode *nfsi = NFS_I(inode);
140 struct posix_acl *acl = ERR_PTR(-EINVAL);
142 spin_lock(&inode->i_lock);
144 case ACL_TYPE_ACCESS:
145 acl = nfsi->acl_access;
148 case ACL_TYPE_DEFAULT:
149 acl = nfsi->acl_default;
156 acl = ERR_PTR(-EAGAIN);
158 acl = posix_acl_dup(acl);
160 spin_unlock(&inode->i_lock);
161 dprintk("NFS: nfs3_get_cached_acl(%s/%ld, %d) = %p\n", inode->i_sb->s_id,
162 inode->i_ino, type, acl);
166 static void nfs3_cache_acls(struct inode *inode, struct posix_acl *acl,
167 struct posix_acl *dfacl)
169 struct nfs_inode *nfsi = NFS_I(inode);
171 dprintk("nfs3_cache_acls(%s/%ld, %p, %p)\n", inode->i_sb->s_id,
172 inode->i_ino, acl, dfacl);
173 spin_lock(&inode->i_lock);
174 __nfs3_forget_cached_acls(NFS_I(inode));
176 nfsi->acl_access = posix_acl_dup(acl);
178 nfsi->acl_default = posix_acl_dup(dfacl);
179 spin_unlock(&inode->i_lock);
182 struct posix_acl *nfs3_proc_getacl(struct inode *inode, int type)
184 struct nfs_server *server = NFS_SERVER(inode);
185 struct nfs_fattr fattr;
186 struct page *pages[NFSACL_MAXPAGES] = { };
187 struct nfs3_getaclargs args = {
189 /* The xdr layer may allocate pages here. */
192 struct nfs3_getaclres res = {
195 struct rpc_message msg = {
199 struct posix_acl *acl;
202 if (!nfs_server_capable(inode, NFS_CAP_ACLS))
203 return ERR_PTR(-EOPNOTSUPP);
205 status = nfs_revalidate_inode(server, inode);
207 return ERR_PTR(status);
208 acl = nfs3_get_cached_acl(inode, type);
209 if (acl != ERR_PTR(-EAGAIN))
214 * Only get the access acl when explicitly requested: We don't
215 * need it for access decisions, and only some applications use
216 * it. Applications which request the access acl first are not
217 * penalized from this optimization.
219 if (type == ACL_TYPE_ACCESS)
220 args.mask |= NFS_ACLCNT|NFS_ACL;
221 if (S_ISDIR(inode->i_mode))
222 args.mask |= NFS_DFACLCNT|NFS_DFACL;
226 dprintk("NFS call getacl\n");
227 msg.rpc_proc = &server->client_acl->cl_procinfo[ACLPROC3_GETACL];
228 status = rpc_call_sync(server->client_acl, &msg, 0);
229 dprintk("NFS reply getacl: %d\n", status);
231 /* pages may have been allocated at the xdr layer. */
232 for (count = 0; count < NFSACL_MAXPAGES && args.pages[count]; count++)
233 __free_page(args.pages[count]);
237 status = nfs_refresh_inode(inode, &fattr);
240 case -EPROTONOSUPPORT:
241 dprintk("NFS_V3_ACL extension not supported; disabling\n");
242 server->caps &= ~NFS_CAP_ACLS;
244 status = -EOPNOTSUPP;
248 if ((args.mask & res.mask) != args.mask) {
253 if (res.acl_access != NULL) {
254 if (posix_acl_equiv_mode(res.acl_access, NULL) == 0) {
255 posix_acl_release(res.acl_access);
256 res.acl_access = NULL;
259 nfs3_cache_acls(inode,
260 (res.mask & NFS_ACL) ? res.acl_access : ERR_PTR(-EINVAL),
261 (res.mask & NFS_DFACL) ? res.acl_default : ERR_PTR(-EINVAL));
264 case ACL_TYPE_ACCESS:
265 acl = res.acl_access;
266 res.acl_access = NULL;
269 case ACL_TYPE_DEFAULT:
270 acl = res.acl_default;
271 res.acl_default = NULL;
275 posix_acl_release(res.acl_access);
276 posix_acl_release(res.acl_default);
279 posix_acl_release(acl);
280 acl = ERR_PTR(status);
285 static int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
286 struct posix_acl *dfacl)
288 struct nfs_server *server = NFS_SERVER(inode);
289 struct nfs_fattr fattr;
290 struct page *pages[NFSACL_MAXPAGES] = { };
291 struct nfs3_setaclargs args = {
297 struct rpc_message msg = {
303 status = -EOPNOTSUPP;
304 if (!nfs_server_capable(inode, NFS_CAP_ACLS))
307 /* We are doing this here, because XDR marshalling can only
310 if (acl != NULL && acl->a_count > NFS_ACL_MAX_ENTRIES)
312 if (dfacl != NULL && dfacl->a_count > NFS_ACL_MAX_ENTRIES)
314 if (S_ISDIR(inode->i_mode)) {
315 args.mask |= NFS_DFACL;
316 args.acl_default = dfacl;
319 dprintk("NFS call setacl\n");
320 msg.rpc_proc = &server->client_acl->cl_procinfo[ACLPROC3_SETACL];
321 status = rpc_call_sync(server->client_acl, &msg, 0);
322 spin_lock(&inode->i_lock);
323 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ACCESS;
324 spin_unlock(&inode->i_lock);
325 dprintk("NFS reply setacl: %d\n", status);
327 /* pages may have been allocated at the xdr layer. */
328 for (count = 0; count < NFSACL_MAXPAGES && args.pages[count]; count++)
329 __free_page(args.pages[count]);
333 status = nfs_refresh_inode(inode, &fattr);
334 nfs3_cache_acls(inode, acl, dfacl);
337 case -EPROTONOSUPPORT:
338 dprintk("NFS_V3_ACL SETACL RPC not supported"
339 "(will not retry)\n");
340 server->caps &= ~NFS_CAP_ACLS;
342 status = -EOPNOTSUPP;
348 int nfs3_proc_setacl(struct inode *inode, int type, struct posix_acl *acl)
350 struct posix_acl *alloc = NULL, *dfacl = NULL;
353 if (S_ISDIR(inode->i_mode)) {
355 case ACL_TYPE_ACCESS:
356 alloc = dfacl = nfs3_proc_getacl(inode,
362 case ACL_TYPE_DEFAULT:
364 alloc = acl = nfs3_proc_getacl(inode,
373 } else if (type != ACL_TYPE_ACCESS)
377 alloc = acl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
381 status = nfs3_proc_setacls(inode, acl, dfacl);
382 posix_acl_release(alloc);
386 return PTR_ERR(alloc);
389 int nfs3_proc_set_default_acl(struct inode *dir, struct inode *inode,
392 struct posix_acl *dfacl, *acl;
395 dfacl = nfs3_proc_getacl(dir, ACL_TYPE_DEFAULT);
397 error = PTR_ERR(dfacl);
398 return (error == -EOPNOTSUPP) ? 0 : error;
402 acl = posix_acl_clone(dfacl, GFP_KERNEL);
405 goto out_release_dfacl;
406 error = posix_acl_create_masq(acl, &mode);
408 goto out_release_acl;
409 error = nfs3_proc_setacls(inode, acl, S_ISDIR(inode->i_mode) ?
412 posix_acl_release(acl);
414 posix_acl_release(dfacl);