blob: 0c24b9e24fe866683a357f1a9e8b08bcb2fbe30c [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>
18
19#define NFSDDBG_FACILITY NFSDDBG_XDR
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021/*
22 * Mapping of S_IF* types to NFS file types
23 */
24static u32 nfs_ftypes[] = {
25 NFNON, NFCHR, NFCHR, NFBAD,
26 NFDIR, NFBAD, NFBLK, NFBAD,
27 NFREG, NFBAD, NFLNK, NFBAD,
28 NFSOCK, NFBAD, NFLNK, NFBAD,
29};
30
31
32/*
33 * XDR functions for basic NFS types
34 */
Al Viro131a21c2006-10-19 23:28:56 -070035static __be32 *
36decode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 fh_init(fhp, NFS_FHSIZE);
39 memcpy(&fhp->fh_handle.fh_base, p, NFS_FHSIZE);
40 fhp->fh_handle.fh_size = NFS_FHSIZE;
41
42 /* FIXME: Look up export pointer here and verify
43 * Sun Secure RPC if requested */
44 return p + (NFS_FHSIZE >> 2);
45}
46
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000047/* Helper function for NFSv2 ACL code */
Al Viro131a21c2006-10-19 23:28:56 -070048__be32 *nfs2svc_decode_fh(__be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +000049{
50 return decode_fh(p, fhp);
51}
52
Adrian Bunk3ee6f612006-12-06 20:40:23 -080053static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070054encode_fh(__be32 *p, struct svc_fh *fhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 memcpy(p, &fhp->fh_handle.fh_base, NFS_FHSIZE);
57 return p + (NFS_FHSIZE>> 2);
58}
59
60/*
61 * Decode a file name and make sure that the path contains
62 * no slashes or null bytes.
63 */
Adrian Bunk3ee6f612006-12-06 20:40:23 -080064static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070065decode_filename(__be32 *p, char **namp, int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 char *name;
68 int i;
69
70 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXNAMLEN)) != NULL) {
71 for (i = 0, name = *namp; i < *lenp; i++, name++) {
72 if (*name == '\0' || *name == '/')
73 return NULL;
74 }
75 }
76
77 return p;
78}
79
Adrian Bunk3ee6f612006-12-06 20:40:23 -080080static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070081decode_pathname(__be32 *p, char **namp, int *lenp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 char *name;
84 int i;
85
86 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS_MAXPATHLEN)) != NULL) {
87 for (i = 0, name = *namp; i < *lenp; i++, name++) {
88 if (*name == '\0')
89 return NULL;
90 }
91 }
92
93 return p;
94}
95
Adrian Bunk3ee6f612006-12-06 20:40:23 -080096static __be32 *
Al Viro131a21c2006-10-19 23:28:56 -070097decode_sattr(__be32 *p, struct iattr *iap)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 u32 tmp, tmp1;
100
101 iap->ia_valid = 0;
102
103 /* Sun client bug compatibility check: some sun clients seem to
104 * put 0xffff in the mode field when they mean 0xffffffff.
105 * Quoting the 4.4BSD nfs server code: Nah nah nah nah na nah.
106 */
107 if ((tmp = ntohl(*p++)) != (u32)-1 && tmp != 0xffff) {
108 iap->ia_valid |= ATTR_MODE;
109 iap->ia_mode = tmp;
110 }
111 if ((tmp = ntohl(*p++)) != (u32)-1) {
112 iap->ia_valid |= ATTR_UID;
113 iap->ia_uid = tmp;
114 }
115 if ((tmp = ntohl(*p++)) != (u32)-1) {
116 iap->ia_valid |= ATTR_GID;
117 iap->ia_gid = tmp;
118 }
119 if ((tmp = ntohl(*p++)) != (u32)-1) {
120 iap->ia_valid |= ATTR_SIZE;
121 iap->ia_size = tmp;
122 }
123 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
124 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
125 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
126 iap->ia_atime.tv_sec = tmp;
127 iap->ia_atime.tv_nsec = tmp1 * 1000;
128 }
129 tmp = ntohl(*p++); tmp1 = ntohl(*p++);
130 if (tmp != (u32)-1 && tmp1 != (u32)-1) {
131 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
132 iap->ia_mtime.tv_sec = tmp;
133 iap->ia_mtime.tv_nsec = tmp1 * 1000;
134 /*
135 * Passing the invalid value useconds=1000000 for mtime
136 * is a Sun convention for "set both mtime and atime to
137 * current server time". It's needed to make permissions
138 * checks for the "touch" program across v2 mounts to
139 * Solaris and Irix boxes work correctly. See description of
140 * sattr in section 6.1 of "NFS Illustrated" by
141 * Brent Callaghan, Addison-Wesley, ISBN 0-201-32750-5
142 */
143 if (tmp1 == 1000000)
144 iap->ia_valid &= ~(ATTR_ATIME_SET|ATTR_MTIME_SET);
145 }
146 return p;
147}
148
Al Viro131a21c2006-10-19 23:28:56 -0700149static __be32 *
150encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
David Shawa334de22006-01-06 00:19:58 -0800151 struct kstat *stat)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct dentry *dentry = fhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int type;
155 struct timespec time;
NeilBrownaf6a4e22007-02-14 00:33:12 -0800156 u32 f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
David Shawa334de22006-01-06 00:19:58 -0800158 type = (stat->mode & S_IFMT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 *p++ = htonl(nfs_ftypes[type >> 12]);
David Shawa334de22006-01-06 00:19:58 -0800161 *p++ = htonl((u32) stat->mode);
162 *p++ = htonl((u32) stat->nlink);
163 *p++ = htonl((u32) nfsd_ruid(rqstp, stat->uid));
164 *p++ = htonl((u32) nfsd_rgid(rqstp, stat->gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
David Shawa334de22006-01-06 00:19:58 -0800166 if (S_ISLNK(type) && stat->size > NFS_MAXPATHLEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *p++ = htonl(NFS_MAXPATHLEN);
168 } else {
David Shawa334de22006-01-06 00:19:58 -0800169 *p++ = htonl((u32) stat->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
David Shawa334de22006-01-06 00:19:58 -0800171 *p++ = htonl((u32) stat->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (S_ISCHR(type) || S_ISBLK(type))
David Shawa334de22006-01-06 00:19:58 -0800173 *p++ = htonl(new_encode_dev(stat->rdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 else
175 *p++ = htonl(0xffffffff);
David Shawa334de22006-01-06 00:19:58 -0800176 *p++ = htonl((u32) stat->blocks);
NeilBrownaf6a4e22007-02-14 00:33:12 -0800177 switch (fsid_source(fhp)) {
178 default:
179 case FSIDSOURCE_DEV:
David Shawa334de22006-01-06 00:19:58 -0800180 *p++ = htonl(new_encode_dev(stat->dev));
NeilBrownaf6a4e22007-02-14 00:33:12 -0800181 break;
182 case FSIDSOURCE_FSID:
183 *p++ = htonl((u32) fhp->fh_export->ex_fsid);
184 break;
185 case FSIDSOURCE_UUID:
186 f = ((u32*)fhp->fh_export->ex_uuid)[0];
187 f ^= ((u32*)fhp->fh_export->ex_uuid)[1];
188 f ^= ((u32*)fhp->fh_export->ex_uuid)[2];
189 f ^= ((u32*)fhp->fh_export->ex_uuid)[3];
190 *p++ = htonl(f);
191 break;
192 }
David Shawa334de22006-01-06 00:19:58 -0800193 *p++ = htonl((u32) stat->ino);
194 *p++ = htonl((u32) stat->atime.tv_sec);
195 *p++ = htonl(stat->atime.tv_nsec ? stat->atime.tv_nsec / 1000 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 lease_get_mtime(dentry->d_inode, &time);
197 *p++ = htonl((u32) time.tv_sec);
198 *p++ = htonl(time.tv_nsec ? time.tv_nsec / 1000 : 0);
David Shawa334de22006-01-06 00:19:58 -0800199 *p++ = htonl((u32) stat->ctime.tv_sec);
200 *p++ = htonl(stat->ctime.tv_nsec ? stat->ctime.tv_nsec / 1000 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 return p;
203}
204
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000205/* Helper function for NFSv2 ACL code */
Al Viro131a21c2006-10-19 23:28:56 -0700206__be32 *nfs2svc_encode_fattr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000207{
David Shawa334de22006-01-06 00:19:58 -0800208 struct kstat stat;
209 vfs_getattr(fhp->fh_export->ex_mnt, fhp->fh_dentry, &stat);
210 return encode_fattr(rqstp, p, fhp, &stat);
Andreas Gruenbachera257cdd2005-06-22 17:16:26 +0000211}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213/*
214 * XDR decode functions
215 */
216int
Al Viro131a21c2006-10-19 23:28:56 -0700217nfssvc_decode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 return xdr_argsize_check(rqstp, p);
220}
221
222int
Al Viro131a21c2006-10-19 23:28:56 -0700223nfssvc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p, struct nfsd_fhandle *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 if (!(p = decode_fh(p, &args->fh)))
226 return 0;
227 return xdr_argsize_check(rqstp, p);
228}
229
230int
Al Viro131a21c2006-10-19 23:28:56 -0700231nfssvc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 struct nfsd_sattrargs *args)
233{
234 if (!(p = decode_fh(p, &args->fh))
235 || !(p = decode_sattr(p, &args->attrs)))
236 return 0;
237
238 return xdr_argsize_check(rqstp, p);
239}
240
241int
Al Viro131a21c2006-10-19 23:28:56 -0700242nfssvc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 struct nfsd_diropargs *args)
244{
245 if (!(p = decode_fh(p, &args->fh))
246 || !(p = decode_filename(p, &args->name, &args->len)))
247 return 0;
248
249 return xdr_argsize_check(rqstp, p);
250}
251
252int
Al Viro131a21c2006-10-19 23:28:56 -0700253nfssvc_decode_readargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 struct nfsd_readargs *args)
255{
256 unsigned int len;
257 int v,pn;
258 if (!(p = decode_fh(p, &args->fh)))
259 return 0;
260
261 args->offset = ntohl(*p++);
262 len = args->count = ntohl(*p++);
263 p++; /* totalcount - unused */
264
Greg Banks7adae482006-10-04 02:15:47 -0700265 if (len > NFSSVC_MAXBLKSIZE_V2)
266 len = NFSSVC_MAXBLKSIZE_V2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 /* set up somewhere to store response.
269 * We take pages, put them on reslist and include in iovec
270 */
271 v=0;
272 while (len > 0) {
NeilBrown44524352006-10-04 02:15:46 -0700273 pn = rqstp->rq_resused++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700274 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_respages[pn]);
275 rqstp->rq_vec[v].iov_len = len < PAGE_SIZE?len:PAGE_SIZE;
276 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 v++;
278 }
279 args->vlen = v;
280 return xdr_argsize_check(rqstp, p);
281}
282
283int
Al Viro131a21c2006-10-19 23:28:56 -0700284nfssvc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct nfsd_writeargs *args)
286{
287 unsigned int len;
288 int v;
289 if (!(p = decode_fh(p, &args->fh)))
290 return 0;
291
292 p++; /* beginoffset */
293 args->offset = ntohl(*p++); /* offset */
294 p++; /* totalcount */
295 len = args->len = ntohl(*p++);
NeilBrown3cc03b12006-10-04 02:15:47 -0700296 rqstp->rq_vec[0].iov_base = (void*)p;
297 rqstp->rq_vec[0].iov_len = rqstp->rq_arg.head[0].iov_len -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 (((void*)p) - rqstp->rq_arg.head[0].iov_base);
Greg Banks7adae482006-10-04 02:15:47 -0700299 if (len > NFSSVC_MAXBLKSIZE_V2)
300 len = NFSSVC_MAXBLKSIZE_V2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 v = 0;
NeilBrown3cc03b12006-10-04 02:15:47 -0700302 while (len > rqstp->rq_vec[v].iov_len) {
303 len -= rqstp->rq_vec[v].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 v++;
NeilBrown3cc03b12006-10-04 02:15:47 -0700305 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]);
306 rqstp->rq_vec[v].iov_len = PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
NeilBrown3cc03b12006-10-04 02:15:47 -0700308 rqstp->rq_vec[v].iov_len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 args->vlen = v+1;
NeilBrown3cc03b12006-10-04 02:15:47 -0700310 return rqstp->rq_vec[0].iov_len > 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
313int
Al Viro131a21c2006-10-19 23:28:56 -0700314nfssvc_decode_createargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 struct nfsd_createargs *args)
316{
317 if (!(p = decode_fh(p, &args->fh))
318 || !(p = decode_filename(p, &args->name, &args->len))
319 || !(p = decode_sattr(p, &args->attrs)))
320 return 0;
321
322 return xdr_argsize_check(rqstp, p);
323}
324
325int
Al Viro131a21c2006-10-19 23:28:56 -0700326nfssvc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 struct nfsd_renameargs *args)
328{
329 if (!(p = decode_fh(p, &args->ffh))
330 || !(p = decode_filename(p, &args->fname, &args->flen))
331 || !(p = decode_fh(p, &args->tfh))
332 || !(p = decode_filename(p, &args->tname, &args->tlen)))
333 return 0;
334
335 return xdr_argsize_check(rqstp, p);
336}
337
338int
Al Viro131a21c2006-10-19 23:28:56 -0700339nfssvc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p, struct nfsd_readlinkargs *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 if (!(p = decode_fh(p, &args->fh)))
342 return 0;
NeilBrown44524352006-10-04 02:15:46 -0700343 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 return xdr_argsize_check(rqstp, p);
346}
347
348int
Al Viro131a21c2006-10-19 23:28:56 -0700349nfssvc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct nfsd_linkargs *args)
351{
352 if (!(p = decode_fh(p, &args->ffh))
353 || !(p = decode_fh(p, &args->tfh))
354 || !(p = decode_filename(p, &args->tname, &args->tlen)))
355 return 0;
356
357 return xdr_argsize_check(rqstp, p);
358}
359
360int
Al Viro131a21c2006-10-19 23:28:56 -0700361nfssvc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct nfsd_symlinkargs *args)
363{
364 if (!(p = decode_fh(p, &args->ffh))
365 || !(p = decode_filename(p, &args->fname, &args->flen))
366 || !(p = decode_pathname(p, &args->tname, &args->tlen))
367 || !(p = decode_sattr(p, &args->attrs)))
368 return 0;
369
370 return xdr_argsize_check(rqstp, p);
371}
372
373int
Al Viro131a21c2006-10-19 23:28:56 -0700374nfssvc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct nfsd_readdirargs *args)
376{
377 if (!(p = decode_fh(p, &args->fh)))
378 return 0;
379 args->cookie = ntohl(*p++);
380 args->count = ntohl(*p++);
381 if (args->count > PAGE_SIZE)
382 args->count = PAGE_SIZE;
383
NeilBrown44524352006-10-04 02:15:46 -0700384 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused++]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 return xdr_argsize_check(rqstp, p);
387}
388
389/*
390 * XDR encode functions
391 */
392int
Al Viro131a21c2006-10-19 23:28:56 -0700393nfssvc_encode_void(struct svc_rqst *rqstp, __be32 *p, void *dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 return xdr_ressize_check(rqstp, p);
396}
397
398int
Al Viro131a21c2006-10-19 23:28:56 -0700399nfssvc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 struct nfsd_attrstat *resp)
401{
David Shawa334de22006-01-06 00:19:58 -0800402 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return xdr_ressize_check(rqstp, p);
404}
405
406int
Al Viro131a21c2006-10-19 23:28:56 -0700407nfssvc_encode_diropres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 struct nfsd_diropres *resp)
409{
410 p = encode_fh(p, &resp->fh);
David Shawa334de22006-01-06 00:19:58 -0800411 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return xdr_ressize_check(rqstp, p);
413}
414
415int
Al Viro131a21c2006-10-19 23:28:56 -0700416nfssvc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct nfsd_readlinkres *resp)
418{
419 *p++ = htonl(resp->len);
420 xdr_ressize_check(rqstp, p);
421 rqstp->rq_res.page_len = resp->len;
422 if (resp->len & 3) {
423 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 rqstp->rq_res.tail[0].iov_base = p;
425 *p = 0;
426 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
427 }
428 return 1;
429}
430
431int
Al Viro131a21c2006-10-19 23:28:56 -0700432nfssvc_encode_readres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct nfsd_readres *resp)
434{
David Shawa334de22006-01-06 00:19:58 -0800435 p = encode_fattr(rqstp, p, &resp->fh, &resp->stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 *p++ = htonl(resp->count);
437 xdr_ressize_check(rqstp, p);
438
439 /* now update rqstp->rq_res to reflect data aswell */
440 rqstp->rq_res.page_len = resp->count;
441 if (resp->count & 3) {
442 /* need to pad the tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 rqstp->rq_res.tail[0].iov_base = p;
444 *p = 0;
445 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count&3);
446 }
447 return 1;
448}
449
450int
Al Viro131a21c2006-10-19 23:28:56 -0700451nfssvc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct nfsd_readdirres *resp)
453{
454 xdr_ressize_check(rqstp, p);
455 p = resp->buffer;
456 *p++ = 0; /* no more entries */
457 *p++ = htonl((resp->common.err == nfserr_eof));
458 rqstp->rq_res.page_len = (((unsigned long)p-1) & ~PAGE_MASK)+1;
459
460 return 1;
461}
462
463int
Al Viro131a21c2006-10-19 23:28:56 -0700464nfssvc_encode_statfsres(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct nfsd_statfsres *resp)
466{
467 struct kstatfs *stat = &resp->stats;
468
Greg Banks7adae482006-10-04 02:15:47 -0700469 *p++ = htonl(NFSSVC_MAXBLKSIZE_V2); /* max transfer size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *p++ = htonl(stat->f_bsize);
471 *p++ = htonl(stat->f_blocks);
472 *p++ = htonl(stat->f_bfree);
473 *p++ = htonl(stat->f_bavail);
474 return xdr_ressize_check(rqstp, p);
475}
476
477int
NeilBrowna0ad13e2007-01-26 00:57:10 -0800478nfssvc_encode_entry(void *ccdv, const char *name,
479 int namlen, loff_t offset, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
NeilBrowna0ad13e2007-01-26 00:57:10 -0800481 struct readdir_cd *ccd = ccdv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 struct nfsd_readdirres *cd = container_of(ccd, struct nfsd_readdirres, common);
Al Viro131a21c2006-10-19 23:28:56 -0700483 __be32 *p = cd->buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int buflen, slen;
485
486 /*
487 dprintk("nfsd: entry(%.*s off %ld ino %ld)\n",
488 namlen, name, offset, ino);
489 */
490
491 if (offset > ~((u32) 0)) {
492 cd->common.err = nfserr_fbig;
493 return -EINVAL;
494 }
495 if (cd->offset)
496 *cd->offset = htonl(offset);
497 if (namlen > NFS2_MAXNAMLEN)
498 namlen = NFS2_MAXNAMLEN;/* truncate filename */
499
500 slen = XDR_QUADLEN(namlen);
501 if ((buflen = cd->buflen - slen - 4) < 0) {
502 cd->common.err = nfserr_toosmall;
503 return -EINVAL;
504 }
505 *p++ = xdr_one; /* mark entry present */
506 *p++ = htonl((u32) ino); /* file id */
507 p = xdr_encode_array(p, name, namlen);/* name length & name */
508 cd->offset = p; /* remember pointer */
Al Viro131a21c2006-10-19 23:28:56 -0700509 *p++ = htonl(~0U); /* offset of next entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 cd->buflen = buflen;
512 cd->buffer = p;
513 cd->common.err = nfs_ok;
514 return 0;
515}
516
517/*
518 * XDR release functions
519 */
520int
Al Viro131a21c2006-10-19 23:28:56 -0700521nfssvc_release_fhandle(struct svc_rqst *rqstp, __be32 *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 struct nfsd_fhandle *resp)
523{
524 fh_put(&resp->fh);
525 return 1;
526}