1
2
3
4
5
6
7
8
9
10
11#include <linux/types.h>
12#include <linux/time.h>
13#include <linux/nfs3.h>
14#include <linux/list.h>
15#include <linux/spinlock.h>
16#include <linux/dcache.h>
17#include <linux/namei.h>
18#include <linux/mm.h>
19#include <linux/vfs.h>
20#include <linux/sunrpc/xdr.h>
21#include <linux/sunrpc/svc.h>
22#include <linux/nfsd/nfsd.h>
23#include <linux/nfsd/xdr3.h>
24
25#define NFSDDBG_FACILITY NFSDDBG_XDR
26
27#ifdef NFSD_OPTIMIZE_SPACE
28# define inline
29#endif
30
31
32
33
34
35static u32 nfs3_ftypes[] = {
36 NF3NON, NF3FIFO, NF3CHR, NF3BAD,
37 NF3DIR, NF3BAD, NF3BLK, NF3BAD,
38 NF3REG, NF3BAD, NF3LNK, NF3BAD,
39 NF3SOCK, NF3BAD, NF3LNK, NF3BAD,
40};
41
42
43
44
45static inline u32 *
46encode_time3(u32 *p, struct timespec *time)
47{
48 *p++ = htonl((u32) time->tv_sec); *p++ = htonl(time->tv_nsec);
49 return p;
50}
51
52static inline u32 *
53decode_time3(u32 *p, struct timespec *time)
54{
55 time->tv_sec = ntohl(*p++);
56 time->tv_nsec = ntohl(*p++);
57 return p;
58}
59
60static inline u32 *
61decode_fh(u32 *p, struct svc_fh *fhp)
62{
63 unsigned int size;
64 fh_init(fhp, NFS3_FHSIZE);
65 size = ntohl(*p++);
66 if (size > NFS3_FHSIZE)
67 return NULL;
68
69 memcpy(&fhp->fh_handle.fh_base, p, size);
70 fhp->fh_handle.fh_size = size;
71 return p + XDR_QUADLEN(size);
72}
73
74static inline u32 *
75encode_fh(u32 *p, struct svc_fh *fhp)
76{
77 unsigned int size = fhp->fh_handle.fh_size;
78 *p++ = htonl(size);
79 if (size) p[XDR_QUADLEN(size)-1]=0;
80 memcpy(p, &fhp->fh_handle.fh_base, size);
81 return p + XDR_QUADLEN(size);
82}
83
84
85
86
87
88static inline u32 *
89decode_filename(u32 *p, char **namp, int *lenp)
90{
91 char *name;
92 int i;
93
94 if ((p = xdr_decode_string_inplace(p, namp, lenp, NFS3_MAXNAMLEN)) != NULL) {
95 for (i = 0, name = *namp; i < *lenp; i++, name++) {
96 if (*name == '\0' || *name == '/')
97 return NULL;
98 }
99 }
100
101 return p;
102}
103
104static inline u32 *
105decode_sattr3(u32 *p, struct iattr *iap)
106{
107 u32 tmp;
108
109 iap->ia_valid = 0;
110
111 if (*p++) {
112 iap->ia_valid |= ATTR_MODE;
113 iap->ia_mode = ntohl(*p++);
114 }
115 if (*p++) {
116 iap->ia_valid |= ATTR_UID;
117 iap->ia_uid = ntohl(*p++);
118 }
119 if (*p++) {
120 iap->ia_valid |= ATTR_GID;
121 iap->ia_gid = ntohl(*p++);
122 }
123 if (*p++) {
124 u64 newsize;
125
126 iap->ia_valid |= ATTR_SIZE;
127 p = xdr_decode_hyper(p, &newsize);
128 if (newsize <= NFS_OFFSET_MAX)
129 iap->ia_size = newsize;
130 else
131 iap->ia_size = NFS_OFFSET_MAX;
132 }
133 if ((tmp = ntohl(*p++)) == 1) {
134 iap->ia_valid |= ATTR_ATIME;
135 } else if (tmp == 2) {
136 iap->ia_valid |= ATTR_ATIME | ATTR_ATIME_SET;
137 iap->ia_atime.tv_sec = ntohl(*p++);
138 iap->ia_atime.tv_nsec = ntohl(*p++);
139 }
140 if ((tmp = ntohl(*p++)) == 1) {
141 iap->ia_valid |= ATTR_MTIME;
142 } else if (tmp == 2) {
143 iap->ia_valid |= ATTR_MTIME | ATTR_MTIME_SET;
144 iap->ia_mtime.tv_sec = ntohl(*p++);
145 iap->ia_mtime.tv_nsec = ntohl(*p++);
146 }
147 return p;
148}
149
150static inline u32 *
151encode_fattr3(struct svc_rqst *rqstp, u32 *p, struct svc_fh *fhp)
152{
153 struct vfsmount *mnt = fhp->fh_export->ex_mnt;
154 struct dentry *dentry = fhp->fh_dentry;
155 struct kstat stat;
156 struct timespec time;
157
158 vfs_getattr(mnt, dentry, &stat);
159
160 *p++ = htonl(nfs3_ftypes[(stat.mode & S_IFMT) >> 12]);
161 *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));
165 if (S_ISLNK(stat.mode) && stat.size > NFS3_MAXPATHLEN) {
166 p = xdr_encode_hyper(p, (u64) NFS3_MAXPATHLEN);
167 } else {
168 p = xdr_encode_hyper(p, (u64) stat.size);
169 }
170 p = xdr_encode_hyper(p, ((u64)stat.blocks) << 9);
171 *p++ = htonl((u32) MAJOR(stat.rdev));
172 *p++ = htonl((u32) MINOR(stat.rdev));
173 if (is_fsid(fhp, rqstp->rq_reffh))
174 p = xdr_encode_hyper(p, (u64) fhp->fh_export->ex_fsid);
175 else
176 p = xdr_encode_hyper(p, (u64) huge_encode_dev(stat.dev));
177 p = xdr_encode_hyper(p, (u64) stat.ino);
178 p = encode_time3(p, &stat.atime);
179 lease_get_mtime(dentry->d_inode, &time);
180 p = encode_time3(p, &time);
181 p = encode_time3(p, &stat.ctime);
182
183 return p;
184}
185
186static inline u32 *
187encode_saved_post_attr(struct svc_rqst *rqstp, u32 *p, struct svc_fh *fhp)
188{
189 struct inode *inode = fhp->fh_dentry->d_inode;
190
191
192 *p++ = xdr_one;
193
194 *p++ = htonl(nfs3_ftypes[(fhp->fh_post_mode & S_IFMT) >> 12]);
195 *p++ = htonl((u32) fhp->fh_post_mode);
196 *p++ = htonl((u32) fhp->fh_post_nlink);
197 *p++ = htonl((u32) nfsd_ruid(rqstp, fhp->fh_post_uid));
198 *p++ = htonl((u32) nfsd_rgid(rqstp, fhp->fh_post_gid));
199 if (S_ISLNK(fhp->fh_post_mode) && fhp->fh_post_size > NFS3_MAXPATHLEN) {
200 p = xdr_encode_hyper(p, (u64) NFS3_MAXPATHLEN);
201 } else {
202 p = xdr_encode_hyper(p, (u64) fhp->fh_post_size);
203 }
204 p = xdr_encode_hyper(p, ((u64)fhp->fh_post_blocks) << 9);
205 *p++ = fhp->fh_post_rdev[0];
206 *p++ = fhp->fh_post_rdev[1];
207 if (is_fsid(fhp, rqstp->rq_reffh))
208 p = xdr_encode_hyper(p, (u64) fhp->fh_export->ex_fsid);
209 else
210 p = xdr_encode_hyper(p, (u64)huge_encode_dev(inode->i_sb->s_dev));
211 p = xdr_encode_hyper(p, (u64) inode->i_ino);
212 p = encode_time3(p, &fhp->fh_post_atime);
213 p = encode_time3(p, &fhp->fh_post_mtime);
214 p = encode_time3(p, &fhp->fh_post_ctime);
215
216 return p;
217}
218
219
220
221
222
223
224static u32 *
225encode_post_op_attr(struct svc_rqst *rqstp, u32 *p, struct svc_fh *fhp)
226{
227 struct dentry *dentry = fhp->fh_dentry;
228 if (dentry && dentry->d_inode != NULL) {
229 *p++ = xdr_one;
230 return encode_fattr3(rqstp, p, fhp);
231 }
232 *p++ = xdr_zero;
233 return p;
234}
235
236
237
238
239static u32 *
240encode_wcc_data(struct svc_rqst *rqstp, u32 *p, struct svc_fh *fhp)
241{
242 struct dentry *dentry = fhp->fh_dentry;
243
244 if (dentry && dentry->d_inode && fhp->fh_post_saved) {
245 if (fhp->fh_pre_saved) {
246 *p++ = xdr_one;
247 p = xdr_encode_hyper(p, (u64) fhp->fh_pre_size);
248 p = encode_time3(p, &fhp->fh_pre_mtime);
249 p = encode_time3(p, &fhp->fh_pre_ctime);
250 } else {
251 *p++ = xdr_zero;
252 }
253 return encode_saved_post_attr(rqstp, p, fhp);
254 }
255
256 *p++ = xdr_zero;
257 return encode_post_op_attr(rqstp, p, fhp);
258}
259
260
261
262
263
264int
265nfs3svc_decode_fhandle(struct svc_rqst *rqstp, u32 *p, struct nfsd_fhandle *args)
266{
267 if (!(p = decode_fh(p, &args->fh)))
268 return 0;
269 return xdr_argsize_check(rqstp, p);
270}
271
272int
273nfs3svc_decode_sattrargs(struct svc_rqst *rqstp, u32 *p,
274 struct nfsd3_sattrargs *args)
275{
276 if (!(p = decode_fh(p, &args->fh))
277 || !(p = decode_sattr3(p, &args->attrs)))
278 return 0;
279
280 if ((args->check_guard = ntohl(*p++)) != 0) {
281 struct timespec time;
282 p = decode_time3(p, &time);
283 args->guardtime = time.tv_sec;
284 }
285
286 return xdr_argsize_check(rqstp, p);
287}
288
289int
290nfs3svc_decode_diropargs(struct svc_rqst *rqstp, u32 *p,
291 struct nfsd3_diropargs *args)
292{
293 if (!(p = decode_fh(p, &args->fh))
294 || !(p = decode_filename(p, &args->name, &args->len)))
295 return 0;
296
297 return xdr_argsize_check(rqstp, p);
298}
299
300int
301nfs3svc_decode_accessargs(struct svc_rqst *rqstp, u32 *p,
302 struct nfsd3_accessargs *args)
303{
304 if (!(p = decode_fh(p, &args->fh)))
305 return 0;
306 args->access = ntohl(*p++);
307
308 return xdr_argsize_check(rqstp, p);
309}
310
311int
312nfs3svc_decode_readargs(struct svc_rqst *rqstp, u32 *p,
313 struct nfsd3_readargs *args)
314{
315 unsigned int len;
316 int v,pn;
317
318 if (!(p = decode_fh(p, &args->fh))
319 || !(p = xdr_decode_hyper(p, &args->offset)))
320 return 0;
321
322 len = args->count = ntohl(*p++);
323
324 if (len > NFSSVC_MAXBLKSIZE)
325 len = NFSSVC_MAXBLKSIZE;
326
327
328 v=0;
329 while (len > 0) {
330 pn = rqstp->rq_resused;
331 svc_take_page(rqstp);
332 args->vec[v].iov_base = page_address(rqstp->rq_respages[pn]);
333 args->vec[v].iov_len = len < PAGE_SIZE? len : PAGE_SIZE;
334 len -= args->vec[v].iov_len;
335 v++;
336 }
337 args->vlen = v;
338 return xdr_argsize_check(rqstp, p);
339}
340
341int
342nfs3svc_decode_writeargs(struct svc_rqst *rqstp, u32 *p,
343 struct nfsd3_writeargs *args)
344{
345 unsigned int len, v, hdr;
346
347 if (!(p = decode_fh(p, &args->fh))
348 || !(p = xdr_decode_hyper(p, &args->offset)))
349 return 0;
350
351 args->count = ntohl(*p++);
352 args->stable = ntohl(*p++);
353 len = args->len = ntohl(*p++);
354
355 hdr = (void*)p - rqstp->rq_arg.head[0].iov_base;
356 if (rqstp->rq_arg.len < len + hdr)
357 return 0;
358
359 args->vec[0].iov_base = (void*)p;
360 args->vec[0].iov_len = rqstp->rq_arg.head[0].iov_len - hdr;
361
362 if (len > NFSSVC_MAXBLKSIZE)
363 len = NFSSVC_MAXBLKSIZE;
364 v= 0;
365 while (len > args->vec[v].iov_len) {
366 len -= args->vec[v].iov_len;
367 v++;
368 args->vec[v].iov_base = page_address(rqstp->rq_argpages[v]);
369 args->vec[v].iov_len = PAGE_SIZE;
370 }
371 args->vec[v].iov_len = len;
372 args->vlen = v+1;
373
374 return args->count == args->len && args->vec[0].iov_len > 0;
375}
376
377int
378nfs3svc_decode_createargs(struct svc_rqst *rqstp, u32 *p,
379 struct nfsd3_createargs *args)
380{
381 if (!(p = decode_fh(p, &args->fh))
382 || !(p = decode_filename(p, &args->name, &args->len)))
383 return 0;
384
385 switch (args->createmode = ntohl(*p++)) {
386 case NFS3_CREATE_UNCHECKED:
387 case NFS3_CREATE_GUARDED:
388 if (!(p = decode_sattr3(p, &args->attrs)))
389 return 0;
390 break;
391 case NFS3_CREATE_EXCLUSIVE:
392 args->verf = p;
393 p += 2;
394 break;
395 default:
396 return 0;
397 }
398
399 return xdr_argsize_check(rqstp, p);
400}
401int
402nfs3svc_decode_mkdirargs(struct svc_rqst *rqstp, u32 *p,
403 struct nfsd3_createargs *args)
404{
405 if (!(p = decode_fh(p, &args->fh))
406 || !(p = decode_filename(p, &args->name, &args->len))
407 || !(p = decode_sattr3(p, &args->attrs)))
408 return 0;
409
410 return xdr_argsize_check(rqstp, p);
411}
412
413int
414nfs3svc_decode_symlinkargs(struct svc_rqst *rqstp, u32 *p,
415 struct nfsd3_symlinkargs *args)
416{
417 unsigned int len;
418 int avail;
419 char *old, *new;
420 struct kvec *vec;
421
422 if (!(p = decode_fh(p, &args->ffh))
423 || !(p = decode_filename(p, &args->fname, &args->flen))
424 || !(p = decode_sattr3(p, &args->attrs))
425 )
426 return 0;
427
428
429
430
431
432 svc_take_page(rqstp);
433 len = ntohl(*p++);
434 if (len == 0 || len > NFS3_MAXPATHLEN || len >= PAGE_SIZE)
435 return 0;
436 args->tname = new = page_address(rqstp->rq_respages[rqstp->rq_resused-1]);
437 args->tlen = len;
438
439 old = (char*)p;
440 vec = &rqstp->rq_arg.head[0];
441 avail = vec->iov_len - (old - (char*)vec->iov_base);
442 while (len && avail && *old) {
443 *new++ = *old++;
444 len--;
445 avail--;
446 }
447
448 if (len && !avail && rqstp->rq_arg.page_len) {
449 avail = rqstp->rq_arg.page_len;
450 if (avail > PAGE_SIZE) avail = PAGE_SIZE;
451 old = page_address(rqstp->rq_arg.pages[0]);
452 }
453 while (len && avail && *old) {
454 *new++ = *old++;
455 len--;
456 avail--;
457 }
458 *new = '\0';
459 if (len)
460 return 0;
461
462 return 1;
463}
464
465int
466nfs3svc_decode_mknodargs(struct svc_rqst *rqstp, u32 *p,
467 struct nfsd3_mknodargs *args)
468{
469 if (!(p = decode_fh(p, &args->fh))
470 || !(p = decode_filename(p, &args->name, &args->len)))
471 return 0;
472
473 args->ftype = ntohl(*p++);
474
475 if (args->ftype == NF3BLK || args->ftype == NF3CHR
476 || args->ftype == NF3SOCK || args->ftype == NF3FIFO) {
477 if (!(p = decode_sattr3(p, &args->attrs)))
478 return 0;
479 }
480
481 if (args->ftype == NF3BLK || args->ftype == NF3CHR) {
482 args->major = ntohl(*p++);
483 args->minor = ntohl(*p++);
484 }
485
486 return xdr_argsize_check(rqstp, p);
487}
488
489int
490nfs3svc_decode_renameargs(struct svc_rqst *rqstp, u32 *p,
491 struct nfsd3_renameargs *args)
492{
493 if (!(p = decode_fh(p, &args->ffh))
494 || !(p = decode_filename(p, &args->fname, &args->flen))
495 || !(p = decode_fh(p, &args->tfh))
496 || !(p = decode_filename(p, &args->tname, &args->tlen)))
497 return 0;
498
499 return xdr_argsize_check(rqstp, p);
500}
501
502int
503nfs3svc_decode_readlinkargs(struct svc_rqst *rqstp, u32 *p,
504 struct nfsd3_readlinkargs *args)
505{
506 if (!(p = decode_fh(p, &args->fh)))
507 return 0;
508 svc_take_page(rqstp);
509 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused-1]);
510
511 return xdr_argsize_check(rqstp, p);
512}
513
514int
515nfs3svc_decode_linkargs(struct svc_rqst *rqstp, u32 *p,
516 struct nfsd3_linkargs *args)
517{
518 if (!(p = decode_fh(p, &args->ffh))
519 || !(p = decode_fh(p, &args->tfh))
520 || !(p = decode_filename(p, &args->tname, &args->tlen)))
521 return 0;
522
523 return xdr_argsize_check(rqstp, p);
524}
525
526int
527nfs3svc_decode_readdirargs(struct svc_rqst *rqstp, u32 *p,
528 struct nfsd3_readdirargs *args)
529{
530 if (!(p = decode_fh(p, &args->fh)))
531 return 0;
532 p = xdr_decode_hyper(p, &args->cookie);
533 args->verf = p; p += 2;
534 args->dircount = ~0;
535 args->count = ntohl(*p++);
536
537 if (args->count > PAGE_SIZE)
538 args->count = PAGE_SIZE;
539
540 svc_take_page(rqstp);
541 args->buffer = page_address(rqstp->rq_respages[rqstp->rq_resused-1]);
542
543 return xdr_argsize_check(rqstp, p);
544}
545
546int
547nfs3svc_decode_readdirplusargs(struct svc_rqst *rqstp, u32 *p,
548 struct nfsd3_readdirargs *args)
549{
550 int len, pn;
551
552 if (!(p = decode_fh(p, &args->fh)))
553 return 0;
554 p = xdr_decode_hyper(p, &args->cookie);
555 args->verf = p; p += 2;
556 args->dircount = ntohl(*p++);
557 args->count = ntohl(*p++);
558
559 len = (args->count > NFSSVC_MAXBLKSIZE) ? NFSSVC_MAXBLKSIZE :
560 args->count;
561 args->count = len;
562
563 while (len > 0) {
564 pn = rqstp->rq_resused;
565 svc_take_page(rqstp);
566 if (!args->buffer)
567 args->buffer = page_address(rqstp->rq_respages[pn]);
568 len -= PAGE_SIZE;
569 }
570
571 return xdr_argsize_check(rqstp, p);
572}
573
574int
575nfs3svc_decode_commitargs(struct svc_rqst *rqstp, u32 *p,
576 struct nfsd3_commitargs *args)
577{
578 if (!(p = decode_fh(p, &args->fh)))
579 return 0;
580 p = xdr_decode_hyper(p, &args->offset);
581 args->count = ntohl(*p++);
582
583 return xdr_argsize_check(rqstp, p);
584}
585
586
587
588
589
590
591
592
593int
594nfs3svc_encode_voidres(struct svc_rqst *rqstp, u32 *p, void *dummy)
595{
596 return xdr_ressize_check(rqstp, p);
597}
598
599
600int
601nfs3svc_encode_attrstat(struct svc_rqst *rqstp, u32 *p,
602 struct nfsd3_attrstat *resp)
603{
604 if (resp->status == 0)
605 p = encode_fattr3(rqstp, p, &resp->fh);
606 return xdr_ressize_check(rqstp, p);
607}
608
609
610int
611nfs3svc_encode_wccstat(struct svc_rqst *rqstp, u32 *p,
612 struct nfsd3_attrstat *resp)
613{
614 p = encode_wcc_data(rqstp, p, &resp->fh);
615 return xdr_ressize_check(rqstp, p);
616}
617
618
619int
620nfs3svc_encode_diropres(struct svc_rqst *rqstp, u32 *p,
621 struct nfsd3_diropres *resp)
622{
623 if (resp->status == 0) {
624 p = encode_fh(p, &resp->fh);
625 p = encode_post_op_attr(rqstp, p, &resp->fh);
626 }
627 p = encode_post_op_attr(rqstp, p, &resp->dirfh);
628 return xdr_ressize_check(rqstp, p);
629}
630
631
632int
633nfs3svc_encode_accessres(struct svc_rqst *rqstp, u32 *p,
634 struct nfsd3_accessres *resp)
635{
636 p = encode_post_op_attr(rqstp, p, &resp->fh);
637 if (resp->status == 0)
638 *p++ = htonl(resp->access);
639 return xdr_ressize_check(rqstp, p);
640}
641
642
643int
644nfs3svc_encode_readlinkres(struct svc_rqst *rqstp, u32 *p,
645 struct nfsd3_readlinkres *resp)
646{
647 p = encode_post_op_attr(rqstp, p, &resp->fh);
648 if (resp->status == 0) {
649 *p++ = htonl(resp->len);
650 xdr_ressize_check(rqstp, p);
651 rqstp->rq_res.page_len = resp->len;
652 if (resp->len & 3) {
653
654 rqstp->rq_restailpage = 0;
655 rqstp->rq_res.tail[0].iov_base = p;
656 *p = 0;
657 rqstp->rq_res.tail[0].iov_len = 4 - (resp->len&3);
658 }
659 return 1;
660 } else
661 return xdr_ressize_check(rqstp, p);
662}
663
664
665int
666nfs3svc_encode_readres(struct svc_rqst *rqstp, u32 *p,
667 struct nfsd3_readres *resp)
668{
669 p = encode_post_op_attr(rqstp, p, &resp->fh);
670 if (resp->status == 0) {
671 *p++ = htonl(resp->count);
672 *p++ = htonl(resp->eof);
673 *p++ = htonl(resp->count);
674 xdr_ressize_check(rqstp, p);
675
676 rqstp->rq_res.page_len = resp->count;
677 if (resp->count & 3) {
678
679 rqstp->rq_restailpage = 0;
680 rqstp->rq_res.tail[0].iov_base = p;
681 *p = 0;
682 rqstp->rq_res.tail[0].iov_len = 4 - (resp->count & 3);
683 }
684 return 1;
685 } else
686 return xdr_ressize_check(rqstp, p);
687}
688
689
690int
691nfs3svc_encode_writeres(struct svc_rqst *rqstp, u32 *p,
692 struct nfsd3_writeres *resp)
693{
694 p = encode_wcc_data(rqstp, p, &resp->fh);
695 if (resp->status == 0) {
696 *p++ = htonl(resp->count);
697 *p++ = htonl(resp->committed);
698 *p++ = htonl(nfssvc_boot.tv_sec);
699 *p++ = htonl(nfssvc_boot.tv_usec);
700 }
701 return xdr_ressize_check(rqstp, p);
702}
703
704
705int
706nfs3svc_encode_createres(struct svc_rqst *rqstp, u32 *p,
707 struct nfsd3_diropres *resp)
708{
709 if (resp->status == 0) {
710 *p++ = xdr_one;
711 p = encode_fh(p, &resp->fh);
712 p = encode_post_op_attr(rqstp, p, &resp->fh);
713 }
714 p = encode_wcc_data(rqstp, p, &resp->dirfh);
715 return xdr_ressize_check(rqstp, p);
716}
717
718
719int
720nfs3svc_encode_renameres(struct svc_rqst *rqstp, u32 *p,
721 struct nfsd3_renameres *resp)
722{
723 p = encode_wcc_data(rqstp, p, &resp->ffh);
724 p = encode_wcc_data(rqstp, p, &resp->tfh);
725 return xdr_ressize_check(rqstp, p);
726}
727
728
729int
730nfs3svc_encode_linkres(struct svc_rqst *rqstp, u32 *p,
731 struct nfsd3_linkres *resp)
732{
733 p = encode_post_op_attr(rqstp, p, &resp->fh);
734 p = encode_wcc_data(rqstp, p, &resp->tfh);
735 return xdr_ressize_check(rqstp, p);
736}
737
738
739int
740nfs3svc_encode_readdirres(struct svc_rqst *rqstp, u32 *p,
741 struct nfsd3_readdirres *resp)
742{
743 p = encode_post_op_attr(rqstp, p, &resp->fh);
744
745 if (resp->status == 0) {
746
747 memcpy(p, resp->verf, 8); p += 2;
748 xdr_ressize_check(rqstp, p);
749 if (rqstp->rq_res.head[0].iov_len + (2<<2) > PAGE_SIZE)
750 return 1;
751 rqstp->rq_res.page_len = (resp->count) << 2;
752
753
754 rqstp->rq_restailpage = 0;
755 rqstp->rq_res.tail[0].iov_base = p;
756 *p++ = 0;
757 *p++ = htonl(resp->common.err == nfserr_eof);
758 rqstp->rq_res.tail[0].iov_len = 2<<2;
759 return 1;
760 } else
761 return xdr_ressize_check(rqstp, p);
762}
763
764static inline u32 *
765encode_entry_baggage(struct nfsd3_readdirres *cd, u32 *p, const char *name,
766 int namlen, ino_t ino)
767{
768 *p++ = xdr_one;
769 p = xdr_encode_hyper(p, ino);
770 p = xdr_encode_array(p, name, namlen);
771
772 cd->offset = p;
773 p = xdr_encode_hyper(p, NFS_OFFSET_MAX);
774
775 return p;
776}
777
778static inline u32 *
779encode_entryplus_baggage(struct nfsd3_readdirres *cd, u32 *p,
780 struct svc_fh *fhp)
781{
782 p = encode_post_op_attr(cd->rqstp, p, fhp);
783 *p++ = xdr_one;
784 p = encode_fh(p, fhp);
785 fh_put(fhp);
786 return p;
787}
788
789static int
790compose_entry_fh(struct nfsd3_readdirres *cd, struct svc_fh *fhp,
791 const char *name, int namlen)
792{
793 struct svc_export *exp;
794 struct dentry *dparent, *dchild;
795 int rv = 0;
796
797 dparent = cd->fh.fh_dentry;
798 exp = cd->fh.fh_export;
799
800 fh_init(fhp, NFS3_FHSIZE);
801 if (isdotent(name, namlen)) {
802 if (namlen == 2) {
803 dchild = dget_parent(dparent);
804 } else
805 dchild = dget(dparent);
806 } else
807 dchild = lookup_one_len(name, dparent, namlen);
808 if (IS_ERR(dchild))
809 return 1;
810 if (d_mountpoint(dchild) ||
811 fh_compose(fhp, exp, dchild, &cd->fh) != 0 ||
812 !dchild->d_inode)
813 rv = 1;
814 dput(dchild);
815 return rv;
816}
817
818
819
820
821
822
823
824
825
826
827
828#define NFS3_ENTRY_BAGGAGE (2 + 1 + 2 + 1)
829#define NFS3_ENTRYPLUS_BAGGAGE (1 + 21 + 1 + (NFS3_FHSIZE >> 2))
830static int
831encode_entry(struct readdir_cd *ccd, const char *name,
832 int namlen, off_t offset, ino_t ino, unsigned int d_type, int plus)
833{
834 struct nfsd3_readdirres *cd = container_of(ccd, struct nfsd3_readdirres,
835 common);
836 u32 *p = cd->buffer;
837 caddr_t curr_page_addr = NULL;
838 int pn;
839 int slen;
840 int elen;
841 int num_entry_words = 0;
842
843 if (cd->offset) {
844 u64 offset64 = offset;
845
846 if (unlikely(cd->offset1)) {
847
848 *cd->offset = htonl(offset64 >> 32);
849 *cd->offset1 = htonl(offset64 & 0xffffffff);
850 cd->offset1 = NULL;
851 } else {
852 xdr_encode_hyper(cd->offset, (u64) offset);
853 }
854 }
855
856
857
858
859
860
861
862 if (namlen > NFS3_MAXNAMLEN)
863 namlen = NFS3_MAXNAMLEN;
864
865 slen = XDR_QUADLEN(namlen);
866 elen = slen + NFS3_ENTRY_BAGGAGE
867 + (plus? NFS3_ENTRYPLUS_BAGGAGE : 0);
868
869 if (cd->buflen < elen) {
870 cd->common.err = nfserr_toosmall;
871 return -EINVAL;
872 }
873
874
875 for (pn=1; pn < cd->rqstp->rq_resused; pn++) {
876 curr_page_addr = page_address(cd->rqstp->rq_respages[pn]);
877
878 if (((caddr_t)cd->buffer >= curr_page_addr) &&
879 ((caddr_t)cd->buffer < curr_page_addr + PAGE_SIZE))
880 break;
881 }
882
883 if ((caddr_t)(cd->buffer + elen) < (curr_page_addr + PAGE_SIZE)) {
884
885
886 p = encode_entry_baggage(cd, p, name, namlen, ino);
887
888
889 if (plus) {
890 struct svc_fh fh;
891
892 if (compose_entry_fh(cd, &fh, name, namlen) > 0) {
893 *p++ = 0;
894 *p++ = 0;
895 } else
896 p = encode_entryplus_baggage(cd, p, &fh);
897 }
898 num_entry_words = p - cd->buffer;
899 } else if (cd->rqstp->rq_respages[pn+1] != NULL) {
900
901
902 u32 *p1, *tmp;
903 int len1, len2;
904
905
906 p1 = tmp = page_address(cd->rqstp->rq_respages[pn+1]);
907
908 p1 = encode_entry_baggage(cd, p1, name, namlen, ino);
909
910
911 if (plus) {
912 struct svc_fh fh;
913
914 if (compose_entry_fh(cd, &fh, name, namlen) > 0) {
915
916 *p1++ = 0;
917 *p1++ = 0;
918 } else
919 p1 = encode_entryplus_baggage(cd, p1, &fh);
920 }
921
922
923 num_entry_words = p1 - tmp;
924 len1 = curr_page_addr + PAGE_SIZE - (caddr_t)cd->buffer;
925 if ((num_entry_words << 2) < len1) {
926
927
928
929 memmove(p, tmp, num_entry_words << 2);
930 p += num_entry_words;
931
932
933 cd->offset = cd->buffer + (cd->offset - tmp);
934 } else {
935 unsigned int offset_r = (cd->offset - tmp) << 2;
936
937
938
939
940
941
942
943
944 if (offset_r + 8 <= len1) {
945 cd->offset = p + (cd->offset - tmp);
946 } else if (offset_r >= len1) {
947 cd->offset -= len1 >> 2;
948 } else {
949
950 BUG_ON(offset_r != len1 - 4);
951 cd->offset = p + (cd->offset - tmp);
952 cd->offset1 = tmp;
953 }
954
955 len2 = (num_entry_words << 2) - len1;
956
957
958 memmove(p, tmp, len1);
959 memmove(tmp, (caddr_t)tmp+len1, len2);
960
961 p = tmp + (len2 >> 2);
962 }
963 }
964 else {
965 cd->common.err = nfserr_toosmall;
966 return -EINVAL;
967 }
968
969 cd->buflen -= num_entry_words;
970 cd->buffer = p;
971 cd->common.err = nfs_ok;
972 return 0;
973
974}
975
976int
977nfs3svc_encode_entry(struct readdir_cd *cd, const char *name,
978 int namlen, loff_t offset, ino_t ino, unsigned int d_type)
979{
980 return encode_entry(cd, name, namlen, offset, ino, d_type, 0);
981}
982
983int
984nfs3svc_encode_entry_plus(struct readdir_cd *cd, const char *name,
985 int namlen, loff_t offset, ino_t ino, unsigned int d_type)
986{
987 return encode_entry(cd, name, namlen, offset, ino, d_type, 1);
988}
989
990
991int
992nfs3svc_encode_fsstatres(struct svc_rqst *rqstp, u32 *p,
993 struct nfsd3_fsstatres *resp)
994{
995 struct kstatfs *s = &resp->stats;
996 u64 bs = s->f_bsize;
997
998 *p++ = xdr_zero;
999
1000 if (resp->status == 0) {
1001 p = xdr_encode_hyper(p, bs * s->f_blocks);
1002 p = xdr_encode_hyper(p, bs * s->f_bfree);
1003 p = xdr_encode_hyper(p, bs * s->f_bavail);
1004 p = xdr_encode_hyper(p, s->f_files);
1005 p = xdr_encode_hyper(p, s->f_ffree);
1006 p = xdr_encode_hyper(p, s->f_ffree);
1007 *p++ = htonl(resp->invarsec);
1008 }
1009 return xdr_ressize_check(rqstp, p);
1010}
1011
1012
1013int
1014nfs3svc_encode_fsinfores(struct svc_rqst *rqstp, u32 *p,
1015 struct nfsd3_fsinfores *resp)
1016{
1017 *p++ = xdr_zero;
1018
1019 if (resp->status == 0) {
1020 *p++ = htonl(resp->f_rtmax);
1021 *p++ = htonl(resp->f_rtpref);
1022 *p++ = htonl(resp->f_rtmult);
1023 *p++ = htonl(resp->f_wtmax);
1024 *p++ = htonl(resp->f_wtpref);
1025 *p++ = htonl(resp->f_wtmult);
1026 *p++ = htonl(resp->f_dtpref);
1027 p = xdr_encode_hyper(p, resp->f_maxfilesize);
1028 *p++ = xdr_one;
1029 *p++ = xdr_zero;
1030 *p++ = htonl(resp->f_properties);
1031 }
1032
1033 return xdr_ressize_check(rqstp, p);
1034}
1035
1036
1037int
1038nfs3svc_encode_pathconfres(struct svc_rqst *rqstp, u32 *p,
1039 struct nfsd3_pathconfres *resp)
1040{
1041 *p++ = xdr_zero;
1042
1043 if (resp->status == 0) {
1044 *p++ = htonl(resp->p_link_max);
1045 *p++ = htonl(resp->p_name_max);
1046 *p++ = htonl(resp->p_no_trunc);
1047 *p++ = htonl(resp->p_chown_restricted);
1048 *p++ = htonl(resp->p_case_insensitive);
1049 *p++ = htonl(resp->p_case_preserving);
1050 }
1051
1052 return xdr_ressize_check(rqstp, p);
1053}
1054
1055
1056int
1057nfs3svc_encode_commitres(struct svc_rqst *rqstp, u32 *p,
1058 struct nfsd3_commitres *resp)
1059{
1060 p = encode_wcc_data(rqstp, p, &resp->fh);
1061
1062 if (resp->status == 0) {
1063 *p++ = htonl(nfssvc_boot.tv_sec);
1064 *p++ = htonl(nfssvc_boot.tv_usec);
1065 }
1066 return xdr_ressize_check(rqstp, p);
1067}
1068
1069
1070
1071
1072int
1073nfs3svc_release_fhandle(struct svc_rqst *rqstp, u32 *p,
1074 struct nfsd3_attrstat *resp)
1075{
1076 fh_put(&resp->fh);
1077 return 1;
1078}
1079
1080int
1081nfs3svc_release_fhandle2(struct svc_rqst *rqstp, u32 *p,
1082 struct nfsd3_fhandle_pair *resp)
1083{
1084 fh_put(&resp->fh1);
1085 fh_put(&resp->fh2);
1086 return 1;
1087}
1088