Linux Audio

Check our new training course

Loading...
v4.6
 
  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
 19static 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 */
 33static __be32
 34nfsd3_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 */
 42static __be32
 43nfsd3_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 */
 65static __be32
 66nfsd3_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 */
 83static __be32
 84nfsd3_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 */
107static __be32
108nfsd3_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 */
126static __be32
127nfsd3_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 */
144static __be32
145nfsd3_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	unsigned long cnt = min(argp->count, max_blocksize);
 
151
152	dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
153				SVCFH_fmt(&argp->fh),
154				(unsigned long) argp->count,
155				(unsigned long long) argp->offset);
156
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
157	/* Obtain buffer pointer for payload.
158	 * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
159	 * + 1 (xdr opaque byte count) = 26
160	 */
161	resp->count = cnt;
162	svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
163
164	fh_copy(&resp->fh, &argp->fh);
165	nfserr = nfsd_read(rqstp, &resp->fh,
166				  argp->offset,
167			   	  rqstp->rq_vec, argp->vlen,
168				  &resp->count);
169	if (nfserr == 0) {
170		struct inode	*inode = d_inode(resp->fh.fh_dentry);
171		resp->eof = nfsd_eof_on_read(cnt, resp->count, argp->offset,
172							inode->i_size);
173	}
174
175	RETURN_STATUS(nfserr);
176}
177
178/*
179 * Write data to a file
180 */
181static __be32
182nfsd3_proc_write(struct svc_rqst *rqstp, struct nfsd3_writeargs *argp,
183					 struct nfsd3_writeres  *resp)
184{
185	__be32	nfserr;
 
186	unsigned long cnt = argp->len;
 
187
188	dprintk("nfsd: WRITE(3)    %s %d bytes at %Lu%s\n",
189				SVCFH_fmt(&argp->fh),
190				argp->len,
191				(unsigned long long) argp->offset,
192				argp->stable? " stable" : "");
193
 
 
 
 
 
194	fh_copy(&resp->fh, &argp->fh);
195	resp->committed = argp->stable;
196	nfserr = nfsd_write(rqstp, &resp->fh, NULL,
197				   argp->offset,
198				   rqstp->rq_vec, argp->vlen,
199				   &cnt,
200				   &resp->committed);
201	resp->count = cnt;
202	RETURN_STATUS(nfserr);
203}
204
205/*
206 * With NFSv3, CREATE processing is a lot easier than with NFSv2.
207 * At least in theory; we'll see how it fares in practice when the
208 * first reports about SunOS compatibility problems start to pour in...
 
 
209 */
210static __be32
211nfsd3_proc_create(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
212					  struct nfsd3_diropres   *resp)
213{
214	svc_fh		*dirfhp, *newfhp = NULL;
215	struct iattr	*attr;
216	__be32		nfserr;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
218	dprintk("nfsd: CREATE(3)   %s %.*s\n",
219				SVCFH_fmt(&argp->fh),
220				argp->len,
221				argp->name);
222
223	dirfhp = fh_copy(&resp->dirfh, &argp->fh);
224	newfhp = fh_init(&resp->fh, NFS3_FHSIZE);
225	attr   = &argp->attrs;
226
227	/* Unfudge the mode bits */
228	attr->ia_mode &= ~S_IFMT;
229	if (!(attr->ia_valid & ATTR_MODE)) { 
230		attr->ia_valid |= ATTR_MODE;
231		attr->ia_mode = S_IFREG;
232	} else {
233		attr->ia_mode = (attr->ia_mode & ~S_IFMT) | S_IFREG;
234	}
235
236	/* Now create the file and set attributes */
237	nfserr = do_nfsd_create(rqstp, dirfhp, argp->name, argp->len,
238				attr, newfhp,
239				argp->createmode, (u32 *)argp->verf, NULL, NULL);
240
241	RETURN_STATUS(nfserr);
 
242}
243
244/*
245 * Make directory. This operation is not idempotent.
246 */
247static __be32
248nfsd3_proc_mkdir(struct svc_rqst *rqstp, struct nfsd3_createargs *argp,
249					 struct nfsd3_diropres   *resp)
250{
251	__be32	nfserr;
 
 
 
 
252
253	dprintk("nfsd: MKDIR(3)    %s %.*s\n",
254				SVCFH_fmt(&argp->fh),
255				argp->len,
256				argp->name);
257
258	argp->attrs.ia_valid &= ~ATTR_SIZE;
259	fh_copy(&resp->dirfh, &argp->fh);
260	fh_init(&resp->fh, NFS3_FHSIZE);
261	nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
262				    &argp->attrs, S_IFDIR, 0, &resp->fh);
263	fh_unlock(&resp->dirfh);
264	RETURN_STATUS(nfserr);
265}
266
267static __be32
268nfsd3_proc_symlink(struct svc_rqst *rqstp, struct nfsd3_symlinkargs *argp,
269					   struct nfsd3_diropres    *resp)
270{
271	__be32	nfserr;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
272
273	dprintk("nfsd: SYMLINK(3)  %s %.*s -> %.*s\n",
274				SVCFH_fmt(&argp->ffh),
275				argp->flen, argp->fname,
276				argp->tlen, argp->tname);
277
278	fh_copy(&resp->dirfh, &argp->ffh);
279	fh_init(&resp->fh, NFS3_FHSIZE);
280	nfserr = nfsd_symlink(rqstp, &resp->dirfh, argp->fname, argp->flen,
281						   argp->tname, &resp->fh);
282	RETURN_STATUS(nfserr);
 
 
283}
284
285/*
286 * Make socket/fifo/device.
287 */
288static __be32
289nfsd3_proc_mknod(struct svc_rqst *rqstp, struct nfsd3_mknodargs *argp,
290					 struct nfsd3_diropres  *resp)
291{
292	__be32	nfserr;
 
 
 
 
293	int type;
294	dev_t	rdev = 0;
295
296	dprintk("nfsd: MKNOD(3)    %s %.*s\n",
297				SVCFH_fmt(&argp->fh),
298				argp->len,
299				argp->name);
300
301	fh_copy(&resp->dirfh, &argp->fh);
302	fh_init(&resp->fh, NFS3_FHSIZE);
303
304	if (argp->ftype == 0 || argp->ftype >= NF3BAD)
305		RETURN_STATUS(nfserr_inval);
306	if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) {
307		rdev = MKDEV(argp->major, argp->minor);
308		if (MAJOR(rdev) != argp->major ||
309		    MINOR(rdev) != argp->minor)
310			RETURN_STATUS(nfserr_inval);
311	} else
312		if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO)
313			RETURN_STATUS(nfserr_inval);
 
 
 
314
315	type = nfs3_ftypes[argp->ftype];
316	nfserr = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
317				    &argp->attrs, type, rdev, &resp->fh);
318	fh_unlock(&resp->dirfh);
319	RETURN_STATUS(nfserr);
320}
321
322/*
323 * Remove file/fifo/socket etc.
324 */
325static __be32
326nfsd3_proc_remove(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
327					  struct nfsd3_attrstat  *resp)
328{
329	__be32	nfserr;
 
330
331	dprintk("nfsd: REMOVE(3)   %s %.*s\n",
332				SVCFH_fmt(&argp->fh),
333				argp->len,
334				argp->name);
335
336	/* Unlink. -S_IFDIR means file must not be a directory */
337	fh_copy(&resp->fh, &argp->fh);
338	nfserr = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR, argp->name, argp->len);
339	fh_unlock(&resp->fh);
340	RETURN_STATUS(nfserr);
341}
342
343/*
344 * Remove a directory
345 */
346static __be32
347nfsd3_proc_rmdir(struct svc_rqst *rqstp, struct nfsd3_diropargs *argp,
348					 struct nfsd3_attrstat  *resp)
349{
350	__be32	nfserr;
 
351
352	dprintk("nfsd: RMDIR(3)    %s %.*s\n",
353				SVCFH_fmt(&argp->fh),
354				argp->len,
355				argp->name);
356
357	fh_copy(&resp->fh, &argp->fh);
358	nfserr = nfsd_unlink(rqstp, &resp->fh, S_IFDIR, argp->name, argp->len);
359	fh_unlock(&resp->fh);
360	RETURN_STATUS(nfserr);
361}
362
363static __be32
364nfsd3_proc_rename(struct svc_rqst *rqstp, struct nfsd3_renameargs *argp,
365					  struct nfsd3_renameres  *resp)
366{
367	__be32	nfserr;
 
368
369	dprintk("nfsd: RENAME(3)   %s %.*s ->\n",
370				SVCFH_fmt(&argp->ffh),
371				argp->flen,
372				argp->fname);
373	dprintk("nfsd: -> %s %.*s\n",
374				SVCFH_fmt(&argp->tfh),
375				argp->tlen,
376				argp->tname);
377
378	fh_copy(&resp->ffh, &argp->ffh);
379	fh_copy(&resp->tfh, &argp->tfh);
380	nfserr = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
381				    &resp->tfh, argp->tname, argp->tlen);
382	RETURN_STATUS(nfserr);
383}
384
385static __be32
386nfsd3_proc_link(struct svc_rqst *rqstp, struct nfsd3_linkargs *argp,
387					struct nfsd3_linkres  *resp)
388{
389	__be32	nfserr;
 
390
391	dprintk("nfsd: LINK(3)     %s ->\n",
392				SVCFH_fmt(&argp->ffh));
393	dprintk("nfsd:   -> %s %.*s\n",
394				SVCFH_fmt(&argp->tfh),
395				argp->tlen,
396				argp->tname);
397
398	fh_copy(&resp->fh,  &argp->ffh);
399	fh_copy(&resp->tfh, &argp->tfh);
400	nfserr = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
401				  &resp->fh);
402	RETURN_STATUS(nfserr);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403}
404
405/*
406 * Read a portion of a directory.
407 */
408static __be32
409nfsd3_proc_readdir(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
410					   struct nfsd3_readdirres  *resp)
411{
412	__be32		nfserr;
413	int		count;
 
414
415	dprintk("nfsd: READDIR(3)  %s %d bytes at %d\n",
416				SVCFH_fmt(&argp->fh),
417				argp->count, (u32) argp->cookie);
418
419	/* Make sure we've room for the NULL ptr & eof flag, and shrink to
420	 * client read size */
421	count = (argp->count >> 2) - 2;
422
423	/* Read directory and encode entries on the fly */
424	fh_copy(&resp->fh, &argp->fh);
425
426	resp->buflen = count;
427	resp->common.err = nfs_ok;
428	resp->buffer = argp->buffer;
429	resp->rqstp = rqstp;
430	nfserr = nfsd_readdir(rqstp, &resp->fh, (loff_t*) &argp->cookie, 
431					&resp->common, nfs3svc_encode_entry);
 
432	memcpy(resp->verf, argp->verf, 8);
433	resp->count = resp->buffer - argp->buffer;
434	if (resp->offset)
435		xdr_encode_hyper(resp->offset, argp->cookie);
 
436
437	RETURN_STATUS(nfserr);
438}
439
440/*
441 * Read a portion of a directory, including file handles and attrs.
442 * For now, we choose to ignore the dircount parameter.
443 */
444static __be32
445nfsd3_proc_readdirplus(struct svc_rqst *rqstp, struct nfsd3_readdirargs *argp,
446					       struct nfsd3_readdirres  *resp)
447{
448	__be32	nfserr;
449	int	count = 0;
450	loff_t	offset;
451	struct page **p;
452	caddr_t	page_addr = NULL;
453
454	dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
455				SVCFH_fmt(&argp->fh),
456				argp->count, (u32) argp->cookie);
457
458	/* Convert byte count to number of words (i.e. >> 2),
459	 * and reserve room for the NULL ptr & eof flag (-2 words) */
460	resp->count = (argp->count >> 2) - 2;
461
462	/* Read directory and encode entries on the fly */
463	fh_copy(&resp->fh, &argp->fh);
464
465	resp->common.err = nfs_ok;
466	resp->buffer = argp->buffer;
467	resp->buflen = resp->count;
468	resp->rqstp = rqstp;
469	offset = argp->cookie;
470
471	nfserr = fh_verify(rqstp, &resp->fh, S_IFDIR, NFSD_MAY_NOP);
472	if (nfserr)
473		RETURN_STATUS(nfserr);
474
475	if (resp->fh.fh_export->ex_flags & NFSEXP_NOREADDIRPLUS)
476		RETURN_STATUS(nfserr_notsupp);
477
478	nfserr = nfsd_readdir(rqstp, &resp->fh,
479				     &offset,
480				     &resp->common,
481				     nfs3svc_encode_entry_plus);
482	memcpy(resp->verf, argp->verf, 8);
483	for (p = rqstp->rq_respages + 1; p < rqstp->rq_next_page; p++) {
484		page_addr = page_address(*p);
485
486		if (((caddr_t)resp->buffer >= page_addr) &&
487		    ((caddr_t)resp->buffer < page_addr + PAGE_SIZE)) {
488			count += (caddr_t)resp->buffer - page_addr;
489			break;
490		}
491		count += PAGE_SIZE;
492	}
493	resp->count = count >> 2;
494	if (resp->offset) {
495		if (unlikely(resp->offset1)) {
496			/* we ended up with offset on a page boundary */
497			*resp->offset = htonl(offset >> 32);
498			*resp->offset1 = htonl(offset & 0xffffffff);
499			resp->offset1 = NULL;
500		} else {
501			xdr_encode_hyper(resp->offset, offset);
502		}
503	}
504
505	RETURN_STATUS(nfserr);
 
506}
507
508/*
509 * Get file system stats
510 */
511static __be32
512nfsd3_proc_fsstat(struct svc_rqst * rqstp, struct nfsd_fhandle    *argp,
513					   struct nfsd3_fsstatres *resp)
514{
515	__be32	nfserr;
 
516
517	dprintk("nfsd: FSSTAT(3)   %s\n",
518				SVCFH_fmt(&argp->fh));
519
520	nfserr = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
521	fh_put(&argp->fh);
522	RETURN_STATUS(nfserr);
523}
524
525/*
526 * Get file system info
527 */
528static __be32
529nfsd3_proc_fsinfo(struct svc_rqst * rqstp, struct nfsd_fhandle    *argp,
530					   struct nfsd3_fsinfores *resp)
531{
532	__be32	nfserr;
 
533	u32	max_blocksize = svc_max_payload(rqstp);
534
535	dprintk("nfsd: FSINFO(3)   %s\n",
536				SVCFH_fmt(&argp->fh));
537
538	resp->f_rtmax  = max_blocksize;
539	resp->f_rtpref = max_blocksize;
540	resp->f_rtmult = PAGE_SIZE;
541	resp->f_wtmax  = max_blocksize;
542	resp->f_wtpref = max_blocksize;
543	resp->f_wtmult = PAGE_SIZE;
544	resp->f_dtpref = PAGE_SIZE;
545	resp->f_maxfilesize = ~(u32) 0;
546	resp->f_properties = NFS3_FSF_DEFAULT;
547
548	nfserr = fh_verify(rqstp, &argp->fh, 0,
549			NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
550
551	/* Check special features of the file system. May request
552	 * different read/write sizes for file systems known to have
553	 * problems with large blocks */
554	if (nfserr == 0) {
555		struct super_block *sb = d_inode(argp->fh.fh_dentry)->i_sb;
556
557		/* Note that we don't care for remote fs's here */
558		if (sb->s_magic == MSDOS_SUPER_MAGIC) {
559			resp->f_properties = NFS3_FSF_BILLYBOY;
560		}
561		resp->f_maxfilesize = sb->s_maxbytes;
562	}
563
564	fh_put(&argp->fh);
565	RETURN_STATUS(nfserr);
566}
567
568/*
569 * Get pathconf info for the specified file
570 */
571static __be32
572nfsd3_proc_pathconf(struct svc_rqst * rqstp, struct nfsd_fhandle      *argp,
573					     struct nfsd3_pathconfres *resp)
574{
575	__be32	nfserr;
 
576
577	dprintk("nfsd: PATHCONF(3) %s\n",
578				SVCFH_fmt(&argp->fh));
579
580	/* Set default pathconf */
581	resp->p_link_max = 255;		/* at least */
582	resp->p_name_max = 255;		/* at least */
583	resp->p_no_trunc = 0;
584	resp->p_chown_restricted = 1;
585	resp->p_case_insensitive = 0;
586	resp->p_case_preserving = 1;
587
588	nfserr = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
589
590	if (nfserr == 0) {
591		struct super_block *sb = d_inode(argp->fh.fh_dentry)->i_sb;
592
593		/* Note that we don't care for remote fs's here */
594		switch (sb->s_magic) {
595		case EXT2_SUPER_MAGIC:
596			resp->p_link_max = EXT2_LINK_MAX;
597			resp->p_name_max = EXT2_NAME_LEN;
598			break;
599		case MSDOS_SUPER_MAGIC:
600			resp->p_case_insensitive = 1;
601			resp->p_case_preserving  = 0;
602			break;
603		}
604	}
605
606	fh_put(&argp->fh);
607	RETURN_STATUS(nfserr);
608}
609
610
611/*
612 * Commit a file (range) to stable storage.
613 */
614static __be32
615nfsd3_proc_commit(struct svc_rqst * rqstp, struct nfsd3_commitargs *argp,
616					   struct nfsd3_commitres  *resp)
617{
618	__be32	nfserr;
 
 
619
620	dprintk("nfsd: COMMIT(3)   %s %u@%Lu\n",
621				SVCFH_fmt(&argp->fh),
622				argp->count,
623				(unsigned long long) argp->offset);
624
625	if (argp->offset > NFS_OFFSET_MAX)
626		RETURN_STATUS(nfserr_inval);
627
628	fh_copy(&resp->fh, &argp->fh);
629	nfserr = nfsd_commit(rqstp, &resp->fh, argp->offset, argp->count);
630
631	RETURN_STATUS(nfserr);
 
 
 
 
 
 
632}
633
634
635/*
636 * NFSv3 Server procedures.
637 * Only the results of non-idempotent operations are cached.
638 */
639#define nfs3svc_decode_fhandleargs	nfs3svc_decode_fhandle
640#define nfs3svc_encode_attrstatres	nfs3svc_encode_attrstat
641#define nfs3svc_encode_wccstatres	nfs3svc_encode_wccstat
642#define nfsd3_mkdirargs			nfsd3_createargs
643#define nfsd3_readdirplusargs		nfsd3_readdirargs
644#define nfsd3_fhandleargs		nfsd_fhandle
645#define nfsd3_fhandleres		nfsd3_attrstat
646#define nfsd3_attrstatres		nfsd3_attrstat
647#define nfsd3_wccstatres		nfsd3_attrstat
648#define nfsd3_createres			nfsd3_diropres
649#define nfsd3_voidres			nfsd3_voidargs
650struct nfsd3_voidargs { int dummy; };
651
652#define PROC(name, argt, rest, relt, cache, respsize)	\
653 { (svc_procfunc) nfsd3_proc_##name,		\
654   (kxdrproc_t) nfs3svc_decode_##argt##args,	\
655   (kxdrproc_t) nfs3svc_encode_##rest##res,	\
656   (kxdrproc_t) nfs3svc_release_##relt,		\
657   sizeof(struct nfsd3_##argt##args),		\
658   sizeof(struct nfsd3_##rest##res),		\
659   0,						\
660   cache,					\
661   respsize,					\
662 }
663
664#define ST 1		/* status*/
665#define FH 17		/* filehandle with length */
666#define AT 21		/* attributes */
667#define pAT (1+AT)	/* post attributes - conditional */
668#define WC (7+pAT)	/* WCC attributes */
669
670static struct svc_procedure		nfsd_procedures3[22] = {
671	[NFS3PROC_NULL] = {
672		.pc_func = (svc_procfunc) nfsd3_proc_null,
673		.pc_encode = (kxdrproc_t) nfs3svc_encode_voidres,
674		.pc_argsize = sizeof(struct nfsd3_voidargs),
675		.pc_ressize = sizeof(struct nfsd3_voidres),
 
 
676		.pc_cachetype = RC_NOCACHE,
677		.pc_xdrressize = ST,
 
678	},
679	[NFS3PROC_GETATTR] = {
680		.pc_func = (svc_procfunc) nfsd3_proc_getattr,
681		.pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
682		.pc_encode = (kxdrproc_t) nfs3svc_encode_attrstatres,
683		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
684		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
 
685		.pc_ressize = sizeof(struct nfsd3_attrstatres),
686		.pc_cachetype = RC_NOCACHE,
687		.pc_xdrressize = ST+AT,
 
688	},
689	[NFS3PROC_SETATTR] = {
690		.pc_func = (svc_procfunc) nfsd3_proc_setattr,
691		.pc_decode = (kxdrproc_t) nfs3svc_decode_sattrargs,
692		.pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres,
693		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
694		.pc_argsize = sizeof(struct nfsd3_sattrargs),
 
695		.pc_ressize = sizeof(struct nfsd3_wccstatres),
696		.pc_cachetype = RC_REPLBUFF,
697		.pc_xdrressize = ST+WC,
 
698	},
699	[NFS3PROC_LOOKUP] = {
700		.pc_func = (svc_procfunc) nfsd3_proc_lookup,
701		.pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs,
702		.pc_encode = (kxdrproc_t) nfs3svc_encode_diropres,
703		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
704		.pc_argsize = sizeof(struct nfsd3_diropargs),
 
705		.pc_ressize = sizeof(struct nfsd3_diropres),
706		.pc_cachetype = RC_NOCACHE,
707		.pc_xdrressize = ST+FH+pAT+pAT,
 
708	},
709	[NFS3PROC_ACCESS] = {
710		.pc_func = (svc_procfunc) nfsd3_proc_access,
711		.pc_decode = (kxdrproc_t) nfs3svc_decode_accessargs,
712		.pc_encode = (kxdrproc_t) nfs3svc_encode_accessres,
713		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
714		.pc_argsize = sizeof(struct nfsd3_accessargs),
 
715		.pc_ressize = sizeof(struct nfsd3_accessres),
716		.pc_cachetype = RC_NOCACHE,
717		.pc_xdrressize = ST+pAT+1,
 
718	},
719	[NFS3PROC_READLINK] = {
720		.pc_func = (svc_procfunc) nfsd3_proc_readlink,
721		.pc_decode = (kxdrproc_t) nfs3svc_decode_readlinkargs,
722		.pc_encode = (kxdrproc_t) nfs3svc_encode_readlinkres,
723		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
724		.pc_argsize = sizeof(struct nfsd3_readlinkargs),
 
725		.pc_ressize = sizeof(struct nfsd3_readlinkres),
726		.pc_cachetype = RC_NOCACHE,
727		.pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4,
 
728	},
729	[NFS3PROC_READ] = {
730		.pc_func = (svc_procfunc) nfsd3_proc_read,
731		.pc_decode = (kxdrproc_t) nfs3svc_decode_readargs,
732		.pc_encode = (kxdrproc_t) nfs3svc_encode_readres,
733		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
734		.pc_argsize = sizeof(struct nfsd3_readargs),
 
735		.pc_ressize = sizeof(struct nfsd3_readres),
736		.pc_cachetype = RC_NOCACHE,
737		.pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4,
 
738	},
739	[NFS3PROC_WRITE] = {
740		.pc_func = (svc_procfunc) nfsd3_proc_write,
741		.pc_decode = (kxdrproc_t) nfs3svc_decode_writeargs,
742		.pc_encode = (kxdrproc_t) nfs3svc_encode_writeres,
743		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
744		.pc_argsize = sizeof(struct nfsd3_writeargs),
 
745		.pc_ressize = sizeof(struct nfsd3_writeres),
746		.pc_cachetype = RC_REPLBUFF,
747		.pc_xdrressize = ST+WC+4,
 
748	},
749	[NFS3PROC_CREATE] = {
750		.pc_func = (svc_procfunc) nfsd3_proc_create,
751		.pc_decode = (kxdrproc_t) nfs3svc_decode_createargs,
752		.pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
753		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
754		.pc_argsize = sizeof(struct nfsd3_createargs),
 
755		.pc_ressize = sizeof(struct nfsd3_createres),
756		.pc_cachetype = RC_REPLBUFF,
757		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 
758	},
759	[NFS3PROC_MKDIR] = {
760		.pc_func = (svc_procfunc) nfsd3_proc_mkdir,
761		.pc_decode = (kxdrproc_t) nfs3svc_decode_mkdirargs,
762		.pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
763		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
764		.pc_argsize = sizeof(struct nfsd3_mkdirargs),
 
765		.pc_ressize = sizeof(struct nfsd3_createres),
766		.pc_cachetype = RC_REPLBUFF,
767		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 
768	},
769	[NFS3PROC_SYMLINK] = {
770		.pc_func = (svc_procfunc) nfsd3_proc_symlink,
771		.pc_decode = (kxdrproc_t) nfs3svc_decode_symlinkargs,
772		.pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
773		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
774		.pc_argsize = sizeof(struct nfsd3_symlinkargs),
 
775		.pc_ressize = sizeof(struct nfsd3_createres),
776		.pc_cachetype = RC_REPLBUFF,
777		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 
778	},
779	[NFS3PROC_MKNOD] = {
780		.pc_func = (svc_procfunc) nfsd3_proc_mknod,
781		.pc_decode = (kxdrproc_t) nfs3svc_decode_mknodargs,
782		.pc_encode = (kxdrproc_t) nfs3svc_encode_createres,
783		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
784		.pc_argsize = sizeof(struct nfsd3_mknodargs),
 
785		.pc_ressize = sizeof(struct nfsd3_createres),
786		.pc_cachetype = RC_REPLBUFF,
787		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 
788	},
789	[NFS3PROC_REMOVE] = {
790		.pc_func = (svc_procfunc) nfsd3_proc_remove,
791		.pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs,
792		.pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres,
793		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
794		.pc_argsize = sizeof(struct nfsd3_diropargs),
 
795		.pc_ressize = sizeof(struct nfsd3_wccstatres),
796		.pc_cachetype = RC_REPLBUFF,
797		.pc_xdrressize = ST+WC,
 
798	},
799	[NFS3PROC_RMDIR] = {
800		.pc_func = (svc_procfunc) nfsd3_proc_rmdir,
801		.pc_decode = (kxdrproc_t) nfs3svc_decode_diropargs,
802		.pc_encode = (kxdrproc_t) nfs3svc_encode_wccstatres,
803		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
804		.pc_argsize = sizeof(struct nfsd3_diropargs),
 
805		.pc_ressize = sizeof(struct nfsd3_wccstatres),
806		.pc_cachetype = RC_REPLBUFF,
807		.pc_xdrressize = ST+WC,
 
808	},
809	[NFS3PROC_RENAME] = {
810		.pc_func = (svc_procfunc) nfsd3_proc_rename,
811		.pc_decode = (kxdrproc_t) nfs3svc_decode_renameargs,
812		.pc_encode = (kxdrproc_t) nfs3svc_encode_renameres,
813		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
814		.pc_argsize = sizeof(struct nfsd3_renameargs),
 
815		.pc_ressize = sizeof(struct nfsd3_renameres),
816		.pc_cachetype = RC_REPLBUFF,
817		.pc_xdrressize = ST+WC+WC,
 
818	},
819	[NFS3PROC_LINK] = {
820		.pc_func = (svc_procfunc) nfsd3_proc_link,
821		.pc_decode = (kxdrproc_t) nfs3svc_decode_linkargs,
822		.pc_encode = (kxdrproc_t) nfs3svc_encode_linkres,
823		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle2,
824		.pc_argsize = sizeof(struct nfsd3_linkargs),
 
825		.pc_ressize = sizeof(struct nfsd3_linkres),
826		.pc_cachetype = RC_REPLBUFF,
827		.pc_xdrressize = ST+pAT+WC,
 
828	},
829	[NFS3PROC_READDIR] = {
830		.pc_func = (svc_procfunc) nfsd3_proc_readdir,
831		.pc_decode = (kxdrproc_t) nfs3svc_decode_readdirargs,
832		.pc_encode = (kxdrproc_t) nfs3svc_encode_readdirres,
833		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
834		.pc_argsize = sizeof(struct nfsd3_readdirargs),
 
835		.pc_ressize = sizeof(struct nfsd3_readdirres),
836		.pc_cachetype = RC_NOCACHE,
 
837	},
838	[NFS3PROC_READDIRPLUS] = {
839		.pc_func = (svc_procfunc) nfsd3_proc_readdirplus,
840		.pc_decode = (kxdrproc_t) nfs3svc_decode_readdirplusargs,
841		.pc_encode = (kxdrproc_t) nfs3svc_encode_readdirres,
842		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
843		.pc_argsize = sizeof(struct nfsd3_readdirplusargs),
 
844		.pc_ressize = sizeof(struct nfsd3_readdirres),
845		.pc_cachetype = RC_NOCACHE,
 
846	},
847	[NFS3PROC_FSSTAT] = {
848		.pc_func = (svc_procfunc) nfsd3_proc_fsstat,
849		.pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
850		.pc_encode = (kxdrproc_t) nfs3svc_encode_fsstatres,
851		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
 
852		.pc_ressize = sizeof(struct nfsd3_fsstatres),
853		.pc_cachetype = RC_NOCACHE,
854		.pc_xdrressize = ST+pAT+2*6+1,
 
855	},
856	[NFS3PROC_FSINFO] = {
857		.pc_func = (svc_procfunc) nfsd3_proc_fsinfo,
858		.pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
859		.pc_encode = (kxdrproc_t) nfs3svc_encode_fsinfores,
860		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
 
861		.pc_ressize = sizeof(struct nfsd3_fsinfores),
862		.pc_cachetype = RC_NOCACHE,
863		.pc_xdrressize = ST+pAT+12,
 
864	},
865	[NFS3PROC_PATHCONF] = {
866		.pc_func = (svc_procfunc) nfsd3_proc_pathconf,
867		.pc_decode = (kxdrproc_t) nfs3svc_decode_fhandleargs,
868		.pc_encode = (kxdrproc_t) nfs3svc_encode_pathconfres,
869		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
 
870		.pc_ressize = sizeof(struct nfsd3_pathconfres),
871		.pc_cachetype = RC_NOCACHE,
872		.pc_xdrressize = ST+pAT+6,
 
873	},
874	[NFS3PROC_COMMIT] = {
875		.pc_func = (svc_procfunc) nfsd3_proc_commit,
876		.pc_decode = (kxdrproc_t) nfs3svc_decode_commitargs,
877		.pc_encode = (kxdrproc_t) nfs3svc_encode_commitres,
878		.pc_release = (kxdrproc_t) nfs3svc_release_fhandle,
879		.pc_argsize = sizeof(struct nfsd3_commitargs),
 
880		.pc_ressize = sizeof(struct nfsd3_commitres),
881		.pc_cachetype = RC_NOCACHE,
882		.pc_xdrressize = ST+WC+2,
 
883	},
884};
885
886struct svc_version	nfsd_version3 = {
887		.vs_vers	= 3,
888		.vs_nproc	= 22,
889		.vs_proc	= nfsd_procedures3,
890		.vs_dispatch	= nfsd_dispatch,
891		.vs_xdrsize	= NFS3_SVC_XDRSIZE,
 
 
892};
v6.2
   1// SPDX-License-Identifier: GPL-2.0
   2/*
   3 * Process version 3 NFS requests.
   4 *
   5 * Copyright (C) 1996, 1997, 1998 Olaf Kirch <okir@monad.swb.de>
   6 */
   7
   8#include <linux/fs.h>
   9#include <linux/ext2_fs.h>
  10#include <linux/magic.h>
  11#include <linux/namei.h>
  12
  13#include "cache.h"
  14#include "xdr3.h"
  15#include "vfs.h"
  16#include "filecache.h"
  17
  18#define NFSDDBG_FACILITY		NFSDDBG_PROC
  19
 
 
  20static int	nfs3_ftypes[] = {
  21	0,			/* NF3NON */
  22	S_IFREG,		/* NF3REG */
  23	S_IFDIR,		/* NF3DIR */
  24	S_IFBLK,		/* NF3BLK */
  25	S_IFCHR,		/* NF3CHR */
  26	S_IFLNK,		/* NF3LNK */
  27	S_IFSOCK,		/* NF3SOCK */
  28	S_IFIFO,		/* NF3FIFO */
  29};
  30
  31/*
  32 * NULL call.
  33 */
  34static __be32
  35nfsd3_proc_null(struct svc_rqst *rqstp)
  36{
  37	return rpc_success;
  38}
  39
  40/*
  41 * Get a file's attributes
  42 */
  43static __be32
  44nfsd3_proc_getattr(struct svc_rqst *rqstp)
 
  45{
  46	struct nfsd_fhandle *argp = rqstp->rq_argp;
  47	struct nfsd3_attrstat *resp = rqstp->rq_resp;
  48
  49	dprintk("nfsd: GETATTR(3)  %s\n",
  50		SVCFH_fmt(&argp->fh));
  51
  52	fh_copy(&resp->fh, &argp->fh);
  53	resp->status = fh_verify(rqstp, &resp->fh, 0,
  54				 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
  55	if (resp->status != nfs_ok)
  56		goto out;
  57
  58	resp->status = fh_getattr(&resp->fh, &resp->stat);
  59out:
  60	return rpc_success;
  61}
  62
  63/*
  64 * Set a file's attributes
  65 */
  66static __be32
  67nfsd3_proc_setattr(struct svc_rqst *rqstp)
 
  68{
  69	struct nfsd3_sattrargs *argp = rqstp->rq_argp;
  70	struct nfsd3_attrstat *resp = rqstp->rq_resp;
  71	struct nfsd_attrs attrs = {
  72		.na_iattr	= &argp->attrs,
  73	};
  74
  75	dprintk("nfsd: SETATTR(3)  %s\n",
  76				SVCFH_fmt(&argp->fh));
  77
  78	fh_copy(&resp->fh, &argp->fh);
  79	resp->status = nfsd_setattr(rqstp, &resp->fh, &attrs,
  80				    argp->check_guard, argp->guardtime);
  81	return rpc_success;
  82}
  83
  84/*
  85 * Look up a path name component
  86 */
  87static __be32
  88nfsd3_proc_lookup(struct svc_rqst *rqstp)
 
  89{
  90	struct nfsd3_diropargs *argp = rqstp->rq_argp;
  91	struct nfsd3_diropres  *resp = rqstp->rq_resp;
  92
  93	dprintk("nfsd: LOOKUP(3)   %s %.*s\n",
  94				SVCFH_fmt(&argp->fh),
  95				argp->len,
  96				argp->name);
  97
  98	fh_copy(&resp->dirfh, &argp->fh);
  99	fh_init(&resp->fh, NFS3_FHSIZE);
 100
 101	resp->status = nfsd_lookup(rqstp, &resp->dirfh,
 102				   argp->name, argp->len,
 103				   &resp->fh);
 104	return rpc_success;
 
 105}
 106
 107/*
 108 * Check file access
 109 */
 110static __be32
 111nfsd3_proc_access(struct svc_rqst *rqstp)
 
 112{
 113	struct nfsd3_accessargs *argp = rqstp->rq_argp;
 114	struct nfsd3_accessres *resp = rqstp->rq_resp;
 115
 116	dprintk("nfsd: ACCESS(3)   %s 0x%x\n",
 117				SVCFH_fmt(&argp->fh),
 118				argp->access);
 119
 120	fh_copy(&resp->fh, &argp->fh);
 121	resp->access = argp->access;
 122	resp->status = nfsd_access(rqstp, &resp->fh, &resp->access, NULL);
 123	return rpc_success;
 124}
 125
 126/*
 127 * Read a symlink.
 128 */
 129static __be32
 130nfsd3_proc_readlink(struct svc_rqst *rqstp)
 
 131{
 132	struct nfsd_fhandle *argp = rqstp->rq_argp;
 133	struct nfsd3_readlinkres *resp = rqstp->rq_resp;
 134
 135	dprintk("nfsd: READLINK(3) %s\n", SVCFH_fmt(&argp->fh));
 136
 137	/* Read the symlink. */
 138	fh_copy(&resp->fh, &argp->fh);
 139	resp->len = NFS3_MAXPATHLEN;
 140	resp->pages = rqstp->rq_next_page++;
 141	resp->status = nfsd_readlink(rqstp, &resp->fh,
 142				     page_address(*resp->pages), &resp->len);
 143	return rpc_success;
 144}
 145
 146/*
 147 * Read a portion of a file.
 148 */
 149static __be32
 150nfsd3_proc_read(struct svc_rqst *rqstp)
 
 151{
 152	struct nfsd3_readargs *argp = rqstp->rq_argp;
 153	struct nfsd3_readres *resp = rqstp->rq_resp;
 154	unsigned int len;
 155	int v;
 156
 157	dprintk("nfsd: READ(3) %s %lu bytes at %Lu\n",
 158				SVCFH_fmt(&argp->fh),
 159				(unsigned long) argp->count,
 160				(unsigned long long) argp->offset);
 161
 162	argp->count = min_t(u32, argp->count, svc_max_payload(rqstp));
 163	argp->count = min_t(u32, argp->count, rqstp->rq_res.buflen);
 164	if (argp->offset > (u64)OFFSET_MAX)
 165		argp->offset = (u64)OFFSET_MAX;
 166	if (argp->offset + argp->count > (u64)OFFSET_MAX)
 167		argp->count = (u64)OFFSET_MAX - argp->offset;
 168
 169	v = 0;
 170	len = argp->count;
 171	resp->pages = rqstp->rq_next_page;
 172	while (len > 0) {
 173		struct page *page = *(rqstp->rq_next_page++);
 174
 175		rqstp->rq_vec[v].iov_base = page_address(page);
 176		rqstp->rq_vec[v].iov_len = min_t(unsigned int, len, PAGE_SIZE);
 177		len -= rqstp->rq_vec[v].iov_len;
 178		v++;
 179	}
 180
 181	/* Obtain buffer pointer for payload.
 182	 * 1 (status) + 22 (post_op_attr) + 1 (count) + 1 (eof)
 183	 * + 1 (xdr opaque byte count) = 26
 184	 */
 185	resp->count = argp->count;
 186	svc_reserve_auth(rqstp, ((1 + NFS3_POST_OP_ATTR_WORDS + 3)<<2) + resp->count +4);
 187
 188	fh_copy(&resp->fh, &argp->fh);
 189	resp->status = nfsd_read(rqstp, &resp->fh, argp->offset,
 190				 rqstp->rq_vec, v, &resp->count, &resp->eof);
 191	return rpc_success;
 
 
 
 
 
 
 
 
 192}
 193
 194/*
 195 * Write data to a file
 196 */
 197static __be32
 198nfsd3_proc_write(struct svc_rqst *rqstp)
 
 199{
 200	struct nfsd3_writeargs *argp = rqstp->rq_argp;
 201	struct nfsd3_writeres *resp = rqstp->rq_resp;
 202	unsigned long cnt = argp->len;
 203	unsigned int nvecs;
 204
 205	dprintk("nfsd: WRITE(3)    %s %d bytes at %Lu%s\n",
 206				SVCFH_fmt(&argp->fh),
 207				argp->len,
 208				(unsigned long long) argp->offset,
 209				argp->stable? " stable" : "");
 210
 211	resp->status = nfserr_fbig;
 212	if (argp->offset > (u64)OFFSET_MAX ||
 213	    argp->offset + argp->len > (u64)OFFSET_MAX)
 214		return rpc_success;
 215
 216	fh_copy(&resp->fh, &argp->fh);
 217	resp->committed = argp->stable;
 218	nvecs = svc_fill_write_vector(rqstp, &argp->payload);
 219
 220	resp->status = nfsd_write(rqstp, &resp->fh, argp->offset,
 221				  rqstp->rq_vec, nvecs, &cnt,
 222				  resp->committed, resp->verf);
 223	resp->count = cnt;
 224	return rpc_success;
 225}
 226
 227/*
 228 * Implement NFSv3's unchecked, guarded, and exclusive CREATE
 229 * semantics for regular files. Except for the created file,
 230 * this operation is stateless on the server.
 231 *
 232 * Upon return, caller must release @fhp and @resfhp.
 233 */
 234static __be32
 235nfsd3_create_file(struct svc_rqst *rqstp, struct svc_fh *fhp,
 236		  struct svc_fh *resfhp, struct nfsd3_createargs *argp)
 237{
 238	struct iattr *iap = &argp->attrs;
 239	struct dentry *parent, *child;
 240	struct nfsd_attrs attrs = {
 241		.na_iattr	= iap,
 242	};
 243	__u32 v_mtime, v_atime;
 244	struct inode *inode;
 245	__be32 status;
 246	int host_err;
 247
 248	if (isdotent(argp->name, argp->len))
 249		return nfserr_exist;
 250	if (!(iap->ia_valid & ATTR_MODE))
 251		iap->ia_mode = 0;
 252
 253	status = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
 254	if (status != nfs_ok)
 255		return status;
 256
 257	parent = fhp->fh_dentry;
 258	inode = d_inode(parent);
 259
 260	host_err = fh_want_write(fhp);
 261	if (host_err)
 262		return nfserrno(host_err);
 263
 264	inode_lock_nested(inode, I_MUTEX_PARENT);
 265
 266	child = lookup_one_len(argp->name, parent, argp->len);
 267	if (IS_ERR(child)) {
 268		status = nfserrno(PTR_ERR(child));
 269		goto out;
 270	}
 271
 272	if (d_really_is_negative(child)) {
 273		status = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
 274		if (status != nfs_ok)
 275			goto out;
 276	}
 277
 278	status = fh_compose(resfhp, fhp->fh_export, child, fhp);
 279	if (status != nfs_ok)
 280		goto out;
 281
 282	v_mtime = 0;
 283	v_atime = 0;
 284	if (argp->createmode == NFS3_CREATE_EXCLUSIVE) {
 285		u32 *verifier = (u32 *)argp->verf;
 286
 287		/*
 288		 * Solaris 7 gets confused (bugid 4218508) if these have
 289		 * the high bit set, as do xfs filesystems without the
 290		 * "bigtime" feature. So just clear the high bits.
 291		 */
 292		v_mtime = verifier[0] & 0x7fffffff;
 293		v_atime = verifier[1] & 0x7fffffff;
 294	}
 295
 296	if (d_really_is_positive(child)) {
 297		status = nfs_ok;
 298
 299		switch (argp->createmode) {
 300		case NFS3_CREATE_UNCHECKED:
 301			if (!d_is_reg(child))
 302				break;
 303			iap->ia_valid &= ATTR_SIZE;
 304			goto set_attr;
 305		case NFS3_CREATE_GUARDED:
 306			status = nfserr_exist;
 307			break;
 308		case NFS3_CREATE_EXCLUSIVE:
 309			if (d_inode(child)->i_mtime.tv_sec == v_mtime &&
 310			    d_inode(child)->i_atime.tv_sec == v_atime &&
 311			    d_inode(child)->i_size == 0) {
 312				break;
 313			}
 314			status = nfserr_exist;
 315		}
 316		goto out;
 317	}
 318
 319	if (!IS_POSIXACL(inode))
 320		iap->ia_mode &= ~current_umask();
 321
 322	fh_fill_pre_attrs(fhp);
 323	host_err = vfs_create(&init_user_ns, inode, child, iap->ia_mode, true);
 324	if (host_err < 0) {
 325		status = nfserrno(host_err);
 326		goto out;
 327	}
 328	fh_fill_post_attrs(fhp);
 329
 330	/* A newly created file already has a file size of zero. */
 331	if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
 332		iap->ia_valid &= ~ATTR_SIZE;
 333	if (argp->createmode == NFS3_CREATE_EXCLUSIVE) {
 334		iap->ia_valid = ATTR_MTIME | ATTR_ATIME |
 335				ATTR_MTIME_SET | ATTR_ATIME_SET;
 336		iap->ia_mtime.tv_sec = v_mtime;
 337		iap->ia_atime.tv_sec = v_atime;
 338		iap->ia_mtime.tv_nsec = 0;
 339		iap->ia_atime.tv_nsec = 0;
 340	}
 341
 342set_attr:
 343	status = nfsd_create_setattr(rqstp, fhp, resfhp, &attrs);
 344
 345out:
 346	inode_unlock(inode);
 347	if (child && !IS_ERR(child))
 348		dput(child);
 349	fh_drop_write(fhp);
 350	return status;
 351}
 352
 353static __be32
 354nfsd3_proc_create(struct svc_rqst *rqstp)
 355{
 356	struct nfsd3_createargs *argp = rqstp->rq_argp;
 357	struct nfsd3_diropres *resp = rqstp->rq_resp;
 358	svc_fh *dirfhp, *newfhp;
 359
 360	dprintk("nfsd: CREATE(3)   %s %.*s\n",
 361				SVCFH_fmt(&argp->fh),
 362				argp->len,
 363				argp->name);
 364
 365	dirfhp = fh_copy(&resp->dirfh, &argp->fh);
 366	newfhp = fh_init(&resp->fh, NFS3_FHSIZE);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 367
 368	resp->status = nfsd3_create_file(rqstp, dirfhp, newfhp, argp);
 369	return rpc_success;
 370}
 371
 372/*
 373 * Make directory. This operation is not idempotent.
 374 */
 375static __be32
 376nfsd3_proc_mkdir(struct svc_rqst *rqstp)
 
 377{
 378	struct nfsd3_createargs *argp = rqstp->rq_argp;
 379	struct nfsd3_diropres *resp = rqstp->rq_resp;
 380	struct nfsd_attrs attrs = {
 381		.na_iattr	= &argp->attrs,
 382	};
 383
 384	dprintk("nfsd: MKDIR(3)    %s %.*s\n",
 385				SVCFH_fmt(&argp->fh),
 386				argp->len,
 387				argp->name);
 388
 389	argp->attrs.ia_valid &= ~ATTR_SIZE;
 390	fh_copy(&resp->dirfh, &argp->fh);
 391	fh_init(&resp->fh, NFS3_FHSIZE);
 392	resp->status = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
 393				   &attrs, S_IFDIR, 0, &resp->fh);
 394	return rpc_success;
 
 395}
 396
 397static __be32
 398nfsd3_proc_symlink(struct svc_rqst *rqstp)
 
 399{
 400	struct nfsd3_symlinkargs *argp = rqstp->rq_argp;
 401	struct nfsd3_diropres *resp = rqstp->rq_resp;
 402	struct nfsd_attrs attrs = {
 403		.na_iattr	= &argp->attrs,
 404	};
 405
 406	if (argp->tlen == 0) {
 407		resp->status = nfserr_inval;
 408		goto out;
 409	}
 410	if (argp->tlen > NFS3_MAXPATHLEN) {
 411		resp->status = nfserr_nametoolong;
 412		goto out;
 413	}
 414
 415	argp->tname = svc_fill_symlink_pathname(rqstp, &argp->first,
 416						page_address(rqstp->rq_arg.pages[0]),
 417						argp->tlen);
 418	if (IS_ERR(argp->tname)) {
 419		resp->status = nfserrno(PTR_ERR(argp->tname));
 420		goto out;
 421	}
 422
 423	dprintk("nfsd: SYMLINK(3)  %s %.*s -> %.*s\n",
 424				SVCFH_fmt(&argp->ffh),
 425				argp->flen, argp->fname,
 426				argp->tlen, argp->tname);
 427
 428	fh_copy(&resp->dirfh, &argp->ffh);
 429	fh_init(&resp->fh, NFS3_FHSIZE);
 430	resp->status = nfsd_symlink(rqstp, &resp->dirfh, argp->fname,
 431				    argp->flen, argp->tname, &attrs, &resp->fh);
 432	kfree(argp->tname);
 433out:
 434	return rpc_success;
 435}
 436
 437/*
 438 * Make socket/fifo/device.
 439 */
 440static __be32
 441nfsd3_proc_mknod(struct svc_rqst *rqstp)
 
 442{
 443	struct nfsd3_mknodargs *argp = rqstp->rq_argp;
 444	struct nfsd3_diropres  *resp = rqstp->rq_resp;
 445	struct nfsd_attrs attrs = {
 446		.na_iattr	= &argp->attrs,
 447	};
 448	int type;
 449	dev_t	rdev = 0;
 450
 451	dprintk("nfsd: MKNOD(3)    %s %.*s\n",
 452				SVCFH_fmt(&argp->fh),
 453				argp->len,
 454				argp->name);
 455
 456	fh_copy(&resp->dirfh, &argp->fh);
 457	fh_init(&resp->fh, NFS3_FHSIZE);
 458
 
 
 459	if (argp->ftype == NF3CHR || argp->ftype == NF3BLK) {
 460		rdev = MKDEV(argp->major, argp->minor);
 461		if (MAJOR(rdev) != argp->major ||
 462		    MINOR(rdev) != argp->minor) {
 463			resp->status = nfserr_inval;
 464			goto out;
 465		}
 466	} else if (argp->ftype != NF3SOCK && argp->ftype != NF3FIFO) {
 467		resp->status = nfserr_badtype;
 468		goto out;
 469	}
 470
 471	type = nfs3_ftypes[argp->ftype];
 472	resp->status = nfsd_create(rqstp, &resp->dirfh, argp->name, argp->len,
 473				   &attrs, type, rdev, &resp->fh);
 474out:
 475	return rpc_success;
 476}
 477
 478/*
 479 * Remove file/fifo/socket etc.
 480 */
 481static __be32
 482nfsd3_proc_remove(struct svc_rqst *rqstp)
 
 483{
 484	struct nfsd3_diropargs *argp = rqstp->rq_argp;
 485	struct nfsd3_attrstat *resp = rqstp->rq_resp;
 486
 487	dprintk("nfsd: REMOVE(3)   %s %.*s\n",
 488				SVCFH_fmt(&argp->fh),
 489				argp->len,
 490				argp->name);
 491
 492	/* Unlink. -S_IFDIR means file must not be a directory */
 493	fh_copy(&resp->fh, &argp->fh);
 494	resp->status = nfsd_unlink(rqstp, &resp->fh, -S_IFDIR,
 495				   argp->name, argp->len);
 496	return rpc_success;
 497}
 498
 499/*
 500 * Remove a directory
 501 */
 502static __be32
 503nfsd3_proc_rmdir(struct svc_rqst *rqstp)
 
 504{
 505	struct nfsd3_diropargs *argp = rqstp->rq_argp;
 506	struct nfsd3_attrstat *resp = rqstp->rq_resp;
 507
 508	dprintk("nfsd: RMDIR(3)    %s %.*s\n",
 509				SVCFH_fmt(&argp->fh),
 510				argp->len,
 511				argp->name);
 512
 513	fh_copy(&resp->fh, &argp->fh);
 514	resp->status = nfsd_unlink(rqstp, &resp->fh, S_IFDIR,
 515				   argp->name, argp->len);
 516	return rpc_success;
 517}
 518
 519static __be32
 520nfsd3_proc_rename(struct svc_rqst *rqstp)
 
 521{
 522	struct nfsd3_renameargs *argp = rqstp->rq_argp;
 523	struct nfsd3_renameres *resp = rqstp->rq_resp;
 524
 525	dprintk("nfsd: RENAME(3)   %s %.*s ->\n",
 526				SVCFH_fmt(&argp->ffh),
 527				argp->flen,
 528				argp->fname);
 529	dprintk("nfsd: -> %s %.*s\n",
 530				SVCFH_fmt(&argp->tfh),
 531				argp->tlen,
 532				argp->tname);
 533
 534	fh_copy(&resp->ffh, &argp->ffh);
 535	fh_copy(&resp->tfh, &argp->tfh);
 536	resp->status = nfsd_rename(rqstp, &resp->ffh, argp->fname, argp->flen,
 537				   &resp->tfh, argp->tname, argp->tlen);
 538	return rpc_success;
 539}
 540
 541static __be32
 542nfsd3_proc_link(struct svc_rqst *rqstp)
 
 543{
 544	struct nfsd3_linkargs *argp = rqstp->rq_argp;
 545	struct nfsd3_linkres  *resp = rqstp->rq_resp;
 546
 547	dprintk("nfsd: LINK(3)     %s ->\n",
 548				SVCFH_fmt(&argp->ffh));
 549	dprintk("nfsd:   -> %s %.*s\n",
 550				SVCFH_fmt(&argp->tfh),
 551				argp->tlen,
 552				argp->tname);
 553
 554	fh_copy(&resp->fh,  &argp->ffh);
 555	fh_copy(&resp->tfh, &argp->tfh);
 556	resp->status = nfsd_link(rqstp, &resp->tfh, argp->tname, argp->tlen,
 557				 &resp->fh);
 558	return rpc_success;
 559}
 560
 561static void nfsd3_init_dirlist_pages(struct svc_rqst *rqstp,
 562				     struct nfsd3_readdirres *resp,
 563				     u32 count)
 564{
 565	struct xdr_buf *buf = &resp->dirlist;
 566	struct xdr_stream *xdr = &resp->xdr;
 567	unsigned int sendbuf = min_t(unsigned int, rqstp->rq_res.buflen,
 568				     svc_max_payload(rqstp));
 569
 570	memset(buf, 0, sizeof(*buf));
 571
 572	/* Reserve room for the NULL ptr & eof flag (-2 words) */
 573	buf->buflen = clamp(count, (u32)(XDR_UNIT * 2), sendbuf);
 574	buf->buflen -= XDR_UNIT * 2;
 575	buf->pages = rqstp->rq_next_page;
 576	rqstp->rq_next_page += (buf->buflen + PAGE_SIZE - 1) >> PAGE_SHIFT;
 577
 578	xdr_init_encode_pages(xdr, buf, buf->pages,  NULL);
 579}
 580
 581/*
 582 * Read a portion of a directory.
 583 */
 584static __be32
 585nfsd3_proc_readdir(struct svc_rqst *rqstp)
 
 586{
 587	struct nfsd3_readdirargs *argp = rqstp->rq_argp;
 588	struct nfsd3_readdirres  *resp = rqstp->rq_resp;
 589	loff_t		offset;
 590
 591	dprintk("nfsd: READDIR(3)  %s %d bytes at %d\n",
 592				SVCFH_fmt(&argp->fh),
 593				argp->count, (u32) argp->cookie);
 594
 595	nfsd3_init_dirlist_pages(rqstp, resp, argp->count);
 
 
 596
 
 597	fh_copy(&resp->fh, &argp->fh);
 
 
 598	resp->common.err = nfs_ok;
 599	resp->cookie_offset = 0;
 600	resp->rqstp = rqstp;
 601	offset = argp->cookie;
 602	resp->status = nfsd_readdir(rqstp, &resp->fh, &offset,
 603				    &resp->common, nfs3svc_encode_entry3);
 604	memcpy(resp->verf, argp->verf, 8);
 605	nfs3svc_encode_cookie3(resp, offset);
 606
 607	/* Recycle only pages that were part of the reply */
 608	rqstp->rq_next_page = resp->xdr.page_ptr + 1;
 609
 610	return rpc_success;
 611}
 612
 613/*
 614 * Read a portion of a directory, including file handles and attrs.
 615 * For now, we choose to ignore the dircount parameter.
 616 */
 617static __be32
 618nfsd3_proc_readdirplus(struct svc_rqst *rqstp)
 
 619{
 620	struct nfsd3_readdirargs *argp = rqstp->rq_argp;
 621	struct nfsd3_readdirres  *resp = rqstp->rq_resp;
 622	loff_t	offset;
 
 
 623
 624	dprintk("nfsd: READDIR+(3) %s %d bytes at %d\n",
 625				SVCFH_fmt(&argp->fh),
 626				argp->count, (u32) argp->cookie);
 627
 628	nfsd3_init_dirlist_pages(rqstp, resp, argp->count);
 
 
 629
 
 630	fh_copy(&resp->fh, &argp->fh);
 
 631	resp->common.err = nfs_ok;
 632	resp->cookie_offset = 0;
 
 633	resp->rqstp = rqstp;
 634	offset = argp->cookie;
 635
 636	resp->status = fh_verify(rqstp, &resp->fh, S_IFDIR, NFSD_MAY_NOP);
 637	if (resp->status != nfs_ok)
 638		goto out;
 639
 640	if (resp->fh.fh_export->ex_flags & NFSEXP_NOREADDIRPLUS) {
 641		resp->status = nfserr_notsupp;
 642		goto out;
 643	}
 644
 645	resp->status = nfsd_readdir(rqstp, &resp->fh, &offset,
 646				    &resp->common, nfs3svc_encode_entryplus3);
 647	memcpy(resp->verf, argp->verf, 8);
 648	nfs3svc_encode_cookie3(resp, offset);
 
 649
 650	/* Recycle only pages that were part of the reply */
 651	rqstp->rq_next_page = resp->xdr.page_ptr + 1;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 652
 653out:
 654	return rpc_success;
 655}
 656
 657/*
 658 * Get file system stats
 659 */
 660static __be32
 661nfsd3_proc_fsstat(struct svc_rqst *rqstp)
 
 662{
 663	struct nfsd_fhandle *argp = rqstp->rq_argp;
 664	struct nfsd3_fsstatres *resp = rqstp->rq_resp;
 665
 666	dprintk("nfsd: FSSTAT(3)   %s\n",
 667				SVCFH_fmt(&argp->fh));
 668
 669	resp->status = nfsd_statfs(rqstp, &argp->fh, &resp->stats, 0);
 670	fh_put(&argp->fh);
 671	return rpc_success;
 672}
 673
 674/*
 675 * Get file system info
 676 */
 677static __be32
 678nfsd3_proc_fsinfo(struct svc_rqst *rqstp)
 
 679{
 680	struct nfsd_fhandle *argp = rqstp->rq_argp;
 681	struct nfsd3_fsinfores *resp = rqstp->rq_resp;
 682	u32	max_blocksize = svc_max_payload(rqstp);
 683
 684	dprintk("nfsd: FSINFO(3)   %s\n",
 685				SVCFH_fmt(&argp->fh));
 686
 687	resp->f_rtmax  = max_blocksize;
 688	resp->f_rtpref = max_blocksize;
 689	resp->f_rtmult = PAGE_SIZE;
 690	resp->f_wtmax  = max_blocksize;
 691	resp->f_wtpref = max_blocksize;
 692	resp->f_wtmult = PAGE_SIZE;
 693	resp->f_dtpref = max_blocksize;
 694	resp->f_maxfilesize = ~(u32) 0;
 695	resp->f_properties = NFS3_FSF_DEFAULT;
 696
 697	resp->status = fh_verify(rqstp, &argp->fh, 0,
 698				 NFSD_MAY_NOP | NFSD_MAY_BYPASS_GSS_ON_ROOT);
 699
 700	/* Check special features of the file system. May request
 701	 * different read/write sizes for file systems known to have
 702	 * problems with large blocks */
 703	if (resp->status == nfs_ok) {
 704		struct super_block *sb = argp->fh.fh_dentry->d_sb;
 705
 706		/* Note that we don't care for remote fs's here */
 707		if (sb->s_magic == MSDOS_SUPER_MAGIC) {
 708			resp->f_properties = NFS3_FSF_BILLYBOY;
 709		}
 710		resp->f_maxfilesize = sb->s_maxbytes;
 711	}
 712
 713	fh_put(&argp->fh);
 714	return rpc_success;
 715}
 716
 717/*
 718 * Get pathconf info for the specified file
 719 */
 720static __be32
 721nfsd3_proc_pathconf(struct svc_rqst *rqstp)
 
 722{
 723	struct nfsd_fhandle *argp = rqstp->rq_argp;
 724	struct nfsd3_pathconfres *resp = rqstp->rq_resp;
 725
 726	dprintk("nfsd: PATHCONF(3) %s\n",
 727				SVCFH_fmt(&argp->fh));
 728
 729	/* Set default pathconf */
 730	resp->p_link_max = 255;		/* at least */
 731	resp->p_name_max = 255;		/* at least */
 732	resp->p_no_trunc = 0;
 733	resp->p_chown_restricted = 1;
 734	resp->p_case_insensitive = 0;
 735	resp->p_case_preserving = 1;
 736
 737	resp->status = fh_verify(rqstp, &argp->fh, 0, NFSD_MAY_NOP);
 738
 739	if (resp->status == nfs_ok) {
 740		struct super_block *sb = argp->fh.fh_dentry->d_sb;
 741
 742		/* Note that we don't care for remote fs's here */
 743		switch (sb->s_magic) {
 744		case EXT2_SUPER_MAGIC:
 745			resp->p_link_max = EXT2_LINK_MAX;
 746			resp->p_name_max = EXT2_NAME_LEN;
 747			break;
 748		case MSDOS_SUPER_MAGIC:
 749			resp->p_case_insensitive = 1;
 750			resp->p_case_preserving  = 0;
 751			break;
 752		}
 753	}
 754
 755	fh_put(&argp->fh);
 756	return rpc_success;
 757}
 758
 
 759/*
 760 * Commit a file (range) to stable storage.
 761 */
 762static __be32
 763nfsd3_proc_commit(struct svc_rqst *rqstp)
 
 764{
 765	struct nfsd3_commitargs *argp = rqstp->rq_argp;
 766	struct nfsd3_commitres *resp = rqstp->rq_resp;
 767	struct nfsd_file *nf;
 768
 769	dprintk("nfsd: COMMIT(3)   %s %u@%Lu\n",
 770				SVCFH_fmt(&argp->fh),
 771				argp->count,
 772				(unsigned long long) argp->offset);
 773
 
 
 
 774	fh_copy(&resp->fh, &argp->fh);
 775	resp->status = nfsd_file_acquire_gc(rqstp, &resp->fh, NFSD_MAY_WRITE |
 776					    NFSD_MAY_NOT_BREAK_LEASE, &nf);
 777	if (resp->status)
 778		goto out;
 779	resp->status = nfsd_commit(rqstp, &resp->fh, nf, argp->offset,
 780				   argp->count, resp->verf);
 781	nfsd_file_put(nf);
 782out:
 783	return rpc_success;
 784}
 785
 786
 787/*
 788 * NFSv3 Server procedures.
 789 * Only the results of non-idempotent operations are cached.
 790 */
 
 791#define nfs3svc_encode_attrstatres	nfs3svc_encode_attrstat
 792#define nfs3svc_encode_wccstatres	nfs3svc_encode_wccstat
 793#define nfsd3_mkdirargs			nfsd3_createargs
 794#define nfsd3_readdirplusargs		nfsd3_readdirargs
 795#define nfsd3_fhandleargs		nfsd_fhandle
 
 796#define nfsd3_attrstatres		nfsd3_attrstat
 797#define nfsd3_wccstatres		nfsd3_attrstat
 798#define nfsd3_createres			nfsd3_diropres
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 799
 800#define ST 1		/* status*/
 801#define FH 17		/* filehandle with length */
 802#define AT 21		/* attributes */
 803#define pAT (1+AT)	/* post attributes - conditional */
 804#define WC (7+pAT)	/* WCC attributes */
 805
 806static const struct svc_procedure nfsd_procedures3[22] = {
 807	[NFS3PROC_NULL] = {
 808		.pc_func = nfsd3_proc_null,
 809		.pc_decode = nfssvc_decode_voidarg,
 810		.pc_encode = nfssvc_encode_voidres,
 811		.pc_argsize = sizeof(struct nfsd_voidargs),
 812		.pc_argzero = sizeof(struct nfsd_voidargs),
 813		.pc_ressize = sizeof(struct nfsd_voidres),
 814		.pc_cachetype = RC_NOCACHE,
 815		.pc_xdrressize = ST,
 816		.pc_name = "NULL",
 817	},
 818	[NFS3PROC_GETATTR] = {
 819		.pc_func = nfsd3_proc_getattr,
 820		.pc_decode = nfs3svc_decode_fhandleargs,
 821		.pc_encode = nfs3svc_encode_getattrres,
 822		.pc_release = nfs3svc_release_fhandle,
 823		.pc_argsize = sizeof(struct nfsd_fhandle),
 824		.pc_argzero = sizeof(struct nfsd_fhandle),
 825		.pc_ressize = sizeof(struct nfsd3_attrstatres),
 826		.pc_cachetype = RC_NOCACHE,
 827		.pc_xdrressize = ST+AT,
 828		.pc_name = "GETATTR",
 829	},
 830	[NFS3PROC_SETATTR] = {
 831		.pc_func = nfsd3_proc_setattr,
 832		.pc_decode = nfs3svc_decode_sattrargs,
 833		.pc_encode = nfs3svc_encode_wccstatres,
 834		.pc_release = nfs3svc_release_fhandle,
 835		.pc_argsize = sizeof(struct nfsd3_sattrargs),
 836		.pc_argzero = sizeof(struct nfsd3_sattrargs),
 837		.pc_ressize = sizeof(struct nfsd3_wccstatres),
 838		.pc_cachetype = RC_REPLBUFF,
 839		.pc_xdrressize = ST+WC,
 840		.pc_name = "SETATTR",
 841	},
 842	[NFS3PROC_LOOKUP] = {
 843		.pc_func = nfsd3_proc_lookup,
 844		.pc_decode = nfs3svc_decode_diropargs,
 845		.pc_encode = nfs3svc_encode_lookupres,
 846		.pc_release = nfs3svc_release_fhandle2,
 847		.pc_argsize = sizeof(struct nfsd3_diropargs),
 848		.pc_argzero = sizeof(struct nfsd3_diropargs),
 849		.pc_ressize = sizeof(struct nfsd3_diropres),
 850		.pc_cachetype = RC_NOCACHE,
 851		.pc_xdrressize = ST+FH+pAT+pAT,
 852		.pc_name = "LOOKUP",
 853	},
 854	[NFS3PROC_ACCESS] = {
 855		.pc_func = nfsd3_proc_access,
 856		.pc_decode = nfs3svc_decode_accessargs,
 857		.pc_encode = nfs3svc_encode_accessres,
 858		.pc_release = nfs3svc_release_fhandle,
 859		.pc_argsize = sizeof(struct nfsd3_accessargs),
 860		.pc_argzero = sizeof(struct nfsd3_accessargs),
 861		.pc_ressize = sizeof(struct nfsd3_accessres),
 862		.pc_cachetype = RC_NOCACHE,
 863		.pc_xdrressize = ST+pAT+1,
 864		.pc_name = "ACCESS",
 865	},
 866	[NFS3PROC_READLINK] = {
 867		.pc_func = nfsd3_proc_readlink,
 868		.pc_decode = nfs3svc_decode_fhandleargs,
 869		.pc_encode = nfs3svc_encode_readlinkres,
 870		.pc_release = nfs3svc_release_fhandle,
 871		.pc_argsize = sizeof(struct nfsd_fhandle),
 872		.pc_argzero = sizeof(struct nfsd_fhandle),
 873		.pc_ressize = sizeof(struct nfsd3_readlinkres),
 874		.pc_cachetype = RC_NOCACHE,
 875		.pc_xdrressize = ST+pAT+1+NFS3_MAXPATHLEN/4,
 876		.pc_name = "READLINK",
 877	},
 878	[NFS3PROC_READ] = {
 879		.pc_func = nfsd3_proc_read,
 880		.pc_decode = nfs3svc_decode_readargs,
 881		.pc_encode = nfs3svc_encode_readres,
 882		.pc_release = nfs3svc_release_fhandle,
 883		.pc_argsize = sizeof(struct nfsd3_readargs),
 884		.pc_argzero = sizeof(struct nfsd3_readargs),
 885		.pc_ressize = sizeof(struct nfsd3_readres),
 886		.pc_cachetype = RC_NOCACHE,
 887		.pc_xdrressize = ST+pAT+4+NFSSVC_MAXBLKSIZE/4,
 888		.pc_name = "READ",
 889	},
 890	[NFS3PROC_WRITE] = {
 891		.pc_func = nfsd3_proc_write,
 892		.pc_decode = nfs3svc_decode_writeargs,
 893		.pc_encode = nfs3svc_encode_writeres,
 894		.pc_release = nfs3svc_release_fhandle,
 895		.pc_argsize = sizeof(struct nfsd3_writeargs),
 896		.pc_argzero = sizeof(struct nfsd3_writeargs),
 897		.pc_ressize = sizeof(struct nfsd3_writeres),
 898		.pc_cachetype = RC_REPLBUFF,
 899		.pc_xdrressize = ST+WC+4,
 900		.pc_name = "WRITE",
 901	},
 902	[NFS3PROC_CREATE] = {
 903		.pc_func = nfsd3_proc_create,
 904		.pc_decode = nfs3svc_decode_createargs,
 905		.pc_encode = nfs3svc_encode_createres,
 906		.pc_release = nfs3svc_release_fhandle2,
 907		.pc_argsize = sizeof(struct nfsd3_createargs),
 908		.pc_argzero = sizeof(struct nfsd3_createargs),
 909		.pc_ressize = sizeof(struct nfsd3_createres),
 910		.pc_cachetype = RC_REPLBUFF,
 911		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 912		.pc_name = "CREATE",
 913	},
 914	[NFS3PROC_MKDIR] = {
 915		.pc_func = nfsd3_proc_mkdir,
 916		.pc_decode = nfs3svc_decode_mkdirargs,
 917		.pc_encode = nfs3svc_encode_createres,
 918		.pc_release = nfs3svc_release_fhandle2,
 919		.pc_argsize = sizeof(struct nfsd3_mkdirargs),
 920		.pc_argzero = sizeof(struct nfsd3_mkdirargs),
 921		.pc_ressize = sizeof(struct nfsd3_createres),
 922		.pc_cachetype = RC_REPLBUFF,
 923		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 924		.pc_name = "MKDIR",
 925	},
 926	[NFS3PROC_SYMLINK] = {
 927		.pc_func = nfsd3_proc_symlink,
 928		.pc_decode = nfs3svc_decode_symlinkargs,
 929		.pc_encode = nfs3svc_encode_createres,
 930		.pc_release = nfs3svc_release_fhandle2,
 931		.pc_argsize = sizeof(struct nfsd3_symlinkargs),
 932		.pc_argzero = sizeof(struct nfsd3_symlinkargs),
 933		.pc_ressize = sizeof(struct nfsd3_createres),
 934		.pc_cachetype = RC_REPLBUFF,
 935		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 936		.pc_name = "SYMLINK",
 937	},
 938	[NFS3PROC_MKNOD] = {
 939		.pc_func = nfsd3_proc_mknod,
 940		.pc_decode = nfs3svc_decode_mknodargs,
 941		.pc_encode = nfs3svc_encode_createres,
 942		.pc_release = nfs3svc_release_fhandle2,
 943		.pc_argsize = sizeof(struct nfsd3_mknodargs),
 944		.pc_argzero = sizeof(struct nfsd3_mknodargs),
 945		.pc_ressize = sizeof(struct nfsd3_createres),
 946		.pc_cachetype = RC_REPLBUFF,
 947		.pc_xdrressize = ST+(1+FH+pAT)+WC,
 948		.pc_name = "MKNOD",
 949	},
 950	[NFS3PROC_REMOVE] = {
 951		.pc_func = nfsd3_proc_remove,
 952		.pc_decode = nfs3svc_decode_diropargs,
 953		.pc_encode = nfs3svc_encode_wccstatres,
 954		.pc_release = nfs3svc_release_fhandle,
 955		.pc_argsize = sizeof(struct nfsd3_diropargs),
 956		.pc_argzero = sizeof(struct nfsd3_diropargs),
 957		.pc_ressize = sizeof(struct nfsd3_wccstatres),
 958		.pc_cachetype = RC_REPLBUFF,
 959		.pc_xdrressize = ST+WC,
 960		.pc_name = "REMOVE",
 961	},
 962	[NFS3PROC_RMDIR] = {
 963		.pc_func = nfsd3_proc_rmdir,
 964		.pc_decode = nfs3svc_decode_diropargs,
 965		.pc_encode = nfs3svc_encode_wccstatres,
 966		.pc_release = nfs3svc_release_fhandle,
 967		.pc_argsize = sizeof(struct nfsd3_diropargs),
 968		.pc_argzero = sizeof(struct nfsd3_diropargs),
 969		.pc_ressize = sizeof(struct nfsd3_wccstatres),
 970		.pc_cachetype = RC_REPLBUFF,
 971		.pc_xdrressize = ST+WC,
 972		.pc_name = "RMDIR",
 973	},
 974	[NFS3PROC_RENAME] = {
 975		.pc_func = nfsd3_proc_rename,
 976		.pc_decode = nfs3svc_decode_renameargs,
 977		.pc_encode = nfs3svc_encode_renameres,
 978		.pc_release = nfs3svc_release_fhandle2,
 979		.pc_argsize = sizeof(struct nfsd3_renameargs),
 980		.pc_argzero = sizeof(struct nfsd3_renameargs),
 981		.pc_ressize = sizeof(struct nfsd3_renameres),
 982		.pc_cachetype = RC_REPLBUFF,
 983		.pc_xdrressize = ST+WC+WC,
 984		.pc_name = "RENAME",
 985	},
 986	[NFS3PROC_LINK] = {
 987		.pc_func = nfsd3_proc_link,
 988		.pc_decode = nfs3svc_decode_linkargs,
 989		.pc_encode = nfs3svc_encode_linkres,
 990		.pc_release = nfs3svc_release_fhandle2,
 991		.pc_argsize = sizeof(struct nfsd3_linkargs),
 992		.pc_argzero = sizeof(struct nfsd3_linkargs),
 993		.pc_ressize = sizeof(struct nfsd3_linkres),
 994		.pc_cachetype = RC_REPLBUFF,
 995		.pc_xdrressize = ST+pAT+WC,
 996		.pc_name = "LINK",
 997	},
 998	[NFS3PROC_READDIR] = {
 999		.pc_func = nfsd3_proc_readdir,
1000		.pc_decode = nfs3svc_decode_readdirargs,
1001		.pc_encode = nfs3svc_encode_readdirres,
1002		.pc_release = nfs3svc_release_fhandle,
1003		.pc_argsize = sizeof(struct nfsd3_readdirargs),
1004		.pc_argzero = sizeof(struct nfsd3_readdirargs),
1005		.pc_ressize = sizeof(struct nfsd3_readdirres),
1006		.pc_cachetype = RC_NOCACHE,
1007		.pc_name = "READDIR",
1008	},
1009	[NFS3PROC_READDIRPLUS] = {
1010		.pc_func = nfsd3_proc_readdirplus,
1011		.pc_decode = nfs3svc_decode_readdirplusargs,
1012		.pc_encode = nfs3svc_encode_readdirres,
1013		.pc_release = nfs3svc_release_fhandle,
1014		.pc_argsize = sizeof(struct nfsd3_readdirplusargs),
1015		.pc_argzero = sizeof(struct nfsd3_readdirplusargs),
1016		.pc_ressize = sizeof(struct nfsd3_readdirres),
1017		.pc_cachetype = RC_NOCACHE,
1018		.pc_name = "READDIRPLUS",
1019	},
1020	[NFS3PROC_FSSTAT] = {
1021		.pc_func = nfsd3_proc_fsstat,
1022		.pc_decode = nfs3svc_decode_fhandleargs,
1023		.pc_encode = nfs3svc_encode_fsstatres,
1024		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
1025		.pc_argzero = sizeof(struct nfsd3_fhandleargs),
1026		.pc_ressize = sizeof(struct nfsd3_fsstatres),
1027		.pc_cachetype = RC_NOCACHE,
1028		.pc_xdrressize = ST+pAT+2*6+1,
1029		.pc_name = "FSSTAT",
1030	},
1031	[NFS3PROC_FSINFO] = {
1032		.pc_func = nfsd3_proc_fsinfo,
1033		.pc_decode = nfs3svc_decode_fhandleargs,
1034		.pc_encode = nfs3svc_encode_fsinfores,
1035		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
1036		.pc_argzero = sizeof(struct nfsd3_fhandleargs),
1037		.pc_ressize = sizeof(struct nfsd3_fsinfores),
1038		.pc_cachetype = RC_NOCACHE,
1039		.pc_xdrressize = ST+pAT+12,
1040		.pc_name = "FSINFO",
1041	},
1042	[NFS3PROC_PATHCONF] = {
1043		.pc_func = nfsd3_proc_pathconf,
1044		.pc_decode = nfs3svc_decode_fhandleargs,
1045		.pc_encode = nfs3svc_encode_pathconfres,
1046		.pc_argsize = sizeof(struct nfsd3_fhandleargs),
1047		.pc_argzero = sizeof(struct nfsd3_fhandleargs),
1048		.pc_ressize = sizeof(struct nfsd3_pathconfres),
1049		.pc_cachetype = RC_NOCACHE,
1050		.pc_xdrressize = ST+pAT+6,
1051		.pc_name = "PATHCONF",
1052	},
1053	[NFS3PROC_COMMIT] = {
1054		.pc_func = nfsd3_proc_commit,
1055		.pc_decode = nfs3svc_decode_commitargs,
1056		.pc_encode = nfs3svc_encode_commitres,
1057		.pc_release = nfs3svc_release_fhandle,
1058		.pc_argsize = sizeof(struct nfsd3_commitargs),
1059		.pc_argzero = sizeof(struct nfsd3_commitargs),
1060		.pc_ressize = sizeof(struct nfsd3_commitres),
1061		.pc_cachetype = RC_NOCACHE,
1062		.pc_xdrressize = ST+WC+2,
1063		.pc_name = "COMMIT",
1064	},
1065};
1066
1067static unsigned int nfsd_count3[ARRAY_SIZE(nfsd_procedures3)];
1068const struct svc_version nfsd_version3 = {
1069	.vs_vers	= 3,
1070	.vs_nproc	= 22,
1071	.vs_proc	= nfsd_procedures3,
1072	.vs_dispatch	= nfsd_dispatch,
1073	.vs_count	= nfsd_count3,
1074	.vs_xdrsize	= NFS3_SVC_XDRSIZE,
1075};