]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
1da177e4 | 2 | /* |
1da177e4 LT |
3 | * XDR types for NFSv3 in nfsd. |
4 | * | |
5 | * Copyright (C) 1996-1998, Olaf Kirch <[email protected]> | |
6 | */ | |
7 | ||
8 | #ifndef _LINUX_NFSD_XDR3_H | |
9 | #define _LINUX_NFSD_XDR3_H | |
10 | ||
9a74af21 | 11 | #include "xdr.h" |
1da177e4 LT |
12 | |
13 | struct nfsd3_sattrargs { | |
14 | struct svc_fh fh; | |
15 | struct iattr attrs; | |
16 | int check_guard; | |
17 | time_t guardtime; | |
18 | }; | |
19 | ||
20 | struct nfsd3_diropargs { | |
21 | struct svc_fh fh; | |
22 | char * name; | |
29d5e555 | 23 | unsigned int len; |
1da177e4 LT |
24 | }; |
25 | ||
26 | struct nfsd3_accessargs { | |
27 | struct svc_fh fh; | |
28 | unsigned int access; | |
29 | }; | |
30 | ||
31 | struct nfsd3_readargs { | |
32 | struct svc_fh fh; | |
33 | __u64 offset; | |
34 | __u32 count; | |
1da177e4 LT |
35 | int vlen; |
36 | }; | |
37 | ||
38 | struct nfsd3_writeargs { | |
39 | svc_fh fh; | |
40 | __u64 offset; | |
41 | __u32 count; | |
42 | int stable; | |
0ba7536d | 43 | __u32 len; |
8154ef27 | 44 | struct kvec first; |
1da177e4 LT |
45 | }; |
46 | ||
47 | struct nfsd3_createargs { | |
48 | struct svc_fh fh; | |
49 | char * name; | |
29d5e555 | 50 | unsigned int len; |
1da177e4 LT |
51 | int createmode; |
52 | struct iattr attrs; | |
91f07168 | 53 | __be32 * verf; |
1da177e4 LT |
54 | }; |
55 | ||
56 | struct nfsd3_mknodargs { | |
57 | struct svc_fh fh; | |
58 | char * name; | |
29d5e555 | 59 | unsigned int len; |
1da177e4 LT |
60 | __u32 ftype; |
61 | __u32 major, minor; | |
62 | struct iattr attrs; | |
63 | }; | |
64 | ||
65 | struct nfsd3_renameargs { | |
66 | struct svc_fh ffh; | |
67 | char * fname; | |
29d5e555 | 68 | unsigned int flen; |
1da177e4 LT |
69 | struct svc_fh tfh; |
70 | char * tname; | |
29d5e555 | 71 | unsigned int tlen; |
1da177e4 LT |
72 | }; |
73 | ||
74 | struct nfsd3_readlinkargs { | |
75 | struct svc_fh fh; | |
76 | char * buffer; | |
77 | }; | |
78 | ||
79 | struct nfsd3_linkargs { | |
80 | struct svc_fh ffh; | |
81 | struct svc_fh tfh; | |
82 | char * tname; | |
29d5e555 | 83 | unsigned int tlen; |
1da177e4 LT |
84 | }; |
85 | ||
86 | struct nfsd3_symlinkargs { | |
87 | struct svc_fh ffh; | |
88 | char * fname; | |
29d5e555 | 89 | unsigned int flen; |
1da177e4 | 90 | char * tname; |
48b4ba3f | 91 | unsigned int tlen; |
1da177e4 | 92 | struct iattr attrs; |
38a70315 | 93 | struct kvec first; |
1da177e4 LT |
94 | }; |
95 | ||
96 | struct nfsd3_readdirargs { | |
97 | struct svc_fh fh; | |
98 | __u64 cookie; | |
99 | __u32 dircount; | |
100 | __u32 count; | |
91f07168 AV |
101 | __be32 * verf; |
102 | __be32 * buffer; | |
1da177e4 LT |
103 | }; |
104 | ||
105 | struct nfsd3_commitargs { | |
106 | struct svc_fh fh; | |
107 | __u64 offset; | |
108 | __u32 count; | |
109 | }; | |
110 | ||
a257cdd0 AG |
111 | struct nfsd3_getaclargs { |
112 | struct svc_fh fh; | |
113 | int mask; | |
114 | }; | |
115 | ||
116 | struct posix_acl; | |
117 | struct nfsd3_setaclargs { | |
118 | struct svc_fh fh; | |
119 | int mask; | |
120 | struct posix_acl *acl_access; | |
121 | struct posix_acl *acl_default; | |
122 | }; | |
123 | ||
1da177e4 | 124 | struct nfsd3_attrstat { |
91f07168 | 125 | __be32 status; |
1da177e4 | 126 | struct svc_fh fh; |
a334de28 | 127 | struct kstat stat; |
1da177e4 LT |
128 | }; |
129 | ||
130 | /* LOOKUP, CREATE, MKDIR, SYMLINK, MKNOD */ | |
131 | struct nfsd3_diropres { | |
91f07168 | 132 | __be32 status; |
1da177e4 LT |
133 | struct svc_fh dirfh; |
134 | struct svc_fh fh; | |
135 | }; | |
136 | ||
137 | struct nfsd3_accessres { | |
91f07168 | 138 | __be32 status; |
1da177e4 LT |
139 | struct svc_fh fh; |
140 | __u32 access; | |
4f4a4fad | 141 | struct kstat stat; |
1da177e4 LT |
142 | }; |
143 | ||
144 | struct nfsd3_readlinkres { | |
91f07168 | 145 | __be32 status; |
1da177e4 LT |
146 | struct svc_fh fh; |
147 | __u32 len; | |
148 | }; | |
149 | ||
150 | struct nfsd3_readres { | |
91f07168 | 151 | __be32 status; |
1da177e4 LT |
152 | struct svc_fh fh; |
153 | unsigned long count; | |
154 | int eof; | |
155 | }; | |
156 | ||
157 | struct nfsd3_writeres { | |
91f07168 | 158 | __be32 status; |
1da177e4 LT |
159 | struct svc_fh fh; |
160 | unsigned long count; | |
161 | int committed; | |
162 | }; | |
163 | ||
164 | struct nfsd3_renameres { | |
91f07168 | 165 | __be32 status; |
1da177e4 LT |
166 | struct svc_fh ffh; |
167 | struct svc_fh tfh; | |
168 | }; | |
169 | ||
170 | struct nfsd3_linkres { | |
91f07168 | 171 | __be32 status; |
1da177e4 LT |
172 | struct svc_fh tfh; |
173 | struct svc_fh fh; | |
174 | }; | |
175 | ||
176 | struct nfsd3_readdirres { | |
91f07168 | 177 | __be32 status; |
1da177e4 | 178 | struct svc_fh fh; |
068c34c0 BF |
179 | /* Just to save kmalloc on every readdirplus entry (svc_fh is a |
180 | * little large for the stack): */ | |
181 | struct svc_fh scratch; | |
1da177e4 | 182 | int count; |
91f07168 | 183 | __be32 verf[2]; |
1da177e4 LT |
184 | |
185 | struct readdir_cd common; | |
91f07168 | 186 | __be32 * buffer; |
1da177e4 | 187 | int buflen; |
91f07168 AV |
188 | __be32 * offset; |
189 | __be32 * offset1; | |
1da177e4 LT |
190 | struct svc_rqst * rqstp; |
191 | ||
192 | }; | |
193 | ||
194 | struct nfsd3_fsstatres { | |
91f07168 | 195 | __be32 status; |
1da177e4 LT |
196 | struct kstatfs stats; |
197 | __u32 invarsec; | |
198 | }; | |
199 | ||
200 | struct nfsd3_fsinfores { | |
91f07168 | 201 | __be32 status; |
1da177e4 LT |
202 | __u32 f_rtmax; |
203 | __u32 f_rtpref; | |
204 | __u32 f_rtmult; | |
205 | __u32 f_wtmax; | |
206 | __u32 f_wtpref; | |
207 | __u32 f_wtmult; | |
208 | __u32 f_dtpref; | |
209 | __u64 f_maxfilesize; | |
210 | __u32 f_properties; | |
211 | }; | |
212 | ||
213 | struct nfsd3_pathconfres { | |
91f07168 | 214 | __be32 status; |
1da177e4 LT |
215 | __u32 p_link_max; |
216 | __u32 p_name_max; | |
217 | __u32 p_no_trunc; | |
218 | __u32 p_chown_restricted; | |
219 | __u32 p_case_insensitive; | |
220 | __u32 p_case_preserving; | |
221 | }; | |
222 | ||
223 | struct nfsd3_commitres { | |
91f07168 | 224 | __be32 status; |
1da177e4 LT |
225 | struct svc_fh fh; |
226 | }; | |
227 | ||
a257cdd0 | 228 | struct nfsd3_getaclres { |
91f07168 | 229 | __be32 status; |
a257cdd0 AG |
230 | struct svc_fh fh; |
231 | int mask; | |
232 | struct posix_acl *acl_access; | |
233 | struct posix_acl *acl_default; | |
4f4a4fad | 234 | struct kstat stat; |
a257cdd0 AG |
235 | }; |
236 | ||
1da177e4 LT |
237 | /* dummy type for release */ |
238 | struct nfsd3_fhandle_pair { | |
239 | __u32 dummy; | |
240 | struct svc_fh fh1; | |
241 | struct svc_fh fh2; | |
242 | }; | |
243 | ||
244 | /* | |
245 | * Storage requirements for XDR arguments and results. | |
246 | */ | |
247 | union nfsd3_xdrstore { | |
248 | struct nfsd3_sattrargs sattrargs; | |
249 | struct nfsd3_diropargs diropargs; | |
250 | struct nfsd3_readargs readargs; | |
251 | struct nfsd3_writeargs writeargs; | |
252 | struct nfsd3_createargs createargs; | |
253 | struct nfsd3_renameargs renameargs; | |
254 | struct nfsd3_linkargs linkargs; | |
255 | struct nfsd3_symlinkargs symlinkargs; | |
256 | struct nfsd3_readdirargs readdirargs; | |
257 | struct nfsd3_diropres diropres; | |
258 | struct nfsd3_accessres accessres; | |
259 | struct nfsd3_readlinkres readlinkres; | |
260 | struct nfsd3_readres readres; | |
261 | struct nfsd3_writeres writeres; | |
262 | struct nfsd3_renameres renameres; | |
263 | struct nfsd3_linkres linkres; | |
264 | struct nfsd3_readdirres readdirres; | |
265 | struct nfsd3_fsstatres fsstatres; | |
266 | struct nfsd3_fsinfores fsinfores; | |
267 | struct nfsd3_pathconfres pathconfres; | |
268 | struct nfsd3_commitres commitres; | |
a257cdd0 | 269 | struct nfsd3_getaclres getaclres; |
1da177e4 LT |
270 | }; |
271 | ||
272 | #define NFS3_SVC_XDRSIZE sizeof(union nfsd3_xdrstore) | |
273 | ||
026fec7e CH |
274 | int nfs3svc_decode_fhandle(struct svc_rqst *, __be32 *); |
275 | int nfs3svc_decode_sattrargs(struct svc_rqst *, __be32 *); | |
276 | int nfs3svc_decode_diropargs(struct svc_rqst *, __be32 *); | |
277 | int nfs3svc_decode_accessargs(struct svc_rqst *, __be32 *); | |
278 | int nfs3svc_decode_readargs(struct svc_rqst *, __be32 *); | |
279 | int nfs3svc_decode_writeargs(struct svc_rqst *, __be32 *); | |
280 | int nfs3svc_decode_createargs(struct svc_rqst *, __be32 *); | |
281 | int nfs3svc_decode_mkdirargs(struct svc_rqst *, __be32 *); | |
282 | int nfs3svc_decode_mknodargs(struct svc_rqst *, __be32 *); | |
283 | int nfs3svc_decode_renameargs(struct svc_rqst *, __be32 *); | |
284 | int nfs3svc_decode_readlinkargs(struct svc_rqst *, __be32 *); | |
285 | int nfs3svc_decode_linkargs(struct svc_rqst *, __be32 *); | |
286 | int nfs3svc_decode_symlinkargs(struct svc_rqst *, __be32 *); | |
287 | int nfs3svc_decode_readdirargs(struct svc_rqst *, __be32 *); | |
288 | int nfs3svc_decode_readdirplusargs(struct svc_rqst *, __be32 *); | |
289 | int nfs3svc_decode_commitargs(struct svc_rqst *, __be32 *); | |
63f8de37 CH |
290 | int nfs3svc_encode_voidres(struct svc_rqst *, __be32 *); |
291 | int nfs3svc_encode_attrstat(struct svc_rqst *, __be32 *); | |
292 | int nfs3svc_encode_wccstat(struct svc_rqst *, __be32 *); | |
293 | int nfs3svc_encode_diropres(struct svc_rqst *, __be32 *); | |
294 | int nfs3svc_encode_accessres(struct svc_rqst *, __be32 *); | |
295 | int nfs3svc_encode_readlinkres(struct svc_rqst *, __be32 *); | |
296 | int nfs3svc_encode_readres(struct svc_rqst *, __be32 *); | |
297 | int nfs3svc_encode_writeres(struct svc_rqst *, __be32 *); | |
298 | int nfs3svc_encode_createres(struct svc_rqst *, __be32 *); | |
299 | int nfs3svc_encode_renameres(struct svc_rqst *, __be32 *); | |
300 | int nfs3svc_encode_linkres(struct svc_rqst *, __be32 *); | |
301 | int nfs3svc_encode_readdirres(struct svc_rqst *, __be32 *); | |
302 | int nfs3svc_encode_fsstatres(struct svc_rqst *, __be32 *); | |
303 | int nfs3svc_encode_fsinfores(struct svc_rqst *, __be32 *); | |
304 | int nfs3svc_encode_pathconfres(struct svc_rqst *, __be32 *); | |
305 | int nfs3svc_encode_commitres(struct svc_rqst *, __be32 *); | |
1da177e4 | 306 | |
8537488b CH |
307 | void nfs3svc_release_fhandle(struct svc_rqst *); |
308 | void nfs3svc_release_fhandle2(struct svc_rqst *); | |
a0ad13ef N |
309 | int nfs3svc_encode_entry(void *, const char *name, |
310 | int namlen, loff_t offset, u64 ino, | |
1da177e4 | 311 | unsigned int); |
a0ad13ef N |
312 | int nfs3svc_encode_entry_plus(void *, const char *name, |
313 | int namlen, loff_t offset, u64 ino, | |
1da177e4 | 314 | unsigned int); |
a257cdd0 | 315 | /* Helper functions for NFSv3 ACL code */ |
91f07168 | 316 | __be32 *nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, |
a257cdd0 | 317 | struct svc_fh *fhp); |
91f07168 | 318 | __be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp); |
1da177e4 LT |
319 | |
320 | ||
321 | #endif /* _LINUX_NFSD_XDR3_H */ |