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