Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 2 | /* |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 3 | * Process version 2 NFSACL requests. |
| 4 | * |
| 5 | * Copyright (C) 2002-2003 Andreas Gruenbacher <agruen@suse.de> |
| 6 | */ |
| 7 | |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 8 | #include "nfsd.h" |
| 9 | /* FIXME: nfsacl.h is a broken header */ |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 10 | #include <linux/nfsacl.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/gfp.h> |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 12 | #include "cache.h" |
| 13 | #include "xdr3.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 14 | #include "vfs.h" |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 15 | |
| 16 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 17 | |
| 18 | /* |
| 19 | * NULL call. |
| 20 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 21 | static __be32 |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 22 | nfsacld_proc_null(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 23 | { |
Chuck Lever | cc028a1 | 2020-10-02 15:52:44 -0400 | [diff] [blame] | 24 | return rpc_success; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | /* |
| 28 | * Get the Access and/or Default ACL of a file. |
| 29 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 30 | static __be32 nfsacld_proc_getacl(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 31 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 32 | struct nfsd3_getaclargs *argp = rqstp->rq_argp; |
| 33 | struct nfsd3_getaclres *resp = rqstp->rq_resp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 34 | struct posix_acl *acl; |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 35 | struct inode *inode; |
| 36 | svc_fh *fh; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 37 | |
| 38 | dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp->fh)); |
| 39 | |
| 40 | fh = fh_copy(&resp->fh, &argp->fh); |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 41 | resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP); |
| 42 | if (resp->status != nfs_ok) |
| 43 | goto out; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 44 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 45 | inode = d_inode(fh->fh_dentry); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 46 | |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 47 | if (argp->mask & ~NFS_ACL_MASK) { |
| 48 | resp->status = nfserr_inval; |
| 49 | goto out; |
| 50 | } |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 51 | resp->mask = argp->mask; |
| 52 | |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 53 | resp->status = fh_getattr(fh, &resp->stat); |
| 54 | if (resp->status != nfs_ok) |
| 55 | goto out; |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 56 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 57 | if (resp->mask & (NFS_ACL|NFS_ACLCNT)) { |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 58 | acl = get_acl(inode, ACL_TYPE_ACCESS); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 59 | if (acl == NULL) { |
| 60 | /* Solaris returns the inode's minimum ACL. */ |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 61 | acl = posix_acl_from_mode(inode->i_mode, GFP_KERNEL); |
| 62 | } |
Kinglong Mee | 35e634b | 2014-07-09 21:54:16 +0800 | [diff] [blame] | 63 | if (IS_ERR(acl)) { |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 64 | resp->status = nfserrno(PTR_ERR(acl)); |
Kinglong Mee | 35e634b | 2014-07-09 21:54:16 +0800 | [diff] [blame] | 65 | goto fail; |
| 66 | } |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 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! */ |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 72 | acl = get_acl(inode, ACL_TYPE_DEFAULT); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 73 | if (IS_ERR(acl)) { |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 74 | resp->status = nfserrno(PTR_ERR(acl)); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 75 | goto fail; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 76 | } |
| 77 | resp->acl_default = acl; |
| 78 | } |
| 79 | |
| 80 | /* resp->acl_{access,default} are released in nfssvc_release_getacl. */ |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 81 | out: |
Chuck Lever | cc028a1 | 2020-10-02 15:52:44 -0400 | [diff] [blame] | 82 | return rpc_success; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 83 | |
| 84 | fail: |
| 85 | posix_acl_release(resp->acl_access); |
| 86 | posix_acl_release(resp->acl_default); |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 87 | goto out; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | /* |
| 91 | * Set the Access and/or Default ACL of a file. |
| 92 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 93 | static __be32 nfsacld_proc_setacl(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 94 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 95 | struct nfsd3_setaclargs *argp = rqstp->rq_argp; |
| 96 | struct nfsd_attrstat *resp = rqstp->rq_resp; |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 97 | struct inode *inode; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 98 | svc_fh *fh; |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 99 | int error; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 100 | |
| 101 | dprintk("nfsd: SETACL(2acl) %s\n", SVCFH_fmt(&argp->fh)); |
| 102 | |
| 103 | fh = fh_copy(&resp->fh, &argp->fh); |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 104 | resp->status = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_SATTR); |
| 105 | if (resp->status != nfs_ok) |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 106 | goto out; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 107 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 108 | inode = d_inode(fh->fh_dentry); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 109 | |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 110 | error = fh_want_write(fh); |
| 111 | if (error) |
| 112 | goto out_errno; |
| 113 | |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 114 | fh_lock(fh); |
| 115 | |
Christian Brauner | e65ce2a | 2021-01-21 14:19:27 +0100 | [diff] [blame] | 116 | error = set_posix_acl(&init_user_ns, inode, ACL_TYPE_ACCESS, |
| 117 | argp->acl_access); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 118 | if (error) |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 119 | goto out_drop_lock; |
Christian Brauner | e65ce2a | 2021-01-21 14:19:27 +0100 | [diff] [blame] | 120 | error = set_posix_acl(&init_user_ns, inode, ACL_TYPE_DEFAULT, |
| 121 | argp->acl_default); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 122 | if (error) |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 123 | goto out_drop_lock; |
| 124 | |
| 125 | fh_unlock(fh); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 126 | |
| 127 | fh_drop_write(fh); |
| 128 | |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 129 | resp->status = fh_getattr(fh, &resp->stat); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 130 | |
| 131 | out: |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 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); |
Chuck Lever | cc028a1 | 2020-10-02 15:52:44 -0400 | [diff] [blame] | 136 | return rpc_success; |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 137 | |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 138 | out_drop_lock: |
| 139 | fh_unlock(fh); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 140 | fh_drop_write(fh); |
| 141 | out_errno: |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 142 | resp->status = nfserrno(error); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 143 | goto out; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | /* |
| 147 | * Check file attributes |
| 148 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 149 | static __be32 nfsacld_proc_getattr(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 150 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 151 | struct nfsd_fhandle *argp = rqstp->rq_argp; |
| 152 | struct nfsd_attrstat *resp = rqstp->rq_resp; |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 153 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 154 | dprintk("nfsd: GETATTR %s\n", SVCFH_fmt(&argp->fh)); |
| 155 | |
| 156 | fh_copy(&resp->fh, &argp->fh); |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 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: |
Chuck Lever | cc028a1 | 2020-10-02 15:52:44 -0400 | [diff] [blame] | 162 | return rpc_success; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | /* |
| 166 | * Check file access |
| 167 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 168 | static __be32 nfsacld_proc_access(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 169 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 170 | struct nfsd3_accessargs *argp = rqstp->rq_argp; |
| 171 | struct nfsd3_accessres *resp = rqstp->rq_resp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 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; |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 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: |
Chuck Lever | cc028a1 | 2020-10-02 15:52:44 -0400 | [diff] [blame] | 184 | return rpc_success; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /* |
| 188 | * XDR decode functions |
| 189 | */ |
Chuck Lever | dcc4699 | 2020-10-01 18:59:12 -0400 | [diff] [blame] | 190 | |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 191 | static bool |
Chuck Lever | 16c6636 | 2021-10-12 11:57:22 -0400 | [diff] [blame] | 192 | nfsaclsvc_decode_getaclargs(struct svc_rqst *rqstp, struct xdr_stream *xdr) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 193 | { |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 194 | struct nfsd3_getaclargs *argp = rqstp->rq_argp; |
| 195 | |
Chuck Lever | 635a45d | 2020-11-17 11:32:04 -0500 | [diff] [blame] | 196 | if (!svcxdr_decode_fhandle(xdr, &argp->fh)) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 197 | return false; |
Chuck Lever | 635a45d | 2020-11-17 11:32:04 -0500 | [diff] [blame] | 198 | if (xdr_stream_decode_u32(xdr, &argp->mask) < 0) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 199 | return false; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 200 | |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 201 | return true; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 204 | static bool |
Chuck Lever | 16c6636 | 2021-10-12 11:57:22 -0400 | [diff] [blame] | 205 | nfsaclsvc_decode_setaclargs(struct svc_rqst *rqstp, struct xdr_stream *xdr) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 206 | { |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 207 | struct nfsd3_setaclargs *argp = rqstp->rq_argp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 208 | |
Chuck Lever | 427eab3 | 2020-11-17 11:37:35 -0500 | [diff] [blame] | 209 | if (!svcxdr_decode_fhandle(xdr, &argp->fh)) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 210 | return false; |
Chuck Lever | 427eab3 | 2020-11-17 11:37:35 -0500 | [diff] [blame] | 211 | if (xdr_stream_decode_u32(xdr, &argp->mask) < 0) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 212 | return false; |
Chuck Lever | 427eab3 | 2020-11-17 11:37:35 -0500 | [diff] [blame] | 213 | if (argp->mask & ~NFS_ACL_MASK) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 214 | return false; |
Chuck Lever | 427eab3 | 2020-11-17 11:37:35 -0500 | [diff] [blame] | 215 | if (!nfs_stream_decode_acl(xdr, NULL, (argp->mask & NFS_ACL) ? |
| 216 | &argp->acl_access : NULL)) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 217 | return false; |
Chuck Lever | 427eab3 | 2020-11-17 11:37:35 -0500 | [diff] [blame] | 218 | if (!nfs_stream_decode_acl(xdr, NULL, (argp->mask & NFS_DFACL) ? |
| 219 | &argp->acl_default : NULL)) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 220 | return false; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 221 | |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 222 | return true; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 225 | static bool |
Chuck Lever | 16c6636 | 2021-10-12 11:57:22 -0400 | [diff] [blame] | 226 | nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, struct xdr_stream *xdr) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 227 | { |
Chuck Lever | 6406389 | 2020-11-17 11:49:29 -0500 | [diff] [blame] | 228 | struct nfsd3_accessargs *args = rqstp->rq_argp; |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 229 | |
Chuck Lever | 6406389 | 2020-11-17 11:49:29 -0500 | [diff] [blame] | 230 | if (!svcxdr_decode_fhandle(xdr, &args->fh)) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 231 | return false; |
Chuck Lever | 6406389 | 2020-11-17 11:49:29 -0500 | [diff] [blame] | 232 | if (xdr_stream_decode_u32(xdr, &args->access) < 0) |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 233 | return false; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 234 | |
Chuck Lever | c44b31c | 2021-10-12 11:57:28 -0400 | [diff] [blame] | 235 | return true; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* |
| 239 | * XDR encode functions |
| 240 | */ |
| 241 | |
| 242 | /* GETACL */ |
Chuck Lever | 130e205 | 2021-10-13 10:41:13 -0400 | [diff] [blame] | 243 | static bool |
Chuck Lever | fda4944 | 2021-10-13 10:41:06 -0400 | [diff] [blame] | 244 | nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, struct xdr_stream *xdr) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 245 | { |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 246 | struct nfsd3_getaclres *resp = rqstp->rq_resp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 247 | struct dentry *dentry = resp->fh.fh_dentry; |
Prasad P | aefa89d | 2007-10-24 15:14:32 -0500 | [diff] [blame] | 248 | struct inode *inode; |
Jesper Juhl | cb65a5b | 2006-12-08 02:39:39 -0800 | [diff] [blame] | 249 | int w; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 250 | |
Chuck Lever | f8cba47 | 2020-11-18 14:38:47 -0500 | [diff] [blame] | 251 | if (!svcxdr_encode_stat(xdr, resp->status)) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 252 | return 0; |
Chuck Lever | f8cba47 | 2020-11-18 14:38:47 -0500 | [diff] [blame] | 253 | |
| 254 | if (dentry == NULL || d_really_is_negative(dentry)) |
| 255 | return 1; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 256 | inode = d_inode(dentry); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 257 | |
Chuck Lever | f8cba47 | 2020-11-18 14:38:47 -0500 | [diff] [blame] | 258 | if (!svcxdr_encode_fattr(rqstp, xdr, &resp->fh, &resp->stat)) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 259 | return 0; |
Chuck Lever | f8cba47 | 2020-11-18 14:38:47 -0500 | [diff] [blame] | 260 | if (xdr_stream_encode_u32(xdr, resp->mask) < 0) |
| 261 | return 0; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 262 | |
Jesper Juhl | cb65a5b | 2006-12-08 02:39:39 -0800 | [diff] [blame] | 263 | rqstp->rq_res.page_len = w = nfsacl_size( |
| 264 | (resp->mask & NFS_ACL) ? resp->acl_access : NULL, |
| 265 | (resp->mask & NFS_DFACL) ? resp->acl_default : NULL); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 266 | while (w > 0) { |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 267 | if (!*(rqstp->rq_next_page++)) |
Chuck Lever | f8cba47 | 2020-11-18 14:38:47 -0500 | [diff] [blame] | 268 | return 1; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 269 | w -= PAGE_SIZE; |
| 270 | } |
| 271 | |
Chuck Lever | f8cba47 | 2020-11-18 14:38:47 -0500 | [diff] [blame] | 272 | if (!nfs_stream_encode_acl(xdr, inode, resp->acl_access, |
| 273 | resp->mask & NFS_ACL, 0)) |
| 274 | return 0; |
| 275 | if (!nfs_stream_encode_acl(xdr, inode, resp->acl_default, |
| 276 | resp->mask & NFS_DFACL, NFS_ACL_DEFAULT)) |
| 277 | return 0; |
| 278 | |
| 279 | return 1; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 282 | /* ACCESS */ |
Chuck Lever | 130e205 | 2021-10-13 10:41:13 -0400 | [diff] [blame] | 283 | static bool |
Chuck Lever | fda4944 | 2021-10-13 10:41:06 -0400 | [diff] [blame] | 284 | nfsaclsvc_encode_accessres(struct svc_rqst *rqstp, struct xdr_stream *xdr) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 285 | { |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 286 | struct nfsd3_accessres *resp = rqstp->rq_resp; |
| 287 | |
Chuck Lever | 07f5c29 | 2020-11-18 14:52:09 -0500 | [diff] [blame] | 288 | if (!svcxdr_encode_stat(xdr, resp->status)) |
| 289 | return 0; |
| 290 | switch (resp->status) { |
| 291 | case nfs_ok: |
| 292 | if (!svcxdr_encode_fattr(rqstp, xdr, &resp->fh, &resp->stat)) |
| 293 | return 0; |
| 294 | if (xdr_stream_encode_u32(xdr, resp->access) < 0) |
| 295 | return 0; |
| 296 | break; |
| 297 | } |
Chuck Lever | f0af221 | 2020-10-01 18:59:49 -0400 | [diff] [blame] | 298 | |
Chuck Lever | 07f5c29 | 2020-11-18 14:52:09 -0500 | [diff] [blame] | 299 | return 1; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 300 | } |
| 301 | |
| 302 | /* |
| 303 | * XDR release functions |
| 304 | */ |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 305 | static void nfsaclsvc_release_getacl(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 306 | { |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 307 | struct nfsd3_getaclres *resp = rqstp->rq_resp; |
| 308 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 309 | fh_put(&resp->fh); |
| 310 | posix_acl_release(resp->acl_access); |
| 311 | posix_acl_release(resp->acl_default); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 312 | } |
| 313 | |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 314 | static void nfsaclsvc_release_access(struct svc_rqst *rqstp) |
Greg Banks | c9ce228 | 2007-02-20 10:12:34 +1100 | [diff] [blame] | 315 | { |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 316 | struct nfsd3_accessres *resp = rqstp->rq_resp; |
| 317 | |
| 318 | fh_put(&resp->fh); |
Greg Banks | c9ce228 | 2007-02-20 10:12:34 +1100 | [diff] [blame] | 319 | } |
| 320 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 321 | struct nfsd3_voidargs { int dummy; }; |
| 322 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 323 | #define ST 1 /* status*/ |
| 324 | #define AT 21 /* attributes */ |
| 325 | #define pAT (1+AT) /* post attributes - conditional */ |
| 326 | #define ACL (1+NFS_ACL_MAX_ENTRIES*3) /* Access Control List */ |
| 327 | |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 328 | static const struct svc_procedure nfsd_acl_procedures2[5] = { |
| 329 | [ACLPROC2_NULL] = { |
| 330 | .pc_func = nfsacld_proc_null, |
Chuck Lever | 788f718 | 2020-11-05 14:48:29 -0500 | [diff] [blame] | 331 | .pc_decode = nfssvc_decode_voidarg, |
| 332 | .pc_encode = nfssvc_encode_voidres, |
| 333 | .pc_argsize = sizeof(struct nfsd_voidargs), |
| 334 | .pc_ressize = sizeof(struct nfsd_voidres), |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 335 | .pc_cachetype = RC_NOCACHE, |
| 336 | .pc_xdrressize = ST, |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 337 | .pc_name = "NULL", |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 338 | }, |
| 339 | [ACLPROC2_GETACL] = { |
| 340 | .pc_func = nfsacld_proc_getacl, |
| 341 | .pc_decode = nfsaclsvc_decode_getaclargs, |
| 342 | .pc_encode = nfsaclsvc_encode_getaclres, |
| 343 | .pc_release = nfsaclsvc_release_getacl, |
| 344 | .pc_argsize = sizeof(struct nfsd3_getaclargs), |
| 345 | .pc_ressize = sizeof(struct nfsd3_getaclres), |
| 346 | .pc_cachetype = RC_NOCACHE, |
| 347 | .pc_xdrressize = ST+1+2*(1+ACL), |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 348 | .pc_name = "GETACL", |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 349 | }, |
| 350 | [ACLPROC2_SETACL] = { |
| 351 | .pc_func = nfsacld_proc_setacl, |
| 352 | .pc_decode = nfsaclsvc_decode_setaclargs, |
Chuck Lever | 778f068 | 2020-11-18 14:47:56 -0500 | [diff] [blame] | 353 | .pc_encode = nfssvc_encode_attrstatres, |
| 354 | .pc_release = nfssvc_release_attrstat, |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 355 | .pc_argsize = sizeof(struct nfsd3_setaclargs), |
| 356 | .pc_ressize = sizeof(struct nfsd_attrstat), |
| 357 | .pc_cachetype = RC_NOCACHE, |
| 358 | .pc_xdrressize = ST+AT, |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 359 | .pc_name = "SETACL", |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 360 | }, |
| 361 | [ACLPROC2_GETATTR] = { |
| 362 | .pc_func = nfsacld_proc_getattr, |
Chuck Lever | 571d31f | 2020-11-17 11:46:50 -0500 | [diff] [blame] | 363 | .pc_decode = nfssvc_decode_fhandleargs, |
Chuck Lever | 8d2009a | 2020-11-18 14:49:57 -0500 | [diff] [blame] | 364 | .pc_encode = nfssvc_encode_attrstatres, |
| 365 | .pc_release = nfssvc_release_attrstat, |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 366 | .pc_argsize = sizeof(struct nfsd_fhandle), |
| 367 | .pc_ressize = sizeof(struct nfsd_attrstat), |
| 368 | .pc_cachetype = RC_NOCACHE, |
| 369 | .pc_xdrressize = ST+AT, |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 370 | .pc_name = "GETATTR", |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 371 | }, |
| 372 | [ACLPROC2_ACCESS] = { |
| 373 | .pc_func = nfsacld_proc_access, |
| 374 | .pc_decode = nfsaclsvc_decode_accessargs, |
| 375 | .pc_encode = nfsaclsvc_encode_accessres, |
| 376 | .pc_release = nfsaclsvc_release_access, |
| 377 | .pc_argsize = sizeof(struct nfsd3_accessargs), |
| 378 | .pc_ressize = sizeof(struct nfsd3_accessres), |
| 379 | .pc_cachetype = RC_NOCACHE, |
| 380 | .pc_xdrressize = ST+AT+1, |
Chuck Lever | 2289e87 | 2020-09-17 17:22:49 -0400 | [diff] [blame] | 381 | .pc_name = "SETATTR", |
Chuck Lever | ba1df79 | 2020-10-01 18:59:07 -0400 | [diff] [blame] | 382 | }, |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 383 | }; |
| 384 | |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 385 | static unsigned int nfsd_acl_count2[ARRAY_SIZE(nfsd_acl_procedures2)]; |
Christoph Hellwig | e967918 | 2017-05-12 16:21:37 +0200 | [diff] [blame] | 386 | const struct svc_version nfsd_acl_version2 = { |
| 387 | .vs_vers = 2, |
| 388 | .vs_nproc = 5, |
| 389 | .vs_proc = nfsd_acl_procedures2, |
| 390 | .vs_count = nfsd_acl_count2, |
| 391 | .vs_dispatch = nfsd_dispatch, |
| 392 | .vs_xdrsize = NFS3_SVC_XDRSIZE, |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 393 | }; |