blob: 056bf8a7364e22d75a47e646f206a1e5415df6e1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * XDR types for NFSv3 in nfsd.
4 *
5 * Copyright (C) 1996-1998, Olaf Kirch <okir@monad.swb.de>
6 */
7
8#ifndef _LINUX_NFSD_XDR3_H
9#define _LINUX_NFSD_XDR3_H
10
Boaz Harrosh9a74af22009-12-03 20:30:56 +020011#include "xdr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13struct nfsd3_sattrargs {
14 struct svc_fh fh;
15 struct iattr attrs;
16 int check_guard;
17 time_t guardtime;
18};
19
20struct nfsd3_diropargs {
21 struct svc_fh fh;
22 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040023 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024};
25
26struct nfsd3_accessargs {
27 struct svc_fh fh;
28 unsigned int access;
29};
30
31struct nfsd3_readargs {
32 struct svc_fh fh;
33 __u64 offset;
34 __u32 count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 int vlen;
36};
37
38struct nfsd3_writeargs {
39 svc_fh fh;
40 __u64 offset;
41 __u32 count;
42 int stable;
NeilBrown0ba75362005-11-07 01:00:26 -080043 __u32 len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 int vlen;
45};
46
47struct nfsd3_createargs {
48 struct svc_fh fh;
49 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040050 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 int createmode;
52 struct iattr attrs;
Al Viro91f07162006-10-19 23:28:57 -070053 __be32 * verf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
56struct nfsd3_mknodargs {
57 struct svc_fh fh;
58 char * name;
Chuck Lever29d5e552007-11-01 16:57:04 -040059 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 __u32 ftype;
61 __u32 major, minor;
62 struct iattr attrs;
63};
64
65struct nfsd3_renameargs {
66 struct svc_fh ffh;
67 char * fname;
Chuck Lever29d5e552007-11-01 16:57:04 -040068 unsigned int flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 struct svc_fh tfh;
70 char * tname;
Chuck Lever29d5e552007-11-01 16:57:04 -040071 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072};
73
74struct nfsd3_readlinkargs {
75 struct svc_fh fh;
76 char * buffer;
77};
78
79struct nfsd3_linkargs {
80 struct svc_fh ffh;
81 struct svc_fh tfh;
82 char * tname;
Chuck Lever29d5e552007-11-01 16:57:04 -040083 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084};
85
86struct nfsd3_symlinkargs {
87 struct svc_fh ffh;
88 char * fname;
Chuck Lever29d5e552007-11-01 16:57:04 -040089 unsigned int flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 char * tname;
Chuck Lever48b4ba32007-11-01 16:57:25 -040091 unsigned int tlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 struct iattr attrs;
93};
94
95struct nfsd3_readdirargs {
96 struct svc_fh fh;
97 __u64 cookie;
98 __u32 dircount;
99 __u32 count;
Al Viro91f07162006-10-19 23:28:57 -0700100 __be32 * verf;
101 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102};
103
104struct nfsd3_commitargs {
105 struct svc_fh fh;
106 __u64 offset;
107 __u32 count;
108};
109
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000110struct nfsd3_getaclargs {
111 struct svc_fh fh;
112 int mask;
113};
114
115struct posix_acl;
116struct nfsd3_setaclargs {
117 struct svc_fh fh;
118 int mask;
119 struct posix_acl *acl_access;
120 struct posix_acl *acl_default;
121};
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123struct nfsd3_attrstat {
Al Viro91f07162006-10-19 23:28:57 -0700124 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 struct svc_fh fh;
David Shawa334de22006-01-06 00:19:58 -0800126 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127};
128
129/* LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD */
130struct nfsd3_diropres {
Al Viro91f07162006-10-19 23:28:57 -0700131 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct svc_fh dirfh;
133 struct svc_fh fh;
134};
135
136struct nfsd3_accessres {
Al Viro91f07162006-10-19 23:28:57 -0700137 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct svc_fh fh;
139 __u32 access;
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500140 struct kstat stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141};
142
143struct nfsd3_readlinkres {
Al Viro91f07162006-10-19 23:28:57 -0700144 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct svc_fh fh;
146 __u32 len;
147};
148
149struct nfsd3_readres {
Al Viro91f07162006-10-19 23:28:57 -0700150 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct svc_fh fh;
152 unsigned long count;
153 int eof;
154};
155
156struct nfsd3_writeres {
Al Viro91f07162006-10-19 23:28:57 -0700157 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct svc_fh fh;
159 unsigned long count;
160 int committed;
161};
162
163struct nfsd3_renameres {
Al Viro91f07162006-10-19 23:28:57 -0700164 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 struct svc_fh ffh;
166 struct svc_fh tfh;
167};
168
169struct nfsd3_linkres {
Al Viro91f07162006-10-19 23:28:57 -0700170 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 struct svc_fh tfh;
172 struct svc_fh fh;
173};
174
175struct nfsd3_readdirres {
Al Viro91f07162006-10-19 23:28:57 -0700176 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 struct svc_fh fh;
J. Bruce Fields068c34c2014-01-09 16:24:35 -0500178 /* Just to save kmalloc on every readdirplus entry (svc_fh is a
179 * little large for the stack): */
180 struct svc_fh scratch;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 int count;
Al Viro91f07162006-10-19 23:28:57 -0700182 __be32 verf[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
184 struct readdir_cd common;
Al Viro91f07162006-10-19 23:28:57 -0700185 __be32 * buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int buflen;
Al Viro91f07162006-10-19 23:28:57 -0700187 __be32 * offset;
188 __be32 * offset1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 struct svc_rqst * rqstp;
190
191};
192
193struct nfsd3_fsstatres {
Al Viro91f07162006-10-19 23:28:57 -0700194 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 struct kstatfs stats;
196 __u32 invarsec;
197};
198
199struct nfsd3_fsinfores {
Al Viro91f07162006-10-19 23:28:57 -0700200 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 __u32 f_rtmax;
202 __u32 f_rtpref;
203 __u32 f_rtmult;
204 __u32 f_wtmax;
205 __u32 f_wtpref;
206 __u32 f_wtmult;
207 __u32 f_dtpref;
208 __u64 f_maxfilesize;
209 __u32 f_properties;
210};
211
212struct nfsd3_pathconfres {
Al Viro91f07162006-10-19 23:28:57 -0700213 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 __u32 p_link_max;
215 __u32 p_name_max;
216 __u32 p_no_trunc;
217 __u32 p_chown_restricted;
218 __u32 p_case_insensitive;
219 __u32 p_case_preserving;
220};
221
222struct nfsd3_commitres {
Al Viro91f07162006-10-19 23:28:57 -0700223 __be32 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 struct svc_fh fh;
225};
226
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000227struct nfsd3_getaclres {
Al Viro91f07162006-10-19 23:28:57 -0700228 __be32 status;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000229 struct svc_fh fh;
230 int mask;
231 struct posix_acl *acl_access;
232 struct posix_acl *acl_default;
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500233 struct kstat stat;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000234};
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236/* dummy type for release */
237struct nfsd3_fhandle_pair {
238 __u32 dummy;
239 struct svc_fh fh1;
240 struct svc_fh fh2;
241};
242
243/*
244 * Storage requirements for XDR arguments and results.
245 */
246union nfsd3_xdrstore {
247 struct nfsd3_sattrargs sattrargs;
248 struct nfsd3_diropargs diropargs;
249 struct nfsd3_readargs readargs;
250 struct nfsd3_writeargs writeargs;
251 struct nfsd3_createargs createargs;
252 struct nfsd3_renameargs renameargs;
253 struct nfsd3_linkargs linkargs;
254 struct nfsd3_symlinkargs symlinkargs;
255 struct nfsd3_readdirargs readdirargs;
256 struct nfsd3_diropres diropres;
257 struct nfsd3_accessres accessres;
258 struct nfsd3_readlinkres readlinkres;
259 struct nfsd3_readres readres;
260 struct nfsd3_writeres writeres;
261 struct nfsd3_renameres renameres;
262 struct nfsd3_linkres linkres;
263 struct nfsd3_readdirres readdirres;
264 struct nfsd3_fsstatres fsstatres;
265 struct nfsd3_fsinfores fsinfores;
266 struct nfsd3_pathconfres pathconfres;
267 struct nfsd3_commitres commitres;
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000268 struct nfsd3_getaclres getaclres;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269};
270
271#define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore)
272
Christoph Hellwig026fec72017-05-08 19:01:48 +0200273int nfs3svc_decode_fhandle(struct svc_rqst *, __be32 *);
274int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *);
275int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *);
276int nfs3svc_decode_accessargs(struct svc_rqst *, __be32 *);
277int nfs3svc_decode_readargs(struct svc_rqst *, __be32 *);
278int nfs3svc_decode_writeargs(struct svc_rqst *, __be32 *);
279int nfs3svc_decode_createargs(struct svc_rqst *, __be32 *);
280int nfs3svc_decode_mkdirargs(struct svc_rqst *, __be32 *);
281int nfs3svc_decode_mknodargs(struct svc_rqst *, __be32 *);
282int nfs3svc_decode_renameargs(struct svc_rqst *, __be32 *);
283int nfs3svc_decode_readlinkargs(struct svc_rqst *, __be32 *);
284int nfs3svc_decode_linkargs(struct svc_rqst *, __be32 *);
285int nfs3svc_decode_symlinkargs(struct svc_rqst *, __be32 *);
286int nfs3svc_decode_readdirargs(struct svc_rqst *, __be32 *);
287int nfs3svc_decode_readdirplusargs(struct svc_rqst *, __be32 *);
288int nfs3svc_decode_commitargs(struct svc_rqst *, __be32 *);
Christoph Hellwig63f8de32017-05-08 19:42:02 +0200289int nfs3svc_encode_voidres(struct svc_rqst *, __be32 *);
290int nfs3svc_encode_attrstat(struct svc_rqst *, __be32 *);
291int nfs3svc_encode_wccstat(struct svc_rqst *, __be32 *);
292int nfs3svc_encode_diropres(struct svc_rqst *, __be32 *);
293int nfs3svc_encode_accessres(struct svc_rqst *, __be32 *);
294int nfs3svc_encode_readlinkres(struct svc_rqst *, __be32 *);
295int nfs3svc_encode_readres(struct svc_rqst *, __be32 *);
296int nfs3svc_encode_writeres(struct svc_rqst *, __be32 *);
297int nfs3svc_encode_createres(struct svc_rqst *, __be32 *);
298int nfs3svc_encode_renameres(struct svc_rqst *, __be32 *);
299int nfs3svc_encode_linkres(struct svc_rqst *, __be32 *);
300int nfs3svc_encode_readdirres(struct svc_rqst *, __be32 *);
301int nfs3svc_encode_fsstatres(struct svc_rqst *, __be32 *);
302int nfs3svc_encode_fsinfores(struct svc_rqst *, __be32 *);
303int nfs3svc_encode_pathconfres(struct svc_rqst *, __be32 *);
304int nfs3svc_encode_commitres(struct svc_rqst *, __be32 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Christoph Hellwig85374882017-05-08 18:48:24 +0200306void nfs3svc_release_fhandle(struct svc_rqst *);
307void nfs3svc_release_fhandle2(struct svc_rqst *);
NeilBrowna0ad13e2007-01-26 00:57:10 -0800308int nfs3svc_encode_entry(void *, const char *name,
309 int namlen, loff_t offset, u64 ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 unsigned int);
NeilBrowna0ad13e2007-01-26 00:57:10 -0800311int nfs3svc_encode_entry_plus(void *, const char *name,
312 int namlen, loff_t offset, u64 ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 unsigned int);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000314/* Helper functions for NFSv3 ACL code */
Al Viro91f07162006-10-19 23:28:57 -0700315__be32 *nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p,
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000316 struct svc_fh *fhp);
Al Viro91f07162006-10-19 23:28:57 -0700317__be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319
320#endif /* _LINUX_NFSD_XDR3_H */