platform/x86: (eeepc-laptop) Replace SENSORS_LIMIT with clamp_val
[linux-2.6.git] / fs / nfsd / nfs3xdr.c
blob324c0baf7cda30c0f6123417673dc395c8e292ff
1 /*
2 * XDR support for nfsd/protocol version 3.
4 * Copyright (C) 1995, 1996, 1997 Olaf Kirch <okir@monad.swb.de>
6 * 2003-08-09 Jamie Lokier: Use htonl() for nanoseconds, not htons()!
7 */
9 #include <linux/namei.h>
10 #include <linux/sunrpc/svc_xprt.h>
11 #include "xdr3.h"
12 #include "auth.h"
13 #include "netns.h"
15 #define NFSDDBG_FACILITY NFSDDBG_XDR
19 * Mapping of S_IF* types to NFS file types
21 static u32 nfs3_ftypes[] = {
22 NF3NON, NF3FIFO, NF3CHR, NF3BAD,
23 NF3DIR, NF3BAD, NF3BLK, NF3BAD,
24 NF3REG, NF3BAD, NF3LNK, NF3BAD,
25 NF3SOCK, NF3BAD, NF3LNK, NF3BAD,
29 * XDR functions for basic NFS types
31 static __be32 *
32 encode_time3(__be32 *p, struct timespec *time)
34 *p++ = htonl((u32) time->tv_sec); *p++ = htonl(time->tv_nsec);
35 return p;
38 static __be32 *
39 decode_time3(__be32 *p, struct timespec *time)
41 time->tv_sec = ntohl(*p++);
42 time->tv_nsec = ntohl(*p++);
43 return p;
46 static __be32 *
47 decode_fh(__be32 *p, struct svc_fh *fhp)
49 unsigned int size;
50 fh_init(fhp, NFS3_FHSIZE);
51 size = ntohl(*p++);
52 if (size > NFS3_FHSIZE)
53 return NULL;
55 memcpy(&fhp->fh_handle.fh_base, p, size);
56 fhp->fh_handle.fh_size = size;
57 return p + XDR_QUADLEN(size);
60 /* Helper function for NFSv3 ACL code */
61 __be32 *nfs3svc_decode_fh(__be32 *p, struct svc_fh *fhp)
63 return decode_fh(p, fhp);
66 static __be32 *
67 encode_fh(__be32 *p, struct svc_fh *fhp)
69 unsigned int size = fhp->fh_handle.fh_size;
70 *p++ = htonl(size);
71 if (size) p[XDR_QUADLEN(size)-1]=0;
72 memcpy(p, &fhp->fh_handle.fh_base, size);
73 return p + XDR_QUADLEN(size);
77 * Decode a file name and make sure that the path contains
78 * no slashes or null bytes.
80 static __be32 *
81 decode_filename(__be32 *p, char **namp, unsigned int *lenp)
83 char *name;
84 unsigned int i;
86 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS3_MAXNAMLEN)) != NULL) {
87 for (i = 0, name = *namp; i < *lenp; i++, name++) {
88 if (*name == '\0' || *name == '/')
89 return NULL;
93 return p;
96 static __be32 *
97 decode_sattr3(__be32 *p, struct iattr *iap)
99 u32 tmp;
101 iap->ia_valid = 0;
103 if (*p++) {
104 iap->ia_valid |= ATTR_MODE;
105 iap->ia_mode = ntohl(*p++);
107 if (*p++) {
108 iap->ia_valid |= ATTR_UID;
109 iap->ia_uid = ntohl(*p++);
111 if (*p++) {
112 iap->ia_valid |= ATTR_GID;
113 iap->ia_gid = ntohl(*p++);
115 if (*p++) {
116 u64 newsize;
118 iap->ia_valid |= ATTR_SIZE;
119 p = xdr_decode_hyper(p, &newsize);
120 if (newsize <= NFS_OFFSET_MAX)
121 iap->ia_size = newsize;
122 else
123 iap->ia_size = NFS_OFFSET_MAX;
125 if ((tmp = ntohl(*p++)) == 1) { /* set to server time */
126 iap->ia_valid |= ATTR_ATIME;
127 } else if (tmp == 2) { /* set to client time */
128 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
129 iap->ia_atime.tv_sec = ntohl(*p++);
130 iap->ia_atime.tv_nsec = ntohl(*p++);
132 if ((tmp = ntohl(*p++)) == 1) { /* set to server time */
133 iap->ia_valid |= ATTR_MTIME;
134 } else if (tmp == 2) { /* set to client time */
135 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
136 iap->ia_mtime.tv_sec = ntohl(*p++);
137 iap->ia_mtime.tv_nsec = ntohl(*p++);
139 return p;
142 static __be32 *encode_fsid(__be32 *p, struct svc_fh *fhp)
144 u64 f;
145 switch(fsid_source(fhp)) {
146 default:
147 case FSIDSOURCE_DEV:
148 p = xdr_encode_hyper(p, (u64)huge_encode_dev
149 (fhp->fh_dentry->d_inode->i_sb->s_dev));
150 break;
151 case FSIDSOURCE_FSID:
152 p = xdr_encode_hyper(p, (u64) fhp->fh_export->ex_fsid);
153 break;
154 case FSIDSOURCE_UUID:
155 f = ((u64*)fhp->fh_export->ex_uuid)[0];
156 f ^= ((u64*)fhp->fh_export->ex_uuid)[1];
157 p = xdr_encode_hyper(p, f);
158 break;
160 return p;
163 static __be32 *
164 encode_fattr3(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp,
165 struct kstat *stat)
167 *p++ = htonl(nfs3_ftypes[(stat->mode & S_IFMT) >> 12]);
168 *p++ = htonl((u32) stat->mode);
169 *p++ = htonl((u32) stat->nlink);
170 *p++ = htonl((u32) nfsd_ruid(rqstp, stat->uid));
171 *p++ = htonl((u32) nfsd_rgid(rqstp, stat->gid));
172 if (S_ISLNK(stat->mode) && stat->size > NFS3_MAXPATHLEN) {
173 p = xdr_encode_hyper(p, (u64) NFS3_MAXPATHLEN);
174 } else {
175 p = xdr_encode_hyper(p, (u64) stat->size);
177 p = xdr_encode_hyper(p, ((u64)stat->blocks) << 9);
178 *p++ = htonl((u32) MAJOR(stat->rdev));
179 *p++ = htonl((u32) MINOR(stat->rdev));
180 p = encode_fsid(p, fhp);
181 p = xdr_encode_hyper(p, stat->ino);
182 p = encode_time3(p, &stat->atime);
183 p = encode_time3(p, &stat->mtime);
184 p = encode_time3(p, &stat->ctime);
186 return p;
189 static __be32 *
190 encode_saved_post_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
192 /* Attributes to follow */
193 *p++ = xdr_one;
194 return encode_fattr3(rqstp, p, fhp, &fhp->fh_post_attr);
198 * Encode post-operation attributes.
199 * The inode may be NULL if the call failed because of a stale file
200 * handle. In this case, no attributes are returned.
202 static __be32 *
203 encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
205 struct dentry *dentry = fhp->fh_dentry;
206 if (dentry && dentry->d_inode) {
207 int err;
208 struct kstat stat;
210 err = vfs_getattr(fhp->fh_export->ex_path.mnt, dentry, &stat);
211 if (!err) {
212 *p++ = xdr_one; /* attributes follow */
213 lease_get_mtime(dentry->d_inode, &stat.mtime);
214 return encode_fattr3(rqstp, p, fhp, &stat);
217 *p++ = xdr_zero;
218 return p;
221 /* Helper for NFSv3 ACLs */
222 __be32 *
223 nfs3svc_encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
225 return encode_post_op_attr(rqstp, p, fhp);
229 * Enocde weak cache consistency data
231 static __be32 *
232 encode_wcc_data(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp)
234 struct dentry *dentry = fhp->fh_dentry;
236 if (dentry && dentry->d_inode && fhp->fh_post_saved) {
237 if (fhp->fh_pre_saved) {
238 *p++ = xdr_one;
239 p = xdr_encode_hyper(p, (u64) fhp->fh_pre_size);
240 p = encode_time3(p, &fhp->fh_pre_mtime);
241 p = encode_time3(p, &fhp->fh_pre_ctime);
242 } else {
243 *p++ = xdr_zero;
245 return encode_saved_post_attr(rqstp, p, fhp);
247 /* no pre- or post-attrs */
248 *p++ = xdr_zero;
249 return encode_post_op_attr(rqstp, p, fhp);
253 * Fill in the post_op attr for the wcc data
255 void fill_post_wcc(struct svc_fh *fhp)
257 int err;
259 if (fhp->fh_post_saved)
260 printk("nfsd: inode locked twice during operation.\n");
262 err = vfs_getattr(fhp->fh_export->ex_path.mnt, fhp->fh_dentry,
263 &fhp->fh_post_attr);
264 fhp->fh_post_change = fhp->fh_dentry->d_inode->i_version;
265 if (err) {
266 fhp->fh_post_saved = 0;
267 /* Grab the ctime anyway - set_change_info might use it */
268 fhp->fh_post_attr.ctime = fhp->fh_dentry->d_inode->i_ctime;
269 } else
270 fhp->fh_post_saved = 1;
274 * XDR decode functions
277 nfs3svc_decode_fhandle(struct svc_rqst *rqstp, __be32 *p, struct nfsd_fhandle *args)
279 if (!(p = decode_fh(p, &args->fh)))
280 return 0;
281 return xdr_argsize_check(rqstp, p);
285 nfs3svc_decode_sattrargs(struct svc_rqst *rqstp, __be32 *p,
286 struct nfsd3_sattrargs *args)
288 if (!(p = decode_fh(p, &args->fh)))
289 return 0;
290 p = decode_sattr3(p, &args->attrs);
292 if ((args->check_guard = ntohl(*p++)) != 0) {
293 struct timespec time;
294 p = decode_time3(p, &time);
295 args->guardtime = time.tv_sec;
298 return xdr_argsize_check(rqstp, p);
302 nfs3svc_decode_diropargs(struct svc_rqst *rqstp, __be32 *p,
303 struct nfsd3_diropargs *args)
305 if (!(p = decode_fh(p, &args->fh))
306 || !(p = decode_filename(p, &args->name, &args->len)))
307 return 0;
309 return xdr_argsize_check(rqstp, p);
313 nfs3svc_decode_accessargs(struct svc_rqst *rqstp, __be32 *p,
314 struct nfsd3_accessargs *args)
316 if (!(p = decode_fh(p, &args->fh)))
317 return 0;
318 args->access = ntohl(*p++);
320 return xdr_argsize_check(rqstp, p);
324 nfs3svc_decode_readargs(struct svc_rqst *rqstp, __be32 *p,
325 struct nfsd3_readargs *args)
327 unsigned int len;
328 int v;
329 u32 max_blocksize = svc_max_payload(rqstp);
331 if (!(p = decode_fh(p, &args->fh)))
332 return 0;
333 p = xdr_decode_hyper(p, &args->offset);
335 len = args->count = ntohl(*p++);
337 if (len > max_blocksize)
338 len = max_blocksize;
340 /* set up the kvec */
341 v=0;
342 while (len > 0) {
343 struct page *p = *(rqstp->rq_next_page++);
345 rqstp->rq_vec[v].iov_base = page_address(p);
346 rqstp->rq_vec[v].iov_len = len < PAGE_SIZE? len : PAGE_SIZE;
347 len -= rqstp->rq_vec[v].iov_len;
348 v++;
350 args->vlen = v;
351 return xdr_argsize_check(rqstp, p);
355 nfs3svc_decode_writeargs(struct svc_rqst *rqstp, __be32 *p,
356 struct nfsd3_writeargs *args)
358 unsigned int len, v, hdr, dlen;
359 u32 max_blocksize = svc_max_payload(rqstp);
361 if (!(p = decode_fh(p, &args->fh)))
362 return 0;
363 p = xdr_decode_hyper(p, &args->offset);
365 args->count = ntohl(*p++);
366 args->stable = ntohl(*p++);
367 len = args->len = ntohl(*p++);
369 * The count must equal the amount of data passed.
371 if (args->count != args->len)
372 return 0;
375 * Check to make sure that we got the right number of
376 * bytes.
378 hdr = (void*)p - rqstp->rq_arg.head[0].iov_base;
379 dlen = rqstp->rq_arg.head[0].iov_len + rqstp->rq_arg.page_len
380 - hdr;
382 * Round the length of the data which was specified up to
383 * the next multiple of XDR units and then compare that
384 * against the length which was actually received.
385 * Note that when RPCSEC/GSS (for example) is used, the
386 * data buffer can be padded so dlen might be larger
387 * than required. It must never be smaller.
389 if (dlen < XDR_QUADLEN(len)*4)
390 return 0;
392 if (args->count > max_blocksize) {
393 args->count = max_blocksize;
394 len = args->len = max_blocksize;
396 rqstp->rq_vec[0].iov_base = (void*)p;
397 rqstp->rq_vec[0].iov_len = rqstp->rq_arg.head[0].iov_len - hdr;
398 v = 0;
399 while (len > rqstp->rq_vec[v].iov_len) {
400 len -= rqstp->rq_vec[v].iov_len;
401 v++;
402 rqstp->rq_vec[v].iov_base = page_address(rqstp->rq_pages[v]);
403 rqstp->rq_vec[v].iov_len = PAGE_SIZE;
405 rqstp->rq_vec[v].iov_len = len;
406 args->vlen = v + 1;
407 return 1;
411 nfs3svc_decode_createargs(struct svc_rqst *rqstp, __be32 *p,
412 struct nfsd3_createargs *args)
414 if (!(p = decode_fh(p, &args->fh))
415 || !(p = decode_filename(p, &args->name, &args->len)))
416 return 0;
418 switch (args->createmode = ntohl(*p++)) {
419 case NFS3_CREATE_UNCHECKED:
420 case NFS3_CREATE_GUARDED:
421 p = decode_sattr3(p, &args->attrs);
422 break;
423 case NFS3_CREATE_EXCLUSIVE:
424 args->verf = p;
425 p += 2;
426 break;
427 default:
428 return 0;
431 return xdr_argsize_check(rqstp, p);
434 nfs3svc_decode_mkdirargs(struct svc_rqst *rqstp, __be32 *p,
435 struct nfsd3_createargs *args)
437 if (!(p = decode_fh(p, &args->fh)) ||
438 !(p = decode_filename(p, &args->name, &args->len)))
439 return 0;
440 p = decode_sattr3(p, &args->attrs);
442 return xdr_argsize_check(rqstp, p);
446 nfs3svc_decode_symlinkargs(struct svc_rqst *rqstp, __be32 *p,
447 struct nfsd3_symlinkargs *args)
449 unsigned int len, avail;
450 char *old, *new;
451 struct kvec *vec;
453 if (!(p = decode_fh(p, &args->ffh)) ||
454 !(p = decode_filename(p, &args->fname, &args->flen))
456 return 0;
457 p = decode_sattr3(p, &args->attrs);
459 /* now decode the pathname, which might be larger than the first page.
460 * As we have to check for nul's anyway, we copy it into a new page
461 * This page appears in the rq_res.pages list, but as pages_len is always
462 * 0, it won't get in the way
464 len = ntohl(*p++);
465 if (len == 0 || len > NFS3_MAXPATHLEN || len >= PAGE_SIZE)
466 return 0;
467 args->tname = new = page_address(*(rqstp->rq_next_page++));
468 args->tlen = len;
469 /* first copy and check from the first page */
470 old = (char*)p;
471 vec = &rqstp->rq_arg.head[0];
472 avail = vec->iov_len - (old - (char*)vec->iov_base);
473 while (len && avail && *old) {
474 *new++ = *old++;
475 len--;
476 avail--;
478 /* now copy next page if there is one */
479 if (len && !avail && rqstp->rq_arg.page_len) {
480 avail = rqstp->rq_arg.page_len;
481 if (avail > PAGE_SIZE)
482 avail = PAGE_SIZE;
483 old = page_address(rqstp->rq_arg.pages[0]);
485 while (len && avail && *old) {
486 *new++ = *old++;
487 len--;
488 avail--;
490 *new = '\0';
491 if (len)
492 return 0;
494 return 1;
498 nfs3svc_decode_mknodargs(struct svc_rqst *rqstp, __be32 *p,
499 struct nfsd3_mknodargs *args)
501 if (!(p = decode_fh(p, &args->fh))
502 || !(p = decode_filename(p, &args->name, &args->len)))
503 return 0;
505 args->ftype = ntohl(*p++);
507 if (args->ftype == NF3BLK || args->ftype == NF3CHR
508 || args->ftype == NF3SOCK || args->ftype == NF3FIFO)
509 p = decode_sattr3(p, &args->attrs);
511 if (args->ftype == NF3BLK || args->ftype == NF3CHR) {
512 args->major = ntohl(*p++);
513 args->minor = ntohl(*p++);
516 return xdr_argsize_check(rqstp, p);
520 nfs3svc_decode_renameargs(struct svc_rqst *rqstp, __be32 *p,
521 struct nfsd3_renameargs *args)
523 if (!(p = decode_fh(p, &args->ffh))
524 || !(p = decode_filename(p, &args->fname, &args->flen))
525 || !(p = decode_fh(p, &args->tfh))
526 || !(p = decode_filename(p, &args->tname, &args->tlen)))
527 return 0;
529 return xdr_argsize_check(rqstp, p);
533 nfs3svc_decode_readlinkargs(struct svc_rqst *rqstp, __be32 *p,
534 struct nfsd3_readlinkargs *args)
536 if (!(p = decode_fh(p, &args->fh)))
537 return 0;
538 args->buffer = page_address(*(rqstp->rq_next_page++));
540 return xdr_argsize_check(rqstp, p);
544 nfs3svc_decode_linkargs(struct svc_rqst *rqstp, __be32 *p,
545 struct nfsd3_linkargs *args)
547 if (!(p = decode_fh(p, &args->ffh))
548 || !(p = decode_fh(p, &args->tfh))
549 || !(p = decode_filename(p, &args->tname, &args->tlen)))
550 return 0;
552 return xdr_argsize_check(rqstp, p);
556 nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, __be32 *p,
557 struct nfsd3_readdirargs *args)
559 if (!(p = decode_fh(p, &args->fh)))
560 return 0;
561 p = xdr_decode_hyper(p, &args->cookie);
562 args->verf = p; p += 2;
563 args->dircount = ~0;
564 args->count = ntohl(*p++);
566 if (args->count > PAGE_SIZE)
567 args->count = PAGE_SIZE;
569 args->buffer = page_address(*(rqstp->rq_next_page++));
571 return xdr_argsize_check(rqstp, p);
575 nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, __be32 *p,
576 struct nfsd3_readdirargs *args)
578 int len;
579 u32 max_blocksize = svc_max_payload(rqstp);
581 if (!(p = decode_fh(p, &args->fh)))
582 return 0;
583 p = xdr_decode_hyper(p, &args->cookie);
584 args->verf = p; p += 2;
585 args->dircount = ntohl(*p++);
586 args->count = ntohl(*p++);
588 len = (args->count > max_blocksize) ? max_blocksize :
589 args->count;
590 args->count = len;
592 while (len > 0) {
593 struct page *p = *(rqstp->rq_next_page++);
594 if (!args->buffer)
595 args->buffer = page_address(p);
596 len -= PAGE_SIZE;
599 return xdr_argsize_check(rqstp, p);
603 nfs3svc_decode_commitargs(struct svc_rqst *rqstp, __be32 *p,
604 struct nfsd3_commitargs *args)
606 if (!(p = decode_fh(p, &args->fh)))
607 return 0;
608 p = xdr_decode_hyper(p, &args->offset);
609 args->count = ntohl(*p++);
611 return xdr_argsize_check(rqstp, p);
615 * XDR encode functions
618 * There must be an encoding function for void results so svc_process
619 * will work properly.
622 nfs3svc_encode_voidres(struct svc_rqst *rqstp, __be32 *p, void *dummy)
624 return xdr_ressize_check(rqstp, p);
627 /* GETATTR */
629 nfs3svc_encode_attrstat(struct svc_rqst *rqstp, __be32 *p,
630 struct nfsd3_attrstat *resp)
632 if (resp->status == 0) {
633 lease_get_mtime(resp->fh.fh_dentry->d_inode,
634 &resp->stat.mtime);
635 p = encode_fattr3(rqstp, p, &resp->fh, &resp->stat);
637 return xdr_ressize_check(rqstp, p);
640 /* SETATTR, REMOVE, RMDIR */
642 nfs3svc_encode_wccstat(struct svc_rqst *rqstp, __be32 *p,
643 struct nfsd3_attrstat *resp)
645 p = encode_wcc_data(rqstp, p, &resp->fh);
646 return xdr_ressize_check(rqstp, p);
649 /* LOOKUP */
651 nfs3svc_encode_diropres(struct svc_rqst *rqstp, __be32 *p,
652 struct nfsd3_diropres *resp)
654 if (resp->status == 0) {
655 p = encode_fh(p, &resp->fh);
656 p = encode_post_op_attr(rqstp, p, &resp->fh);
658 p = encode_post_op_attr(rqstp, p, &resp->dirfh);
659 return xdr_ressize_check(rqstp, p);
662 /* ACCESS */
664 nfs3svc_encode_accessres(struct svc_rqst *rqstp, __be32 *p,
665 struct nfsd3_accessres *resp)
667 p = encode_post_op_attr(rqstp, p, &resp->fh);
668 if (resp->status == 0)
669 *p++ = htonl(resp->access);
670 return xdr_ressize_check(rqstp, p);
673 /* READLINK */
675 nfs3svc_encode_readlinkres(struct svc_rqst *rqstp, __be32 *p,
676 struct nfsd3_readlinkres *resp)
678 p = encode_post_op_attr(rqstp, p, &resp->fh);
679 if (resp->status == 0) {
680 *p++ = htonl(resp->len);
681 xdr_ressize_check(rqstp, p);
682 rqstp->rq_res.page_len = resp->len;
683 if (resp->len & 3) {
684 /* need to pad the tail */
685 rqstp->rq_res.tail[0].iov_base = p;
686 *p = 0;
687 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
689 return 1;
690 } else
691 return xdr_ressize_check(rqstp, p);
694 /* READ */
696 nfs3svc_encode_readres(struct svc_rqst *rqstp, __be32 *p,
697 struct nfsd3_readres *resp)
699 p = encode_post_op_attr(rqstp, p, &resp->fh);
700 if (resp->status == 0) {
701 *p++ = htonl(resp->count);
702 *p++ = htonl(resp->eof);
703 *p++ = htonl(resp->count); /* xdr opaque count */
704 xdr_ressize_check(rqstp, p);
705 /* now update rqstp->rq_res to reflect data as well */
706 rqstp->rq_res.page_len = resp->count;
707 if (resp->count & 3) {
708 /* need to pad the tail */
709 rqstp->rq_res.tail[0].iov_base = p;
710 *p = 0;
711 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count & 3);
713 return 1;
714 } else
715 return xdr_ressize_check(rqstp, p);
718 /* WRITE */
720 nfs3svc_encode_writeres(struct svc_rqst *rqstp, __be32 *p,
721 struct nfsd3_writeres *resp)
723 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
725 p = encode_wcc_data(rqstp, p, &resp->fh);
726 if (resp->status == 0) {
727 *p++ = htonl(resp->count);
728 *p++ = htonl(resp->committed);
729 *p++ = htonl(nn->nfssvc_boot.tv_sec);
730 *p++ = htonl(nn->nfssvc_boot.tv_usec);
732 return xdr_ressize_check(rqstp, p);
735 /* CREATE, MKDIR, SYMLINK, MKNOD */
737 nfs3svc_encode_createres(struct svc_rqst *rqstp, __be32 *p,
738 struct nfsd3_diropres *resp)
740 if (resp->status == 0) {
741 *p++ = xdr_one;
742 p = encode_fh(p, &resp->fh);
743 p = encode_post_op_attr(rqstp, p, &resp->fh);
745 p = encode_wcc_data(rqstp, p, &resp->dirfh);
746 return xdr_ressize_check(rqstp, p);
749 /* RENAME */
751 nfs3svc_encode_renameres(struct svc_rqst *rqstp, __be32 *p,
752 struct nfsd3_renameres *resp)
754 p = encode_wcc_data(rqstp, p, &resp->ffh);
755 p = encode_wcc_data(rqstp, p, &resp->tfh);
756 return xdr_ressize_check(rqstp, p);
759 /* LINK */
761 nfs3svc_encode_linkres(struct svc_rqst *rqstp, __be32 *p,
762 struct nfsd3_linkres *resp)
764 p = encode_post_op_attr(rqstp, p, &resp->fh);
765 p = encode_wcc_data(rqstp, p, &resp->tfh);
766 return xdr_ressize_check(rqstp, p);
769 /* READDIR */
771 nfs3svc_encode_readdirres(struct svc_rqst *rqstp, __be32 *p,
772 struct nfsd3_readdirres *resp)
774 p = encode_post_op_attr(rqstp, p, &resp->fh);
776 if (resp->status == 0) {
777 /* stupid readdir cookie */
778 memcpy(p, resp->verf, 8); p += 2;
779 xdr_ressize_check(rqstp, p);
780 if (rqstp->rq_res.head[0].iov_len + (2<<2) > PAGE_SIZE)
781 return 1; /*No room for trailer */
782 rqstp->rq_res.page_len = (resp->count) << 2;
784 /* add the 'tail' to the end of the 'head' page - page 0. */
785 rqstp->rq_res.tail[0].iov_base = p;
786 *p++ = 0; /* no more entries */
787 *p++ = htonl(resp->common.err == nfserr_eof);
788 rqstp->rq_res.tail[0].iov_len = 2<<2;
789 return 1;
790 } else
791 return xdr_ressize_check(rqstp, p);
794 static __be32 *
795 encode_entry_baggage(struct nfsd3_readdirres *cd, __be32 *p, const char *name,
796 int namlen, u64 ino)
798 *p++ = xdr_one; /* mark entry present */
799 p = xdr_encode_hyper(p, ino); /* file id */
800 p = xdr_encode_array(p, name, namlen);/* name length & name */
802 cd->offset = p; /* remember pointer */
803 p = xdr_encode_hyper(p, NFS_OFFSET_MAX);/* offset of next entry */
805 return p;
808 static __be32
809 compose_entry_fh(struct nfsd3_readdirres *cd, struct svc_fh *fhp,
810 const char *name, int namlen)
812 struct svc_export *exp;
813 struct dentry *dparent, *dchild;
814 __be32 rv = nfserr_noent;
816 dparent = cd->fh.fh_dentry;
817 exp = cd->fh.fh_export;
819 if (isdotent(name, namlen)) {
820 if (namlen == 2) {
821 dchild = dget_parent(dparent);
822 /* filesystem root - cannot return filehandle for ".." */
823 if (dchild == dparent)
824 goto out;
825 } else
826 dchild = dget(dparent);
827 } else
828 dchild = lookup_one_len(name, dparent, namlen);
829 if (IS_ERR(dchild))
830 return rv;
831 if (d_mountpoint(dchild))
832 goto out;
833 if (!dchild->d_inode)
834 goto out;
835 rv = fh_compose(fhp, exp, dchild, &cd->fh);
836 out:
837 dput(dchild);
838 return rv;
841 static __be32 *encode_entryplus_baggage(struct nfsd3_readdirres *cd, __be32 *p, const char *name, int namlen)
843 struct svc_fh fh;
844 __be32 err;
846 fh_init(&fh, NFS3_FHSIZE);
847 err = compose_entry_fh(cd, &fh, name, namlen);
848 if (err) {
849 *p++ = 0;
850 *p++ = 0;
851 goto out;
853 p = encode_post_op_attr(cd->rqstp, p, &fh);
854 *p++ = xdr_one; /* yes, a file handle follows */
855 p = encode_fh(p, &fh);
856 out:
857 fh_put(&fh);
858 return p;
862 * Encode a directory entry. This one works for both normal readdir
863 * and readdirplus.
864 * The normal readdir reply requires 2 (fileid) + 1 (stringlen)
865 * + string + 2 (cookie) + 1 (next) words, i.e. 6 + strlen.
867 * The readdirplus baggage is 1+21 words for post_op_attr, plus the
868 * file handle.
871 #define NFS3_ENTRY_BAGGAGE (2 + 1 + 2 + 1)
872 #define NFS3_ENTRYPLUS_BAGGAGE (1 + 21 + 1 + (NFS3_FHSIZE >> 2))
873 static int
874 encode_entry(struct readdir_cd *ccd, const char *name, int namlen,
875 loff_t offset, u64 ino, unsigned int d_type, int plus)
877 struct nfsd3_readdirres *cd = container_of(ccd, struct nfsd3_readdirres,
878 common);
879 __be32 *p = cd->buffer;
880 caddr_t curr_page_addr = NULL;
881 struct page ** page;
882 int slen; /* string (name) length */
883 int elen; /* estimated entry length in words */
884 int num_entry_words = 0; /* actual number of words */
886 if (cd->offset) {
887 u64 offset64 = offset;
889 if (unlikely(cd->offset1)) {
890 /* we ended up with offset on a page boundary */
891 *cd->offset = htonl(offset64 >> 32);
892 *cd->offset1 = htonl(offset64 & 0xffffffff);
893 cd->offset1 = NULL;
894 } else {
895 xdr_encode_hyper(cd->offset, offset64);
900 dprintk("encode_entry(%.*s @%ld%s)\n",
901 namlen, name, (long) offset, plus? " plus" : "");
904 /* truncate filename if too long */
905 if (namlen > NFS3_MAXNAMLEN)
906 namlen = NFS3_MAXNAMLEN;
908 slen = XDR_QUADLEN(namlen);
909 elen = slen + NFS3_ENTRY_BAGGAGE
910 + (plus? NFS3_ENTRYPLUS_BAGGAGE : 0);
912 if (cd->buflen < elen) {
913 cd->common.err = nfserr_toosmall;
914 return -EINVAL;
917 /* determine which page in rq_respages[] we are currently filling */
918 for (page = cd->rqstp->rq_respages + 1;
919 page < cd->rqstp->rq_next_page; page++) {
920 curr_page_addr = page_address(*page);
922 if (((caddr_t)cd->buffer >= curr_page_addr) &&
923 ((caddr_t)cd->buffer < curr_page_addr + PAGE_SIZE))
924 break;
927 if ((caddr_t)(cd->buffer + elen) < (curr_page_addr + PAGE_SIZE)) {
928 /* encode entry in current page */
930 p = encode_entry_baggage(cd, p, name, namlen, ino);
932 if (plus)
933 p = encode_entryplus_baggage(cd, p, name, namlen);
934 num_entry_words = p - cd->buffer;
935 } else if (*(page+1) != NULL) {
936 /* temporarily encode entry into next page, then move back to
937 * current and next page in rq_respages[] */
938 __be32 *p1, *tmp;
939 int len1, len2;
941 /* grab next page for temporary storage of entry */
942 p1 = tmp = page_address(*(page+1));
944 p1 = encode_entry_baggage(cd, p1, name, namlen, ino);
946 if (plus)
947 p1 = encode_entryplus_baggage(cd, p1, name, namlen);
949 /* determine entry word length and lengths to go in pages */
950 num_entry_words = p1 - tmp;
951 len1 = curr_page_addr + PAGE_SIZE - (caddr_t)cd->buffer;
952 if ((num_entry_words << 2) < len1) {
953 /* the actual number of words in the entry is less
954 * than elen and can still fit in the current page
956 memmove(p, tmp, num_entry_words << 2);
957 p += num_entry_words;
959 /* update offset */
960 cd->offset = cd->buffer + (cd->offset - tmp);
961 } else {
962 unsigned int offset_r = (cd->offset - tmp) << 2;
964 /* update pointer to offset location.
965 * This is a 64bit quantity, so we need to
966 * deal with 3 cases:
967 * - entirely in first page
968 * - entirely in second page
969 * - 4 bytes in each page
971 if (offset_r + 8 <= len1) {
972 cd->offset = p + (cd->offset - tmp);
973 } else if (offset_r >= len1) {
974 cd->offset -= len1 >> 2;
975 } else {
976 /* sitting on the fence */
977 BUG_ON(offset_r != len1 - 4);
978 cd->offset = p + (cd->offset - tmp);
979 cd->offset1 = tmp;
982 len2 = (num_entry_words << 2) - len1;
984 /* move from temp page to current and next pages */
985 memmove(p, tmp, len1);
986 memmove(tmp, (caddr_t)tmp+len1, len2);
988 p = tmp + (len2 >> 2);
991 else {
992 cd->common.err = nfserr_toosmall;
993 return -EINVAL;
996 cd->buflen -= num_entry_words;
997 cd->buffer = p;
998 cd->common.err = nfs_ok;
999 return 0;
1004 nfs3svc_encode_entry(void *cd, const char *name,
1005 int namlen, loff_t offset, u64 ino, unsigned int d_type)
1007 return encode_entry(cd, name, namlen, offset, ino, d_type, 0);
1011 nfs3svc_encode_entry_plus(void *cd, const char *name,
1012 int namlen, loff_t offset, u64 ino,
1013 unsigned int d_type)
1015 return encode_entry(cd, name, namlen, offset, ino, d_type, 1);
1018 /* FSSTAT */
1020 nfs3svc_encode_fsstatres(struct svc_rqst *rqstp, __be32 *p,
1021 struct nfsd3_fsstatres *resp)
1023 struct kstatfs *s = &resp->stats;
1024 u64 bs = s->f_bsize;
1026 *p++ = xdr_zero; /* no post_op_attr */
1028 if (resp->status == 0) {
1029 p = xdr_encode_hyper(p, bs * s->f_blocks); /* total bytes */
1030 p = xdr_encode_hyper(p, bs * s->f_bfree); /* free bytes */
1031 p = xdr_encode_hyper(p, bs * s->f_bavail); /* user available bytes */
1032 p = xdr_encode_hyper(p, s->f_files); /* total inodes */
1033 p = xdr_encode_hyper(p, s->f_ffree); /* free inodes */
1034 p = xdr_encode_hyper(p, s->f_ffree); /* user available inodes */
1035 *p++ = htonl(resp->invarsec); /* mean unchanged time */
1037 return xdr_ressize_check(rqstp, p);
1040 /* FSINFO */
1042 nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, __be32 *p,
1043 struct nfsd3_fsinfores *resp)
1045 *p++ = xdr_zero; /* no post_op_attr */
1047 if (resp->status == 0) {
1048 *p++ = htonl(resp->f_rtmax);
1049 *p++ = htonl(resp->f_rtpref);
1050 *p++ = htonl(resp->f_rtmult);
1051 *p++ = htonl(resp->f_wtmax);
1052 *p++ = htonl(resp->f_wtpref);
1053 *p++ = htonl(resp->f_wtmult);
1054 *p++ = htonl(resp->f_dtpref);
1055 p = xdr_encode_hyper(p, resp->f_maxfilesize);
1056 *p++ = xdr_one;
1057 *p++ = xdr_zero;
1058 *p++ = htonl(resp->f_properties);
1061 return xdr_ressize_check(rqstp, p);
1064 /* PATHCONF */
1066 nfs3svc_encode_pathconfres(struct svc_rqst *rqstp, __be32 *p,
1067 struct nfsd3_pathconfres *resp)
1069 *p++ = xdr_zero; /* no post_op_attr */
1071 if (resp->status == 0) {
1072 *p++ = htonl(resp->p_link_max);
1073 *p++ = htonl(resp->p_name_max);
1074 *p++ = htonl(resp->p_no_trunc);
1075 *p++ = htonl(resp->p_chown_restricted);
1076 *p++ = htonl(resp->p_case_insensitive);
1077 *p++ = htonl(resp->p_case_preserving);
1080 return xdr_ressize_check(rqstp, p);
1083 /* COMMIT */
1085 nfs3svc_encode_commitres(struct svc_rqst *rqstp, __be32 *p,
1086 struct nfsd3_commitres *resp)
1088 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
1090 p = encode_wcc_data(rqstp, p, &resp->fh);
1091 /* Write verifier */
1092 if (resp->status == 0) {
1093 *p++ = htonl(nn->nfssvc_boot.tv_sec);
1094 *p++ = htonl(nn->nfssvc_boot.tv_usec);
1096 return xdr_ressize_check(rqstp, p);
1100 * XDR release functions
1103 nfs3svc_release_fhandle(struct svc_rqst *rqstp, __be32 *p,
1104 struct nfsd3_attrstat *resp)
1106 fh_put(&resp->fh);
1107 return 1;
1111 nfs3svc_release_fhandle2(struct svc_rqst *rqstp, __be32 *p,
1112 struct nfsd3_fhandle_pair *resp)
1114 fh_put(&resp->fh1);
1115 fh_put(&resp->fh2);
1116 return 1;