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 |
| 17 | #define RETURN_STATUS(st) { resp->status = (st); return (st); } |
| 18 | |
| 19 | /* |
| 20 | * NULL call. |
| 21 | */ |
Al Viro | 7111c66 | 2006-10-19 23:28:45 -0700 | [diff] [blame] | 22 | static __be32 |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 23 | nfsacld_proc_null(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 24 | { |
| 25 | return nfs_ok; |
| 26 | } |
| 27 | |
| 28 | /* |
| 29 | * Get the Access and/or Default ACL of a file. |
| 30 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 31 | static __be32 nfsacld_proc_getacl(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 32 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 33 | struct nfsd3_getaclargs *argp = rqstp->rq_argp; |
| 34 | struct nfsd3_getaclres *resp = rqstp->rq_resp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 35 | struct posix_acl *acl; |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 36 | struct inode *inode; |
| 37 | svc_fh *fh; |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 38 | __be32 nfserr = 0; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 39 | |
| 40 | dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp->fh)); |
| 41 | |
| 42 | fh = fh_copy(&resp->fh, &argp->fh); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 43 | nfserr = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP); |
| 44 | if (nfserr) |
J. Bruce Fields | ac8587d | 2007-11-12 16:05:02 -0500 | [diff] [blame] | 45 | RETURN_STATUS(nfserr); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 46 | |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 47 | inode = d_inode(fh->fh_dentry); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 48 | |
Kinglong Mee | 7b8f458 | 2015-07-03 19:39:02 +0800 | [diff] [blame] | 49 | if (argp->mask & ~NFS_ACL_MASK) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 50 | RETURN_STATUS(nfserr_inval); |
| 51 | resp->mask = argp->mask; |
| 52 | |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 53 | nfserr = fh_getattr(fh, &resp->stat); |
| 54 | if (nfserr) |
Kinglong Mee | 7b8f458 | 2015-07-03 19:39:02 +0800 | [diff] [blame] | 55 | RETURN_STATUS(nfserr); |
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)) { |
| 64 | nfserr = nfserrno(PTR_ERR(acl)); |
| 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)) { |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 74 | nfserr = nfserrno(PTR_ERR(acl)); |
| 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. */ |
| 81 | RETURN_STATUS(0); |
| 82 | |
| 83 | fail: |
| 84 | posix_acl_release(resp->acl_access); |
| 85 | posix_acl_release(resp->acl_default); |
| 86 | RETURN_STATUS(nfserr); |
| 87 | } |
| 88 | |
| 89 | /* |
| 90 | * Set the Access and/or Default ACL of a file. |
| 91 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 92 | static __be32 nfsacld_proc_setacl(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 93 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 94 | struct nfsd3_setaclargs *argp = rqstp->rq_argp; |
| 95 | struct nfsd_attrstat *resp = rqstp->rq_resp; |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 96 | struct inode *inode; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 97 | svc_fh *fh; |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 98 | __be32 nfserr = 0; |
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); |
Miklos Szeredi | 8837abc | 2008-06-16 13:20:29 +0200 | [diff] [blame] | 104 | nfserr = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_SATTR); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 105 | if (nfserr) |
| 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 | |
| 116 | error = set_posix_acl(inode, ACL_TYPE_ACCESS, argp->acl_access); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 117 | if (error) |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 118 | goto out_drop_lock; |
| 119 | error = set_posix_acl(inode, ACL_TYPE_DEFAULT, argp->acl_default); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 120 | if (error) |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 121 | goto out_drop_lock; |
| 122 | |
| 123 | fh_unlock(fh); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 124 | |
| 125 | fh_drop_write(fh); |
| 126 | |
| 127 | nfserr = fh_getattr(fh, &resp->stat); |
| 128 | |
| 129 | out: |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 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); |
| 134 | return nfserr; |
Ben Hutchings | 9996537 | 2016-06-22 19:43:35 +0100 | [diff] [blame] | 135 | out_drop_lock: |
| 136 | fh_unlock(fh); |
Christoph Hellwig | 4ac7249 | 2013-12-20 05:16:55 -0800 | [diff] [blame] | 137 | fh_drop_write(fh); |
| 138 | out_errno: |
| 139 | nfserr = nfserrno(error); |
| 140 | goto out; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | /* |
| 144 | * Check file attributes |
| 145 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 146 | static __be32 nfsacld_proc_getattr(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 147 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 148 | struct nfsd_fhandle *argp = rqstp->rq_argp; |
| 149 | struct nfsd_attrstat *resp = rqstp->rq_resp; |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 150 | __be32 nfserr; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 151 | dprintk("nfsd: GETATTR %s\n", SVCFH_fmt(&argp->fh)); |
| 152 | |
| 153 | fh_copy(&resp->fh, &argp->fh); |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 154 | nfserr = fh_verify(rqstp, &resp->fh, 0, NFSD_MAY_NOP); |
| 155 | if (nfserr) |
| 156 | return nfserr; |
| 157 | nfserr = fh_getattr(&resp->fh, &resp->stat); |
| 158 | return nfserr; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /* |
| 162 | * Check file access |
| 163 | */ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 164 | static __be32 nfsacld_proc_access(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 165 | { |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 166 | struct nfsd3_accessargs *argp = rqstp->rq_argp; |
| 167 | struct nfsd3_accessres *resp = rqstp->rq_resp; |
Al Viro | c4d987b | 2006-10-19 23:29:00 -0700 | [diff] [blame] | 168 | __be32 nfserr; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 169 | |
| 170 | dprintk("nfsd: ACCESS(2acl) %s 0x%x\n", |
| 171 | SVCFH_fmt(&argp->fh), |
| 172 | argp->access); |
| 173 | |
| 174 | fh_copy(&resp->fh, &argp->fh); |
| 175 | resp->access = argp->access; |
| 176 | nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL); |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 177 | if (nfserr) |
| 178 | return nfserr; |
| 179 | nfserr = fh_getattr(&resp->fh, &resp->stat); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 180 | return nfserr; |
| 181 | } |
| 182 | |
| 183 | /* |
| 184 | * XDR decode functions |
| 185 | */ |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 186 | static int nfsaclsvc_decode_getaclargs(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 187 | { |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 188 | struct nfsd3_getaclargs *argp = rqstp->rq_argp; |
| 189 | |
Benoit Taine | d40aa33 | 2014-05-22 16:32:30 +0200 | [diff] [blame] | 190 | p = nfs2svc_decode_fh(p, &argp->fh); |
| 191 | if (!p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 192 | return 0; |
| 193 | argp->mask = ntohl(*p); p++; |
| 194 | |
| 195 | return xdr_argsize_check(rqstp, p); |
| 196 | } |
| 197 | |
| 198 | |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 199 | static int nfsaclsvc_decode_setaclargs(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 200 | { |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 201 | struct nfsd3_setaclargs *argp = rqstp->rq_argp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 202 | struct kvec *head = rqstp->rq_arg.head; |
| 203 | unsigned int base; |
| 204 | int n; |
| 205 | |
Benoit Taine | d40aa33 | 2014-05-22 16:32:30 +0200 | [diff] [blame] | 206 | p = nfs2svc_decode_fh(p, &argp->fh); |
| 207 | if (!p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 208 | return 0; |
| 209 | argp->mask = ntohl(*p++); |
Kinglong Mee | 7b8f458 | 2015-07-03 19:39:02 +0800 | [diff] [blame] | 210 | if (argp->mask & ~NFS_ACL_MASK || |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 211 | !xdr_argsize_check(rqstp, p)) |
| 212 | return 0; |
| 213 | |
| 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); |
| 218 | if (n > 0) |
| 219 | n = nfsacl_decode(&rqstp->rq_arg, base + n, NULL, |
| 220 | (argp->mask & NFS_DFACL) ? |
| 221 | &argp->acl_default : NULL); |
| 222 | return (n > 0); |
| 223 | } |
| 224 | |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 225 | static int nfsaclsvc_decode_fhandleargs(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 226 | { |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 227 | struct nfsd_fhandle *argp = rqstp->rq_argp; |
| 228 | |
Benoit Taine | d40aa33 | 2014-05-22 16:32:30 +0200 | [diff] [blame] | 229 | p = nfs2svc_decode_fh(p, &argp->fh); |
| 230 | if (!p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 231 | return 0; |
| 232 | return xdr_argsize_check(rqstp, p); |
| 233 | } |
| 234 | |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 235 | static int nfsaclsvc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 236 | { |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 237 | struct nfsd3_accessargs *argp = rqstp->rq_argp; |
| 238 | |
Benoit Taine | d40aa33 | 2014-05-22 16:32:30 +0200 | [diff] [blame] | 239 | p = nfs2svc_decode_fh(p, &argp->fh); |
| 240 | if (!p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 241 | return 0; |
| 242 | argp->access = ntohl(*p++); |
| 243 | |
| 244 | return xdr_argsize_check(rqstp, p); |
| 245 | } |
| 246 | |
| 247 | /* |
| 248 | * XDR encode functions |
| 249 | */ |
| 250 | |
Peter Staubach | 1b7e040 | 2009-11-02 16:59:07 -0500 | [diff] [blame] | 251 | /* |
| 252 | * There must be an encoding function for void results so svc_process |
| 253 | * will work properly. |
| 254 | */ |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 255 | static int nfsaclsvc_encode_voidres(struct svc_rqst *rqstp, __be32 *p) |
Peter Staubach | 1b7e040 | 2009-11-02 16:59:07 -0500 | [diff] [blame] | 256 | { |
| 257 | return xdr_ressize_check(rqstp, p); |
| 258 | } |
| 259 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 260 | /* GETACL */ |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 261 | static int nfsaclsvc_encode_getaclres(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 262 | { |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 263 | struct nfsd3_getaclres *resp = rqstp->rq_resp; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 264 | struct dentry *dentry = resp->fh.fh_dentry; |
Prasad P | aefa89d | 2007-10-24 15:14:32 -0500 | [diff] [blame] | 265 | struct inode *inode; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 266 | struct kvec *head = rqstp->rq_res.head; |
| 267 | unsigned int base; |
| 268 | int n; |
Jesper Juhl | cb65a5b | 2006-12-08 02:39:39 -0800 | [diff] [blame] | 269 | int w; |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 270 | |
Prasad P | aefa89d | 2007-10-24 15:14:32 -0500 | [diff] [blame] | 271 | /* |
| 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. |
| 275 | */ |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 276 | if (dentry == NULL || d_really_is_negative(dentry)) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 277 | return 0; |
David Howells | 2b0143b | 2015-03-17 22:25:59 +0000 | [diff] [blame] | 278 | inode = d_inode(dentry); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 279 | |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 280 | p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 281 | *p++ = htonl(resp->mask); |
| 282 | if (!xdr_ressize_check(rqstp, p)) |
| 283 | return 0; |
| 284 | base = (char *)p - (char *)head->iov_base; |
| 285 | |
Jesper Juhl | cb65a5b | 2006-12-08 02:39:39 -0800 | [diff] [blame] | 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); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 289 | while (w > 0) { |
J. Bruce Fields | afc5940 | 2012-12-10 18:01:37 -0500 | [diff] [blame] | 290 | if (!*(rqstp->rq_next_page++)) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 291 | return 0; |
| 292 | w -= PAGE_SIZE; |
| 293 | } |
| 294 | |
| 295 | n = nfsacl_encode(&rqstp->rq_res, base, inode, |
| 296 | resp->acl_access, |
| 297 | resp->mask & NFS_ACL, 0); |
| 298 | if (n > 0) |
| 299 | n = nfsacl_encode(&rqstp->rq_res, base + n, inode, |
| 300 | resp->acl_default, |
| 301 | resp->mask & NFS_DFACL, |
| 302 | NFS_ACL_DEFAULT); |
Kinglong Mee | 7b8f458 | 2015-07-03 19:39:02 +0800 | [diff] [blame] | 303 | return (n > 0); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 306 | static int nfsaclsvc_encode_attrstatres(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 307 | { |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 308 | struct nfsd_attrstat *resp = rqstp->rq_resp; |
| 309 | |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 310 | p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 311 | return xdr_ressize_check(rqstp, p); |
| 312 | } |
| 313 | |
| 314 | /* ACCESS */ |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 315 | static int nfsaclsvc_encode_accessres(struct svc_rqst *rqstp, __be32 *p) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 316 | { |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 317 | struct nfsd3_accessres *resp = rqstp->rq_resp; |
| 318 | |
J. Bruce Fields | 4f4a4fa | 2013-02-01 15:13:04 -0500 | [diff] [blame] | 319 | p = nfs2svc_encode_fattr(rqstp, p, &resp->fh, &resp->stat); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 320 | *p++ = htonl(resp->access); |
| 321 | return xdr_ressize_check(rqstp, p); |
| 322 | } |
| 323 | |
| 324 | /* |
| 325 | * XDR release functions |
| 326 | */ |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 327 | static void nfsaclsvc_release_getacl(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 328 | { |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 329 | struct nfsd3_getaclres *resp = rqstp->rq_resp; |
| 330 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 331 | fh_put(&resp->fh); |
| 332 | posix_acl_release(resp->acl_access); |
| 333 | posix_acl_release(resp->acl_default); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 334 | } |
| 335 | |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 336 | static void nfsaclsvc_release_attrstat(struct svc_rqst *rqstp) |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 337 | { |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 338 | struct nfsd_attrstat *resp = rqstp->rq_resp; |
| 339 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 340 | fh_put(&resp->fh); |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 341 | } |
| 342 | |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 343 | static void nfsaclsvc_release_access(struct svc_rqst *rqstp) |
Greg Banks | c9ce228 | 2007-02-20 10:12:34 +1100 | [diff] [blame] | 344 | { |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 345 | struct nfsd3_accessres *resp = rqstp->rq_resp; |
| 346 | |
| 347 | fh_put(&resp->fh); |
Greg Banks | c9ce228 | 2007-02-20 10:12:34 +1100 | [diff] [blame] | 348 | } |
| 349 | |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 350 | #define nfsaclsvc_decode_voidargs NULL |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 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; }; |
| 356 | |
Christoph Hellwig | f7235b6 | 2017-05-08 17:59:13 +0200 | [diff] [blame] | 357 | #define PROC(name, argt, rest, relt, cache, respsize) \ |
| 358 | { \ |
Christoph Hellwig | a6beb73 | 2017-05-08 17:35:49 +0200 | [diff] [blame] | 359 | .pc_func = nfsacld_proc_##name, \ |
Christoph Hellwig | 026fec7 | 2017-05-08 19:01:48 +0200 | [diff] [blame] | 360 | .pc_decode = nfsaclsvc_decode_##argt##args, \ |
Christoph Hellwig | 63f8de3 | 2017-05-08 19:42:02 +0200 | [diff] [blame] | 361 | .pc_encode = nfsaclsvc_encode_##rest##res, \ |
Christoph Hellwig | 8537488 | 2017-05-08 18:48:24 +0200 | [diff] [blame] | 362 | .pc_release = nfsaclsvc_release_##relt, \ |
Christoph Hellwig | f7235b6 | 2017-05-08 17:59:13 +0200 | [diff] [blame] | 363 | .pc_argsize = sizeof(struct nfsd3_##argt##args), \ |
| 364 | .pc_ressize = sizeof(struct nfsd3_##rest##res), \ |
| 365 | .pc_cachetype = cache, \ |
| 366 | .pc_xdrressize = respsize, \ |
| 367 | } |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 368 | |
| 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 */ |
| 373 | |
Christoph Hellwig | 860bda2 | 2017-05-12 16:11:49 +0200 | [diff] [blame] | 374 | static const struct svc_procedure nfsd_acl_procedures2[] = { |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 375 | PROC(null, void, void, void, RC_NOCACHE, ST), |
| 376 | PROC(getacl, getacl, getacl, getacl, RC_NOCACHE, ST+1+2*(1+ACL)), |
Greg Banks | c9ce228 | 2007-02-20 10:12:34 +1100 | [diff] [blame] | 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), |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 380 | }; |
| 381 | |
Christoph Hellwig | 7fd38af | 2017-05-08 23:40:27 +0200 | [diff] [blame] | 382 | static unsigned int nfsd_acl_count2[ARRAY_SIZE(nfsd_acl_procedures2)]; |
Christoph Hellwig | e967918 | 2017-05-12 16:21:37 +0200 | [diff] [blame] | 383 | const struct svc_version nfsd_acl_version2 = { |
| 384 | .vs_vers = 2, |
| 385 | .vs_nproc = 5, |
| 386 | .vs_proc = nfsd_acl_procedures2, |
| 387 | .vs_count = nfsd_acl_count2, |
| 388 | .vs_dispatch = nfsd_dispatch, |
| 389 | .vs_xdrsize = NFS3_SVC_XDRSIZE, |
Andreas Gruenbacher | a257cdd | 2005-06-22 17:16:26 +0000 | [diff] [blame] | 390 | }; |