Merge tag 'amd-drm-fixes-5.13-2021-05-05' of https://gitlab.freedesktop.org/agd5f...
[linux-2.6-microblaze.git] / fs / nfsd / nfs2acl.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Process version 2 NFSACL requests.
4  *
5  * Copyright (C) 2002-2003 Andreas Gruenbacher <agruen@suse.de>
6  */
7
8 #include "nfsd.h"
9 /* FIXME: nfsacl.h is a broken header */
10 #include <linux/nfsacl.h>
11 #include <linux/gfp.h>
12 #include "cache.h"
13 #include "xdr3.h"
14 #include "vfs.h"
15
16 #define NFSDDBG_FACILITY                NFSDDBG_PROC
17
18 /*
19  * NULL call.
20  */
21 static __be32
22 nfsacld_proc_null(struct svc_rqst *rqstp)
23 {
24         return rpc_success;
25 }
26
27 /*
28  * Get the Access and/or Default ACL of a file.
29  */
30 static __be32 nfsacld_proc_getacl(struct svc_rqst *rqstp)
31 {
32         struct nfsd3_getaclargs *argp = rqstp->rq_argp;
33         struct nfsd3_getaclres *resp = rqstp->rq_resp;
34         struct posix_acl *acl;
35         struct inode *inode;
36         svc_fh *fh;
37
38         dprintk("nfsd: GETACL(2acl)   %s\n", SVCFH_fmt(&argp->fh));
39
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)
43                 goto out;
44
45         inode = d_inode(fh->fh_dentry);
46
47         if (argp->mask & ~NFS_ACL_MASK) {
48                 resp->status = nfserr_inval;
49                 goto out;
50         }
51         resp->mask = argp->mask;
52
53         resp->status = fh_getattr(fh, &resp->stat);
54         if (resp->status != nfs_ok)
55                 goto out;
56
57         if (resp->mask & (NFS_ACL|NFS_ACLCNT)) {
58                 acl = get_acl(inode, ACL_TYPE_ACCESS);
59                 if (acl == NULL) {
60                         /* Solaris returns the inode's minimum ACL. */
61                         acl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
62                 }
63                 if (IS_ERR(acl)) {
64                         resp->status = nfserrno(PTR_ERR(acl));
65                         goto fail;
66                 }
67                 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! */
72                 acl = get_acl(inode, ACL_TYPE_DEFAULT);
73                 if (IS_ERR(acl)) {
74                         resp->status = nfserrno(PTR_ERR(acl));
75                         goto fail;
76                 }
77                 resp->acl_default = acl;
78         }
79
80         /* resp->acl_{access,default} are released in nfssvc_release_getacl. */
81 out:
82         return rpc_success;
83
84 fail:
85         posix_acl_release(resp->acl_access);
86         posix_acl_release(resp->acl_default);
87         goto out;
88 }
89
90 /*
91  * Set the Access and/or Default ACL of a file.
92  */
93 static __be32 nfsacld_proc_setacl(struct svc_rqst *rqstp)
94 {
95         struct nfsd3_setaclargs *argp = rqstp->rq_argp;
96         struct nfsd_attrstat *resp = rqstp->rq_resp;
97         struct inode *inode;
98         svc_fh *fh;
99         int error;
100
101         dprintk("nfsd: SETACL(2acl)   %s\n", SVCFH_fmt(&argp->fh));
102
103         fh = fh_copy(&resp->fh, &argp->fh);
104         resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_SATTR);
105         if (resp->status != nfs_ok)
106                 goto out;
107
108         inode = d_inode(fh->fh_dentry);
109
110         error = fh_want_write(fh);
111         if (error)
112                 goto out_errno;
113
114         fh_lock(fh);
115
116         error = set_posix_acl(&init_user_ns, inode, ACL_TYPE_ACCESS,
117                               argp->acl_access);
118         if (error)
119                 goto out_drop_lock;
120         error = set_posix_acl(&init_user_ns, inode, ACL_TYPE_DEFAULT,
121                               argp->acl_default);
122         if (error)
123                 goto out_drop_lock;
124
125         fh_unlock(fh);
126
127         fh_drop_write(fh);
128
129         resp->status = fh_getattr(fh, &resp->stat);
130
131 out:
132         /* argp->acl_{access,default} may have been allocated in
133            nfssvc_decode_setaclargs. */
134         posix_acl_release(argp->acl_access);
135         posix_acl_release(argp->acl_default);
136         return rpc_success;
137
138 out_drop_lock:
139         fh_unlock(fh);
140         fh_drop_write(fh);
141 out_errno:
142         resp->status = nfserrno(error);
143         goto out;
144 }
145
146 /*
147  * Check file attributes
148  */
149 static __be32 nfsacld_proc_getattr(struct svc_rqst *rqstp)
150 {
151         struct nfsd_fhandle *argp = rqstp->rq_argp;
152         struct nfsd_attrstat *resp = rqstp->rq_resp;
153
154         dprintk("nfsd: GETATTR  %s\n", SVCFH_fmt(&argp->fh));
155
156         fh_copy(&resp->fh, &argp->fh);
157         resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP);
158         if (resp->status != nfs_ok)
159                 goto out;
160         resp->status = fh_getattr(&resp->fh, &resp->stat);
161 out:
162         return rpc_success;
163 }
164
165 /*
166  * Check file access
167  */
168 static __be32 nfsacld_proc_access(struct svc_rqst *rqstp)
169 {
170         struct nfsd3_accessargs *argp = rqstp->rq_argp;
171         struct nfsd3_accessres *resp = rqstp->rq_resp;
172
173         dprintk("nfsd: ACCESS(2acl)   %s 0x%x\n",
174                         SVCFH_fmt(&argp->fh),
175                         argp->access);
176
177         fh_copy(&resp->fh, &argp->fh);
178         resp->access = argp->access;
179         resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
180         if (resp->status != nfs_ok)
181                 goto out;
182         resp->status = fh_getattr(&resp->fh, &resp->stat);
183 out:
184         return rpc_success;
185 }
186
187 /*
188  * XDR decode functions
189  */
190
191 static int nfsaclsvc_decode_getaclargs(struct svc_rqst *rqstp, __be32 *p)
192 {
193         struct xdr_stream *xdr = &rqstp->rq_arg_stream;
194         struct nfsd3_getaclargs *argp = rqstp->rq_argp;
195
196         if (!svcxdr_decode_fhandle(xdr, &argp->fh))
197                 return 0;
198         if (xdr_stream_decode_u32(xdr, &argp->mask) < 0)
199                 return 0;
200
201         return 1;
202 }
203
204 static int nfsaclsvc_decode_setaclargs(struct svc_rqst *rqstp, __be32 *p)
205 {
206         struct xdr_stream *xdr = &rqstp->rq_arg_stream;
207         struct nfsd3_setaclargs *argp = rqstp->rq_argp;
208
209         if (!svcxdr_decode_fhandle(xdr, &argp->fh))
210                 return 0;
211         if (xdr_stream_decode_u32(xdr, &argp->mask) < 0)
212                 return 0;
213         if (argp->mask & ~NFS_ACL_MASK)
214                 return 0;
215         if (!nfs_stream_decode_acl(xdr, NULL, (argp->mask & NFS_ACL) ?
216                                    &argp->acl_access : NULL))
217                 return 0;
218         if (!nfs_stream_decode_acl(xdr, NULL, (argp->mask & NFS_DFACL) ?
219                                    &argp->acl_default : NULL))
220                 return 0;
221
222         return 1;
223 }
224
225 static int nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p)
226 {
227         struct xdr_stream *xdr = &rqstp->rq_arg_stream;
228         struct nfsd3_accessargs *args = rqstp->rq_argp;
229
230         if (!svcxdr_decode_fhandle(xdr, &args->fh))
231                 return 0;
232         if (xdr_stream_decode_u32(xdr, &args->access) < 0)
233                 return 0;
234
235         return 1;
236 }
237
238 /*
239  * XDR encode functions
240  */
241
242 /* GETACL */
243 static int nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, __be32 *p)
244 {
245         struct nfsd3_getaclres *resp = rqstp->rq_resp;
246         struct dentry *dentry = resp->fh.fh_dentry;
247         struct inode *inode;
248         struct kvec *head = rqstp->rq_res.head;
249         unsigned int base;
250         int n;
251         int w;
252
253         *p++ = resp->status;
254         if (resp->status != nfs_ok)
255                 return xdr_ressize_check(rqstp, p);
256
257         /*
258          * Since this is version 2, the check for nfserr in
259          * nfsd_dispatch actually ensures the following cannot happen.
260          * However, it seems fragile to depend on that.
261          */
262         if (dentry == NULL || d_really_is_negative(dentry))
263                 return 0;
264         inode = d_inode(dentry);
265
266         p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat);
267         *p++ = htonl(resp->mask);
268         if (!xdr_ressize_check(rqstp, p))
269                 return 0;
270         base = (char *)p - (char *)head->iov_base;
271
272         rqstp->rq_res.page_len = w = nfsacl_size(
273                 (resp->mask & NFS_ACL)   ? resp->acl_access  : NULL,
274                 (resp->mask & NFS_DFACL) ? resp->acl_default : NULL);
275         while (w > 0) {
276                 if (!*(rqstp->rq_next_page++))
277                         return 0;
278                 w -= PAGE_SIZE;
279         }
280
281         n = nfsacl_encode(&rqstp->rq_res, base, inode,
282                           resp->acl_access,
283                           resp->mask & NFS_ACL, 0);
284         if (n > 0)
285                 n = nfsacl_encode(&rqstp->rq_res, base + n, inode,
286                                   resp->acl_default,
287                                   resp->mask & NFS_DFACL,
288                                   NFS_ACL_DEFAULT);
289         return (n > 0);
290 }
291
292 static int nfsaclsvc_encode_attrstatres(struct svc_rqst *rqstp, __be32 *p)
293 {
294         struct nfsd_attrstat *resp = rqstp->rq_resp;
295
296         *p++ = resp->status;
297         if (resp->status != nfs_ok)
298                 goto out;
299
300         p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat);
301 out:
302         return xdr_ressize_check(rqstp, p);
303 }
304
305 /* ACCESS */
306 static int nfsaclsvc_encode_accessres(struct svc_rqst *rqstp, __be32 *p)
307 {
308         struct nfsd3_accessres *resp = rqstp->rq_resp;
309
310         *p++ = resp->status;
311         if (resp->status != nfs_ok)
312                 goto out;
313
314         p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat);
315         *p++ = htonl(resp->access);
316 out:
317         return xdr_ressize_check(rqstp, p);
318 }
319
320 /*
321  * XDR release functions
322  */
323 static void nfsaclsvc_release_getacl(struct svc_rqst *rqstp)
324 {
325         struct nfsd3_getaclres *resp = rqstp->rq_resp;
326
327         fh_put(&resp->fh);
328         posix_acl_release(resp->acl_access);
329         posix_acl_release(resp->acl_default);
330 }
331
332 static void nfsaclsvc_release_attrstat(struct svc_rqst *rqstp)
333 {
334         struct nfsd_attrstat *resp = rqstp->rq_resp;
335
336         fh_put(&resp->fh);
337 }
338
339 static void nfsaclsvc_release_access(struct svc_rqst *rqstp)
340 {
341         struct nfsd3_accessres *resp = rqstp->rq_resp;
342
343         fh_put(&resp->fh);
344 }
345
346 struct nfsd3_voidargs { int dummy; };
347
348 #define ST 1            /* status*/
349 #define AT 21           /* attributes */
350 #define pAT (1+AT)      /* post attributes - conditional */
351 #define ACL (1+NFS_ACL_MAX_ENTRIES*3)  /* Access Control List */
352
353 static const struct svc_procedure nfsd_acl_procedures2[5] = {
354         [ACLPROC2_NULL] = {
355                 .pc_func = nfsacld_proc_null,
356                 .pc_decode = nfssvc_decode_voidarg,
357                 .pc_encode = nfssvc_encode_voidres,
358                 .pc_argsize = sizeof(struct nfsd_voidargs),
359                 .pc_ressize = sizeof(struct nfsd_voidres),
360                 .pc_cachetype = RC_NOCACHE,
361                 .pc_xdrressize = ST,
362                 .pc_name = "NULL",
363         },
364         [ACLPROC2_GETACL] = {
365                 .pc_func = nfsacld_proc_getacl,
366                 .pc_decode = nfsaclsvc_decode_getaclargs,
367                 .pc_encode = nfsaclsvc_encode_getaclres,
368                 .pc_release = nfsaclsvc_release_getacl,
369                 .pc_argsize = sizeof(struct nfsd3_getaclargs),
370                 .pc_ressize = sizeof(struct nfsd3_getaclres),
371                 .pc_cachetype = RC_NOCACHE,
372                 .pc_xdrressize = ST+1+2*(1+ACL),
373                 .pc_name = "GETACL",
374         },
375         [ACLPROC2_SETACL] = {
376                 .pc_func = nfsacld_proc_setacl,
377                 .pc_decode = nfsaclsvc_decode_setaclargs,
378                 .pc_encode = nfsaclsvc_encode_attrstatres,
379                 .pc_release = nfsaclsvc_release_attrstat,
380                 .pc_argsize = sizeof(struct nfsd3_setaclargs),
381                 .pc_ressize = sizeof(struct nfsd_attrstat),
382                 .pc_cachetype = RC_NOCACHE,
383                 .pc_xdrressize = ST+AT,
384                 .pc_name = "SETACL",
385         },
386         [ACLPROC2_GETATTR] = {
387                 .pc_func = nfsacld_proc_getattr,
388                 .pc_decode = nfssvc_decode_fhandleargs,
389                 .pc_encode = nfsaclsvc_encode_attrstatres,
390                 .pc_release = nfsaclsvc_release_attrstat,
391                 .pc_argsize = sizeof(struct nfsd_fhandle),
392                 .pc_ressize = sizeof(struct nfsd_attrstat),
393                 .pc_cachetype = RC_NOCACHE,
394                 .pc_xdrressize = ST+AT,
395                 .pc_name = "GETATTR",
396         },
397         [ACLPROC2_ACCESS] = {
398                 .pc_func = nfsacld_proc_access,
399                 .pc_decode = nfsaclsvc_decode_accessargs,
400                 .pc_encode = nfsaclsvc_encode_accessres,
401                 .pc_release = nfsaclsvc_release_access,
402                 .pc_argsize = sizeof(struct nfsd3_accessargs),
403                 .pc_ressize = sizeof(struct nfsd3_accessres),
404                 .pc_cachetype = RC_NOCACHE,
405                 .pc_xdrressize = ST+AT+1,
406                 .pc_name = "SETATTR",
407         },
408 };
409
410 static unsigned int nfsd_acl_count2[ARRAY_SIZE(nfsd_acl_procedures2)];
411 const struct svc_version nfsd_acl_version2 = {
412         .vs_vers        = 2,
413         .vs_nproc       = 5,
414         .vs_proc        = nfsd_acl_procedures2,
415         .vs_count       = nfsd_acl_count2,
416         .vs_dispatch    = nfsd_dispatch,
417         .vs_xdrsize     = NFS3_SVC_XDRSIZE,
418 };