1 // SPDX-License-Identifier: GPL-2.0
3 * Process version 2 NFSACL requests.
5 * Copyright (C) 2002-2003 Andreas Gruenbacher <agruen@suse.de>
9 /* FIXME: nfsacl.h is a broken header */
10 #include <linux/nfsacl.h>
11 #include <linux/gfp.h>
16 #define NFSDDBG_FACILITY NFSDDBG_PROC
17 #define RETURN_STATUS(st) { resp->status = (st); return (st); }
23 nfsacld_proc_null(struct svc_rqst
*rqstp
)
29 * Get the Access and/or Default ACL of a file.
31 static __be32
nfsacld_proc_getacl(struct svc_rqst
*rqstp
)
33 struct nfsd3_getaclargs
*argp
= rqstp
->rq_argp
;
34 struct nfsd3_getaclres
*resp
= rqstp
->rq_resp
;
35 struct posix_acl
*acl
;
40 dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp
->fh
));
42 fh
= fh_copy(&resp
->fh
, &argp
->fh
);
43 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_NOP
);
45 RETURN_STATUS(nfserr
);
47 inode
= d_inode(fh
->fh_dentry
);
49 if (argp
->mask
& ~NFS_ACL_MASK
)
50 RETURN_STATUS(nfserr_inval
);
51 resp
->mask
= argp
->mask
;
53 nfserr
= fh_getattr(fh
, &resp
->stat
);
55 RETURN_STATUS(nfserr
);
57 if (resp
->mask
& (NFS_ACL
|NFS_ACLCNT
)) {
58 acl
= get_acl(inode
, ACL_TYPE_ACCESS
);
60 /* Solaris returns the inode's minimum ACL. */
61 acl
= posix_acl_from_mode(inode
->i_mode
, GFP_KERNEL
);
64 nfserr
= nfserrno(PTR_ERR(acl
));
67 resp
->acl_access
= acl
;
69 if (resp
->mask
& (NFS_DFACL
|NFS_DFACLCNT
)) {
70 /* Check how Solaris handles requests for the Default ACL
71 of a non-directory! */
72 acl
= get_acl(inode
, ACL_TYPE_DEFAULT
);
74 nfserr
= nfserrno(PTR_ERR(acl
));
77 resp
->acl_default
= acl
;
80 /* resp->acl_{access,default} are released in nfssvc_release_getacl. */
84 posix_acl_release(resp
->acl_access
);
85 posix_acl_release(resp
->acl_default
);
86 RETURN_STATUS(nfserr
);
90 * Set the Access and/or Default ACL of a file.
92 static __be32
nfsacld_proc_setacl(struct svc_rqst
*rqstp
)
94 struct nfsd3_setaclargs
*argp
= rqstp
->rq_argp
;
95 struct nfsd_attrstat
*resp
= rqstp
->rq_resp
;
101 dprintk("nfsd: SETACL(2acl) %s\n", SVCFH_fmt(&argp
->fh
));
103 fh
= fh_copy(&resp
->fh
, &argp
->fh
);
104 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_SATTR
);
108 inode
= d_inode(fh
->fh_dentry
);
110 error
= fh_want_write(fh
);
116 error
= set_posix_acl(inode
, ACL_TYPE_ACCESS
, argp
->acl_access
);
119 error
= set_posix_acl(inode
, ACL_TYPE_DEFAULT
, argp
->acl_default
);
127 nfserr
= fh_getattr(fh
, &resp
->stat
);
130 /* argp->acl_{access,default} may have been allocated in
131 nfssvc_decode_setaclargs. */
132 posix_acl_release(argp
->acl_access
);
133 posix_acl_release(argp
->acl_default
);
139 nfserr
= nfserrno(error
);
144 * Check file attributes
146 static __be32
nfsacld_proc_getattr(struct svc_rqst
*rqstp
)
148 struct nfsd_fhandle
*argp
= rqstp
->rq_argp
;
149 struct nfsd_attrstat
*resp
= rqstp
->rq_resp
;
151 dprintk("nfsd: GETATTR %s\n", SVCFH_fmt(&argp
->fh
));
153 fh_copy(&resp
->fh
, &argp
->fh
);
154 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_NOP
);
157 nfserr
= fh_getattr(&resp
->fh
, &resp
->stat
);
164 static __be32
nfsacld_proc_access(struct svc_rqst
*rqstp
)
166 struct nfsd3_accessargs
*argp
= rqstp
->rq_argp
;
167 struct nfsd3_accessres
*resp
= rqstp
->rq_resp
;
170 dprintk("nfsd: ACCESS(2acl) %s 0x%x\n",
171 SVCFH_fmt(&argp
->fh
),
174 fh_copy(&resp
->fh
, &argp
->fh
);
175 resp
->access
= argp
->access
;
176 nfserr
= nfsd_access(rqstp
, &resp
->fh
, &resp
->access
, NULL
);
179 nfserr
= fh_getattr(&resp
->fh
, &resp
->stat
);
184 * XDR decode functions
186 static int nfsaclsvc_decode_getaclargs(struct svc_rqst
*rqstp
, __be32
*p
)
188 struct nfsd3_getaclargs
*argp
= rqstp
->rq_argp
;
190 p
= nfs2svc_decode_fh(p
, &argp
->fh
);
193 argp
->mask
= ntohl(*p
); p
++;
195 return xdr_argsize_check(rqstp
, p
);
199 static int nfsaclsvc_decode_setaclargs(struct svc_rqst
*rqstp
, __be32
*p
)
201 struct nfsd3_setaclargs
*argp
= rqstp
->rq_argp
;
202 struct kvec
*head
= rqstp
->rq_arg
.head
;
206 p
= nfs2svc_decode_fh(p
, &argp
->fh
);
209 argp
->mask
= ntohl(*p
++);
210 if (argp
->mask
& ~NFS_ACL_MASK
||
211 !xdr_argsize_check(rqstp
, p
))
214 base
= (char *)p
- (char *)head
->iov_base
;
215 n
= nfsacl_decode(&rqstp
->rq_arg
, base
, NULL
,
216 (argp
->mask
& NFS_ACL
) ?
217 &argp
->acl_access
: NULL
);
219 n
= nfsacl_decode(&rqstp
->rq_arg
, base
+ n
, NULL
,
220 (argp
->mask
& NFS_DFACL
) ?
221 &argp
->acl_default
: NULL
);
225 static int nfsaclsvc_decode_fhandleargs(struct svc_rqst
*rqstp
, __be32
*p
)
227 struct nfsd_fhandle
*argp
= rqstp
->rq_argp
;
229 p
= nfs2svc_decode_fh(p
, &argp
->fh
);
232 return xdr_argsize_check(rqstp
, p
);
235 static int nfsaclsvc_decode_accessargs(struct svc_rqst
*rqstp
, __be32
*p
)
237 struct nfsd3_accessargs
*argp
= rqstp
->rq_argp
;
239 p
= nfs2svc_decode_fh(p
, &argp
->fh
);
242 argp
->access
= ntohl(*p
++);
244 return xdr_argsize_check(rqstp
, p
);
248 * XDR encode functions
252 * There must be an encoding function for void results so svc_process
253 * will work properly.
255 static int nfsaclsvc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
)
257 return xdr_ressize_check(rqstp
, p
);
261 static int nfsaclsvc_encode_getaclres(struct svc_rqst
*rqstp
, __be32
*p
)
263 struct nfsd3_getaclres
*resp
= rqstp
->rq_resp
;
264 struct dentry
*dentry
= resp
->fh
.fh_dentry
;
266 struct kvec
*head
= rqstp
->rq_res
.head
;
272 * Since this is version 2, the check for nfserr in
273 * nfsd_dispatch actually ensures the following cannot happen.
274 * However, it seems fragile to depend on that.
276 if (dentry
== NULL
|| d_really_is_negative(dentry
))
278 inode
= d_inode(dentry
);
280 p
= nfs2svc_encode_fattr(rqstp
, p
, &resp
->fh
, &resp
->stat
);
281 *p
++ = htonl(resp
->mask
);
282 if (!xdr_ressize_check(rqstp
, p
))
284 base
= (char *)p
- (char *)head
->iov_base
;
286 rqstp
->rq_res
.page_len
= w
= nfsacl_size(
287 (resp
->mask
& NFS_ACL
) ? resp
->acl_access
: NULL
,
288 (resp
->mask
& NFS_DFACL
) ? resp
->acl_default
: NULL
);
290 if (!*(rqstp
->rq_next_page
++))
295 n
= nfsacl_encode(&rqstp
->rq_res
, base
, inode
,
297 resp
->mask
& NFS_ACL
, 0);
299 n
= nfsacl_encode(&rqstp
->rq_res
, base
+ n
, inode
,
301 resp
->mask
& NFS_DFACL
,
306 static int nfsaclsvc_encode_attrstatres(struct svc_rqst
*rqstp
, __be32
*p
)
308 struct nfsd_attrstat
*resp
= rqstp
->rq_resp
;
310 p
= nfs2svc_encode_fattr(rqstp
, p
, &resp
->fh
, &resp
->stat
);
311 return xdr_ressize_check(rqstp
, p
);
315 static int nfsaclsvc_encode_accessres(struct svc_rqst
*rqstp
, __be32
*p
)
317 struct nfsd3_accessres
*resp
= rqstp
->rq_resp
;
319 p
= nfs2svc_encode_fattr(rqstp
, p
, &resp
->fh
, &resp
->stat
);
320 *p
++ = htonl(resp
->access
);
321 return xdr_ressize_check(rqstp
, p
);
325 * XDR release functions
327 static void nfsaclsvc_release_getacl(struct svc_rqst
*rqstp
)
329 struct nfsd3_getaclres
*resp
= rqstp
->rq_resp
;
332 posix_acl_release(resp
->acl_access
);
333 posix_acl_release(resp
->acl_default
);
336 static void nfsaclsvc_release_attrstat(struct svc_rqst
*rqstp
)
338 struct nfsd_attrstat
*resp
= rqstp
->rq_resp
;
343 static void nfsaclsvc_release_access(struct svc_rqst
*rqstp
)
345 struct nfsd3_accessres
*resp
= rqstp
->rq_resp
;
350 #define nfsaclsvc_decode_voidargs NULL
351 #define nfsaclsvc_release_void NULL
352 #define nfsd3_fhandleargs nfsd_fhandle
353 #define nfsd3_attrstatres nfsd_attrstat
354 #define nfsd3_voidres nfsd3_voidargs
355 struct nfsd3_voidargs
{ int dummy
; };
357 #define PROC(name, argt, rest, relt, cache, respsize) \
359 .pc_func = nfsacld_proc_##name, \
360 .pc_decode = nfsaclsvc_decode_##argt##args, \
361 .pc_encode = nfsaclsvc_encode_##rest##res, \
362 .pc_release = nfsaclsvc_release_##relt, \
363 .pc_argsize = sizeof(struct nfsd3_##argt##args), \
364 .pc_ressize = sizeof(struct nfsd3_##rest##res), \
365 .pc_cachetype = cache, \
366 .pc_xdrressize = respsize, \
369 #define ST 1 /* status*/
370 #define AT 21 /* attributes */
371 #define pAT (1+AT) /* post attributes - conditional */
372 #define ACL (1+NFS_ACL_MAX_ENTRIES*3) /* Access Control List */
374 static const struct svc_procedure nfsd_acl_procedures2
[] = {
375 PROC(null
, void, void, void, RC_NOCACHE
, ST
),
376 PROC(getacl
, getacl
, getacl
, getacl
, RC_NOCACHE
, ST
+1+2*(1+ACL
)),
377 PROC(setacl
, setacl
, attrstat
, attrstat
, RC_NOCACHE
, ST
+AT
),
378 PROC(getattr
, fhandle
, attrstat
, attrstat
, RC_NOCACHE
, ST
+AT
),
379 PROC(access
, access
, access
, access
, RC_NOCACHE
, ST
+AT
+1),
382 static unsigned int nfsd_acl_count2
[ARRAY_SIZE(nfsd_acl_procedures2
)];
383 const struct svc_version nfsd_acl_version2
= {
386 .vs_proc
= nfsd_acl_procedures2
,
387 .vs_count
= nfsd_acl_count2
,
388 .vs_dispatch
= nfsd_dispatch
,
389 .vs_xdrsize
= NFS3_SVC_XDRSIZE
,