blob: df2e145cfab0d7eeb7003f0a2e5ee32541dfd1e8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00002/*
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +00003 * Process version 2 NFSACL requests.
4 *
5 * Copyright (C) 2002-2003 Andreas Gruenbacher <agruen@suse.de>
6 */
7
Boaz Harrosh9a74af22009-12-03 20:30:56 +02008#include "nfsd.h"
9/* FIXME: nfsacl.h is a broken header */
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000010#include <linux/nfsacl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020012#include "cache.h"
13#include "xdr3.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050014#include "vfs.h"
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000015
16#define NFSDDBG_FACILITY NFSDDBG_PROC
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000017
18/*
19 * NULL call.
20 */
Al Viro7111c662006-10-19 23:28:45 -070021static __be32
Christoph Hellwiga6beb732017-05-08 17:35:49 +020022nfsacld_proc_null(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000023{
Chuck Levercc028a12020-10-02 15:52:44 -040024 return rpc_success;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000025}
26
27/*
28 * Get the Access and/or Default ACL of a file.
29 */
Christoph Hellwiga6beb732017-05-08 17:35:49 +020030static __be32 nfsacld_proc_getacl(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000031{
Christoph Hellwiga6beb732017-05-08 17:35:49 +020032 struct nfsd3_getaclargs *argp = rqstp->rq_argp;
33 struct nfsd3_getaclres *resp = rqstp->rq_resp;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000034 struct posix_acl *acl;
Christoph Hellwig4ac72492013-12-20 05:16:55 -080035 struct inode *inode;
36 svc_fh *fh;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000037
38 dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp->fh));
39
40 fh = fh_copy(&resp->fh, &argp->fh);
Chuck Leverf0af2212020-10-01 18:59:49 -040041 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP);
42 if (resp->status != nfs_ok)
43 goto out;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000044
David Howells2b0143b2015-03-17 22:25:59 +000045 inode = d_inode(fh->fh_dentry);
Christoph Hellwig4ac72492013-12-20 05:16:55 -080046
Chuck Leverf0af2212020-10-01 18:59:49 -040047 if (argp->mask & ~NFS_ACL_MASK) {
48 resp->status = nfserr_inval;
49 goto out;
50 }
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000051 resp->mask = argp->mask;
52
Chuck Leverf0af2212020-10-01 18:59:49 -040053 resp->status = fh_getattr(fh, &resp->stat);
54 if (resp->status != nfs_ok)
55 goto out;
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -050056
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000057 if (resp->mask & (NFS_ACL|NFS_ACLCNT)) {
Christoph Hellwig4ac72492013-12-20 05:16:55 -080058 acl = get_acl(inode, ACL_TYPE_ACCESS);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000059 if (acl == NULL) {
60 /* Solaris returns the inode's minimum ACL. */
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000061 acl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
62 }
Kinglong Mee35e634b2014-07-09 21:54:16 +080063 if (IS_ERR(acl)) {
Chuck Leverf0af2212020-10-01 18:59:49 -040064 resp->status = nfserrno(PTR_ERR(acl));
Kinglong Mee35e634b2014-07-09 21:54:16 +080065 goto fail;
66 }
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000067 resp->acl_access = acl;
68 }
69 if (resp->mask & (NFS_DFACL|NFS_DFACLCNT)) {
70 /* Check how Solaris handles requests for the Default ACL
71 of a non-directory! */
Christoph Hellwig4ac72492013-12-20 05:16:55 -080072 acl = get_acl(inode, ACL_TYPE_DEFAULT);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000073 if (IS_ERR(acl)) {
Chuck Leverf0af2212020-10-01 18:59:49 -040074 resp->status = nfserrno(PTR_ERR(acl));
Christoph Hellwig4ac72492013-12-20 05:16:55 -080075 goto fail;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000076 }
77 resp->acl_default = acl;
78 }
79
80 /* resp->acl_{access,default} are released in nfssvc_release_getacl. */
Chuck Leverf0af2212020-10-01 18:59:49 -040081out:
Chuck Levercc028a12020-10-02 15:52:44 -040082 return rpc_success;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000083
84fail:
85 posix_acl_release(resp->acl_access);
86 posix_acl_release(resp->acl_default);
Chuck Leverf0af2212020-10-01 18:59:49 -040087 goto out;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000088}
89
90/*
91 * Set the Access and/or Default ACL of a file.
92 */
Christoph Hellwiga6beb732017-05-08 17:35:49 +020093static __be32 nfsacld_proc_setacl(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000094{
Christoph Hellwiga6beb732017-05-08 17:35:49 +020095 struct nfsd3_setaclargs *argp = rqstp->rq_argp;
96 struct nfsd_attrstat *resp = rqstp->rq_resp;
Christoph Hellwig4ac72492013-12-20 05:16:55 -080097 struct inode *inode;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000098 svc_fh *fh;
Christoph Hellwig4ac72492013-12-20 05:16:55 -080099 int error;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000100
101 dprintk("nfsd: SETACL(2acl) %s\n", SVCFH_fmt(&argp->fh));
102
103 fh = fh_copy(&resp->fh, &argp->fh);
Chuck Leverf0af2212020-10-01 18:59:49 -0400104 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_SATTR);
105 if (resp->status != nfs_ok)
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800106 goto out;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000107
David Howells2b0143b2015-03-17 22:25:59 +0000108 inode = d_inode(fh->fh_dentry);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000109
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800110 error = fh_want_write(fh);
111 if (error)
112 goto out_errno;
113
Ben Hutchings99965372016-06-22 19:43:35 +0100114 fh_lock(fh);
115
116 error = set_posix_acl(inode, ACL_TYPE_ACCESS, argp->acl_access);
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800117 if (error)
Ben Hutchings99965372016-06-22 19:43:35 +0100118 goto out_drop_lock;
119 error = set_posix_acl(inode, ACL_TYPE_DEFAULT, argp->acl_default);
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800120 if (error)
Ben Hutchings99965372016-06-22 19:43:35 +0100121 goto out_drop_lock;
122
123 fh_unlock(fh);
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800124
125 fh_drop_write(fh);
126
Chuck Leverf0af2212020-10-01 18:59:49 -0400127 resp->status = fh_getattr(fh, &resp->stat);
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800128
129out:
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000130 /* 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);
Chuck Levercc028a12020-10-02 15:52:44 -0400134 return rpc_success;
Chuck Leverf0af2212020-10-01 18:59:49 -0400135
Ben Hutchings99965372016-06-22 19:43:35 +0100136out_drop_lock:
137 fh_unlock(fh);
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800138 fh_drop_write(fh);
139out_errno:
Chuck Leverf0af2212020-10-01 18:59:49 -0400140 resp->status = nfserrno(error);
Christoph Hellwig4ac72492013-12-20 05:16:55 -0800141 goto out;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000142}
143
144/*
145 * Check file attributes
146 */
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200147static __be32 nfsacld_proc_getattr(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000148{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200149 struct nfsd_fhandle *argp = rqstp->rq_argp;
150 struct nfsd_attrstat *resp = rqstp->rq_resp;
Chuck Leverf0af2212020-10-01 18:59:49 -0400151
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000152 dprintk("nfsd: GETATTR %s\n", SVCFH_fmt(&argp->fh));
153
154 fh_copy(&resp->fh, &argp->fh);
Chuck Leverf0af2212020-10-01 18:59:49 -0400155 resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP);
156 if (resp->status != nfs_ok)
157 goto out;
158 resp->status = fh_getattr(&resp->fh, &resp->stat);
159out:
Chuck Levercc028a12020-10-02 15:52:44 -0400160 return rpc_success;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000161}
162
163/*
164 * Check file access
165 */
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200166static __be32 nfsacld_proc_access(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000167{
Christoph Hellwiga6beb732017-05-08 17:35:49 +0200168 struct nfsd3_accessargs *argp = rqstp->rq_argp;
169 struct nfsd3_accessres *resp = rqstp->rq_resp;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000170
171 dprintk("nfsd: ACCESS(2acl) %s 0x%x\n",
172 SVCFH_fmt(&argp->fh),
173 argp->access);
174
175 fh_copy(&resp->fh, &argp->fh);
176 resp->access = argp->access;
Chuck Leverf0af2212020-10-01 18:59:49 -0400177 resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
178 if (resp->status != nfs_ok)
179 goto out;
180 resp->status = fh_getattr(&resp->fh, &resp->stat);
181out:
Chuck Levercc028a12020-10-02 15:52:44 -0400182 return rpc_success;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000183}
184
185/*
186 * XDR decode functions
187 */
Chuck Leverdcc46992020-10-01 18:59:12 -0400188
Christoph Hellwig026fec72017-05-08 19:01:48 +0200189static int nfsaclsvc_decode_getaclargs(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000190{
Chuck Lever635a45d2020-11-17 11:32:04 -0500191 struct xdr_stream *xdr = &rqstp->rq_arg_stream;
Christoph Hellwig026fec72017-05-08 19:01:48 +0200192 struct nfsd3_getaclargs *argp = rqstp->rq_argp;
193
Chuck Lever635a45d2020-11-17 11:32:04 -0500194 if (!svcxdr_decode_fhandle(xdr, &argp->fh))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000195 return 0;
Chuck Lever635a45d2020-11-17 11:32:04 -0500196 if (xdr_stream_decode_u32(xdr, &argp->mask) < 0)
197 return 0;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000198
Chuck Lever635a45d2020-11-17 11:32:04 -0500199 return 1;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000200}
201
Christoph Hellwig026fec72017-05-08 19:01:48 +0200202static int nfsaclsvc_decode_setaclargs(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000203{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200204 struct nfsd3_setaclargs *argp = rqstp->rq_argp;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000205 struct kvec *head = rqstp->rq_arg.head;
206 unsigned int base;
207 int n;
208
Benoit Tained40aa332014-05-22 16:32:30 +0200209 p = nfs2svc_decode_fh(p, &argp->fh);
210 if (!p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000211 return 0;
212 argp->mask = ntohl(*p++);
Kinglong Mee7b8f4582015-07-03 19:39:02 +0800213 if (argp->mask & ~NFS_ACL_MASK ||
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000214 !xdr_argsize_check(rqstp, p))
215 return 0;
216
217 base = (char *)p - (char *)head->iov_base;
218 n = nfsacl_decode(&rqstp->rq_arg, base, NULL,
219 (argp->mask & NFS_ACL) ?
220 &argp->acl_access : NULL);
221 if (n > 0)
222 n = nfsacl_decode(&rqstp->rq_arg, base + n, NULL,
223 (argp->mask & NFS_DFACL) ?
224 &argp->acl_default : NULL);
225 return (n > 0);
226}
227
Christoph Hellwig026fec72017-05-08 19:01:48 +0200228static int nfsaclsvc_decode_fhandleargs(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000229{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200230 struct nfsd_fhandle *argp = rqstp->rq_argp;
231
Benoit Tained40aa332014-05-22 16:32:30 +0200232 p = nfs2svc_decode_fh(p, &argp->fh);
233 if (!p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000234 return 0;
235 return xdr_argsize_check(rqstp, p);
236}
237
Christoph Hellwig026fec72017-05-08 19:01:48 +0200238static int nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000239{
Christoph Hellwig026fec72017-05-08 19:01:48 +0200240 struct nfsd3_accessargs *argp = rqstp->rq_argp;
241
Benoit Tained40aa332014-05-22 16:32:30 +0200242 p = nfs2svc_decode_fh(p, &argp->fh);
243 if (!p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000244 return 0;
245 argp->access = ntohl(*p++);
246
247 return xdr_argsize_check(rqstp, p);
248}
249
250/*
251 * XDR encode functions
252 */
253
254/* GETACL */
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200255static int nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000256{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200257 struct nfsd3_getaclres *resp = rqstp->rq_resp;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000258 struct dentry *dentry = resp->fh.fh_dentry;
Prasad Paefa89d2007-10-24 15:14:32 -0500259 struct inode *inode;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000260 struct kvec *head = rqstp->rq_res.head;
261 unsigned int base;
262 int n;
Jesper Juhlcb65a5b2006-12-08 02:39:39 -0800263 int w;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000264
Chuck Levercc028a12020-10-02 15:52:44 -0400265 *p++ = resp->status;
Chuck Leverf0af2212020-10-01 18:59:49 -0400266 if (resp->status != nfs_ok)
267 return xdr_ressize_check(rqstp, p);
268
Prasad Paefa89d2007-10-24 15:14:32 -0500269 /*
270 * Since this is version 2, the check for nfserr in
271 * nfsd_dispatch actually ensures the following cannot happen.
272 * However, it seems fragile to depend on that.
273 */
David Howells2b0143b2015-03-17 22:25:59 +0000274 if (dentry == NULL || d_really_is_negative(dentry))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000275 return 0;
David Howells2b0143b2015-03-17 22:25:59 +0000276 inode = d_inode(dentry);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000277
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500278 p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000279 *p++ = htonl(resp->mask);
280 if (!xdr_ressize_check(rqstp, p))
281 return 0;
282 base = (char *)p - (char *)head->iov_base;
283
Jesper Juhlcb65a5b2006-12-08 02:39:39 -0800284 rqstp->rq_res.page_len = w = nfsacl_size(
285 (resp->mask & NFS_ACL) ? resp->acl_access : NULL,
286 (resp->mask & NFS_DFACL) ? resp->acl_default : NULL);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000287 while (w > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500288 if (!*(rqstp->rq_next_page++))
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000289 return 0;
290 w -= PAGE_SIZE;
291 }
292
293 n = nfsacl_encode(&rqstp->rq_res, base, inode,
294 resp->acl_access,
295 resp->mask & NFS_ACL, 0);
296 if (n > 0)
297 n = nfsacl_encode(&rqstp->rq_res, base + n, inode,
298 resp->acl_default,
299 resp->mask & NFS_DFACL,
300 NFS_ACL_DEFAULT);
Kinglong Mee7b8f4582015-07-03 19:39:02 +0800301 return (n > 0);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000302}
303
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200304static int nfsaclsvc_encode_attrstatres(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000305{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200306 struct nfsd_attrstat *resp = rqstp->rq_resp;
307
Chuck Levercc028a12020-10-02 15:52:44 -0400308 *p++ = resp->status;
Chuck Leverf0af2212020-10-01 18:59:49 -0400309 if (resp->status != nfs_ok)
Chuck Levercc028a12020-10-02 15:52:44 -0400310 goto out;
Chuck Leverf0af2212020-10-01 18:59:49 -0400311
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500312 p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Chuck Levercc028a12020-10-02 15:52:44 -0400313out:
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000314 return xdr_ressize_check(rqstp, p);
315}
316
317/* ACCESS */
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200318static int nfsaclsvc_encode_accessres(struct svc_rqst *rqstp, __be32 *p)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000319{
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200320 struct nfsd3_accessres *resp = rqstp->rq_resp;
321
Chuck Levercc028a12020-10-02 15:52:44 -0400322 *p++ = resp->status;
Chuck Leverf0af2212020-10-01 18:59:49 -0400323 if (resp->status != nfs_ok)
Chuck Levercc028a12020-10-02 15:52:44 -0400324 goto out;
Chuck Leverf0af2212020-10-01 18:59:49 -0400325
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500326 p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000327 *p++ = htonl(resp->access);
Chuck Levercc028a12020-10-02 15:52:44 -0400328out:
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000329 return xdr_ressize_check(rqstp, p);
330}
331
332/*
333 * XDR release functions
334 */
Christoph Hellwig85374882017-05-08 18:48:24 +0200335static void nfsaclsvc_release_getacl(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000336{
Christoph Hellwig85374882017-05-08 18:48:24 +0200337 struct nfsd3_getaclres *resp = rqstp->rq_resp;
338
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000339 fh_put(&resp->fh);
340 posix_acl_release(resp->acl_access);
341 posix_acl_release(resp->acl_default);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000342}
343
Christoph Hellwig85374882017-05-08 18:48:24 +0200344static void nfsaclsvc_release_attrstat(struct svc_rqst *rqstp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000345{
Christoph Hellwig85374882017-05-08 18:48:24 +0200346 struct nfsd_attrstat *resp = rqstp->rq_resp;
347
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000348 fh_put(&resp->fh);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000349}
350
Christoph Hellwig85374882017-05-08 18:48:24 +0200351static void nfsaclsvc_release_access(struct svc_rqst *rqstp)
Greg Banksc9ce2282007-02-20 10:12:34 +1100352{
Christoph Hellwig85374882017-05-08 18:48:24 +0200353 struct nfsd3_accessres *resp = rqstp->rq_resp;
354
355 fh_put(&resp->fh);
Greg Banksc9ce2282007-02-20 10:12:34 +1100356}
357
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000358struct nfsd3_voidargs { int dummy; };
359
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000360#define ST 1 /* status*/
361#define AT 21 /* attributes */
362#define pAT (1+AT) /* post attributes - conditional */
363#define ACL (1+NFS_ACL_MAX_ENTRIES*3) /* Access Control List */
364
Chuck Leverba1df792020-10-01 18:59:07 -0400365static const struct svc_procedure nfsd_acl_procedures2[5] = {
366 [ACLPROC2_NULL] = {
367 .pc_func = nfsacld_proc_null,
Chuck Lever788f7182020-11-05 14:48:29 -0500368 .pc_decode = nfssvc_decode_voidarg,
369 .pc_encode = nfssvc_encode_voidres,
370 .pc_argsize = sizeof(struct nfsd_voidargs),
371 .pc_ressize = sizeof(struct nfsd_voidres),
Chuck Leverba1df792020-10-01 18:59:07 -0400372 .pc_cachetype = RC_NOCACHE,
373 .pc_xdrressize = ST,
Chuck Lever2289e872020-09-17 17:22:49 -0400374 .pc_name = "NULL",
Chuck Leverba1df792020-10-01 18:59:07 -0400375 },
376 [ACLPROC2_GETACL] = {
377 .pc_func = nfsacld_proc_getacl,
378 .pc_decode = nfsaclsvc_decode_getaclargs,
379 .pc_encode = nfsaclsvc_encode_getaclres,
380 .pc_release = nfsaclsvc_release_getacl,
381 .pc_argsize = sizeof(struct nfsd3_getaclargs),
382 .pc_ressize = sizeof(struct nfsd3_getaclres),
383 .pc_cachetype = RC_NOCACHE,
384 .pc_xdrressize = ST+1+2*(1+ACL),
Chuck Lever2289e872020-09-17 17:22:49 -0400385 .pc_name = "GETACL",
Chuck Leverba1df792020-10-01 18:59:07 -0400386 },
387 [ACLPROC2_SETACL] = {
388 .pc_func = nfsacld_proc_setacl,
389 .pc_decode = nfsaclsvc_decode_setaclargs,
390 .pc_encode = nfsaclsvc_encode_attrstatres,
391 .pc_release = nfsaclsvc_release_attrstat,
392 .pc_argsize = sizeof(struct nfsd3_setaclargs),
393 .pc_ressize = sizeof(struct nfsd_attrstat),
394 .pc_cachetype = RC_NOCACHE,
395 .pc_xdrressize = ST+AT,
Chuck Lever2289e872020-09-17 17:22:49 -0400396 .pc_name = "SETACL",
Chuck Leverba1df792020-10-01 18:59:07 -0400397 },
398 [ACLPROC2_GETATTR] = {
399 .pc_func = nfsacld_proc_getattr,
400 .pc_decode = nfsaclsvc_decode_fhandleargs,
401 .pc_encode = nfsaclsvc_encode_attrstatres,
402 .pc_release = nfsaclsvc_release_attrstat,
403 .pc_argsize = sizeof(struct nfsd_fhandle),
404 .pc_ressize = sizeof(struct nfsd_attrstat),
405 .pc_cachetype = RC_NOCACHE,
406 .pc_xdrressize = ST+AT,
Chuck Lever2289e872020-09-17 17:22:49 -0400407 .pc_name = "GETATTR",
Chuck Leverba1df792020-10-01 18:59:07 -0400408 },
409 [ACLPROC2_ACCESS] = {
410 .pc_func = nfsacld_proc_access,
411 .pc_decode = nfsaclsvc_decode_accessargs,
412 .pc_encode = nfsaclsvc_encode_accessres,
413 .pc_release = nfsaclsvc_release_access,
414 .pc_argsize = sizeof(struct nfsd3_accessargs),
415 .pc_ressize = sizeof(struct nfsd3_accessres),
416 .pc_cachetype = RC_NOCACHE,
417 .pc_xdrressize = ST+AT+1,
Chuck Lever2289e872020-09-17 17:22:49 -0400418 .pc_name = "SETATTR",
Chuck Leverba1df792020-10-01 18:59:07 -0400419 },
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000420};
421
Christoph Hellwig7fd38af2017-05-08 23:40:27 +0200422static unsigned int nfsd_acl_count2[ARRAY_SIZE(nfsd_acl_procedures2)];
Christoph Hellwige9679182017-05-12 16:21:37 +0200423const struct svc_version nfsd_acl_version2 = {
424 .vs_vers = 2,
425 .vs_nproc = 5,
426 .vs_proc = nfsd_acl_procedures2,
427 .vs_count = nfsd_acl_count2,
428 .vs_dispatch = nfsd_dispatch,
429 .vs_xdrsize = NFS3_SVC_XDRSIZE,
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000430};