blob: afd08e2c90a54624e690ea2ffc4e0186005256e8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/fs/nfsd/nfsxdr.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * XDR support for nfsd
5 *
6 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
7 */
8
9#include <linux/types.h>
10#include <linux/time.h>
11#include <linux/nfs.h>
12#include <linux/vfs.h>
13#include <linux/sunrpc/xdr.h>
14#include <linux/sunrpc/svc.h>
15#include <linux/nfsd/nfsd.h>
16#include <linux/nfsd/xdr.h>
17#include <linux/mm.h>
J. Bruce Fields2e8138a2007-11-15 17:05:43 -050018#include "auth.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20#define NFSDDBG_FACILITY NFSDDBG_XDR
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
23 * Mapping of S_IF* types to NFS file types
24 */
25static u32 nfs_ftypes[] = {
26 NFNON, NFCHR, NFCHR, NFBAD,
27 NFDIR, NFBAD, NFBLK, NFBAD,
28 NFREG, NFBAD, NFLNK, NFBAD,
29 NFSOCK, NFBAD, NFLNK, NFBAD,
30};
31
32
33/*
34 * XDR functions for basic NFS types
35 */
Al Viro131a21c2006-10-19 23:28:56 -070036static __be32 *
37decode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 fh_init(fhp, NFS_FHSIZE);
40 memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE);
41 fhp->fh_handle.fh_size = NFS_FHSIZE;
42
43 /* FIXME: Look up export pointer here and verify
44 * Sun Secure RPC if requested */
45 return p + (NFS_FHSIZE >> 2);
46}
47
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000048/* Helper function for NFSv2 ACL code */
Al Viro131a21c2006-10-19 23:28:56 -070049__be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000050{
51 return decode_fh(p, fhp);
52}
53
Adrian Bunk3ee6f612006-12-06 20:40:23 -080054static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070055encode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE);
58 return p + (NFS_FHSIZE>> 2);
59}
60
61/*
62 * Decode a file name and make sure that the path contains
63 * no slashes or null bytes.
64 */
Adrian Bunk3ee6f612006-12-06 20:40:23 -080065static __be32 *
Chuck Leveree1a95b2007-11-01 16:56:58 -040066decode_filename(__be32 *p, char **namp, unsigned int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067{
68 char *name;
Chuck Leveree1a95b2007-11-01 16:56:58 -040069 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) {
72 for (i = 0, name = *namp; i < *lenp; i++, name++) {
73 if (*name == '\0' || *name == '/')
74 return NULL;
75 }
76 }
77
78 return p;
79}
80
Adrian Bunk3ee6f612006-12-06 20:40:23 -080081static __be32 *
Chuck Lever9c7544d2007-11-01 16:57:14 -040082decode_pathname(__be32 *p, char **namp, unsigned int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 char *name;
Chuck Lever9c7544d2007-11-01 16:57:14 -040085 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) {
88 for (i = 0, name = *namp; i < *lenp; i++, name++) {
89 if (*name == '\0')
90 return NULL;
91 }
92 }
93
94 return p;
95}
96
Adrian Bunk3ee6f612006-12-06 20:40:23 -080097static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070098decode_sattr(__be32 *p, struct iattr *iap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 u32 tmp, tmp1;
101
102 iap->ia_valid = 0;
103
104 /* Sun client bug compatibility check: some sun clients seem to
105 * put 0xffff in the mode field when they mean 0xffffffff.
106 * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah.
107 */
108 if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) {
109 iap->ia_valid |= ATTR_MODE;
110 iap->ia_mode = tmp;
111 }
112 if ((tmp = ntohl(*p++)) != (u32)-1) {
113 iap->ia_valid |= ATTR_UID;
114 iap->ia_uid = tmp;
115 }
116 if ((tmp = ntohl(*p++)) != (u32)-1) {
117 iap->ia_valid |= ATTR_GID;
118 iap->ia_gid = tmp;
119 }
120 if ((tmp = ntohl(*p++)) != (u32)-1) {
121 iap->ia_valid |= ATTR_SIZE;
122 iap->ia_size = tmp;
123 }
124 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
125 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
126 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
127 iap->ia_atime.tv_sec = tmp;
128 iap->ia_atime.tv_nsec = tmp1 * 1000;
129 }
130 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
131 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
132 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
133 iap->ia_mtime.tv_sec = tmp;
134 iap->ia_mtime.tv_nsec = tmp1 * 1000;
135 /*
136 * Passing the invalid value useconds=1000000 for mtime
137 * is a Sun convention for "set both mtime and atime to
138 * current server time". It's needed to make permissions
139 * checks for the "touch" program across v2 mounts to
140 * Solaris and Irix boxes work correctly. See description of
141 * sattr in section 6.1 of "NFS Illustrated" by
142 * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5
143 */
144 if (tmp1 == 1000000)
145 iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET);
146 }
147 return p;
148}
149
Al Viro131a21c2006-10-19 23:28:56 -0700150static __be32 *
151encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
David Shawa334de22006-01-06 00:19:58 -0800152 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 struct dentry *dentry = fhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int type;
156 struct timespec time;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800157 u32 f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
David Shawa334de22006-01-06 00:19:58 -0800159 type = (stat->mode & S_IFMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 *p++ = htonl(nfs_ftypes[type >> 12]);
David Shawa334de22006-01-06 00:19:58 -0800162 *p++ = htonl((u32) stat->mode);
163 *p++ = htonl((u32) stat->nlink);
164 *p++ = htonl((u32) nfsd_ruid(rqstp, stat->uid));
165 *p++ = htonl((u32) nfsd_rgid(rqstp, stat->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
David Shawa334de22006-01-06 00:19:58 -0800167 if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 *p++ = htonl(NFS_MAXPATHLEN);
169 } else {
David Shawa334de22006-01-06 00:19:58 -0800170 *p++ = htonl((u32) stat->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
David Shawa334de22006-01-06 00:19:58 -0800172 *p++ = htonl((u32) stat->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (S_ISCHR(type) || S_ISBLK(type))
David Shawa334de22006-01-06 00:19:58 -0800174 *p++ = htonl(new_encode_dev(stat->rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 else
176 *p++ = htonl(0xffffffff);
David Shawa334de22006-01-06 00:19:58 -0800177 *p++ = htonl((u32) stat->blocks);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800178 switch (fsid_source(fhp)) {
179 default:
180 case FSIDSOURCE_DEV:
David Shawa334de22006-01-06 00:19:58 -0800181 *p++ = htonl(new_encode_dev(stat->dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -0800182 break;
183 case FSIDSOURCE_FSID:
184 *p++ = htonl((u32) fhp->fh_export->ex_fsid);
185 break;
186 case FSIDSOURCE_UUID:
187 f = ((u32*)fhp->fh_export->ex_uuid)[0];
188 f ^= ((u32*)fhp->fh_export->ex_uuid)[1];
189 f ^= ((u32*)fhp->fh_export->ex_uuid)[2];
190 f ^= ((u32*)fhp->fh_export->ex_uuid)[3];
191 *p++ = htonl(f);
192 break;
193 }
David Shawa334de22006-01-06 00:19:58 -0800194 *p++ = htonl((u32) stat->ino);
195 *p++ = htonl((u32) stat->atime.tv_sec);
196 *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 lease_get_mtime(dentry->d_inode, &time);
198 *p++ = htonl((u32) time.tv_sec);
199 *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0);
David Shawa334de22006-01-06 00:19:58 -0800200 *p++ = htonl((u32) stat->ctime.tv_sec);
201 *p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 return p;
204}
205
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000206/* Helper function for NFSv2 ACL code */
Al Viro131a21c2006-10-19 23:28:56 -0700207__be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000208{
David Shawa334de22006-01-06 00:19:58 -0800209 struct kstat stat;
Jan Blunck54775492008-02-14 19:38:39 -0800210 vfs_getattr(fhp->fh_export->ex_path.mnt, fhp->fh_dentry, &stat);
David Shawa334de22006-01-06 00:19:58 -0800211 return encode_fattr(rqstp, p, fhp, &stat);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000212}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214/*
215 * XDR decode functions
216 */
217int
Al Viro131a21c2006-10-19 23:28:56 -0700218nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 return xdr_argsize_check(rqstp, p);
221}
222
223int
Al Viro131a21c2006-10-19 23:28:56 -0700224nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p, struct nfsd_fhandle *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 if (!(p = decode_fh(p, &args->fh)))
227 return 0;
228 return xdr_argsize_check(rqstp, p);
229}
230
231int
Al Viro131a21c2006-10-19 23:28:56 -0700232nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 struct nfsd_sattrargs *args)
234{
NeilBrown072f62e2007-05-09 02:34:57 -0700235 p = decode_fh(p, &args->fh);
236 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700238 p = decode_sattr(p, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 return xdr_argsize_check(rqstp, p);
241}
242
243int
Al Viro131a21c2006-10-19 23:28:56 -0700244nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 struct nfsd_diropargs *args)
246{
247 if (!(p = decode_fh(p, &args->fh))
248 || !(p = decode_filename(p, &args->name, &args->len)))
249 return 0;
250
251 return xdr_argsize_check(rqstp, p);
252}
253
254int
Al Viro131a21c2006-10-19 23:28:56 -0700255nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 struct nfsd_readargs *args)
257{
258 unsigned int len;
259 int v,pn;
260 if (!(p = decode_fh(p, &args->fh)))
261 return 0;
262
263 args->offset = ntohl(*p++);
264 len = args->count = ntohl(*p++);
265 p++; /* totalcount - unused */
266
Greg Banks7adae482006-10-04 02:15:47 -0700267 if (len > NFSSVC_MAXBLKSIZE_V2)
268 len = NFSSVC_MAXBLKSIZE_V2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /* set up somewhere to store response.
271 * We take pages, put them on reslist and include in iovec
272 */
273 v=0;
274 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -0700275 pn = rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700276 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_respages[pn]);
277 rqstp->rq_vec[v].iov_len = len < PAGE_SIZE?len:PAGE_SIZE;
278 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 v++;
280 }
281 args->vlen = v;
282 return xdr_argsize_check(rqstp, p);
283}
284
285int
Al Viro131a21c2006-10-19 23:28:56 -0700286nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 struct nfsd_writeargs *args)
288{
Peter Staubachf34b9562007-05-09 02:34:48 -0700289 unsigned int len, hdr, dlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 int v;
Peter Staubachf34b9562007-05-09 02:34:48 -0700291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (!(p = decode_fh(p, &args->fh)))
293 return 0;
294
295 p++; /* beginoffset */
296 args->offset = ntohl(*p++); /* offset */
297 p++; /* totalcount */
298 len = args->len = ntohl(*p++);
Peter Staubachf34b9562007-05-09 02:34:48 -0700299 /*
300 * The protocol specifies a maximum of 8192 bytes.
301 */
Greg Banks7adae482006-10-04 02:15:47 -0700302 if (len > NFSSVC_MAXBLKSIZE_V2)
Peter Staubachf34b9562007-05-09 02:34:48 -0700303 return 0;
304
305 /*
306 * Check to make sure that we got the right number of
307 * bytes.
Peter Staubachf34b9562007-05-09 02:34:48 -0700308 */
309 hdr = (void*)p - rqstp->rq_arg.head[0].iov_base;
NeilBrown072f62e2007-05-09 02:34:57 -0700310 dlen = rqstp->rq_arg.head[0].iov_len + rqstp->rq_arg.page_len
311 - hdr;
312
Peter Staubachf34b9562007-05-09 02:34:48 -0700313 /*
314 * Round the length of the data which was specified up to
315 * the next multiple of XDR units and then compare that
316 * against the length which was actually received.
NeilBrownba67a392008-01-11 17:06:52 -0500317 * Note that when RPCSEC/GSS (for example) is used, the
318 * data buffer can be padded so dlen might be larger
319 * than required. It must never be smaller.
Peter Staubachf34b9562007-05-09 02:34:48 -0700320 */
NeilBrownba67a392008-01-11 17:06:52 -0500321 if (dlen < XDR_QUADLEN(len)*4)
Peter Staubachf34b9562007-05-09 02:34:48 -0700322 return 0;
323
324 rqstp->rq_vec[0].iov_base = (void*)p;
325 rqstp->rq_vec[0].iov_len = rqstp->rq_arg.head[0].iov_len - hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 v = 0;
NeilBrown3cc03b12006-10-04 02:15:47 -0700327 while (len > rqstp->rq_vec[v].iov_len) {
328 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700330 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]);
331 rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700333 rqstp->rq_vec[v].iov_len = len;
Peter Staubachf34b9562007-05-09 02:34:48 -0700334 args->vlen = v + 1;
335 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338int
Al Viro131a21c2006-10-19 23:28:56 -0700339nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 struct nfsd_createargs *args)
341{
NeilBrown072f62e2007-05-09 02:34:57 -0700342 if ( !(p = decode_fh(p, &args->fh))
343 || !(p = decode_filename(p, &args->name, &args->len)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700345 p = decode_sattr(p, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 return xdr_argsize_check(rqstp, p);
348}
349
350int
Al Viro131a21c2006-10-19 23:28:56 -0700351nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 struct nfsd_renameargs *args)
353{
354 if (!(p = decode_fh(p, &args->ffh))
355 || !(p = decode_filename(p, &args->fname, &args->flen))
356 || !(p = decode_fh(p, &args->tfh))
357 || !(p = decode_filename(p, &args->tname, &args->tlen)))
358 return 0;
359
360 return xdr_argsize_check(rqstp, p);
361}
362
363int
Al Viro131a21c2006-10-19 23:28:56 -0700364nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd_readlinkargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
366 if (!(p = decode_fh(p, &args->fh)))
367 return 0;
NeilBrown44524352006-10-04 02:15:46 -0700368 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 return xdr_argsize_check(rqstp, p);
371}
372
373int
Al Viro131a21c2006-10-19 23:28:56 -0700374nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct nfsd_linkargs *args)
376{
377 if (!(p = decode_fh(p, &args->ffh))
378 || !(p = decode_fh(p, &args->tfh))
379 || !(p = decode_filename(p, &args->tname, &args->tlen)))
380 return 0;
381
382 return xdr_argsize_check(rqstp, p);
383}
384
385int
Al Viro131a21c2006-10-19 23:28:56 -0700386nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct nfsd_symlinkargs *args)
388{
NeilBrown072f62e2007-05-09 02:34:57 -0700389 if ( !(p = decode_fh(p, &args->ffh))
390 || !(p = decode_filename(p, &args->fname, &args->flen))
391 || !(p = decode_pathname(p, &args->tname, &args->tlen)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return 0;
NeilBrown072f62e2007-05-09 02:34:57 -0700393 p = decode_sattr(p, &args->attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 return xdr_argsize_check(rqstp, p);
396}
397
398int
Al Viro131a21c2006-10-19 23:28:56 -0700399nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct nfsd_readdirargs *args)
401{
402 if (!(p = decode_fh(p, &args->fh)))
403 return 0;
404 args->cookie = ntohl(*p++);
405 args->count = ntohl(*p++);
406 if (args->count > PAGE_SIZE)
407 args->count = PAGE_SIZE;
408
NeilBrown44524352006-10-04 02:15:46 -0700409 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 return xdr_argsize_check(rqstp, p);
412}
413
414/*
415 * XDR encode functions
416 */
417int
Al Viro131a21c2006-10-19 23:28:56 -0700418nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 return xdr_ressize_check(rqstp, p);
421}
422
423int
Al Viro131a21c2006-10-19 23:28:56 -0700424nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct nfsd_attrstat *resp)
426{
David Shawa334de22006-01-06 00:19:58 -0800427 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return xdr_ressize_check(rqstp, p);
429}
430
431int
Al Viro131a21c2006-10-19 23:28:56 -0700432nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct nfsd_diropres *resp)
434{
435 p = encode_fh(p, &resp->fh);
David Shawa334de22006-01-06 00:19:58 -0800436 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return xdr_ressize_check(rqstp, p);
438}
439
440int
Al Viro131a21c2006-10-19 23:28:56 -0700441nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 struct nfsd_readlinkres *resp)
443{
444 *p++ = htonl(resp->len);
445 xdr_ressize_check(rqstp, p);
446 rqstp->rq_res.page_len = resp->len;
447 if (resp->len & 3) {
448 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 rqstp->rq_res.tail[0].iov_base = p;
450 *p = 0;
451 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
452 }
453 return 1;
454}
455
456int
Al Viro131a21c2006-10-19 23:28:56 -0700457nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 struct nfsd_readres *resp)
459{
David Shawa334de22006-01-06 00:19:58 -0800460 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 *p++ = htonl(resp->count);
462 xdr_ressize_check(rqstp, p);
463
464 /* now update rqstp->rq_res to reflect data aswell */
465 rqstp->rq_res.page_len = resp->count;
466 if (resp->count & 3) {
467 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 rqstp->rq_res.tail[0].iov_base = p;
469 *p = 0;
470 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3);
471 }
472 return 1;
473}
474
475int
Al Viro131a21c2006-10-19 23:28:56 -0700476nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 struct nfsd_readdirres *resp)
478{
479 xdr_ressize_check(rqstp, p);
480 p = resp->buffer;
481 *p++ = 0; /* no more entries */
482 *p++ = htonl((resp->common.err == nfserr_eof));
483 rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1;
484
485 return 1;
486}
487
488int
Al Viro131a21c2006-10-19 23:28:56 -0700489nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 struct nfsd_statfsres *resp)
491{
492 struct kstatfs *stat = &resp->stats;
493
Greg Banks7adae482006-10-04 02:15:47 -0700494 *p++ = htonl(NFSSVC_MAXBLKSIZE_V2); /* max transfer size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 *p++ = htonl(stat->f_bsize);
496 *p++ = htonl(stat->f_blocks);
497 *p++ = htonl(stat->f_bfree);
498 *p++ = htonl(stat->f_bavail);
499 return xdr_ressize_check(rqstp, p);
500}
501
502int
NeilBrowna0ad13e2007-01-26 00:57:10 -0800503nfssvc_encode_entry(void *ccdv, const char *name,
504 int namlen, loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
NeilBrowna0ad13e2007-01-26 00:57:10 -0800506 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common);
Al Viro131a21c2006-10-19 23:28:56 -0700508 __be32 *p = cd->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 int buflen, slen;
510
511 /*
512 dprintk("nfsd: entry(%.*s off %ld ino %ld)\n",
513 namlen, name, offset, ino);
514 */
515
516 if (offset > ~((u32) 0)) {
517 cd->common.err = nfserr_fbig;
518 return -EINVAL;
519 }
520 if (cd->offset)
521 *cd->offset = htonl(offset);
522 if (namlen > NFS2_MAXNAMLEN)
523 namlen = NFS2_MAXNAMLEN;/* truncate filename */
524
525 slen = XDR_QUADLEN(namlen);
526 if ((buflen = cd->buflen - slen - 4) < 0) {
527 cd->common.err = nfserr_toosmall;
528 return -EINVAL;
529 }
Peter Staubach40ee5dc2007-08-16 12:10:07 -0400530 if (ino > ~((u32) 0)) {
531 cd->common.err = nfserr_fbig;
532 return -EINVAL;
533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 *p++ = xdr_one; /* mark entry present */
535 *p++ = htonl((u32) ino); /* file id */
536 p = xdr_encode_array(p, name, namlen);/* name length & name */
537 cd->offset = p; /* remember pointer */
Al Viro131a21c2006-10-19 23:28:56 -0700538 *p++ = htonl(~0U); /* offset of next entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 cd->buflen = buflen;
541 cd->buffer = p;
542 cd->common.err = nfs_ok;
543 return 0;
544}
545
546/*
547 * XDR release functions
548 */
549int
Al Viro131a21c2006-10-19 23:28:56 -0700550nfssvc_release_fhandle(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 struct nfsd_fhandle *resp)
552{
553 fh_put(&resp->fh);
554 return 1;
555}