blob: b6d5542a4ac8e185e48d9d7c64fab36f5068dd88 [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;
177 int count;
Al Viro91f07162006-10-19 23:28:57 -0700178 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 struct readdir_cd common;
Al Viro91f07162006-10-19 23:28:57 -0700181 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 int buflen;
Al Viro91f07162006-10-19 23:28:57 -0700183 __be32 * offset;
184 __be32 * offset1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct svc_rqst * rqstp;
186
187};
188
189struct nfsd3_fsstatres {
Al Viro91f07162006-10-19 23:28:57 -0700190 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 struct kstatfs stats;
192 __u32 invarsec;
193};
194
195struct nfsd3_fsinfores {
Al Viro91f07162006-10-19 23:28:57 -0700196 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 __u32 f_rtmax;
198 __u32 f_rtpref;
199 __u32 f_rtmult;
200 __u32 f_wtmax;
201 __u32 f_wtpref;
202 __u32 f_wtmult;
203 __u32 f_dtpref;
204 __u64 f_maxfilesize;
205 __u32 f_properties;
206};
207
208struct nfsd3_pathconfres {
Al Viro91f07162006-10-19 23:28:57 -0700209 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 __u32 p_link_max;
211 __u32 p_name_max;
212 __u32 p_no_trunc;
213 __u32 p_chown_restricted;
214 __u32 p_case_insensitive;
215 __u32 p_case_preserving;
216};
217
218struct nfsd3_commitres {
Al Viro91f07162006-10-19 23:28:57 -0700219 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 struct svc_fh fh;
221};
222
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000223struct nfsd3_getaclres {
Al Viro91f07162006-10-19 23:28:57 -0700224 __be32 status;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000225 struct svc_fh fh;
226 int mask;
227 struct posix_acl *acl_access;
228 struct posix_acl *acl_default;
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500229 struct kstat stat;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000230};
231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232/* dummy type for release */
233struct nfsd3_fhandle_pair {
234 __u32 dummy;
235 struct svc_fh fh1;
236 struct svc_fh fh2;
237};
238
239/*
240 * Storage requirements for XDR arguments and results.
241 */
242union nfsd3_xdrstore {
243 struct nfsd3_sattrargs sattrargs;
244 struct nfsd3_diropargs diropargs;
245 struct nfsd3_readargs readargs;
246 struct nfsd3_writeargs writeargs;
247 struct nfsd3_createargs createargs;
248 struct nfsd3_renameargs renameargs;
249 struct nfsd3_linkargs linkargs;
250 struct nfsd3_symlinkargs symlinkargs;
251 struct nfsd3_readdirargs readdirargs;
252 struct nfsd3_diropres diropres;
253 struct nfsd3_accessres accessres;
254 struct nfsd3_readlinkres readlinkres;
255 struct nfsd3_readres readres;
256 struct nfsd3_writeres writeres;
257 struct nfsd3_renameres renameres;
258 struct nfsd3_linkres linkres;
259 struct nfsd3_readdirres readdirres;
260 struct nfsd3_fsstatres fsstatres;
261 struct nfsd3_fsinfores fsinfores;
262 struct nfsd3_pathconfres pathconfres;
263 struct nfsd3_commitres commitres;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000264 struct nfsd3_getaclres getaclres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
267#define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore)
268
Al Viro91f07162006-10-19 23:28:57 -0700269int nfs3svc_decode_fhandle(struct svc_rqst *, __be32 *, struct nfsd_fhandle *);
270int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct nfsd3_sattrargs *);
Al Viro91f07162006-10-19 23:28:57 -0700272int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 struct nfsd3_diropargs *);
Al Viro91f07162006-10-19 23:28:57 -0700274int nfs3svc_decode_accessargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct nfsd3_accessargs *);
Al Viro91f07162006-10-19 23:28:57 -0700276int nfs3svc_decode_readargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 struct nfsd3_readargs *);
Al Viro91f07162006-10-19 23:28:57 -0700278int nfs3svc_decode_writeargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 struct nfsd3_writeargs *);
Al Viro91f07162006-10-19 23:28:57 -0700280int nfs3svc_decode_createargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 struct nfsd3_createargs *);
Al Viro91f07162006-10-19 23:28:57 -0700282int nfs3svc_decode_mkdirargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 struct nfsd3_createargs *);
Al Viro91f07162006-10-19 23:28:57 -0700284int nfs3svc_decode_mknodargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct nfsd3_mknodargs *);
Al Viro91f07162006-10-19 23:28:57 -0700286int nfs3svc_decode_renameargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct nfsd3_renameargs *);
Al Viro91f07162006-10-19 23:28:57 -0700288int nfs3svc_decode_readlinkargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct nfsd3_readlinkargs *);
Al Viro91f07162006-10-19 23:28:57 -0700290int nfs3svc_decode_linkargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct nfsd3_linkargs *);
Al Viro91f07162006-10-19 23:28:57 -0700292int nfs3svc_decode_symlinkargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 struct nfsd3_symlinkargs *);
Al Viro91f07162006-10-19 23:28:57 -0700294int nfs3svc_decode_readdirargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 struct nfsd3_readdirargs *);
Al Viro91f07162006-10-19 23:28:57 -0700296int nfs3svc_decode_readdirplusargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 struct nfsd3_readdirargs *);
Al Viro91f07162006-10-19 23:28:57 -0700298int nfs3svc_decode_commitargs(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 struct nfsd3_commitargs *);
Al Viro91f07162006-10-19 23:28:57 -0700300int nfs3svc_encode_voidres(struct svc_rqst *, __be32 *, void *);
301int nfs3svc_encode_attrstat(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 struct nfsd3_attrstat *);
Al Viro91f07162006-10-19 23:28:57 -0700303int nfs3svc_encode_wccstat(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 struct nfsd3_attrstat *);
Al Viro91f07162006-10-19 23:28:57 -0700305int nfs3svc_encode_diropres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 struct nfsd3_diropres *);
Al Viro91f07162006-10-19 23:28:57 -0700307int nfs3svc_encode_accessres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct nfsd3_accessres *);
Al Viro91f07162006-10-19 23:28:57 -0700309int nfs3svc_encode_readlinkres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct nfsd3_readlinkres *);
Al Viro91f07162006-10-19 23:28:57 -0700311int nfs3svc_encode_readres(struct svc_rqst *, __be32 *, struct nfsd3_readres *);
312int nfs3svc_encode_writeres(struct svc_rqst *, __be32 *, struct nfsd3_writeres *);
313int nfs3svc_encode_createres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 struct nfsd3_diropres *);
Al Viro91f07162006-10-19 23:28:57 -0700315int nfs3svc_encode_renameres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 struct nfsd3_renameres *);
Al Viro91f07162006-10-19 23:28:57 -0700317int nfs3svc_encode_linkres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 struct nfsd3_linkres *);
Al Viro91f07162006-10-19 23:28:57 -0700319int nfs3svc_encode_readdirres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct nfsd3_readdirres *);
Al Viro91f07162006-10-19 23:28:57 -0700321int nfs3svc_encode_fsstatres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 struct nfsd3_fsstatres *);
Al Viro91f07162006-10-19 23:28:57 -0700323int nfs3svc_encode_fsinfores(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 struct nfsd3_fsinfores *);
Al Viro91f07162006-10-19 23:28:57 -0700325int nfs3svc_encode_pathconfres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 struct nfsd3_pathconfres *);
Al Viro91f07162006-10-19 23:28:57 -0700327int nfs3svc_encode_commitres(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct nfsd3_commitres *);
329
Al Viro91f07162006-10-19 23:28:57 -0700330int nfs3svc_release_fhandle(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 struct nfsd3_attrstat *);
Al Viro91f07162006-10-19 23:28:57 -0700332int nfs3svc_release_fhandle2(struct svc_rqst *, __be32 *,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct nfsd3_fhandle_pair *);
NeilBrowna0ad13e2007-01-26 00:57:10 -0800334int nfs3svc_encode_entry(void *, const char *name,
335 int namlen, loff_t offset, u64 ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 unsigned int);
NeilBrowna0ad13e2007-01-26 00:57:10 -0800337int nfs3svc_encode_entry_plus(void *, const char *name,
338 int namlen, loff_t offset, u64 ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 unsigned int);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000340/* Helper functions for NFSv3 ACL code */
Al Viro91f07162006-10-19 23:28:57 -0700341__be32 *nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p,
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000342 struct svc_fh *fhp);
Al Viro91f07162006-10-19 23:28:57 -0700343__be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345
346#endif /* _LINUX_NFSD_XDR3_H */