4 #include <linux/nfs3.h>
5 #include <linux/nfs_fs.h>
6 #include <linux/posix_acl_xattr.h>
7 #include <linux/nfsacl.h>
11 #define NFSDBG_FACILITY NFSDBG_PROC
13 ssize_t
nfs3_listxattr(struct dentry
*dentry
, char *buffer
, size_t size
)
15 struct inode
*inode
= dentry
->d_inode
;
16 struct posix_acl
*acl
;
19 # define output(s) do { \
20 if (pos + sizeof(s) <= size) { \
21 memcpy(buffer + pos, s, sizeof(s)); \
27 acl
= nfs3_proc_getacl(inode
, ACL_TYPE_ACCESS
);
31 output("system.posix_acl_access");
32 posix_acl_release(acl
);
35 if (S_ISDIR(inode
->i_mode
)) {
36 acl
= nfs3_proc_getacl(inode
, ACL_TYPE_DEFAULT
);
40 output("system.posix_acl_default");
41 posix_acl_release(acl
);
47 if (!buffer
|| len
<= size
)
52 ssize_t
nfs3_getxattr(struct dentry
*dentry
, const char *name
,
53 void *buffer
, size_t size
)
55 struct inode
*inode
= dentry
->d_inode
;
56 struct posix_acl
*acl
;
59 if (strcmp(name
, POSIX_ACL_XATTR_ACCESS
) == 0)
60 type
= ACL_TYPE_ACCESS
;
61 else if (strcmp(name
, POSIX_ACL_XATTR_DEFAULT
) == 0)
62 type
= ACL_TYPE_DEFAULT
;
66 acl
= nfs3_proc_getacl(inode
, type
);
70 if (type
== ACL_TYPE_ACCESS
&& acl
->a_count
== 0)
73 error
= posix_acl_to_xattr(acl
, buffer
, size
);
74 posix_acl_release(acl
);
81 int nfs3_setxattr(struct dentry
*dentry
, const char *name
,
82 const void *value
, size_t size
, int flags
)
84 struct inode
*inode
= dentry
->d_inode
;
85 struct posix_acl
*acl
;
88 if (strcmp(name
, POSIX_ACL_XATTR_ACCESS
) == 0)
89 type
= ACL_TYPE_ACCESS
;
90 else if (strcmp(name
, POSIX_ACL_XATTR_DEFAULT
) == 0)
91 type
= ACL_TYPE_DEFAULT
;
95 acl
= posix_acl_from_xattr(value
, size
);
98 error
= nfs3_proc_setacl(inode
, type
, acl
);
99 posix_acl_release(acl
);
104 int nfs3_removexattr(struct dentry
*dentry
, const char *name
)
106 struct inode
*inode
= dentry
->d_inode
;
109 if (strcmp(name
, POSIX_ACL_XATTR_ACCESS
) == 0)
110 type
= ACL_TYPE_ACCESS
;
111 else if (strcmp(name
, POSIX_ACL_XATTR_DEFAULT
) == 0)
112 type
= ACL_TYPE_DEFAULT
;
116 return nfs3_proc_setacl(inode
, type
, NULL
);
119 static void __nfs3_forget_cached_acls(struct nfs_inode
*nfsi
)
121 if (!IS_ERR(nfsi
->acl_access
)) {
122 posix_acl_release(nfsi
->acl_access
);
123 nfsi
->acl_access
= ERR_PTR(-EAGAIN
);
125 if (!IS_ERR(nfsi
->acl_default
)) {
126 posix_acl_release(nfsi
->acl_default
);
127 nfsi
->acl_default
= ERR_PTR(-EAGAIN
);
131 void nfs3_forget_cached_acls(struct inode
*inode
)
133 dprintk("NFS: nfs3_forget_cached_acls(%s/%ld)\n", inode
->i_sb
->s_id
,
135 spin_lock(&inode
->i_lock
);
136 __nfs3_forget_cached_acls(NFS_I(inode
));
137 spin_unlock(&inode
->i_lock
);
140 static struct posix_acl
*nfs3_get_cached_acl(struct inode
*inode
, int type
)
142 struct nfs_inode
*nfsi
= NFS_I(inode
);
143 struct posix_acl
*acl
= ERR_PTR(-EINVAL
);
145 spin_lock(&inode
->i_lock
);
147 case ACL_TYPE_ACCESS
:
148 acl
= nfsi
->acl_access
;
151 case ACL_TYPE_DEFAULT
:
152 acl
= nfsi
->acl_default
;
159 acl
= ERR_PTR(-EAGAIN
);
161 acl
= posix_acl_dup(acl
);
163 spin_unlock(&inode
->i_lock
);
164 dprintk("NFS: nfs3_get_cached_acl(%s/%ld, %d) = %p\n", inode
->i_sb
->s_id
,
165 inode
->i_ino
, type
, acl
);
169 static void nfs3_cache_acls(struct inode
*inode
, struct posix_acl
*acl
,
170 struct posix_acl
*dfacl
)
172 struct nfs_inode
*nfsi
= NFS_I(inode
);
174 dprintk("nfs3_cache_acls(%s/%ld, %p, %p)\n", inode
->i_sb
->s_id
,
175 inode
->i_ino
, acl
, dfacl
);
176 spin_lock(&inode
->i_lock
);
177 __nfs3_forget_cached_acls(NFS_I(inode
));
179 nfsi
->acl_access
= posix_acl_dup(acl
);
181 nfsi
->acl_default
= posix_acl_dup(dfacl
);
182 spin_unlock(&inode
->i_lock
);
185 struct posix_acl
*nfs3_proc_getacl(struct inode
*inode
, int type
)
187 struct nfs_server
*server
= NFS_SERVER(inode
);
188 struct page
*pages
[NFSACL_MAXPAGES
] = { };
189 struct nfs3_getaclargs args
= {
191 /* The xdr layer may allocate pages here. */
194 struct nfs3_getaclres res
= {
197 struct rpc_message msg
= {
201 struct posix_acl
*acl
;
204 if (!nfs_server_capable(inode
, NFS_CAP_ACLS
))
205 return ERR_PTR(-EOPNOTSUPP
);
207 status
= nfs_revalidate_inode(server
, inode
);
209 return ERR_PTR(status
);
210 acl
= nfs3_get_cached_acl(inode
, type
);
211 if (acl
!= ERR_PTR(-EAGAIN
))
216 * Only get the access acl when explicitly requested: We don't
217 * need it for access decisions, and only some applications use
218 * it. Applications which request the access acl first are not
219 * penalized from this optimization.
221 if (type
== ACL_TYPE_ACCESS
)
222 args
.mask
|= NFS_ACLCNT
|NFS_ACL
;
223 if (S_ISDIR(inode
->i_mode
))
224 args
.mask
|= NFS_DFACLCNT
|NFS_DFACL
;
228 dprintk("NFS call getacl\n");
229 msg
.rpc_proc
= &server
->client_acl
->cl_procinfo
[ACLPROC3_GETACL
];
230 res
.fattr
= nfs_alloc_fattr();
231 if (res
.fattr
== NULL
)
232 return ERR_PTR(-ENOMEM
);
234 status
= rpc_call_sync(server
->client_acl
, &msg
, 0);
235 dprintk("NFS reply getacl: %d\n", status
);
237 /* pages may have been allocated at the xdr layer. */
238 for (count
= 0; count
< NFSACL_MAXPAGES
&& args
.pages
[count
]; count
++)
239 __free_page(args
.pages
[count
]);
243 status
= nfs_refresh_inode(inode
, res
.fattr
);
246 case -EPROTONOSUPPORT
:
247 dprintk("NFS_V3_ACL extension not supported; disabling\n");
248 server
->caps
&= ~NFS_CAP_ACLS
;
250 status
= -EOPNOTSUPP
;
254 if ((args
.mask
& res
.mask
) != args
.mask
) {
259 if (res
.acl_access
!= NULL
) {
260 if (posix_acl_equiv_mode(res
.acl_access
, NULL
) == 0) {
261 posix_acl_release(res
.acl_access
);
262 res
.acl_access
= NULL
;
265 nfs3_cache_acls(inode
,
266 (res
.mask
& NFS_ACL
) ? res
.acl_access
: ERR_PTR(-EINVAL
),
267 (res
.mask
& NFS_DFACL
) ? res
.acl_default
: ERR_PTR(-EINVAL
));
270 case ACL_TYPE_ACCESS
:
271 acl
= res
.acl_access
;
272 res
.acl_access
= NULL
;
275 case ACL_TYPE_DEFAULT
:
276 acl
= res
.acl_default
;
277 res
.acl_default
= NULL
;
281 posix_acl_release(res
.acl_access
);
282 posix_acl_release(res
.acl_default
);
283 nfs_free_fattr(res
.fattr
);
286 posix_acl_release(acl
);
287 acl
= ERR_PTR(status
);
292 static int nfs3_proc_setacls(struct inode
*inode
, struct posix_acl
*acl
,
293 struct posix_acl
*dfacl
)
295 struct nfs_server
*server
= NFS_SERVER(inode
);
296 struct nfs_fattr
*fattr
;
297 struct page
*pages
[NFSACL_MAXPAGES
];
298 struct nfs3_setaclargs args
= {
304 struct rpc_message msg
= {
310 status
= -EOPNOTSUPP
;
311 if (!nfs_server_capable(inode
, NFS_CAP_ACLS
))
314 /* We are doing this here, because XDR marshalling can only
317 if (acl
!= NULL
&& acl
->a_count
> NFS_ACL_MAX_ENTRIES
)
319 if (dfacl
!= NULL
&& dfacl
->a_count
> NFS_ACL_MAX_ENTRIES
)
321 if (S_ISDIR(inode
->i_mode
)) {
322 args
.mask
|= NFS_DFACL
;
323 args
.acl_default
= dfacl
;
324 args
.len
= nfsacl_size(acl
, dfacl
);
326 args
.len
= nfsacl_size(acl
, NULL
);
328 if (args
.len
> NFS_ACL_INLINE_BUFSIZE
) {
329 unsigned int npages
= 1 + ((args
.len
- 1) >> PAGE_SHIFT
);
333 args
.pages
[args
.npages
] = alloc_page(GFP_KERNEL
);
334 if (args
.pages
[args
.npages
] == NULL
)
337 } while (args
.npages
< npages
);
340 dprintk("NFS call setacl\n");
342 fattr
= nfs_alloc_fattr();
346 msg
.rpc_proc
= &server
->client_acl
->cl_procinfo
[ACLPROC3_SETACL
];
347 msg
.rpc_resp
= fattr
;
348 status
= rpc_call_sync(server
->client_acl
, &msg
, 0);
349 nfs_access_zap_cache(inode
);
350 nfs_zap_acl_cache(inode
);
351 dprintk("NFS reply setacl: %d\n", status
);
355 status
= nfs_refresh_inode(inode
, fattr
);
356 nfs3_cache_acls(inode
, acl
, dfacl
);
359 case -EPROTONOSUPPORT
:
360 dprintk("NFS_V3_ACL SETACL RPC not supported"
361 "(will not retry)\n");
362 server
->caps
&= ~NFS_CAP_ACLS
;
364 status
= -EOPNOTSUPP
;
366 nfs_free_fattr(fattr
);
368 while (args
.npages
!= 0) {
370 __free_page(args
.pages
[args
.npages
]);
376 int nfs3_proc_setacl(struct inode
*inode
, int type
, struct posix_acl
*acl
)
378 struct posix_acl
*alloc
= NULL
, *dfacl
= NULL
;
381 if (S_ISDIR(inode
->i_mode
)) {
383 case ACL_TYPE_ACCESS
:
384 alloc
= dfacl
= nfs3_proc_getacl(inode
,
390 case ACL_TYPE_DEFAULT
:
392 alloc
= acl
= nfs3_proc_getacl(inode
,
401 } else if (type
!= ACL_TYPE_ACCESS
)
405 alloc
= acl
= posix_acl_from_mode(inode
->i_mode
, GFP_KERNEL
);
409 status
= nfs3_proc_setacls(inode
, acl
, dfacl
);
410 posix_acl_release(alloc
);
414 return PTR_ERR(alloc
);
417 int nfs3_proc_set_default_acl(struct inode
*dir
, struct inode
*inode
,
420 struct posix_acl
*dfacl
, *acl
;
423 dfacl
= nfs3_proc_getacl(dir
, ACL_TYPE_DEFAULT
);
425 error
= PTR_ERR(dfacl
);
426 return (error
== -EOPNOTSUPP
) ? 0 : error
;
430 acl
= posix_acl_clone(dfacl
, GFP_KERNEL
);
433 goto out_release_dfacl
;
434 error
= posix_acl_create_masq(acl
, &mode
);
436 goto out_release_acl
;
437 error
= nfs3_proc_setacls(inode
, acl
, S_ISDIR(inode
->i_mode
) ?
440 posix_acl_release(acl
);
442 posix_acl_release(dfacl
);