2 * Process version 3 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 RETURN_STATUS(st) { resp->status = (st); return (st); }
20 nfsd3_proc_null(struct svc_rqst
*rqstp
, void *argp
, void *resp
)
26 * Get the Access and/or Default ACL of a file.
28 static __be32
nfsd3_proc_getacl(struct svc_rqst
* rqstp
,
29 struct nfsd3_getaclargs
*argp
, struct nfsd3_getaclres
*resp
)
32 struct posix_acl
*acl
;
35 fh
= fh_copy(&resp
->fh
, &argp
->fh
);
36 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_NOP
);
38 RETURN_STATUS(nfserr
);
40 if (argp
->mask
& ~(NFS_ACL
|NFS_ACLCNT
|NFS_DFACL
|NFS_DFACLCNT
))
41 RETURN_STATUS(nfserr_inval
);
42 resp
->mask
= argp
->mask
;
44 if (resp
->mask
& (NFS_ACL
|NFS_ACLCNT
)) {
45 acl
= nfsd_get_posix_acl(fh
, ACL_TYPE_ACCESS
);
47 int err
= PTR_ERR(acl
);
49 if (err
== -ENODATA
|| err
== -EOPNOTSUPP
)
52 nfserr
= nfserrno(err
);
57 /* Solaris returns the inode's minimum ACL. */
59 struct inode
*inode
= fh
->fh_dentry
->d_inode
;
60 acl
= posix_acl_from_mode(inode
->i_mode
, GFP_KERNEL
);
62 resp
->acl_access
= acl
;
64 if (resp
->mask
& (NFS_DFACL
|NFS_DFACLCNT
)) {
65 /* Check how Solaris handles requests for the Default ACL
66 of a non-directory! */
68 acl
= nfsd_get_posix_acl(fh
, ACL_TYPE_DEFAULT
);
70 int err
= PTR_ERR(acl
);
72 if (err
== -ENODATA
|| err
== -EOPNOTSUPP
)
75 nfserr
= nfserrno(err
);
79 resp
->acl_default
= acl
;
82 /* resp->acl_{access,default} are released in nfs3svc_release_getacl. */
86 posix_acl_release(resp
->acl_access
);
87 posix_acl_release(resp
->acl_default
);
88 RETURN_STATUS(nfserr
);
92 * Set the Access and/or Default ACL of a file.
94 static __be32
nfsd3_proc_setacl(struct svc_rqst
* rqstp
,
95 struct nfsd3_setaclargs
*argp
,
96 struct nfsd3_attrstat
*resp
)
101 fh
= fh_copy(&resp
->fh
, &argp
->fh
);
102 nfserr
= fh_verify(rqstp
, &resp
->fh
, 0, NFSD_MAY_SATTR
);
105 nfserr
= nfserrno( nfsd_set_posix_acl(
106 fh
, ACL_TYPE_ACCESS
, argp
->acl_access
) );
109 nfserr
= nfserrno( nfsd_set_posix_acl(
110 fh
, ACL_TYPE_DEFAULT
, argp
->acl_default
) );
113 /* argp->acl_{access,default} may have been allocated in
114 nfs3svc_decode_setaclargs. */
115 posix_acl_release(argp
->acl_access
);
116 posix_acl_release(argp
->acl_default
);
117 RETURN_STATUS(nfserr
);
121 * XDR decode functions
123 static int nfs3svc_decode_getaclargs(struct svc_rqst
*rqstp
, __be32
*p
,
124 struct nfsd3_getaclargs
*args
)
126 if (!(p
= nfs3svc_decode_fh(p
, &args
->fh
)))
128 args
->mask
= ntohl(*p
); p
++;
130 return xdr_argsize_check(rqstp
, p
);
134 static int nfs3svc_decode_setaclargs(struct svc_rqst
*rqstp
, __be32
*p
,
135 struct nfsd3_setaclargs
*args
)
137 struct kvec
*head
= rqstp
->rq_arg
.head
;
141 if (!(p
= nfs3svc_decode_fh(p
, &args
->fh
)))
143 args
->mask
= ntohl(*p
++);
144 if (args
->mask
& ~(NFS_ACL
|NFS_ACLCNT
|NFS_DFACL
|NFS_DFACLCNT
) ||
145 !xdr_argsize_check(rqstp
, p
))
148 base
= (char *)p
- (char *)head
->iov_base
;
149 n
= nfsacl_decode(&rqstp
->rq_arg
, base
, NULL
,
150 (args
->mask
& NFS_ACL
) ?
151 &args
->acl_access
: NULL
);
153 n
= nfsacl_decode(&rqstp
->rq_arg
, base
+ n
, NULL
,
154 (args
->mask
& NFS_DFACL
) ?
155 &args
->acl_default
: NULL
);
160 * XDR encode functions
164 static int nfs3svc_encode_getaclres(struct svc_rqst
*rqstp
, __be32
*p
,
165 struct nfsd3_getaclres
*resp
)
167 struct dentry
*dentry
= resp
->fh
.fh_dentry
;
169 p
= nfs3svc_encode_post_op_attr(rqstp
, p
, &resp
->fh
);
170 if (resp
->status
== 0 && dentry
&& dentry
->d_inode
) {
171 struct inode
*inode
= dentry
->d_inode
;
172 struct kvec
*head
= rqstp
->rq_res
.head
;
177 *p
++ = htonl(resp
->mask
);
178 if (!xdr_ressize_check(rqstp
, p
))
180 base
= (char *)p
- (char *)head
->iov_base
;
182 rqstp
->rq_res
.page_len
= w
= nfsacl_size(
183 (resp
->mask
& NFS_ACL
) ? resp
->acl_access
: NULL
,
184 (resp
->mask
& NFS_DFACL
) ? resp
->acl_default
: NULL
);
186 if (!rqstp
->rq_respages
[rqstp
->rq_resused
++])
191 n
= nfsacl_encode(&rqstp
->rq_res
, base
, inode
,
193 resp
->mask
& NFS_ACL
, 0);
195 n
= nfsacl_encode(&rqstp
->rq_res
, base
+ n
, inode
,
197 resp
->mask
& NFS_DFACL
,
202 if (!xdr_ressize_check(rqstp
, p
))
209 static int nfs3svc_encode_setaclres(struct svc_rqst
*rqstp
, __be32
*p
,
210 struct nfsd3_attrstat
*resp
)
212 p
= nfs3svc_encode_post_op_attr(rqstp
, p
, &resp
->fh
);
214 return xdr_ressize_check(rqstp
, p
);
218 * XDR release functions
220 static int nfs3svc_release_getacl(struct svc_rqst
*rqstp
, __be32
*p
,
221 struct nfsd3_getaclres
*resp
)
224 posix_acl_release(resp
->acl_access
);
225 posix_acl_release(resp
->acl_default
);
229 #define nfs3svc_decode_voidargs NULL
230 #define nfs3svc_release_void NULL
231 #define nfsd3_setaclres nfsd3_attrstat
232 #define nfsd3_voidres nfsd3_voidargs
233 struct nfsd3_voidargs
{ int dummy
; };
235 #define PROC(name, argt, rest, relt, cache, respsize) \
236 { (svc_procfunc) nfsd3_proc_##name, \
237 (kxdrproc_t) nfs3svc_decode_##argt##args, \
238 (kxdrproc_t) nfs3svc_encode_##rest##res, \
239 (kxdrproc_t) nfs3svc_release_##relt, \
240 sizeof(struct nfsd3_##argt##args), \
241 sizeof(struct nfsd3_##rest##res), \
247 #define ST 1 /* status*/
248 #define AT 21 /* attributes */
249 #define pAT (1+AT) /* post attributes - conditional */
250 #define ACL (1+NFS_ACL_MAX_ENTRIES*3) /* Access Control List */
252 static struct svc_procedure nfsd_acl_procedures3
[] = {
253 PROC(null
, void, void, void, RC_NOCACHE
, ST
),
254 PROC(getacl
, getacl
, getacl
, getacl
, RC_NOCACHE
, ST
+1+2*(1+ACL
)),
255 PROC(setacl
, setacl
, setacl
, fhandle
, RC_NOCACHE
, ST
+pAT
),
258 struct svc_version nfsd_acl_version3
= {
261 .vs_proc
= nfsd_acl_procedures3
,
262 .vs_dispatch
= nfsd_dispatch
,
263 .vs_xdrsize
= NFS3_SVC_XDRSIZE
,