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
22 nfsacld_proc_null(struct svc_rqst *rqstp)
28 * Get the Access and/or Default ACL of a file.
30 static __be32 nfsacld_proc_getacl(struct svc_rqst *rqstp)
32 struct nfsd3_getaclargs *argp = rqstp->rq_argp;
33 struct nfsd3_getaclres *resp = rqstp->rq_resp;
34 struct posix_acl *acl;
38 dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp->fh));
40 fh = fh_copy(&resp->fh, &argp->fh);
41 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP);
42 if (resp->status != nfs_ok)
45 inode = d_inode(fh->fh_dentry);
47 if (argp->mask & ~NFS_ACL_MASK) {
48 resp->status = nfserr_inval;
51 resp->mask = argp->mask;
53 resp->status = fh_getattr(fh, &resp->stat);
54 if (resp->status != nfs_ok)
57 if (resp->mask & (NFS_ACL|NFS_ACLCNT)) {
58 acl = get_inode_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 resp->status = 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_inode_acl(inode, ACL_TYPE_DEFAULT);
74 resp->status = nfserrno(PTR_ERR(acl));
77 resp->acl_default = acl;
80 /* resp->acl_{access,default} are released in nfssvc_release_getacl. */
85 posix_acl_release(resp->acl_access);
86 posix_acl_release(resp->acl_default);
87 resp->acl_access = NULL;
88 resp->acl_default = NULL;
93 * Set the Access and/or Default ACL of a file.
95 static __be32 nfsacld_proc_setacl(struct svc_rqst *rqstp)
97 struct nfsd3_setaclargs *argp = rqstp->rq_argp;
98 struct nfsd_attrstat *resp = rqstp->rq_resp;
103 dprintk("nfsd: SETACL(2acl) %s\n", SVCFH_fmt(&argp->fh));
105 fh = fh_copy(&resp->fh, &argp->fh);
106 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_SATTR);
107 if (resp->status != nfs_ok)
110 inode = d_inode(fh->fh_dentry);
112 error = fh_want_write(fh);
118 error = set_posix_acl(&nop_mnt_idmap, fh->fh_dentry, ACL_TYPE_ACCESS,
122 error = set_posix_acl(&nop_mnt_idmap, fh->fh_dentry, ACL_TYPE_DEFAULT,
131 resp->status = fh_getattr(fh, &resp->stat);
134 /* argp->acl_{access,default} may have been allocated in
135 nfssvc_decode_setaclargs. */
136 posix_acl_release(argp->acl_access);
137 posix_acl_release(argp->acl_default);
144 resp->status = nfserrno(error);
149 * Check file attributes
151 static __be32 nfsacld_proc_getattr(struct svc_rqst *rqstp)
153 struct nfsd_fhandle *argp = rqstp->rq_argp;
154 struct nfsd_attrstat *resp = rqstp->rq_resp;
156 dprintk("nfsd: GETATTR %s\n", SVCFH_fmt(&argp->fh));
158 fh_copy(&resp->fh, &argp->fh);
159 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP);
160 if (resp->status != nfs_ok)
162 resp->status = fh_getattr(&resp->fh, &resp->stat);
170 static __be32 nfsacld_proc_access(struct svc_rqst *rqstp)
172 struct nfsd3_accessargs *argp = rqstp->rq_argp;
173 struct nfsd3_accessres *resp = rqstp->rq_resp;
175 dprintk("nfsd: ACCESS(2acl) %s 0x%x\n",
176 SVCFH_fmt(&argp->fh),
179 fh_copy(&resp->fh, &argp->fh);
180 resp->access = argp->access;
181 resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
182 if (resp->status != nfs_ok)
184 resp->status = fh_getattr(&resp->fh, &resp->stat);
190 * XDR decode functions
194 nfsaclsvc_decode_getaclargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
196 struct nfsd3_getaclargs *argp = rqstp->rq_argp;
198 if (!svcxdr_decode_fhandle(xdr, &argp->fh))
200 if (xdr_stream_decode_u32(xdr, &argp->mask) < 0)
207 nfsaclsvc_decode_setaclargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
209 struct nfsd3_setaclargs *argp = rqstp->rq_argp;
211 if (!svcxdr_decode_fhandle(xdr, &argp->fh))
213 if (xdr_stream_decode_u32(xdr, &argp->mask) < 0)
215 if (argp->mask & ~NFS_ACL_MASK)
217 if (!nfs_stream_decode_acl(xdr, NULL, (argp->mask & NFS_ACL) ?
218 &argp->acl_access : NULL))
220 if (!nfs_stream_decode_acl(xdr, NULL, (argp->mask & NFS_DFACL) ?
221 &argp->acl_default : NULL))
228 nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, struct xdr_stream *xdr)
230 struct nfsd3_accessargs *args = rqstp->rq_argp;
232 if (!svcxdr_decode_fhandle(xdr, &args->fh))
234 if (xdr_stream_decode_u32(xdr, &args->access) < 0)
241 * XDR encode functions
246 nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
248 struct nfsd3_getaclres *resp = rqstp->rq_resp;
249 struct dentry *dentry = resp->fh.fh_dentry;
252 if (!svcxdr_encode_stat(xdr, resp->status))
255 if (dentry == NULL || d_really_is_negative(dentry))
257 inode = d_inode(dentry);
259 if (!svcxdr_encode_fattr(rqstp, xdr, &resp->fh, &resp->stat))
261 if (xdr_stream_encode_u32(xdr, resp->mask) < 0)
264 if (!nfs_stream_encode_acl(xdr, inode, resp->acl_access,
265 resp->mask & NFS_ACL, 0))
267 if (!nfs_stream_encode_acl(xdr, inode, resp->acl_default,
268 resp->mask & NFS_DFACL, NFS_ACL_DEFAULT))
276 nfsaclsvc_encode_accessres(struct svc_rqst *rqstp, struct xdr_stream *xdr)
278 struct nfsd3_accessres *resp = rqstp->rq_resp;
280 if (!svcxdr_encode_stat(xdr, resp->status))
282 switch (resp->status) {
284 if (!svcxdr_encode_fattr(rqstp, xdr, &resp->fh, &resp->stat))
286 if (xdr_stream_encode_u32(xdr, resp->access) < 0)
295 * XDR release functions
297 static void nfsaclsvc_release_getacl(struct svc_rqst *rqstp)
299 struct nfsd3_getaclres *resp = rqstp->rq_resp;
302 posix_acl_release(resp->acl_access);
303 posix_acl_release(resp->acl_default);
306 static void nfsaclsvc_release_access(struct svc_rqst *rqstp)
308 struct nfsd3_accessres *resp = rqstp->rq_resp;
313 #define ST 1 /* status*/
314 #define AT 21 /* attributes */
315 #define pAT (1+AT) /* post attributes - conditional */
316 #define ACL (1+NFS_ACL_MAX_ENTRIES*3) /* Access Control List */
318 static const struct svc_procedure nfsd_acl_procedures2[5] = {
320 .pc_func = nfsacld_proc_null,
321 .pc_decode = nfssvc_decode_voidarg,
322 .pc_encode = nfssvc_encode_voidres,
323 .pc_argsize = sizeof(struct nfsd_voidargs),
324 .pc_argzero = sizeof(struct nfsd_voidargs),
325 .pc_ressize = sizeof(struct nfsd_voidres),
326 .pc_cachetype = RC_NOCACHE,
330 [ACLPROC2_GETACL] = {
331 .pc_func = nfsacld_proc_getacl,
332 .pc_decode = nfsaclsvc_decode_getaclargs,
333 .pc_encode = nfsaclsvc_encode_getaclres,
334 .pc_release = nfsaclsvc_release_getacl,
335 .pc_argsize = sizeof(struct nfsd3_getaclargs),
336 .pc_argzero = sizeof(struct nfsd3_getaclargs),
337 .pc_ressize = sizeof(struct nfsd3_getaclres),
338 .pc_cachetype = RC_NOCACHE,
339 .pc_xdrressize = ST+1+2*(1+ACL),
342 [ACLPROC2_SETACL] = {
343 .pc_func = nfsacld_proc_setacl,
344 .pc_decode = nfsaclsvc_decode_setaclargs,
345 .pc_encode = nfssvc_encode_attrstatres,
346 .pc_release = nfssvc_release_attrstat,
347 .pc_argsize = sizeof(struct nfsd3_setaclargs),
348 .pc_argzero = sizeof(struct nfsd3_setaclargs),
349 .pc_ressize = sizeof(struct nfsd_attrstat),
350 .pc_cachetype = RC_NOCACHE,
351 .pc_xdrressize = ST+AT,
354 [ACLPROC2_GETATTR] = {
355 .pc_func = nfsacld_proc_getattr,
356 .pc_decode = nfssvc_decode_fhandleargs,
357 .pc_encode = nfssvc_encode_attrstatres,
358 .pc_release = nfssvc_release_attrstat,
359 .pc_argsize = sizeof(struct nfsd_fhandle),
360 .pc_argzero = sizeof(struct nfsd_fhandle),
361 .pc_ressize = sizeof(struct nfsd_attrstat),
362 .pc_cachetype = RC_NOCACHE,
363 .pc_xdrressize = ST+AT,
364 .pc_name = "GETATTR",
366 [ACLPROC2_ACCESS] = {
367 .pc_func = nfsacld_proc_access,
368 .pc_decode = nfsaclsvc_decode_accessargs,
369 .pc_encode = nfsaclsvc_encode_accessres,
370 .pc_release = nfsaclsvc_release_access,
371 .pc_argsize = sizeof(struct nfsd3_accessargs),
372 .pc_argzero = sizeof(struct nfsd3_accessargs),
373 .pc_ressize = sizeof(struct nfsd3_accessres),
374 .pc_cachetype = RC_NOCACHE,
375 .pc_xdrressize = ST+AT+1,
376 .pc_name = "SETATTR",
380 static DEFINE_PER_CPU_ALIGNED(unsigned long,
381 nfsd_acl_count2[ARRAY_SIZE(nfsd_acl_procedures2)]);
382 const struct svc_version nfsd_acl_version2 = {
384 .vs_nproc = ARRAY_SIZE(nfsd_acl_procedures2),
385 .vs_proc = nfsd_acl_procedures2,
386 .vs_count = nfsd_acl_count2,
387 .vs_dispatch = nfsd_dispatch,
388 .vs_xdrsize = NFS3_SVC_XDRSIZE,