2 * Process version 2 NFSACL requests.
4 * Copyright (C) 2002-2003 Andreas Gruenbacher <agruen@suse.de>
8 /* FIXME: nfsacl.h is a broken header */
9 #include <linux/nfsacl.h>
14 #define NFSDDBG_FACILITY NFSDDBG_PROC
15 #define RETURN_STATUS(st) { resp->status = (st); return (st); }
21 nfsacld_proc_null(struct svc_rqst
*rqstp
, void *argp
, void *resp
)
27 * Get the Access and/or Default ACL of a file.
29 static __be32
nfsacld_proc_getacl(struct svc_rqst
* rqstp
,
30 struct nfsd3_getaclargs
*argp
, struct nfsd3_getaclres
*resp
)
33 struct posix_acl
*acl
;
36 dprintk("nfsd: GETACL(2acl) %s\n", SVCFH_fmt(&argp
->fh
));
38 fh
= fh_copy(&resp
->fh
, &argp
->fh
);
39 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_NOP
);
41 RETURN_STATUS(nfserr
);
43 if (argp
->mask
& ~(NFS_ACL
|NFS_ACLCNT
|NFS_DFACL
|NFS_DFACLCNT
))
44 RETURN_STATUS(nfserr_inval
);
45 resp
->mask
= argp
->mask
;
47 if (resp
->mask
& (NFS_ACL
|NFS_ACLCNT
)) {
48 acl
= nfsd_get_posix_acl(fh
, ACL_TYPE_ACCESS
);
50 int err
= PTR_ERR(acl
);
52 if (err
== -ENODATA
|| err
== -EOPNOTSUPP
)
55 nfserr
= nfserrno(err
);
60 /* Solaris returns the inode's minimum ACL. */
62 struct inode
*inode
= fh
->fh_dentry
->d_inode
;
63 acl
= posix_acl_from_mode(inode
->i_mode
, GFP_KERNEL
);
65 resp
->acl_access
= acl
;
67 if (resp
->mask
& (NFS_DFACL
|NFS_DFACLCNT
)) {
68 /* Check how Solaris handles requests for the Default ACL
69 of a non-directory! */
71 acl
= nfsd_get_posix_acl(fh
, ACL_TYPE_DEFAULT
);
73 int err
= PTR_ERR(acl
);
75 if (err
== -ENODATA
|| err
== -EOPNOTSUPP
)
78 nfserr
= nfserrno(err
);
82 resp
->acl_default
= acl
;
85 /* resp->acl_{access,default} are released in nfssvc_release_getacl. */
89 posix_acl_release(resp
->acl_access
);
90 posix_acl_release(resp
->acl_default
);
91 RETURN_STATUS(nfserr
);
95 * Set the Access and/or Default ACL of a file.
97 static __be32
nfsacld_proc_setacl(struct svc_rqst
* rqstp
,
98 struct nfsd3_setaclargs
*argp
,
99 struct nfsd_attrstat
*resp
)
104 dprintk("nfsd: SETACL(2acl) %s\n", SVCFH_fmt(&argp
->fh
));
106 fh
= fh_copy(&resp
->fh
, &argp
->fh
);
107 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_SATTR
);
110 nfserr
= nfserrno( nfsd_set_posix_acl(
111 fh
, ACL_TYPE_ACCESS
, argp
->acl_access
) );
114 nfserr
= nfserrno( nfsd_set_posix_acl(
115 fh
, ACL_TYPE_DEFAULT
, argp
->acl_default
) );
118 /* argp->acl_{access,default} may have been allocated in
119 nfssvc_decode_setaclargs. */
120 posix_acl_release(argp
->acl_access
);
121 posix_acl_release(argp
->acl_default
);
126 * Check file attributes
128 static __be32
nfsacld_proc_getattr(struct svc_rqst
* rqstp
,
129 struct nfsd_fhandle
*argp
, struct nfsd_attrstat
*resp
)
131 dprintk("nfsd: GETATTR %s\n", SVCFH_fmt(&argp
->fh
));
133 fh_copy(&resp
->fh
, &argp
->fh
);
134 return fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_NOP
);
140 static __be32
nfsacld_proc_access(struct svc_rqst
*rqstp
, struct nfsd3_accessargs
*argp
,
141 struct nfsd3_accessres
*resp
)
145 dprintk("nfsd: ACCESS(2acl) %s 0x%x\n",
146 SVCFH_fmt(&argp
->fh
),
149 fh_copy(&resp
->fh
, &argp
->fh
);
150 resp
->access
= argp
->access
;
151 nfserr
= nfsd_access(rqstp
, &resp
->fh
, &resp
->access
, NULL
);
156 * XDR decode functions
158 static int nfsaclsvc_decode_getaclargs(struct svc_rqst
*rqstp
, __be32
*p
,
159 struct nfsd3_getaclargs
*argp
)
161 if (!(p
= nfs2svc_decode_fh(p
, &argp
->fh
)))
163 argp
->mask
= ntohl(*p
); p
++;
165 return xdr_argsize_check(rqstp
, p
);
169 static int nfsaclsvc_decode_setaclargs(struct svc_rqst
*rqstp
, __be32
*p
,
170 struct nfsd3_setaclargs
*argp
)
172 struct kvec
*head
= rqstp
->rq_arg
.head
;
176 if (!(p
= nfs2svc_decode_fh(p
, &argp
->fh
)))
178 argp
->mask
= ntohl(*p
++);
179 if (argp
->mask
& ~(NFS_ACL
|NFS_ACLCNT
|NFS_DFACL
|NFS_DFACLCNT
) ||
180 !xdr_argsize_check(rqstp
, p
))
183 base
= (char *)p
- (char *)head
->iov_base
;
184 n
= nfsacl_decode(&rqstp
->rq_arg
, base
, NULL
,
185 (argp
->mask
& NFS_ACL
) ?
186 &argp
->acl_access
: NULL
);
188 n
= nfsacl_decode(&rqstp
->rq_arg
, base
+ n
, NULL
,
189 (argp
->mask
& NFS_DFACL
) ?
190 &argp
->acl_default
: NULL
);
194 static int nfsaclsvc_decode_fhandleargs(struct svc_rqst
*rqstp
, __be32
*p
,
195 struct nfsd_fhandle
*argp
)
197 if (!(p
= nfs2svc_decode_fh(p
, &argp
->fh
)))
199 return xdr_argsize_check(rqstp
, p
);
202 static int nfsaclsvc_decode_accessargs(struct svc_rqst
*rqstp
, __be32
*p
,
203 struct nfsd3_accessargs
*argp
)
205 if (!(p
= nfs2svc_decode_fh(p
, &argp
->fh
)))
207 argp
->access
= ntohl(*p
++);
209 return xdr_argsize_check(rqstp
, p
);
213 * XDR encode functions
217 * There must be an encoding function for void results so svc_process
218 * will work properly.
221 nfsaclsvc_encode_voidres(struct svc_rqst
*rqstp
, __be32
*p
, void *dummy
)
223 return xdr_ressize_check(rqstp
, p
);
227 static int nfsaclsvc_encode_getaclres(struct svc_rqst
*rqstp
, __be32
*p
,
228 struct nfsd3_getaclres
*resp
)
230 struct dentry
*dentry
= resp
->fh
.fh_dentry
;
232 struct kvec
*head
= rqstp
->rq_res
.head
;
238 * Since this is version 2, the check for nfserr in
239 * nfsd_dispatch actually ensures the following cannot happen.
240 * However, it seems fragile to depend on that.
242 if (dentry
== NULL
|| dentry
->d_inode
== NULL
)
244 inode
= dentry
->d_inode
;
246 p
= nfs2svc_encode_fattr(rqstp
, p
, &resp
->fh
);
247 *p
++ = htonl(resp
->mask
);
248 if (!xdr_ressize_check(rqstp
, p
))
250 base
= (char *)p
- (char *)head
->iov_base
;
252 rqstp
->rq_res
.page_len
= w
= nfsacl_size(
253 (resp
->mask
& NFS_ACL
) ? resp
->acl_access
: NULL
,
254 (resp
->mask
& NFS_DFACL
) ? resp
->acl_default
: NULL
);
256 if (!rqstp
->rq_respages
[rqstp
->rq_resused
++])
261 n
= nfsacl_encode(&rqstp
->rq_res
, base
, inode
,
263 resp
->mask
& NFS_ACL
, 0);
265 n
= nfsacl_encode(&rqstp
->rq_res
, base
+ n
, inode
,
267 resp
->mask
& NFS_DFACL
,
274 static int nfsaclsvc_encode_attrstatres(struct svc_rqst
*rqstp
, __be32
*p
,
275 struct nfsd_attrstat
*resp
)
277 p
= nfs2svc_encode_fattr(rqstp
, p
, &resp
->fh
);
278 return xdr_ressize_check(rqstp
, p
);
282 static int nfsaclsvc_encode_accessres(struct svc_rqst
*rqstp
, __be32
*p
,
283 struct nfsd3_accessres
*resp
)
285 p
= nfs2svc_encode_fattr(rqstp
, p
, &resp
->fh
);
286 *p
++ = htonl(resp
->access
);
287 return xdr_ressize_check(rqstp
, p
);
291 * XDR release functions
293 static int nfsaclsvc_release_getacl(struct svc_rqst
*rqstp
, __be32
*p
,
294 struct nfsd3_getaclres
*resp
)
297 posix_acl_release(resp
->acl_access
);
298 posix_acl_release(resp
->acl_default
);
302 static int nfsaclsvc_release_attrstat(struct svc_rqst
*rqstp
, __be32
*p
,
303 struct nfsd_attrstat
*resp
)
309 static int nfsaclsvc_release_access(struct svc_rqst
*rqstp
, __be32
*p
,
310 struct nfsd3_accessres
*resp
)
316 #define nfsaclsvc_decode_voidargs NULL
317 #define nfsaclsvc_release_void NULL
318 #define nfsd3_fhandleargs nfsd_fhandle
319 #define nfsd3_attrstatres nfsd_attrstat
320 #define nfsd3_voidres nfsd3_voidargs
321 struct nfsd3_voidargs
{ int dummy
; };
323 #define PROC(name, argt, rest, relt, cache, respsize) \
324 { (svc_procfunc) nfsacld_proc_##name, \
325 (kxdrproc_t) nfsaclsvc_decode_##argt##args, \
326 (kxdrproc_t) nfsaclsvc_encode_##rest##res, \
327 (kxdrproc_t) nfsaclsvc_release_##relt, \
328 sizeof(struct nfsd3_##argt##args), \
329 sizeof(struct nfsd3_##rest##res), \
335 #define ST 1 /* status*/
336 #define AT 21 /* attributes */
337 #define pAT (1+AT) /* post attributes - conditional */
338 #define ACL (1+NFS_ACL_MAX_ENTRIES*3) /* Access Control List */
340 static struct svc_procedure nfsd_acl_procedures2
[] = {
341 PROC(null
, void, void, void, RC_NOCACHE
, ST
),
342 PROC(getacl
, getacl
, getacl
, getacl
, RC_NOCACHE
, ST
+1+2*(1+ACL
)),
343 PROC(setacl
, setacl
, attrstat
, attrstat
, RC_NOCACHE
, ST
+AT
),
344 PROC(getattr
, fhandle
, attrstat
, attrstat
, RC_NOCACHE
, ST
+AT
),
345 PROC(access
, access
, access
, access
, RC_NOCACHE
, ST
+AT
+1),
348 struct svc_version nfsd_acl_version2
= {
351 .vs_proc
= nfsd_acl_procedures2
,
352 .vs_dispatch
= nfsd_dispatch
,
353 .vs_xdrsize
= NFS3_SVC_XDRSIZE
,