NFSD: Using min/max/min_t/max_t for calculate
[firefly-linux-kernel-4.4.55.git] / fs / nfsd / nfs3proc.c
1 /*
2  * Process version 3 NFS requests.
3  *
4  * Copyright (C) 1996, 1997, 1998 Olaf Kirch <okir@monad.swb.de>
5  */
6
7 #include <linux/fs.h>
8 #include <linux/ext2_fs.h>
9 #include <linux/magic.h>
10
11 #include "cache.h"
12 #include "xdr3.h"
13 #include "vfs.h"
14
15 #define NFSDDBG_FACILITY                NFSDDBG_PROC
16
17 #define RETURN_STATUS(st)       { resp->status = (st); return (st); }
18
19 static int      nfs3_ftypes[] = {
20         0,                      /* NF3NON */
21         S_IFREG,                /* NF3REG */
22         S_IFDIR,                /* NF3DIR */
23         S_IFBLK,                /* NF3BLK */
24         S_IFCHR,                /* NF3CHR */
25         S_IFLNK,                /* NF3LNK */
26         S_IFSOCK,               /* NF3SOCK */
27         S_IFIFO,                /* NF3FIFO */
28 };
29
30 /*
31  * NULL call.
32  */
33 static __be32
34 nfsd3_proc_null(struct svc_rqst *rqstp, void *argp, void *resp)
35 {
36         return nfs_ok;
37 }
38
39 /*
40  * Get a file's attributes
41  */
42 static __be32
43 nfsd3_proc_getattr(struct svc_rqst *rqstp, struct nfsd_fhandle  *argp,
44                                            struct nfsd3_attrstat *resp)
45 {
46         __be32  nfserr;
47
48         dprintk("nfsd: GETATTR(3)  %s\n",
49                 SVCFH_fmt(&argp->fh));
50
51         fh_copy(&resp->fh, &argp->fh);
52         nfserr = fh_verify(rqstp, &resp->fh, 0,
53                         NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
54         if (nfserr)
55                 RETURN_STATUS(nfserr);
56
57         nfserr = fh_getattr(&resp->fh, &resp->stat);
58
59         RETURN_STATUS(nfserr);
60 }
61
62 /*
63  * Set a file's attributes
64  */
65 static __be32
66 nfsd3_proc_setattr(struct svc_rqst *rqstp, struct nfsd3_sattrargs *argp,
67                                            struct nfsd3_attrstat  *resp)
68 {
69         __be32  nfserr;
70
71         dprintk("nfsd: SETATTR(3)  %s\n",
72                                 SVCFH_fmt(&argp->fh));
73
74         fh_copy(&resp->fh, &argp->fh);
75         nfserr = nfsd_setattr(rqstp, &resp->fh, &argp->attrs,
76                               argp->check_guard, argp->guardtime);
77         RETURN_STATUS(nfserr);
78 }
79
80 /*
81  * Look up a path name component
82  */
83 static __be32
84 nfsd3_proc_lookup(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
85                                           struct nfsd3_diropres  *resp)
86 {
87         __be32  nfserr;
88
89         dprintk("nfsd: LOOKUP(3)   %s %.*s\n",
90                                 SVCFH_fmt(&argp->fh),
91                                 argp->len,
92                                 argp->name);
93
94         fh_copy(&resp->dirfh, &argp->fh);
95         fh_init(&resp->fh, NFS3_FHSIZE);
96
97         nfserr = nfsd_lookup(rqstp, &resp->dirfh,
98                                     argp->name,
99                                     argp->len,
100                                     &resp->fh);
101         RETURN_STATUS(nfserr);
102 }
103
104 /*
105  * Check file access
106  */
107 static __be32
108 nfsd3_proc_access(struct svc_rqst *rqstp, struct nfsd3_accessargs *argp,
109                                           struct nfsd3_accessres *resp)
110 {
111         __be32  nfserr;
112
113         dprintk("nfsd: ACCESS(3)   %s 0x%x\n",
114                                 SVCFH_fmt(&argp->fh),
115                                 argp->access);
116
117         fh_copy(&resp->fh, &argp->fh);
118         resp->access = argp->access;
119         nfserr = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
120         RETURN_STATUS(nfserr);
121 }
122
123 /*
124  * Read a symlink.
125  */
126 static __be32
127 nfsd3_proc_readlink(struct svc_rqst *rqstp, struct nfsd3_readlinkargs *argp,
128                                            struct nfsd3_readlinkres *resp)
129 {
130         __be32 nfserr;
131
132         dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp->fh));
133
134         /* Read the symlink. */
135         fh_copy(&resp->fh, &argp->fh);
136         resp->len = NFS3_MAXPATHLEN;
137         nfserr = nfsd_readlink(rqstp, &resp->fh, argp->buffer, &resp->len);
138         RETURN_STATUS(nfserr);
139 }
140
141 /*
142  * Read a portion of a file.
143  */
144 static __be32
145 nfsd3_proc_read(struct svc_rqst *rqstp, struct nfsd3_readargs *argp,
146                                         struct nfsd3_readres  *resp)
147 {
148         __be32  nfserr;
149         u32     max_blocksize = svc_max_payload(rqstp);
150
151         dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
152                                 SVCFH_fmt(&argp->fh),
153                                 (unsigned long) argp->count,
154                                 (unsigned long long) argp->offset);
155
156         /* Obtain buffer pointer for payload.
157          * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
158          * + 1 (xdr opaque byte count) = 26
159          */
160         resp->count = min(argp->count, max_blocksize);
161         svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
162
163         fh_copy(&resp->fh, &argp->fh);
164         nfserr = nfsd_read(rqstp, &resp->fh,
165                                   argp->offset,
166                                   rqstp->rq_vec, argp->vlen,
167                                   &resp->count);
168         if (nfserr == 0) {
169                 struct inode    *inode = resp->fh.fh_dentry->d_inode;
170
171                 resp->eof = (argp->offset + resp->count) >= inode->i_size;
172         }
173
174         RETURN_STATUS(nfserr);
175 }
176
177 /*
178  * Write data to a file
179  */
180 static __be32
181 nfsd3_proc_write(struct svc_rqst *rqstp, struct nfsd3_writeargs *argp,
182                                          struct nfsd3_writeres  *resp)
183 {
184         __be32  nfserr;
185         unsigned long cnt = argp->len;
186
187         dprintk("nfsd: WRITE(3)    %s %d bytes at %Lu%s\n",
188                                 SVCFH_fmt(&argp->fh),
189                                 argp->len,
190                                 (unsigned long long) argp->offset,
191                                 argp->stable? " stable" : "");
192
193         fh_copy(&resp->fh, &argp->fh);
194         resp->committed = argp->stable;
195         nfserr = nfsd_write(rqstp, &resp->fh, NULL,
196                                    argp->offset,
197                                    rqstp->rq_vec, argp->vlen,
198                                    &cnt,
199                                    &resp->committed);
200         resp->count = cnt;
201         RETURN_STATUS(nfserr);
202 }
203
204 /*
205  * With NFSv3, CREATE processing is a lot easier than with NFSv2.
206  * At least in theory; we'll see how it fares in practice when the
207  * first reports about SunOS compatibility problems start to pour in...
208  */
209 static __be32
210 nfsd3_proc_create(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
211                                           struct nfsd3_diropres   *resp)
212 {
213         svc_fh          *dirfhp, *newfhp = NULL;
214         struct iattr    *attr;
215         __be32          nfserr;
216
217         dprintk("nfsd: CREATE(3)   %s %.*s\n",
218                                 SVCFH_fmt(&argp->fh),
219                                 argp->len,
220                                 argp->name);
221
222         dirfhp = fh_copy(&resp->dirfh, &argp->fh);
223         newfhp = fh_init(&resp->fh, NFS3_FHSIZE);
224         attr   = &argp->attrs;
225
226         /* Get the directory inode */
227         nfserr = fh_verify(rqstp, dirfhp, S_IFDIR, NFSD_MAY_CREATE);
228         if (nfserr)
229                 RETURN_STATUS(nfserr);
230
231         /* Unfudge the mode bits */
232         attr->ia_mode &= ~S_IFMT;
233         if (!(attr->ia_valid & ATTR_MODE)) { 
234                 attr->ia_valid |= ATTR_MODE;
235                 attr->ia_mode = S_IFREG;
236         } else {
237                 attr->ia_mode = (attr->ia_mode & ~S_IFMT) | S_IFREG;
238         }
239
240         /* Now create the file and set attributes */
241         nfserr = do_nfsd_create(rqstp, dirfhp, argp->name, argp->len,
242                                 attr, newfhp,
243                                 argp->createmode, (u32 *)argp->verf, NULL, NULL);
244
245         RETURN_STATUS(nfserr);
246 }
247
248 /*
249  * Make directory. This operation is not idempotent.
250  */
251 static __be32
252 nfsd3_proc_mkdir(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
253                                          struct nfsd3_diropres   *resp)
254 {
255         __be32  nfserr;
256
257         dprintk("nfsd: MKDIR(3)    %s %.*s\n",
258                                 SVCFH_fmt(&argp->fh),
259                                 argp->len,
260                                 argp->name);
261
262         argp->attrs.ia_valid &= ~ATTR_SIZE;
263         fh_copy(&resp->dirfh, &argp->fh);
264         fh_init(&resp->fh, NFS3_FHSIZE);
265         nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
266                                     &argp->attrs, S_IFDIR, 0, &resp->fh);
267         fh_unlock(&resp->dirfh);
268         RETURN_STATUS(nfserr);
269 }
270
271 static __be32
272 nfsd3_proc_symlink(struct svc_rqst *rqstp, struct nfsd3_symlinkargs *argp,
273                                            struct nfsd3_diropres    *resp)
274 {
275         __be32  nfserr;
276
277         dprintk("nfsd: SYMLINK(3)  %s %.*s -> %.*s\n",
278                                 SVCFH_fmt(&argp->ffh),
279                                 argp->flen, argp->fname,
280                                 argp->tlen, argp->tname);
281
282         fh_copy(&resp->dirfh, &argp->ffh);
283         fh_init(&resp->fh, NFS3_FHSIZE);
284         nfserr = nfsd_symlink(rqstp, &resp->dirfh, argp->fname, argp->flen,
285                                                    argp->tname, argp->tlen,
286                                                    &resp->fh, &argp->attrs);
287         RETURN_STATUS(nfserr);
288 }
289
290 /*
291  * Make socket/fifo/device.
292  */
293 static __be32
294 nfsd3_proc_mknod(struct svc_rqst *rqstp, struct nfsd3_mknodargs *argp,
295                                          struct nfsd3_diropres  *resp)
296 {
297         __be32  nfserr;
298         int type;
299         dev_t   rdev = 0;
300
301         dprintk("nfsd: MKNOD(3)    %s %.*s\n",
302                                 SVCFH_fmt(&argp->fh),
303                                 argp->len,
304                                 argp->name);
305
306         fh_copy(&resp->dirfh, &argp->fh);
307         fh_init(&resp->fh, NFS3_FHSIZE);
308
309         if (argp->ftype == 0 || argp->ftype >= NF3BAD)
310                 RETURN_STATUS(nfserr_inval);
311         if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) {
312                 rdev = MKDEV(argp->major, argp->minor);
313                 if (MAJOR(rdev) != argp->major ||
314                     MINOR(rdev) != argp->minor)
315                         RETURN_STATUS(nfserr_inval);
316         } else
317                 if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO)
318                         RETURN_STATUS(nfserr_inval);
319
320         type = nfs3_ftypes[argp->ftype];
321         nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
322                                     &argp->attrs, type, rdev, &resp->fh);
323         fh_unlock(&resp->dirfh);
324         RETURN_STATUS(nfserr);
325 }
326
327 /*
328  * Remove file/fifo/socket etc.
329  */
330 static __be32
331 nfsd3_proc_remove(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
332                                           struct nfsd3_attrstat  *resp)
333 {
334         __be32  nfserr;
335
336         dprintk("nfsd: REMOVE(3)   %s %.*s\n",
337                                 SVCFH_fmt(&argp->fh),
338                                 argp->len,
339                                 argp->name);
340
341         /* Unlink. -S_IFDIR means file must not be a directory */
342         fh_copy(&resp->fh, &argp->fh);
343         nfserr = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR, argp->name, argp->len);
344         fh_unlock(&resp->fh);
345         RETURN_STATUS(nfserr);
346 }
347
348 /*
349  * Remove a directory
350  */
351 static __be32
352 nfsd3_proc_rmdir(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
353                                          struct nfsd3_attrstat  *resp)
354 {
355         __be32  nfserr;
356
357         dprintk("nfsd: RMDIR(3)    %s %.*s\n",
358                                 SVCFH_fmt(&argp->fh),
359                                 argp->len,
360                                 argp->name);
361
362         fh_copy(&resp->fh, &argp->fh);
363         nfserr = nfsd_unlink(rqstp, &resp->fh, S_IFDIR, argp->name, argp->len);
364         fh_unlock(&resp->fh);
365         RETURN_STATUS(nfserr);
366 }
367
368 static __be32
369 nfsd3_proc_rename(struct svc_rqst *rqstp, struct nfsd3_renameargs *argp,
370                                           struct nfsd3_renameres  *resp)
371 {
372         __be32  nfserr;
373
374         dprintk("nfsd: RENAME(3)   %s %.*s ->\n",
375                                 SVCFH_fmt(&argp->ffh),
376                                 argp->flen,
377                                 argp->fname);
378         dprintk("nfsd: -> %s %.*s\n",
379                                 SVCFH_fmt(&argp->tfh),
380                                 argp->tlen,
381                                 argp->tname);
382
383         fh_copy(&resp->ffh, &argp->ffh);
384         fh_copy(&resp->tfh, &argp->tfh);
385         nfserr = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
386                                     &resp->tfh, argp->tname, argp->tlen);
387         RETURN_STATUS(nfserr);
388 }
389
390 static __be32
391 nfsd3_proc_link(struct svc_rqst *rqstp, struct nfsd3_linkargs *argp,
392                                         struct nfsd3_linkres  *resp)
393 {
394         __be32  nfserr;
395
396         dprintk("nfsd: LINK(3)     %s ->\n",
397                                 SVCFH_fmt(&argp->ffh));
398         dprintk("nfsd:   -> %s %.*s\n",
399                                 SVCFH_fmt(&argp->tfh),
400                                 argp->tlen,
401                                 argp->tname);
402
403         fh_copy(&resp->fh,  &argp->ffh);
404         fh_copy(&resp->tfh, &argp->tfh);
405         nfserr = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
406                                   &resp->fh);
407         RETURN_STATUS(nfserr);
408 }
409
410 /*
411  * Read a portion of a directory.
412  */
413 static __be32
414 nfsd3_proc_readdir(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
415                                            struct nfsd3_readdirres  *resp)
416 {
417         __be32          nfserr;
418         int             count;
419
420         dprintk("nfsd: READDIR(3)  %s %d bytes at %d\n",
421                                 SVCFH_fmt(&argp->fh),
422                                 argp->count, (u32) argp->cookie);
423
424         /* Make sure we've room for the NULL ptr & eof flag, and shrink to
425          * client read size */
426         count = (argp->count >> 2) - 2;
427
428         /* Read directory and encode entries on the fly */
429         fh_copy(&resp->fh, &argp->fh);
430
431         resp->buflen = count;
432         resp->common.err = nfs_ok;
433         resp->buffer = argp->buffer;
434         resp->rqstp = rqstp;
435         nfserr = nfsd_readdir(rqstp, &resp->fh, (loff_t*) &argp->cookie, 
436                                         &resp->common, nfs3svc_encode_entry);
437         memcpy(resp->verf, argp->verf, 8);
438         resp->count = resp->buffer - argp->buffer;
439         if (resp->offset)
440                 xdr_encode_hyper(resp->offset, argp->cookie);
441
442         RETURN_STATUS(nfserr);
443 }
444
445 /*
446  * Read a portion of a directory, including file handles and attrs.
447  * For now, we choose to ignore the dircount parameter.
448  */
449 static __be32
450 nfsd3_proc_readdirplus(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
451                                                struct nfsd3_readdirres  *resp)
452 {
453         __be32  nfserr;
454         int     count = 0;
455         loff_t  offset;
456         struct page **p;
457         caddr_t page_addr = NULL;
458
459         dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
460                                 SVCFH_fmt(&argp->fh),
461                                 argp->count, (u32) argp->cookie);
462
463         /* Convert byte count to number of words (i.e. >> 2),
464          * and reserve room for the NULL ptr & eof flag (-2 words) */
465         resp->count = (argp->count >> 2) - 2;
466
467         /* Read directory and encode entries on the fly */
468         fh_copy(&resp->fh, &argp->fh);
469
470         resp->common.err = nfs_ok;
471         resp->buffer = argp->buffer;
472         resp->buflen = resp->count;
473         resp->rqstp = rqstp;
474         offset = argp->cookie;
475         nfserr = nfsd_readdir(rqstp, &resp->fh,
476                                      &offset,
477                                      &resp->common,
478                                      nfs3svc_encode_entry_plus);
479         memcpy(resp->verf, argp->verf, 8);
480         for (p = rqstp->rq_respages + 1; p < rqstp->rq_next_page; p++) {
481                 page_addr = page_address(*p);
482
483                 if (((caddr_t)resp->buffer >= page_addr) &&
484                     ((caddr_t)resp->buffer < page_addr + PAGE_SIZE)) {
485                         count += (caddr_t)resp->buffer - page_addr;
486                         break;
487                 }
488                 count += PAGE_SIZE;
489         }
490         resp->count = count >> 2;
491         if (resp->offset) {
492                 if (unlikely(resp->offset1)) {
493                         /* we ended up with offset on a page boundary */
494                         *resp->offset = htonl(offset >> 32);
495                         *resp->offset1 = htonl(offset & 0xffffffff);
496                         resp->offset1 = NULL;
497                 } else {
498                         xdr_encode_hyper(resp->offset, offset);
499                 }
500         }
501
502         RETURN_STATUS(nfserr);
503 }
504
505 /*
506  * Get file system stats
507  */
508 static __be32
509 nfsd3_proc_fsstat(struct svc_rqst * rqstp, struct nfsd_fhandle    *argp,
510                                            struct nfsd3_fsstatres *resp)
511 {
512         __be32  nfserr;
513
514         dprintk("nfsd: FSSTAT(3)   %s\n",
515                                 SVCFH_fmt(&argp->fh));
516
517         nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
518         fh_put(&argp->fh);
519         RETURN_STATUS(nfserr);
520 }
521
522 /*
523  * Get file system info
524  */
525 static __be32
526 nfsd3_proc_fsinfo(struct svc_rqst * rqstp, struct nfsd_fhandle    *argp,
527                                            struct nfsd3_fsinfores *resp)
528 {
529         __be32  nfserr;
530         u32     max_blocksize = svc_max_payload(rqstp);
531
532         dprintk("nfsd: FSINFO(3)   %s\n",
533                                 SVCFH_fmt(&argp->fh));
534
535         resp->f_rtmax  = max_blocksize;
536         resp->f_rtpref = max_blocksize;
537         resp->f_rtmult = PAGE_SIZE;
538         resp->f_wtmax  = max_blocksize;
539         resp->f_wtpref = max_blocksize;
540         resp->f_wtmult = PAGE_SIZE;
541         resp->f_dtpref = PAGE_SIZE;
542         resp->f_maxfilesize = ~(u32) 0;
543         resp->f_properties = NFS3_FSF_DEFAULT;
544
545         nfserr = fh_verify(rqstp, &argp->fh, 0,
546                         NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
547
548         /* Check special features of the file system. May request
549          * different read/write sizes for file systems known to have
550          * problems with large blocks */
551         if (nfserr == 0) {
552                 struct super_block *sb = argp->fh.fh_dentry->d_inode->i_sb;
553
554                 /* Note that we don't care for remote fs's here */
555                 if (sb->s_magic == MSDOS_SUPER_MAGIC) {
556                         resp->f_properties = NFS3_FSF_BILLYBOY;
557                 }
558                 resp->f_maxfilesize = sb->s_maxbytes;
559         }
560
561         fh_put(&argp->fh);
562         RETURN_STATUS(nfserr);
563 }
564
565 /*
566  * Get pathconf info for the specified file
567  */
568 static __be32
569 nfsd3_proc_pathconf(struct svc_rqst * rqstp, struct nfsd_fhandle      *argp,
570                                              struct nfsd3_pathconfres *resp)
571 {
572         __be32  nfserr;
573
574         dprintk("nfsd: PATHCONF(3) %s\n",
575                                 SVCFH_fmt(&argp->fh));
576
577         /* Set default pathconf */
578         resp->p_link_max = 255;         /* at least */
579         resp->p_name_max = 255;         /* at least */
580         resp->p_no_trunc = 0;
581         resp->p_chown_restricted = 1;
582         resp->p_case_insensitive = 0;
583         resp->p_case_preserving = 1;
584
585         nfserr = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
586
587         if (nfserr == 0) {
588                 struct super_block *sb = argp->fh.fh_dentry->d_inode->i_sb;
589
590                 /* Note that we don't care for remote fs's here */
591                 switch (sb->s_magic) {
592                 case EXT2_SUPER_MAGIC:
593                         resp->p_link_max = EXT2_LINK_MAX;
594                         resp->p_name_max = EXT2_NAME_LEN;
595                         break;
596                 case MSDOS_SUPER_MAGIC:
597                         resp->p_case_insensitive = 1;
598                         resp->p_case_preserving  = 0;
599                         break;
600                 }
601         }
602
603         fh_put(&argp->fh);
604         RETURN_STATUS(nfserr);
605 }
606
607
608 /*
609  * Commit a file (range) to stable storage.
610  */
611 static __be32
612 nfsd3_proc_commit(struct svc_rqst * rqstp, struct nfsd3_commitargs *argp,
613                                            struct nfsd3_commitres  *resp)
614 {
615         __be32  nfserr;
616
617         dprintk("nfsd: COMMIT(3)   %s %u@%Lu\n",
618                                 SVCFH_fmt(&argp->fh),
619                                 argp->count,
620                                 (unsigned long long) argp->offset);
621
622         if (argp->offset > NFS_OFFSET_MAX)
623                 RETURN_STATUS(nfserr_inval);
624
625         fh_copy(&resp->fh, &argp->fh);
626         nfserr = nfsd_commit(rqstp, &resp->fh, argp->offset, argp->count);
627
628         RETURN_STATUS(nfserr);
629 }
630
631
632 /*
633  * NFSv3 Server procedures.
634  * Only the results of non-idempotent operations are cached.
635  */
636 #define nfs3svc_decode_fhandleargs      nfs3svc_decode_fhandle
637 #define nfs3svc_encode_attrstatres      nfs3svc_encode_attrstat
638 #define nfs3svc_encode_wccstatres       nfs3svc_encode_wccstat
639 #define nfsd3_mkdirargs                 nfsd3_createargs
640 #define nfsd3_readdirplusargs           nfsd3_readdirargs
641 #define nfsd3_fhandleargs               nfsd_fhandle
642 #define nfsd3_fhandleres                nfsd3_attrstat
643 #define nfsd3_attrstatres               nfsd3_attrstat
644 #define nfsd3_wccstatres                nfsd3_attrstat
645 #define nfsd3_createres                 nfsd3_diropres
646 #define nfsd3_voidres                   nfsd3_voidargs
647 struct nfsd3_voidargs { int dummy; };
648
649 #define PROC(name, argt, rest, relt, cache, respsize)   \
650  { (svc_procfunc) nfsd3_proc_##name,            \
651    (kxdrproc_t) nfs3svc_decode_##argt##args,    \
652    (kxdrproc_t) nfs3svc_encode_##rest##res,     \
653    (kxdrproc_t) nfs3svc_release_##relt,         \
654    sizeof(struct nfsd3_##argt##args),           \
655    sizeof(struct nfsd3_##rest##res),            \
656    0,                                           \
657    cache,                                       \
658    respsize,                                    \
659  }
660
661 #define ST 1            /* status*/
662 #define FH 17           /* filehandle with length */
663 #define AT 21           /* attributes */
664 #define pAT (1+AT)      /* post attributes - conditional */
665 #define WC (7+pAT)      /* WCC attributes */
666
667 static struct svc_procedure             nfsd_procedures3[22] = {
668         [NFS3PROC_NULL] = {
669                 .pc_func = (svc_procfunc) nfsd3_proc_null,
670                 .pc_encode = (kxdrproc_t) nfs3svc_encode_voidres,
671                 .pc_argsize = sizeof(struct nfsd3_voidargs),
672                 .pc_ressize = sizeof(struct nfsd3_voidres),
673                 .pc_cachetype = RC_NOCACHE,
674                 .pc_xdrressize = ST,
675         },
676         [NFS3PROC_GETATTR] = {
677                 .pc_func = (svc_procfunc) nfsd3_proc_getattr,
678                 .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
679                 .pc_encode = (kxdrproc_t) nfs3svc_encode_attrstatres,
680                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
681                 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
682                 .pc_ressize = sizeof(struct nfsd3_attrstatres),
683                 .pc_cachetype = RC_NOCACHE,
684                 .pc_xdrressize = ST+AT,
685         },
686         [NFS3PROC_SETATTR] = {
687                 .pc_func = (svc_procfunc) nfsd3_proc_setattr,
688                 .pc_decode = (kxdrproc_t) nfs3svc_decode_sattrargs,
689                 .pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres,
690                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
691                 .pc_argsize = sizeof(struct nfsd3_sattrargs),
692                 .pc_ressize = sizeof(struct nfsd3_wccstatres),
693                 .pc_cachetype = RC_REPLBUFF,
694                 .pc_xdrressize = ST+WC,
695         },
696         [NFS3PROC_LOOKUP] = {
697                 .pc_func = (svc_procfunc) nfsd3_proc_lookup,
698                 .pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs,
699                 .pc_encode = (kxdrproc_t) nfs3svc_encode_diropres,
700                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
701                 .pc_argsize = sizeof(struct nfsd3_diropargs),
702                 .pc_ressize = sizeof(struct nfsd3_diropres),
703                 .pc_cachetype = RC_NOCACHE,
704                 .pc_xdrressize = ST+FH+pAT+pAT,
705         },
706         [NFS3PROC_ACCESS] = {
707                 .pc_func = (svc_procfunc) nfsd3_proc_access,
708                 .pc_decode = (kxdrproc_t) nfs3svc_decode_accessargs,
709                 .pc_encode = (kxdrproc_t) nfs3svc_encode_accessres,
710                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
711                 .pc_argsize = sizeof(struct nfsd3_accessargs),
712                 .pc_ressize = sizeof(struct nfsd3_accessres),
713                 .pc_cachetype = RC_NOCACHE,
714                 .pc_xdrressize = ST+pAT+1,
715         },
716         [NFS3PROC_READLINK] = {
717                 .pc_func = (svc_procfunc) nfsd3_proc_readlink,
718                 .pc_decode = (kxdrproc_t) nfs3svc_decode_readlinkargs,
719                 .pc_encode = (kxdrproc_t) nfs3svc_encode_readlinkres,
720                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
721                 .pc_argsize = sizeof(struct nfsd3_readlinkargs),
722                 .pc_ressize = sizeof(struct nfsd3_readlinkres),
723                 .pc_cachetype = RC_NOCACHE,
724                 .pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4,
725         },
726         [NFS3PROC_READ] = {
727                 .pc_func = (svc_procfunc) nfsd3_proc_read,
728                 .pc_decode = (kxdrproc_t) nfs3svc_decode_readargs,
729                 .pc_encode = (kxdrproc_t) nfs3svc_encode_readres,
730                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
731                 .pc_argsize = sizeof(struct nfsd3_readargs),
732                 .pc_ressize = sizeof(struct nfsd3_readres),
733                 .pc_cachetype = RC_NOCACHE,
734                 .pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4,
735         },
736         [NFS3PROC_WRITE] = {
737                 .pc_func = (svc_procfunc) nfsd3_proc_write,
738                 .pc_decode = (kxdrproc_t) nfs3svc_decode_writeargs,
739                 .pc_encode = (kxdrproc_t) nfs3svc_encode_writeres,
740                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
741                 .pc_argsize = sizeof(struct nfsd3_writeargs),
742                 .pc_ressize = sizeof(struct nfsd3_writeres),
743                 .pc_cachetype = RC_REPLBUFF,
744                 .pc_xdrressize = ST+WC+4,
745         },
746         [NFS3PROC_CREATE] = {
747                 .pc_func = (svc_procfunc) nfsd3_proc_create,
748                 .pc_decode = (kxdrproc_t) nfs3svc_decode_createargs,
749                 .pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
750                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
751                 .pc_argsize = sizeof(struct nfsd3_createargs),
752                 .pc_ressize = sizeof(struct nfsd3_createres),
753                 .pc_cachetype = RC_REPLBUFF,
754                 .pc_xdrressize = ST+(1+FH+pAT)+WC,
755         },
756         [NFS3PROC_MKDIR] = {
757                 .pc_func = (svc_procfunc) nfsd3_proc_mkdir,
758                 .pc_decode = (kxdrproc_t) nfs3svc_decode_mkdirargs,
759                 .pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
760                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
761                 .pc_argsize = sizeof(struct nfsd3_mkdirargs),
762                 .pc_ressize = sizeof(struct nfsd3_createres),
763                 .pc_cachetype = RC_REPLBUFF,
764                 .pc_xdrressize = ST+(1+FH+pAT)+WC,
765         },
766         [NFS3PROC_SYMLINK] = {
767                 .pc_func = (svc_procfunc) nfsd3_proc_symlink,
768                 .pc_decode = (kxdrproc_t) nfs3svc_decode_symlinkargs,
769                 .pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
770                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
771                 .pc_argsize = sizeof(struct nfsd3_symlinkargs),
772                 .pc_ressize = sizeof(struct nfsd3_createres),
773                 .pc_cachetype = RC_REPLBUFF,
774                 .pc_xdrressize = ST+(1+FH+pAT)+WC,
775         },
776         [NFS3PROC_MKNOD] = {
777                 .pc_func = (svc_procfunc) nfsd3_proc_mknod,
778                 .pc_decode = (kxdrproc_t) nfs3svc_decode_mknodargs,
779                 .pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
780                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
781                 .pc_argsize = sizeof(struct nfsd3_mknodargs),
782                 .pc_ressize = sizeof(struct nfsd3_createres),
783                 .pc_cachetype = RC_REPLBUFF,
784                 .pc_xdrressize = ST+(1+FH+pAT)+WC,
785         },
786         [NFS3PROC_REMOVE] = {
787                 .pc_func = (svc_procfunc) nfsd3_proc_remove,
788                 .pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs,
789                 .pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres,
790                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
791                 .pc_argsize = sizeof(struct nfsd3_diropargs),
792                 .pc_ressize = sizeof(struct nfsd3_wccstatres),
793                 .pc_cachetype = RC_REPLBUFF,
794                 .pc_xdrressize = ST+WC,
795         },
796         [NFS3PROC_RMDIR] = {
797                 .pc_func = (svc_procfunc) nfsd3_proc_rmdir,
798                 .pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs,
799                 .pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres,
800                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
801                 .pc_argsize = sizeof(struct nfsd3_diropargs),
802                 .pc_ressize = sizeof(struct nfsd3_wccstatres),
803                 .pc_cachetype = RC_REPLBUFF,
804                 .pc_xdrressize = ST+WC,
805         },
806         [NFS3PROC_RENAME] = {
807                 .pc_func = (svc_procfunc) nfsd3_proc_rename,
808                 .pc_decode = (kxdrproc_t) nfs3svc_decode_renameargs,
809                 .pc_encode = (kxdrproc_t) nfs3svc_encode_renameres,
810                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
811                 .pc_argsize = sizeof(struct nfsd3_renameargs),
812                 .pc_ressize = sizeof(struct nfsd3_renameres),
813                 .pc_cachetype = RC_REPLBUFF,
814                 .pc_xdrressize = ST+WC+WC,
815         },
816         [NFS3PROC_LINK] = {
817                 .pc_func = (svc_procfunc) nfsd3_proc_link,
818                 .pc_decode = (kxdrproc_t) nfs3svc_decode_linkargs,
819                 .pc_encode = (kxdrproc_t) nfs3svc_encode_linkres,
820                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
821                 .pc_argsize = sizeof(struct nfsd3_linkargs),
822                 .pc_ressize = sizeof(struct nfsd3_linkres),
823                 .pc_cachetype = RC_REPLBUFF,
824                 .pc_xdrressize = ST+pAT+WC,
825         },
826         [NFS3PROC_READDIR] = {
827                 .pc_func = (svc_procfunc) nfsd3_proc_readdir,
828                 .pc_decode = (kxdrproc_t) nfs3svc_decode_readdirargs,
829                 .pc_encode = (kxdrproc_t) nfs3svc_encode_readdirres,
830                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
831                 .pc_argsize = sizeof(struct nfsd3_readdirargs),
832                 .pc_ressize = sizeof(struct nfsd3_readdirres),
833                 .pc_cachetype = RC_NOCACHE,
834         },
835         [NFS3PROC_READDIRPLUS] = {
836                 .pc_func = (svc_procfunc) nfsd3_proc_readdirplus,
837                 .pc_decode = (kxdrproc_t) nfs3svc_decode_readdirplusargs,
838                 .pc_encode = (kxdrproc_t) nfs3svc_encode_readdirres,
839                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
840                 .pc_argsize = sizeof(struct nfsd3_readdirplusargs),
841                 .pc_ressize = sizeof(struct nfsd3_readdirres),
842                 .pc_cachetype = RC_NOCACHE,
843         },
844         [NFS3PROC_FSSTAT] = {
845                 .pc_func = (svc_procfunc) nfsd3_proc_fsstat,
846                 .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
847                 .pc_encode = (kxdrproc_t) nfs3svc_encode_fsstatres,
848                 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
849                 .pc_ressize = sizeof(struct nfsd3_fsstatres),
850                 .pc_cachetype = RC_NOCACHE,
851                 .pc_xdrressize = ST+pAT+2*6+1,
852         },
853         [NFS3PROC_FSINFO] = {
854                 .pc_func = (svc_procfunc) nfsd3_proc_fsinfo,
855                 .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
856                 .pc_encode = (kxdrproc_t) nfs3svc_encode_fsinfores,
857                 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
858                 .pc_ressize = sizeof(struct nfsd3_fsinfores),
859                 .pc_cachetype = RC_NOCACHE,
860                 .pc_xdrressize = ST+pAT+12,
861         },
862         [NFS3PROC_PATHCONF] = {
863                 .pc_func = (svc_procfunc) nfsd3_proc_pathconf,
864                 .pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
865                 .pc_encode = (kxdrproc_t) nfs3svc_encode_pathconfres,
866                 .pc_argsize = sizeof(struct nfsd3_fhandleargs),
867                 .pc_ressize = sizeof(struct nfsd3_pathconfres),
868                 .pc_cachetype = RC_NOCACHE,
869                 .pc_xdrressize = ST+pAT+6,
870         },
871         [NFS3PROC_COMMIT] = {
872                 .pc_func = (svc_procfunc) nfsd3_proc_commit,
873                 .pc_decode = (kxdrproc_t) nfs3svc_decode_commitargs,
874                 .pc_encode = (kxdrproc_t) nfs3svc_encode_commitres,
875                 .pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
876                 .pc_argsize = sizeof(struct nfsd3_commitargs),
877                 .pc_ressize = sizeof(struct nfsd3_commitres),
878                 .pc_cachetype = RC_NOCACHE,
879                 .pc_xdrressize = ST+WC+2,
880         },
881 };
882
883 struct svc_version      nfsd_version3 = {
884                 .vs_vers        = 3,
885                 .vs_nproc       = 22,
886                 .vs_proc        = nfsd_procedures3,
887                 .vs_dispatch    = nfsd_dispatch,
888                 .vs_xdrsize     = NFS3_SVC_XDRSIZE,
889 };