blob: 96e56192f984d3cf05558d88deb6002b9045a40e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * XDR support for nfsd
3 *
4 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
5 */
6
Al Viro3dadecc2013-01-24 02:18:08 -05007#include "vfs.h"
Boaz Harrosh9a74af22009-12-03 20:30:56 +02008#include "xdr.h"
J. Bruce Fields2e8138a2007-11-15 17:05:43 -05009#include "auth.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#define NFSDDBG_FACILITY NFSDDBG_XDR
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013/*
14 * Mapping of S_IF* types to NFS file types
15 */
16static u32 nfs_ftypes[] = {
17 NFNON, NFCHR, NFCHR, NFBAD,
18 NFDIR, NFBAD, NFBLK, NFBAD,
19 NFREG, NFBAD, NFLNK, NFBAD,
20 NFSOCK, NFBAD, NFLNK, NFBAD,
21};
22
23
24/*
25 * XDR functions for basic NFS types
26 */
Al Viro131a21c2006-10-19 23:28:56 -070027static __be32 *
28decode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
30 fh_init(fhp, NFS_FHSIZE);
31 memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE);
32 fhp->fh_handle.fh_size = NFS_FHSIZE;
33
34 /* FIXME: Look up export pointer here and verify
35 * Sun Secure RPC if requested */
36 return p + (NFS_FHSIZE >> 2);
37}
38
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000039/* Helper function for NFSv2 ACL code */
Al Viro131a21c2006-10-19 23:28:56 -070040__be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000041{
42 return decode_fh(p, fhp);
43}
44
Adrian Bunk3ee6f612006-12-06 20:40:23 -080045static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070046encode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE);
49 return p + (NFS_FHSIZE>> 2);
50}
51
52/*
53 * Decode a file name and make sure that the path contains
54 * no slashes or null bytes.
55 */
Adrian Bunk3ee6f612006-12-06 20:40:23 -080056static __be32 *
Chuck Leveree1a95b2007-11-01 16:56:58 -040057decode_filename(__be32 *p, char **namp, unsigned int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
59 char *name;
Chuck Leveree1a95b2007-11-01 16:56:58 -040060 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) {
63 for (i = 0, name = *namp; i < *lenp; i++, name++) {
64 if (*name == '\0' || *name == '/')
65 return NULL;
66 }
67 }
68
69 return p;
70}
71
Adrian Bunk3ee6f612006-12-06 20:40:23 -080072static __be32 *
Chuck Lever9c7544d2007-11-01 16:57:14 -040073decode_pathname(__be32 *p, char **namp, unsigned int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 char *name;
Chuck Lever9c7544d2007-11-01 16:57:14 -040076 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) {
79 for (i = 0, name = *namp; i < *lenp; i++, name++) {
80 if (*name == '\0')
81 return NULL;
82 }
83 }
84
85 return p;
86}
87
Adrian Bunk3ee6f612006-12-06 20:40:23 -080088static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070089decode_sattr(__be32 *p, struct iattr *iap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 u32 tmp, tmp1;
92
93 iap->ia_valid = 0;
94
95 /* Sun client bug compatibility check: some sun clients seem to
96 * put 0xffff in the mode field when they mean 0xffffffff.
97 * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah.
98 */
99 if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) {
100 iap->ia_valid |= ATTR_MODE;
101 iap->ia_mode = tmp;
102 }
103 if ((tmp = ntohl(*p++)) != (u32)-1) {
104 iap->ia_valid |= ATTR_UID;
105 iap->ia_uid = tmp;
106 }
107 if ((tmp = ntohl(*p++)) != (u32)-1) {
108 iap->ia_valid |= ATTR_GID;
109 iap->ia_gid = tmp;
110 }
111 if ((tmp = ntohl(*p++)) != (u32)-1) {
112 iap->ia_valid |= ATTR_SIZE;
113 iap->ia_size = tmp;
114 }
115 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
116 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
117 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
118 iap->ia_atime.tv_sec = tmp;
119 iap->ia_atime.tv_nsec = tmp1 * 1000;
120 }
121 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
122 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
123 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
124 iap->ia_mtime.tv_sec = tmp;
125 iap->ia_mtime.tv_nsec = tmp1 * 1000;
126 /*
127 * Passing the invalid value useconds=1000000 for mtime
128 * is a Sun convention for "set both mtime and atime to
129 * current server time". It's needed to make permissions
130 * checks for the "touch" program across v2 mounts to
131 * Solaris and Irix boxes work correctly. See description of
132 * sattr in section 6.1 of "NFS Illustrated" by
133 * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5
134 */
135 if (tmp1 == 1000000)
136 iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET);
137 }
138 return p;
139}
140
Al Viro131a21c2006-10-19 23:28:56 -0700141static __be32 *
142encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
David Shawa334de22006-01-06 00:19:58 -0800143 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct dentry *dentry = fhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 int type;
147 struct timespec time;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800148 u32 f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
David Shawa334de22006-01-06 00:19:58 -0800150 type = (stat->mode & S_IFMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 *p++ = htonl(nfs_ftypes[type >> 12]);
David Shawa334de22006-01-06 00:19:58 -0800153 *p++ = htonl((u32) stat->mode);
154 *p++ = htonl((u32) stat->nlink);
155 *p++ = htonl((u32) nfsd_ruid(rqstp, stat->uid));
156 *p++ = htonl((u32) nfsd_rgid(rqstp, stat->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
David Shawa334de22006-01-06 00:19:58 -0800158 if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 *p++ = htonl(NFS_MAXPATHLEN);
160 } else {
David Shawa334de22006-01-06 00:19:58 -0800161 *p++ = htonl((u32) stat->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
David Shawa334de22006-01-06 00:19:58 -0800163 *p++ = htonl((u32) stat->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 if (S_ISCHR(type) || S_ISBLK(type))
David Shawa334de22006-01-06 00:19:58 -0800165 *p++ = htonl(new_encode_dev(stat->rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 else
167 *p++ = htonl(0xffffffff);
David Shawa334de22006-01-06 00:19:58 -0800168 *p++ = htonl((u32) stat->blocks);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800169 switch (fsid_source(fhp)) {
170 default:
171 case FSIDSOURCE_DEV:
David Shawa334de22006-01-06 00:19:58 -0800172 *p++ = htonl(new_encode_dev(stat->dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -0800173 break;
174 case FSIDSOURCE_FSID:
175 *p++ = htonl((u32) fhp->fh_export->ex_fsid);
176 break;
177 case FSIDSOURCE_UUID:
178 f = ((u32*)fhp->fh_export->ex_uuid)[0];
179 f ^= ((u32*)fhp->fh_export->ex_uuid)[1];
180 f ^= ((u32*)fhp->fh_export->ex_uuid)[2];
181 f ^= ((u32*)fhp->fh_export->ex_uuid)[3];
182 *p++ = htonl(f);
183 break;
184 }
David Shawa334de22006-01-06 00:19:58 -0800185 *p++ = htonl((u32) stat->ino);
186 *p++ = htonl((u32) stat->atime.tv_sec);
187 *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 lease_get_mtime(dentry->d_inode, &time);
189 *p++ = htonl((u32) time.tv_sec);
190 *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0);
David Shawa334de22006-01-06 00:19:58 -0800191 *p++ = htonl((u32) stat->ctime.tv_sec);
192 *p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 return p;
195}
196
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000197/* Helper function for NFSv2 ACL code */
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500198__be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp, struct kstat *stat)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000199{
J. Bruce Fields4f4a4fa2013-02-01 15:13:04 -0500200 return encode_fattr(rqstp, p, fhp, stat);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000201}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/*
204 * XDR decode functions
205 */
206int
Al Viro131a21c2006-10-19 23:28:56 -0700207nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 return xdr_argsize_check(rqstp, p);
210}
211
212int
Al Viro131a21c2006-10-19 23:28:56 -0700213nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p, struct nfsd_fhandle *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 if (!(p = decode_fh(p, &args->fh)))
216 return 0;
217 return xdr_argsize_check(rqstp, p);
218}
219
220int
Al Viro131a21c2006-10-19 23:28:56 -0700221nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 struct nfsd_sattrargs *args)
223{
NeilBrown072f62e2007-05-09 02:34:57 -0700224 p = decode_fh(p, &args->fh);
225 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700227 p = decode_sattr(p, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 return xdr_argsize_check(rqstp, p);
230}
231
232int
Al Viro131a21c2006-10-19 23:28:56 -0700233nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 struct nfsd_diropargs *args)
235{
236 if (!(p = decode_fh(p, &args->fh))
237 || !(p = decode_filename(p, &args->name, &args->len)))
238 return 0;
239
240 return xdr_argsize_check(rqstp, p);
241}
242
243int
Al Viro131a21c2006-10-19 23:28:56 -0700244nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct nfsd_readargs *args)
246{
247 unsigned int len;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500248 int v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (!(p = decode_fh(p, &args->fh)))
250 return 0;
251
252 args->offset = ntohl(*p++);
253 len = args->count = ntohl(*p++);
254 p++; /* totalcount - unused */
255
Greg Banks7adae482006-10-04 02:15:47 -0700256 if (len > NFSSVC_MAXBLKSIZE_V2)
257 len = NFSSVC_MAXBLKSIZE_V2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* set up somewhere to store response.
260 * We take pages, put them on reslist and include in iovec
261 */
262 v=0;
263 while (len > 0) {
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500264 struct page *p = *(rqstp->rq_next_page++);
265
266 rqstp->rq_vec[v].iov_base = page_address(p);
NeilBrown3cc03b12006-10-04 02:15:47 -0700267 rqstp->rq_vec[v].iov_len = len < PAGE_SIZE?len:PAGE_SIZE;
268 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 v++;
270 }
271 args->vlen = v;
272 return xdr_argsize_check(rqstp, p);
273}
274
275int
Al Viro131a21c2006-10-19 23:28:56 -0700276nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 struct nfsd_writeargs *args)
278{
Peter Staubachf34b9562007-05-09 02:34:48 -0700279 unsigned int len, hdr, dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 int v;
Peter Staubachf34b9562007-05-09 02:34:48 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (!(p = decode_fh(p, &args->fh)))
283 return 0;
284
285 p++; /* beginoffset */
286 args->offset = ntohl(*p++); /* offset */
287 p++; /* totalcount */
288 len = args->len = ntohl(*p++);
Peter Staubachf34b9562007-05-09 02:34:48 -0700289 /*
290 * The protocol specifies a maximum of 8192 bytes.
291 */
Greg Banks7adae482006-10-04 02:15:47 -0700292 if (len > NFSSVC_MAXBLKSIZE_V2)
Peter Staubachf34b9562007-05-09 02:34:48 -0700293 return 0;
294
295 /*
296 * Check to make sure that we got the right number of
297 * bytes.
Peter Staubachf34b9562007-05-09 02:34:48 -0700298 */
299 hdr = (void*)p - rqstp->rq_arg.head[0].iov_base;
NeilBrown072f62e2007-05-09 02:34:57 -0700300 dlen = rqstp->rq_arg.head[0].iov_len + rqstp->rq_arg.page_len
301 - hdr;
302
Peter Staubachf34b9562007-05-09 02:34:48 -0700303 /*
304 * Round the length of the data which was specified up to
305 * the next multiple of XDR units and then compare that
306 * against the length which was actually received.
NeilBrownba67a392008-01-11 17:06:52 -0500307 * Note that when RPCSEC/GSS (for example) is used, the
308 * data buffer can be padded so dlen might be larger
309 * than required. It must never be smaller.
Peter Staubachf34b9562007-05-09 02:34:48 -0700310 */
NeilBrownba67a392008-01-11 17:06:52 -0500311 if (dlen < XDR_QUADLEN(len)*4)
Peter Staubachf34b9562007-05-09 02:34:48 -0700312 return 0;
313
314 rqstp->rq_vec[0].iov_base = (void*)p;
315 rqstp->rq_vec[0].iov_len = rqstp->rq_arg.head[0].iov_len - hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 v = 0;
NeilBrown3cc03b12006-10-04 02:15:47 -0700317 while (len > rqstp->rq_vec[v].iov_len) {
318 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700320 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]);
321 rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700323 rqstp->rq_vec[v].iov_len = len;
Peter Staubachf34b9562007-05-09 02:34:48 -0700324 args->vlen = v + 1;
325 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328int
Al Viro131a21c2006-10-19 23:28:56 -0700329nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct nfsd_createargs *args)
331{
NeilBrown072f62e2007-05-09 02:34:57 -0700332 if ( !(p = decode_fh(p, &args->fh))
333 || !(p = decode_filename(p, &args->name, &args->len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700335 p = decode_sattr(p, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 return xdr_argsize_check(rqstp, p);
338}
339
340int
Al Viro131a21c2006-10-19 23:28:56 -0700341nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct nfsd_renameargs *args)
343{
344 if (!(p = decode_fh(p, &args->ffh))
345 || !(p = decode_filename(p, &args->fname, &args->flen))
346 || !(p = decode_fh(p, &args->tfh))
347 || !(p = decode_filename(p, &args->tname, &args->tlen)))
348 return 0;
349
350 return xdr_argsize_check(rqstp, p);
351}
352
353int
Al Viro131a21c2006-10-19 23:28:56 -0700354nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd_readlinkargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 if (!(p = decode_fh(p, &args->fh)))
357 return 0;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500358 args->buffer = page_address(*(rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 return xdr_argsize_check(rqstp, p);
361}
362
363int
Al Viro131a21c2006-10-19 23:28:56 -0700364nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 struct nfsd_linkargs *args)
366{
367 if (!(p = decode_fh(p, &args->ffh))
368 || !(p = decode_fh(p, &args->tfh))
369 || !(p = decode_filename(p, &args->tname, &args->tlen)))
370 return 0;
371
372 return xdr_argsize_check(rqstp, p);
373}
374
375int
Al Viro131a21c2006-10-19 23:28:56 -0700376nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct nfsd_symlinkargs *args)
378{
NeilBrown072f62e2007-05-09 02:34:57 -0700379 if ( !(p = decode_fh(p, &args->ffh))
380 || !(p = decode_filename(p, &args->fname, &args->flen))
381 || !(p = decode_pathname(p, &args->tname, &args->tlen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700383 p = decode_sattr(p, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 return xdr_argsize_check(rqstp, p);
386}
387
388int
Al Viro131a21c2006-10-19 23:28:56 -0700389nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct nfsd_readdirargs *args)
391{
392 if (!(p = decode_fh(p, &args->fh)))
393 return 0;
394 args->cookie = ntohl(*p++);
395 args->count = ntohl(*p++);
396 if (args->count > PAGE_SIZE)
397 args->count = PAGE_SIZE;
398
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500399 args->buffer = page_address(*(rqstp->rq_next_page++));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 return xdr_argsize_check(rqstp, p);
402}
403
404/*
405 * XDR encode functions
406 */
407int
Al Viro131a21c2006-10-19 23:28:56 -0700408nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 return xdr_ressize_check(rqstp, p);
411}
412
413int
Al Viro131a21c2006-10-19 23:28:56 -0700414nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct nfsd_attrstat *resp)
416{
David Shawa334de22006-01-06 00:19:58 -0800417 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return xdr_ressize_check(rqstp, p);
419}
420
421int
Al Viro131a21c2006-10-19 23:28:56 -0700422nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 struct nfsd_diropres *resp)
424{
425 p = encode_fh(p, &resp->fh);
David Shawa334de22006-01-06 00:19:58 -0800426 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return xdr_ressize_check(rqstp, p);
428}
429
430int
Al Viro131a21c2006-10-19 23:28:56 -0700431nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 struct nfsd_readlinkres *resp)
433{
434 *p++ = htonl(resp->len);
435 xdr_ressize_check(rqstp, p);
436 rqstp->rq_res.page_len = resp->len;
437 if (resp->len & 3) {
438 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 rqstp->rq_res.tail[0].iov_base = p;
440 *p = 0;
441 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
442 }
443 return 1;
444}
445
446int
Al Viro131a21c2006-10-19 23:28:56 -0700447nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 struct nfsd_readres *resp)
449{
David Shawa334de22006-01-06 00:19:58 -0800450 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 *p++ = htonl(resp->count);
452 xdr_ressize_check(rqstp, p);
453
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300454 /* now update rqstp->rq_res to reflect data as well */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 rqstp->rq_res.page_len = resp->count;
456 if (resp->count & 3) {
457 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 rqstp->rq_res.tail[0].iov_base = p;
459 *p = 0;
460 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3);
461 }
462 return 1;
463}
464
465int
Al Viro131a21c2006-10-19 23:28:56 -0700466nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct nfsd_readdirres *resp)
468{
469 xdr_ressize_check(rqstp, p);
470 p = resp->buffer;
471 *p++ = 0; /* no more entries */
472 *p++ = htonl((resp->common.err == nfserr_eof));
473 rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1;
474
475 return 1;
476}
477
478int
Al Viro131a21c2006-10-19 23:28:56 -0700479nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 struct nfsd_statfsres *resp)
481{
482 struct kstatfs *stat = &resp->stats;
483
Greg Banks7adae482006-10-04 02:15:47 -0700484 *p++ = htonl(NFSSVC_MAXBLKSIZE_V2); /* max transfer size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *p++ = htonl(stat->f_bsize);
486 *p++ = htonl(stat->f_blocks);
487 *p++ = htonl(stat->f_bfree);
488 *p++ = htonl(stat->f_bavail);
489 return xdr_ressize_check(rqstp, p);
490}
491
492int
NeilBrowna0ad13e2007-01-26 00:57:10 -0800493nfssvc_encode_entry(void *ccdv, const char *name,
494 int namlen, loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
NeilBrowna0ad13e2007-01-26 00:57:10 -0800496 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common);
Al Viro131a21c2006-10-19 23:28:56 -0700498 __be32 *p = cd->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 int buflen, slen;
500
501 /*
502 dprintk("nfsd: entry(%.*s off %ld ino %ld)\n",
503 namlen, name, offset, ino);
504 */
505
506 if (offset > ~((u32) 0)) {
507 cd->common.err = nfserr_fbig;
508 return -EINVAL;
509 }
510 if (cd->offset)
511 *cd->offset = htonl(offset);
512 if (namlen > NFS2_MAXNAMLEN)
513 namlen = NFS2_MAXNAMLEN;/* truncate filename */
514
515 slen = XDR_QUADLEN(namlen);
516 if ((buflen = cd->buflen - slen - 4) < 0) {
517 cd->common.err = nfserr_toosmall;
518 return -EINVAL;
519 }
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400520 if (ino > ~((u32) 0)) {
521 cd->common.err = nfserr_fbig;
522 return -EINVAL;
523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 *p++ = xdr_one; /* mark entry present */
525 *p++ = htonl((u32) ino); /* file id */
526 p = xdr_encode_array(p, name, namlen);/* name length & name */
527 cd->offset = p; /* remember pointer */
Al Viro131a21c2006-10-19 23:28:56 -0700528 *p++ = htonl(~0U); /* offset of next entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 cd->buflen = buflen;
531 cd->buffer = p;
532 cd->common.err = nfs_ok;
533 return 0;
534}
535
536/*
537 * XDR release functions
538 */
539int
Al Viro131a21c2006-10-19 23:28:56 -0700540nfssvc_release_fhandle(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 struct nfsd_fhandle *resp)
542{
543 fh_put(&resp->fh);
544 return 1;
545}