blob: 335e04aaf7db18842fb63923feebfb31e26e4353 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * XDR types for NFSv3 in nfsd.
3 *
4 * Copyright (C) 1996-1998, Olaf Kirch <okir@monad.swb.de>
5 */
6
7#ifndef _LINUX_NFSD_XDR3_H
8#define _LINUX_NFSD_XDR3_H
9
Boaz Harrosh9a74af22009-12-03 20:30:56 +020010#include "xdr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12struct nfsd3_sattrargs {
13 struct svc_fh fh;
14 struct iattr attrs;
15 int check_guard;
16 time_t guardtime;
17};
18
19struct nfsd3_diropargs {
20 struct svc_fh fh;
21 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040022 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
25struct nfsd3_accessargs {
26 struct svc_fh fh;
27 unsigned int access;
28};
29
30struct nfsd3_readargs {
31 struct svc_fh fh;
32 __u64 offset;
33 __u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 int vlen;
35};
36
37struct nfsd3_writeargs {
38 svc_fh fh;
39 __u64 offset;
40 __u32 count;
41 int stable;
NeilBrown0ba75362005-11-07 01:00:26 -080042 __u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 int vlen;
44};
45
46struct nfsd3_createargs {
47 struct svc_fh fh;
48 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040049 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 int createmode;
51 struct iattr attrs;
Al Viro91f07162006-10-19 23:28:57 -070052 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
55struct nfsd3_mknodargs {
56 struct svc_fh fh;
57 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040058 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 __u32 ftype;
60 __u32 major, minor;
61 struct iattr attrs;
62};
63
64struct nfsd3_renameargs {
65 struct svc_fh ffh;
66 char * fname;
Chuck Lever29d5e552007-11-01 16:57:04 -040067 unsigned int flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct svc_fh tfh;
69 char * tname;
Chuck Lever29d5e552007-11-01 16:57:04 -040070 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
73struct nfsd3_readlinkargs {
74 struct svc_fh fh;
75 char * buffer;
76};
77
78struct nfsd3_linkargs {
79 struct svc_fh ffh;
80 struct svc_fh tfh;
81 char * tname;
Chuck Lever29d5e552007-11-01 16:57:04 -040082 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85struct nfsd3_symlinkargs {
86 struct svc_fh ffh;
87 char * fname;
Chuck Lever29d5e552007-11-01 16:57:04 -040088 unsigned int flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 char * tname;
Chuck Lever48b4ba32007-11-01 16:57:25 -040090 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 struct iattr attrs;
92};
93
94struct nfsd3_readdirargs {
95 struct svc_fh fh;
96 __u64 cookie;
97 __u32 dircount;
98 __u32 count;
Al Viro91f07162006-10-19 23:28:57 -070099 __be32 * verf;
100 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101};
102
103struct nfsd3_commitargs {
104 struct svc_fh fh;
105 __u64 offset;
106 __u32 count;
107};
108
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000109struct nfsd3_getaclargs {
110 struct svc_fh fh;
111 int mask;
112};
113
114struct posix_acl;
115struct nfsd3_setaclargs {
116 struct svc_fh fh;
117 int mask;
118 struct posix_acl *acl_access;
119 struct posix_acl *acl_default;
120};
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122struct nfsd3_attrstat {
Al Viro91f07162006-10-19 23:28:57 -0700123 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 struct svc_fh fh;
David Shawa334de22006-01-06 00:19:58 -0800125 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126};
127
128/* LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD */
129struct nfsd3_diropres {
Al Viro91f07162006-10-19 23:28:57 -0700130 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct svc_fh dirfh;
132 struct svc_fh fh;
133};
134
135struct nfsd3_accessres {
Al Viro91f07162006-10-19 23:28:57 -0700136 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 struct svc_fh fh;
138 __u32 access;
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500139 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140};
141
142struct nfsd3_readlinkres {
Al Viro91f07162006-10-19 23:28:57 -0700143 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 struct svc_fh fh;
145 __u32 len;
146};
147
148struct nfsd3_readres {
Al Viro91f07162006-10-19 23:28:57 -0700149 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 struct svc_fh fh;
151 unsigned long count;
152 int eof;
153};
154
155struct nfsd3_writeres {
Al Viro91f07162006-10-19 23:28:57 -0700156 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 struct svc_fh fh;
158 unsigned long count;
159 int committed;
160};
161
162struct nfsd3_renameres {
Al Viro91f07162006-10-19 23:28:57 -0700163 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 struct svc_fh ffh;
165 struct svc_fh tfh;
166};
167
168struct nfsd3_linkres {
Al Viro91f07162006-10-19 23:28:57 -0700169 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 struct svc_fh tfh;
171 struct svc_fh fh;
172};
173
174struct nfsd3_readdirres {
Al Viro91f07162006-10-19 23:28:57 -0700175 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct svc_fh fh;
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500177 /* Just to save kmalloc on every readdirplus entry (svc_fh is a
178 * little large for the stack): */
179 struct svc_fh scratch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int count;
Al Viro91f07162006-10-19 23:28:57 -0700181 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 struct readdir_cd common;
Al Viro91f07162006-10-19 23:28:57 -0700184 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int buflen;
Al Viro91f07162006-10-19 23:28:57 -0700186 __be32 * offset;
187 __be32 * offset1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 struct svc_rqst * rqstp;
189
190};
191
192struct nfsd3_fsstatres {
Al Viro91f07162006-10-19 23:28:57 -0700193 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 struct kstatfs stats;
195 __u32 invarsec;
196};
197
198struct nfsd3_fsinfores {
Al Viro91f07162006-10-19 23:28:57 -0700199 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 __u32 f_rtmax;
201 __u32 f_rtpref;
202 __u32 f_rtmult;
203 __u32 f_wtmax;
204 __u32 f_wtpref;
205 __u32 f_wtmult;
206 __u32 f_dtpref;
207 __u64 f_maxfilesize;
208 __u32 f_properties;
209};
210
211struct nfsd3_pathconfres {
Al Viro91f07162006-10-19 23:28:57 -0700212 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 __u32 p_link_max;
214 __u32 p_name_max;
215 __u32 p_no_trunc;
216 __u32 p_chown_restricted;
217 __u32 p_case_insensitive;
218 __u32 p_case_preserving;
219};
220
221struct nfsd3_commitres {
Al Viro91f07162006-10-19 23:28:57 -0700222 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 struct svc_fh fh;
224};
225
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000226struct nfsd3_getaclres {
Al Viro91f07162006-10-19 23:28:57 -0700227 __be32 status;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000228 struct svc_fh fh;
229 int mask;
230 struct posix_acl *acl_access;
231 struct posix_acl *acl_default;
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500232 struct kstat stat;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000233};
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/* dummy type for release */
236struct nfsd3_fhandle_pair {
237 __u32 dummy;
238 struct svc_fh fh1;
239 struct svc_fh fh2;
240};
241
242/*
243 * Storage requirements for XDR arguments and results.
244 */
245union nfsd3_xdrstore {
246 struct nfsd3_sattrargs sattrargs;
247 struct nfsd3_diropargs diropargs;
248 struct nfsd3_readargs readargs;
249 struct nfsd3_writeargs writeargs;
250 struct nfsd3_createargs createargs;
251 struct nfsd3_renameargs renameargs;
252 struct nfsd3_linkargs linkargs;
253 struct nfsd3_symlinkargs symlinkargs;
254 struct nfsd3_readdirargs readdirargs;
255 struct nfsd3_diropres diropres;
256 struct nfsd3_accessres accessres;
257 struct nfsd3_readlinkres readlinkres;
258 struct nfsd3_readres readres;
259 struct nfsd3_writeres writeres;
260 struct nfsd3_renameres renameres;
261 struct nfsd3_linkres linkres;
262 struct nfsd3_readdirres readdirres;
263 struct nfsd3_fsstatres fsstatres;
264 struct nfsd3_fsinfores fsinfores;
265 struct nfsd3_pathconfres pathconfres;
266 struct nfsd3_commitres commitres;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000267 struct nfsd3_getaclres getaclres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
270#define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore)
271
Al Viro91f07162006-10-19 23:28:57 -0700272int nfs3svc_decode_fhandle(struct svc_rqst *, __be32 *, struct nfsd_fhandle *);
273int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct nfsd3_sattrargs *);
Al Viro91f07162006-10-19 23:28:57 -0700275int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 struct nfsd3_diropargs *);
Al Viro91f07162006-10-19 23:28:57 -0700277int nfs3svc_decode_accessargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 struct nfsd3_accessargs *);
Al Viro91f07162006-10-19 23:28:57 -0700279int nfs3svc_decode_readargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 struct nfsd3_readargs *);
Al Viro91f07162006-10-19 23:28:57 -0700281int nfs3svc_decode_writeargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct nfsd3_writeargs *);
Al Viro91f07162006-10-19 23:28:57 -0700283int nfs3svc_decode_createargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct nfsd3_createargs *);
Al Viro91f07162006-10-19 23:28:57 -0700285int nfs3svc_decode_mkdirargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 struct nfsd3_createargs *);
Al Viro91f07162006-10-19 23:28:57 -0700287int nfs3svc_decode_mknodargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 struct nfsd3_mknodargs *);
Al Viro91f07162006-10-19 23:28:57 -0700289int nfs3svc_decode_renameargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 struct nfsd3_renameargs *);
Al Viro91f07162006-10-19 23:28:57 -0700291int nfs3svc_decode_readlinkargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct nfsd3_readlinkargs *);
Al Viro91f07162006-10-19 23:28:57 -0700293int nfs3svc_decode_linkargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct nfsd3_linkargs *);
Al Viro91f07162006-10-19 23:28:57 -0700295int nfs3svc_decode_symlinkargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct nfsd3_symlinkargs *);
Al Viro91f07162006-10-19 23:28:57 -0700297int nfs3svc_decode_readdirargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 struct nfsd3_readdirargs *);
Al Viro91f07162006-10-19 23:28:57 -0700299int nfs3svc_decode_readdirplusargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 struct nfsd3_readdirargs *);
Al Viro91f07162006-10-19 23:28:57 -0700301int nfs3svc_decode_commitargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 struct nfsd3_commitargs *);
Al Viro91f07162006-10-19 23:28:57 -0700303int nfs3svc_encode_voidres(struct svc_rqst *, __be32 *, void *);
304int nfs3svc_encode_attrstat(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 struct nfsd3_attrstat *);
Al Viro91f07162006-10-19 23:28:57 -0700306int nfs3svc_encode_wccstat(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct nfsd3_attrstat *);
Al Viro91f07162006-10-19 23:28:57 -0700308int nfs3svc_encode_diropres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 struct nfsd3_diropres *);
Al Viro91f07162006-10-19 23:28:57 -0700310int nfs3svc_encode_accessres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 struct nfsd3_accessres *);
Al Viro91f07162006-10-19 23:28:57 -0700312int nfs3svc_encode_readlinkres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct nfsd3_readlinkres *);
Al Viro91f07162006-10-19 23:28:57 -0700314int nfs3svc_encode_readres(struct svc_rqst *, __be32 *, struct nfsd3_readres *);
315int nfs3svc_encode_writeres(struct svc_rqst *, __be32 *, struct nfsd3_writeres *);
316int nfs3svc_encode_createres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct nfsd3_diropres *);
Al Viro91f07162006-10-19 23:28:57 -0700318int nfs3svc_encode_renameres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 struct nfsd3_renameres *);
Al Viro91f07162006-10-19 23:28:57 -0700320int nfs3svc_encode_linkres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct nfsd3_linkres *);
Al Viro91f07162006-10-19 23:28:57 -0700322int nfs3svc_encode_readdirres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 struct nfsd3_readdirres *);
Al Viro91f07162006-10-19 23:28:57 -0700324int nfs3svc_encode_fsstatres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 struct nfsd3_fsstatres *);
Al Viro91f07162006-10-19 23:28:57 -0700326int nfs3svc_encode_fsinfores(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct nfsd3_fsinfores *);
Al Viro91f07162006-10-19 23:28:57 -0700328int nfs3svc_encode_pathconfres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct nfsd3_pathconfres *);
Al Viro91f07162006-10-19 23:28:57 -0700330int nfs3svc_encode_commitres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 struct nfsd3_commitres *);
332
Al Viro91f07162006-10-19 23:28:57 -0700333int nfs3svc_release_fhandle(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct nfsd3_attrstat *);
Al Viro91f07162006-10-19 23:28:57 -0700335int nfs3svc_release_fhandle2(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 struct nfsd3_fhandle_pair *);
NeilBrowna0ad13e2007-01-26 00:57:10 -0800337int nfs3svc_encode_entry(void *, const char *name,
338 int namlen, loff_t offset, u64 ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 unsigned int);
NeilBrowna0ad13e2007-01-26 00:57:10 -0800340int nfs3svc_encode_entry_plus(void *, const char *name,
341 int namlen, loff_t offset, u64 ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 unsigned int);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000343/* Helper functions for NFSv3 ACL code */
Al Viro91f07162006-10-19 23:28:57 -0700344__be32 *nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p,
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000345 struct svc_fh *fhp);
Al Viro91f07162006-10-19 23:28:57 -0700346__be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348
349#endif /* _LINUX_NFSD_XDR3_H */