xref: /openbmc/linux/fs/nfsd/vfs.c (revision dbd171df)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * File operations used by nfsd. Some of these have been ripped from
4  * other parts of the kernel because they weren't exported, others
5  * are partial duplicates with added or changed functionality.
6  *
7  * Note that several functions dget() the dentry upon which they want
8  * to act, most notably those that create directory entries. Response
9  * dentry's are dput()'d if necessary in the release callback.
10  * So if you notice code paths that apparently fail to dput() the
11  * dentry, don't worry--they have been taken care of.
12  *
13  * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
14  * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
15  */
16 
17 #include <linux/fs.h>
18 #include <linux/file.h>
19 #include <linux/splice.h>
20 #include <linux/falloc.h>
21 #include <linux/fcntl.h>
22 #include <linux/namei.h>
23 #include <linux/delay.h>
24 #include <linux/fsnotify.h>
25 #include <linux/posix_acl_xattr.h>
26 #include <linux/xattr.h>
27 #include <linux/jhash.h>
28 #include <linux/ima.h>
29 #include <linux/slab.h>
30 #include <linux/uaccess.h>
31 #include <linux/exportfs.h>
32 #include <linux/writeback.h>
33 #include <linux/security.h>
34 
35 #ifdef CONFIG_NFSD_V3
36 #include "xdr3.h"
37 #endif /* CONFIG_NFSD_V3 */
38 
39 #ifdef CONFIG_NFSD_V4
40 #include "../internal.h"
41 #include "acl.h"
42 #include "idmap.h"
43 #include "xdr4.h"
44 #endif /* CONFIG_NFSD_V4 */
45 
46 #include "nfsd.h"
47 #include "vfs.h"
48 #include "filecache.h"
49 #include "trace.h"
50 
51 #define NFSDDBG_FACILITY		NFSDDBG_FILEOP
52 
53 /*
54  * Called from nfsd_lookup and encode_dirent. Check if we have crossed
55  * a mount point.
56  * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
57  *  or nfs_ok having possibly changed *dpp and *expp
58  */
59 int
60 nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
61 		        struct svc_export **expp)
62 {
63 	struct svc_export *exp = *expp, *exp2 = NULL;
64 	struct dentry *dentry = *dpp;
65 	struct path path = {.mnt = mntget(exp->ex_path.mnt),
66 			    .dentry = dget(dentry)};
67 	int err = 0;
68 
69 	err = follow_down(&path);
70 	if (err < 0)
71 		goto out;
72 	if (path.mnt == exp->ex_path.mnt && path.dentry == dentry &&
73 	    nfsd_mountpoint(dentry, exp) == 2) {
74 		/* This is only a mountpoint in some other namespace */
75 		path_put(&path);
76 		goto out;
77 	}
78 
79 	exp2 = rqst_exp_get_by_name(rqstp, &path);
80 	if (IS_ERR(exp2)) {
81 		err = PTR_ERR(exp2);
82 		/*
83 		 * We normally allow NFS clients to continue
84 		 * "underneath" a mountpoint that is not exported.
85 		 * The exception is V4ROOT, where no traversal is ever
86 		 * allowed without an explicit export of the new
87 		 * directory.
88 		 */
89 		if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
90 			err = 0;
91 		path_put(&path);
92 		goto out;
93 	}
94 	if (nfsd_v4client(rqstp) ||
95 		(exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
96 		/* successfully crossed mount point */
97 		/*
98 		 * This is subtle: path.dentry is *not* on path.mnt
99 		 * at this point.  The only reason we are safe is that
100 		 * original mnt is pinned down by exp, so we should
101 		 * put path *before* putting exp
102 		 */
103 		*dpp = path.dentry;
104 		path.dentry = dentry;
105 		*expp = exp2;
106 		exp2 = exp;
107 	}
108 	path_put(&path);
109 	exp_put(exp2);
110 out:
111 	return err;
112 }
113 
114 static void follow_to_parent(struct path *path)
115 {
116 	struct dentry *dp;
117 
118 	while (path->dentry == path->mnt->mnt_root && follow_up(path))
119 		;
120 	dp = dget_parent(path->dentry);
121 	dput(path->dentry);
122 	path->dentry = dp;
123 }
124 
125 static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
126 {
127 	struct svc_export *exp2;
128 	struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
129 			    .dentry = dget(dparent)};
130 
131 	follow_to_parent(&path);
132 
133 	exp2 = rqst_exp_parent(rqstp, &path);
134 	if (PTR_ERR(exp2) == -ENOENT) {
135 		*dentryp = dget(dparent);
136 	} else if (IS_ERR(exp2)) {
137 		path_put(&path);
138 		return PTR_ERR(exp2);
139 	} else {
140 		*dentryp = dget(path.dentry);
141 		exp_put(*exp);
142 		*exp = exp2;
143 	}
144 	path_put(&path);
145 	return 0;
146 }
147 
148 /*
149  * For nfsd purposes, we treat V4ROOT exports as though there was an
150  * export at *every* directory.
151  * We return:
152  * '1' if this dentry *must* be an export point,
153  * '2' if it might be, if there is really a mount here, and
154  * '0' if there is no chance of an export point here.
155  */
156 int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
157 {
158 	if (!d_inode(dentry))
159 		return 0;
160 	if (exp->ex_flags & NFSEXP_V4ROOT)
161 		return 1;
162 	if (nfsd4_is_junction(dentry))
163 		return 1;
164 	if (d_mountpoint(dentry))
165 		/*
166 		 * Might only be a mountpoint in a different namespace,
167 		 * but we need to check.
168 		 */
169 		return 2;
170 	return 0;
171 }
172 
173 __be32
174 nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
175 		   const char *name, unsigned int len,
176 		   struct svc_export **exp_ret, struct dentry **dentry_ret)
177 {
178 	struct svc_export	*exp;
179 	struct dentry		*dparent;
180 	struct dentry		*dentry;
181 	int			host_err;
182 
183 	dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
184 
185 	dparent = fhp->fh_dentry;
186 	exp = exp_get(fhp->fh_export);
187 
188 	/* Lookup the name, but don't follow links */
189 	if (isdotent(name, len)) {
190 		if (len==1)
191 			dentry = dget(dparent);
192 		else if (dparent != exp->ex_path.dentry)
193 			dentry = dget_parent(dparent);
194 		else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
195 			dentry = dget(dparent); /* .. == . just like at / */
196 		else {
197 			/* checking mountpoint crossing is very different when stepping up */
198 			host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
199 			if (host_err)
200 				goto out_nfserr;
201 		}
202 	} else {
203 		/*
204 		 * In the nfsd4_open() case, this may be held across
205 		 * subsequent open and delegation acquisition which may
206 		 * need to take the child's i_mutex:
207 		 */
208 		fh_lock_nested(fhp, I_MUTEX_PARENT);
209 		dentry = lookup_one_len(name, dparent, len);
210 		host_err = PTR_ERR(dentry);
211 		if (IS_ERR(dentry))
212 			goto out_nfserr;
213 		if (nfsd_mountpoint(dentry, exp)) {
214 			/*
215 			 * We don't need the i_mutex after all.  It's
216 			 * still possible we could open this (regular
217 			 * files can be mountpoints too), but the
218 			 * i_mutex is just there to prevent renames of
219 			 * something that we might be about to delegate,
220 			 * and a mountpoint won't be renamed:
221 			 */
222 			fh_unlock(fhp);
223 			if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
224 				dput(dentry);
225 				goto out_nfserr;
226 			}
227 		}
228 	}
229 	*dentry_ret = dentry;
230 	*exp_ret = exp;
231 	return 0;
232 
233 out_nfserr:
234 	exp_put(exp);
235 	return nfserrno(host_err);
236 }
237 
238 /*
239  * Look up one component of a pathname.
240  * N.B. After this call _both_ fhp and resfh need an fh_put
241  *
242  * If the lookup would cross a mountpoint, and the mounted filesystem
243  * is exported to the client with NFSEXP_NOHIDE, then the lookup is
244  * accepted as it stands and the mounted directory is
245  * returned. Otherwise the covered directory is returned.
246  * NOTE: this mountpoint crossing is not supported properly by all
247  *   clients and is explicitly disallowed for NFSv3
248  *      NeilBrown <neilb@cse.unsw.edu.au>
249  */
250 __be32
251 nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
252 				unsigned int len, struct svc_fh *resfh)
253 {
254 	struct svc_export	*exp;
255 	struct dentry		*dentry;
256 	__be32 err;
257 
258 	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
259 	if (err)
260 		return err;
261 	err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
262 	if (err)
263 		return err;
264 	err = check_nfsd_access(exp, rqstp);
265 	if (err)
266 		goto out;
267 	/*
268 	 * Note: we compose the file handle now, but as the
269 	 * dentry may be negative, it may need to be updated.
270 	 */
271 	err = fh_compose(resfh, exp, dentry, fhp);
272 	if (!err && d_really_is_negative(dentry))
273 		err = nfserr_noent;
274 out:
275 	dput(dentry);
276 	exp_put(exp);
277 	return err;
278 }
279 
280 /*
281  * Commit metadata changes to stable storage.
282  */
283 static int
284 commit_inode_metadata(struct inode *inode)
285 {
286 	const struct export_operations *export_ops = inode->i_sb->s_export_op;
287 
288 	if (export_ops->commit_metadata)
289 		return export_ops->commit_metadata(inode);
290 	return sync_inode_metadata(inode, 1);
291 }
292 
293 static int
294 commit_metadata(struct svc_fh *fhp)
295 {
296 	struct inode *inode = d_inode(fhp->fh_dentry);
297 
298 	if (!EX_ISSYNC(fhp->fh_export))
299 		return 0;
300 	return commit_inode_metadata(inode);
301 }
302 
303 /*
304  * Go over the attributes and take care of the small differences between
305  * NFS semantics and what Linux expects.
306  */
307 static void
308 nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
309 {
310 	/* sanitize the mode change */
311 	if (iap->ia_valid & ATTR_MODE) {
312 		iap->ia_mode &= S_IALLUGO;
313 		iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
314 	}
315 
316 	/* Revoke setuid/setgid on chown */
317 	if (!S_ISDIR(inode->i_mode) &&
318 	    ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
319 		iap->ia_valid |= ATTR_KILL_PRIV;
320 		if (iap->ia_valid & ATTR_MODE) {
321 			/* we're setting mode too, just clear the s*id bits */
322 			iap->ia_mode &= ~S_ISUID;
323 			if (iap->ia_mode & S_IXGRP)
324 				iap->ia_mode &= ~S_ISGID;
325 		} else {
326 			/* set ATTR_KILL_* bits and let VFS handle it */
327 			iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
328 		}
329 	}
330 }
331 
332 static __be32
333 nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
334 		struct iattr *iap)
335 {
336 	struct inode *inode = d_inode(fhp->fh_dentry);
337 
338 	if (iap->ia_size < inode->i_size) {
339 		__be32 err;
340 
341 		err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
342 				NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
343 		if (err)
344 			return err;
345 	}
346 	return nfserrno(get_write_access(inode));
347 }
348 
349 /*
350  * Set various file attributes.  After this call fhp needs an fh_put.
351  */
352 __be32
353 nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
354 	     int check_guard, time64_t guardtime)
355 {
356 	struct dentry	*dentry;
357 	struct inode	*inode;
358 	int		accmode = NFSD_MAY_SATTR;
359 	umode_t		ftype = 0;
360 	__be32		err;
361 	int		host_err;
362 	bool		get_write_count;
363 	bool		size_change = (iap->ia_valid & ATTR_SIZE);
364 
365 	if (iap->ia_valid & ATTR_SIZE) {
366 		accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
367 		ftype = S_IFREG;
368 	}
369 
370 	/*
371 	 * If utimes(2) and friends are called with times not NULL, we should
372 	 * not set NFSD_MAY_WRITE bit. Otherwise fh_verify->nfsd_permission
373 	 * will return EACCES, when the caller's effective UID does not match
374 	 * the owner of the file, and the caller is not privileged. In this
375 	 * situation, we should return EPERM(notify_change will return this).
376 	 */
377 	if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME)) {
378 		accmode |= NFSD_MAY_OWNER_OVERRIDE;
379 		if (!(iap->ia_valid & (ATTR_ATIME_SET | ATTR_MTIME_SET)))
380 			accmode |= NFSD_MAY_WRITE;
381 	}
382 
383 	/* Callers that do fh_verify should do the fh_want_write: */
384 	get_write_count = !fhp->fh_dentry;
385 
386 	/* Get inode */
387 	err = fh_verify(rqstp, fhp, ftype, accmode);
388 	if (err)
389 		return err;
390 	if (get_write_count) {
391 		host_err = fh_want_write(fhp);
392 		if (host_err)
393 			goto out;
394 	}
395 
396 	dentry = fhp->fh_dentry;
397 	inode = d_inode(dentry);
398 
399 	/* Ignore any mode updates on symlinks */
400 	if (S_ISLNK(inode->i_mode))
401 		iap->ia_valid &= ~ATTR_MODE;
402 
403 	if (!iap->ia_valid)
404 		return 0;
405 
406 	nfsd_sanitize_attrs(inode, iap);
407 
408 	if (check_guard && guardtime != inode->i_ctime.tv_sec)
409 		return nfserr_notsync;
410 
411 	/*
412 	 * The size case is special, it changes the file in addition to the
413 	 * attributes, and file systems don't expect it to be mixed with
414 	 * "random" attribute changes.  We thus split out the size change
415 	 * into a separate call to ->setattr, and do the rest as a separate
416 	 * setattr call.
417 	 */
418 	if (size_change) {
419 		err = nfsd_get_write_access(rqstp, fhp, iap);
420 		if (err)
421 			return err;
422 	}
423 
424 	fh_lock(fhp);
425 	if (size_change) {
426 		/*
427 		 * RFC5661, Section 18.30.4:
428 		 *   Changing the size of a file with SETATTR indirectly
429 		 *   changes the time_modify and change attributes.
430 		 *
431 		 * (and similar for the older RFCs)
432 		 */
433 		struct iattr size_attr = {
434 			.ia_valid	= ATTR_SIZE | ATTR_CTIME | ATTR_MTIME,
435 			.ia_size	= iap->ia_size,
436 		};
437 
438 		host_err = notify_change(&init_user_ns, dentry, &size_attr, NULL);
439 		if (host_err)
440 			goto out_unlock;
441 		iap->ia_valid &= ~ATTR_SIZE;
442 
443 		/*
444 		 * Avoid the additional setattr call below if the only other
445 		 * attribute that the client sends is the mtime, as we update
446 		 * it as part of the size change above.
447 		 */
448 		if ((iap->ia_valid & ~ATTR_MTIME) == 0)
449 			goto out_unlock;
450 	}
451 
452 	iap->ia_valid |= ATTR_CTIME;
453 	host_err = notify_change(&init_user_ns, dentry, iap, NULL);
454 
455 out_unlock:
456 	fh_unlock(fhp);
457 	if (size_change)
458 		put_write_access(inode);
459 out:
460 	if (!host_err)
461 		host_err = commit_metadata(fhp);
462 	return nfserrno(host_err);
463 }
464 
465 #if defined(CONFIG_NFSD_V4)
466 /*
467  * NFS junction information is stored in an extended attribute.
468  */
469 #define NFSD_JUNCTION_XATTR_NAME	XATTR_TRUSTED_PREFIX "junction.nfs"
470 
471 /**
472  * nfsd4_is_junction - Test if an object could be an NFS junction
473  *
474  * @dentry: object to test
475  *
476  * Returns 1 if "dentry" appears to contain NFS junction information.
477  * Otherwise 0 is returned.
478  */
479 int nfsd4_is_junction(struct dentry *dentry)
480 {
481 	struct inode *inode = d_inode(dentry);
482 
483 	if (inode == NULL)
484 		return 0;
485 	if (inode->i_mode & S_IXUGO)
486 		return 0;
487 	if (!(inode->i_mode & S_ISVTX))
488 		return 0;
489 	if (vfs_getxattr(&init_user_ns, dentry, NFSD_JUNCTION_XATTR_NAME,
490 			 NULL, 0) <= 0)
491 		return 0;
492 	return 1;
493 }
494 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
495 __be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
496 		struct xdr_netobj *label)
497 {
498 	__be32 error;
499 	int host_error;
500 	struct dentry *dentry;
501 
502 	error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
503 	if (error)
504 		return error;
505 
506 	dentry = fhp->fh_dentry;
507 
508 	inode_lock(d_inode(dentry));
509 	host_error = security_inode_setsecctx(dentry, label->data, label->len);
510 	inode_unlock(d_inode(dentry));
511 	return nfserrno(host_error);
512 }
513 #else
514 __be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
515 		struct xdr_netobj *label)
516 {
517 	return nfserr_notsupp;
518 }
519 #endif
520 
521 static struct nfsd4_compound_state *nfsd4_get_cstate(struct svc_rqst *rqstp)
522 {
523 	return &((struct nfsd4_compoundres *)rqstp->rq_resp)->cstate;
524 }
525 
526 __be32 nfsd4_clone_file_range(struct svc_rqst *rqstp,
527 		struct nfsd_file *nf_src, u64 src_pos,
528 		struct nfsd_file *nf_dst, u64 dst_pos,
529 		u64 count, bool sync)
530 {
531 	struct file *src = nf_src->nf_file;
532 	struct file *dst = nf_dst->nf_file;
533 	errseq_t since;
534 	loff_t cloned;
535 	__be32 ret = 0;
536 
537 	since = READ_ONCE(dst->f_wb_err);
538 	cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0);
539 	if (cloned < 0) {
540 		ret = nfserrno(cloned);
541 		goto out_err;
542 	}
543 	if (count && cloned != count) {
544 		ret = nfserrno(-EINVAL);
545 		goto out_err;
546 	}
547 	if (sync) {
548 		loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX;
549 		int status = vfs_fsync_range(dst, dst_pos, dst_end, 0);
550 
551 		if (!status)
552 			status = filemap_check_wb_err(dst->f_mapping, since);
553 		if (!status)
554 			status = commit_inode_metadata(file_inode(src));
555 		if (status < 0) {
556 			struct nfsd_net *nn = net_generic(nf_dst->nf_net,
557 							  nfsd_net_id);
558 
559 			trace_nfsd_clone_file_range_err(rqstp,
560 					&nfsd4_get_cstate(rqstp)->save_fh,
561 					src_pos,
562 					&nfsd4_get_cstate(rqstp)->current_fh,
563 					dst_pos,
564 					count, status);
565 			nfsd_reset_write_verifier(nn);
566 			trace_nfsd_writeverf_reset(nn, rqstp, status);
567 			ret = nfserrno(status);
568 		}
569 	}
570 out_err:
571 	return ret;
572 }
573 
574 ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst,
575 			     u64 dst_pos, u64 count)
576 {
577 
578 	/*
579 	 * Limit copy to 4MB to prevent indefinitely blocking an nfsd
580 	 * thread and client rpc slot.  The choice of 4MB is somewhat
581 	 * arbitrary.  We might instead base this on r/wsize, or make it
582 	 * tunable, or use a time instead of a byte limit, or implement
583 	 * asynchronous copy.  In theory a client could also recognize a
584 	 * limit like this and pipeline multiple COPY requests.
585 	 */
586 	count = min_t(u64, count, 1 << 22);
587 	return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0);
588 }
589 
590 __be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
591 			   struct file *file, loff_t offset, loff_t len,
592 			   int flags)
593 {
594 	int error;
595 
596 	if (!S_ISREG(file_inode(file)->i_mode))
597 		return nfserr_inval;
598 
599 	error = vfs_fallocate(file, flags, offset, len);
600 	if (!error)
601 		error = commit_metadata(fhp);
602 
603 	return nfserrno(error);
604 }
605 #endif /* defined(CONFIG_NFSD_V4) */
606 
607 #ifdef CONFIG_NFSD_V3
608 /*
609  * Check server access rights to a file system object
610  */
611 struct accessmap {
612 	u32		access;
613 	int		how;
614 };
615 static struct accessmap	nfs3_regaccess[] = {
616     {	NFS3_ACCESS_READ,	NFSD_MAY_READ			},
617     {	NFS3_ACCESS_EXECUTE,	NFSD_MAY_EXEC			},
618     {	NFS3_ACCESS_MODIFY,	NFSD_MAY_WRITE|NFSD_MAY_TRUNC	},
619     {	NFS3_ACCESS_EXTEND,	NFSD_MAY_WRITE			},
620 
621 #ifdef CONFIG_NFSD_V4
622     {	NFS4_ACCESS_XAREAD,	NFSD_MAY_READ			},
623     {	NFS4_ACCESS_XAWRITE,	NFSD_MAY_WRITE			},
624     {	NFS4_ACCESS_XALIST,	NFSD_MAY_READ			},
625 #endif
626 
627     {	0,			0				}
628 };
629 
630 static struct accessmap	nfs3_diraccess[] = {
631     {	NFS3_ACCESS_READ,	NFSD_MAY_READ			},
632     {	NFS3_ACCESS_LOOKUP,	NFSD_MAY_EXEC			},
633     {	NFS3_ACCESS_MODIFY,	NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
634     {	NFS3_ACCESS_EXTEND,	NFSD_MAY_EXEC|NFSD_MAY_WRITE	},
635     {	NFS3_ACCESS_DELETE,	NFSD_MAY_REMOVE			},
636 
637 #ifdef CONFIG_NFSD_V4
638     {	NFS4_ACCESS_XAREAD,	NFSD_MAY_READ			},
639     {	NFS4_ACCESS_XAWRITE,	NFSD_MAY_WRITE			},
640     {	NFS4_ACCESS_XALIST,	NFSD_MAY_READ			},
641 #endif
642 
643     {	0,			0				}
644 };
645 
646 static struct accessmap	nfs3_anyaccess[] = {
647 	/* Some clients - Solaris 2.6 at least, make an access call
648 	 * to the server to check for access for things like /dev/null
649 	 * (which really, the server doesn't care about).  So
650 	 * We provide simple access checking for them, looking
651 	 * mainly at mode bits, and we make sure to ignore read-only
652 	 * filesystem checks
653 	 */
654     {	NFS3_ACCESS_READ,	NFSD_MAY_READ			},
655     {	NFS3_ACCESS_EXECUTE,	NFSD_MAY_EXEC			},
656     {	NFS3_ACCESS_MODIFY,	NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS	},
657     {	NFS3_ACCESS_EXTEND,	NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS	},
658 
659     {	0,			0				}
660 };
661 
662 __be32
663 nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
664 {
665 	struct accessmap	*map;
666 	struct svc_export	*export;
667 	struct dentry		*dentry;
668 	u32			query, result = 0, sresult = 0;
669 	__be32			error;
670 
671 	error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
672 	if (error)
673 		goto out;
674 
675 	export = fhp->fh_export;
676 	dentry = fhp->fh_dentry;
677 
678 	if (d_is_reg(dentry))
679 		map = nfs3_regaccess;
680 	else if (d_is_dir(dentry))
681 		map = nfs3_diraccess;
682 	else
683 		map = nfs3_anyaccess;
684 
685 
686 	query = *access;
687 	for  (; map->access; map++) {
688 		if (map->access & query) {
689 			__be32 err2;
690 
691 			sresult |= map->access;
692 
693 			err2 = nfsd_permission(rqstp, export, dentry, map->how);
694 			switch (err2) {
695 			case nfs_ok:
696 				result |= map->access;
697 				break;
698 
699 			/* the following error codes just mean the access was not allowed,
700 			 * rather than an error occurred */
701 			case nfserr_rofs:
702 			case nfserr_acces:
703 			case nfserr_perm:
704 				/* simply don't "or" in the access bit. */
705 				break;
706 			default:
707 				error = err2;
708 				goto out;
709 			}
710 		}
711 	}
712 	*access = result;
713 	if (supported)
714 		*supported = sresult;
715 
716  out:
717 	return error;
718 }
719 #endif /* CONFIG_NFSD_V3 */
720 
721 int nfsd_open_break_lease(struct inode *inode, int access)
722 {
723 	unsigned int mode;
724 
725 	if (access & NFSD_MAY_NOT_BREAK_LEASE)
726 		return 0;
727 	mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
728 	return break_lease(inode, mode | O_NONBLOCK);
729 }
730 
731 /*
732  * Open an existing file or directory.
733  * The may_flags argument indicates the type of open (read/write/lock)
734  * and additional flags.
735  * N.B. After this call fhp needs an fh_put
736  */
737 static __be32
738 __nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
739 			int may_flags, struct file **filp)
740 {
741 	struct path	path;
742 	struct inode	*inode;
743 	struct file	*file;
744 	int		flags = O_RDONLY|O_LARGEFILE;
745 	__be32		err;
746 	int		host_err = 0;
747 
748 	path.mnt = fhp->fh_export->ex_path.mnt;
749 	path.dentry = fhp->fh_dentry;
750 	inode = d_inode(path.dentry);
751 
752 	err = nfserr_perm;
753 	if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
754 		goto out;
755 
756 	if (!inode->i_fop)
757 		goto out;
758 
759 	host_err = nfsd_open_break_lease(inode, may_flags);
760 	if (host_err) /* NOMEM or WOULDBLOCK */
761 		goto out_nfserr;
762 
763 	if (may_flags & NFSD_MAY_WRITE) {
764 		if (may_flags & NFSD_MAY_READ)
765 			flags = O_RDWR|O_LARGEFILE;
766 		else
767 			flags = O_WRONLY|O_LARGEFILE;
768 	}
769 
770 	file = dentry_open(&path, flags, current_cred());
771 	if (IS_ERR(file)) {
772 		host_err = PTR_ERR(file);
773 		goto out_nfserr;
774 	}
775 
776 	host_err = ima_file_check(file, may_flags);
777 	if (host_err) {
778 		fput(file);
779 		goto out_nfserr;
780 	}
781 
782 	if (may_flags & NFSD_MAY_64BIT_COOKIE)
783 		file->f_mode |= FMODE_64BITHASH;
784 	else
785 		file->f_mode |= FMODE_32BITHASH;
786 
787 	*filp = file;
788 out_nfserr:
789 	err = nfserrno(host_err);
790 out:
791 	return err;
792 }
793 
794 __be32
795 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
796 		int may_flags, struct file **filp)
797 {
798 	__be32 err;
799 	bool retried = false;
800 
801 	validate_process_creds();
802 	/*
803 	 * If we get here, then the client has already done an "open",
804 	 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
805 	 * in case a chmod has now revoked permission.
806 	 *
807 	 * Arguably we should also allow the owner override for
808 	 * directories, but we never have and it doesn't seem to have
809 	 * caused anyone a problem.  If we were to change this, note
810 	 * also that our filldir callbacks would need a variant of
811 	 * lookup_one_len that doesn't check permissions.
812 	 */
813 	if (type == S_IFREG)
814 		may_flags |= NFSD_MAY_OWNER_OVERRIDE;
815 retry:
816 	err = fh_verify(rqstp, fhp, type, may_flags);
817 	if (!err) {
818 		err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
819 		if (err == nfserr_stale && !retried) {
820 			retried = true;
821 			fh_put(fhp);
822 			goto retry;
823 		}
824 	}
825 	validate_process_creds();
826 	return err;
827 }
828 
829 __be32
830 nfsd_open_verified(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
831 		int may_flags, struct file **filp)
832 {
833 	__be32 err;
834 
835 	validate_process_creds();
836 	err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
837 	validate_process_creds();
838 	return err;
839 }
840 
841 /*
842  * Grab and keep cached pages associated with a file in the svc_rqst
843  * so that they can be passed to the network sendmsg/sendpage routines
844  * directly. They will be released after the sending has completed.
845  */
846 static int
847 nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
848 		  struct splice_desc *sd)
849 {
850 	struct svc_rqst *rqstp = sd->u.data;
851 	struct page **pp = rqstp->rq_next_page;
852 	struct page *page = buf->page;
853 
854 	if (rqstp->rq_res.page_len == 0) {
855 		svc_rqst_replace_page(rqstp, page);
856 		rqstp->rq_res.page_base = buf->offset;
857 	} else if (page != pp[-1]) {
858 		svc_rqst_replace_page(rqstp, page);
859 	}
860 	rqstp->rq_res.page_len += sd->len;
861 
862 	return sd->len;
863 }
864 
865 static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
866 				    struct splice_desc *sd)
867 {
868 	return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
869 }
870 
871 static u32 nfsd_eof_on_read(struct file *file, loff_t offset, ssize_t len,
872 		size_t expected)
873 {
874 	if (expected != 0 && len == 0)
875 		return 1;
876 	if (offset+len >= i_size_read(file_inode(file)))
877 		return 1;
878 	return 0;
879 }
880 
881 static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
882 			       struct file *file, loff_t offset,
883 			       unsigned long *count, u32 *eof, ssize_t host_err)
884 {
885 	if (host_err >= 0) {
886 		nfsd_stats_io_read_add(fhp->fh_export, host_err);
887 		*eof = nfsd_eof_on_read(file, offset, host_err, *count);
888 		*count = host_err;
889 		fsnotify_access(file);
890 		trace_nfsd_read_io_done(rqstp, fhp, offset, *count);
891 		return 0;
892 	} else {
893 		trace_nfsd_read_err(rqstp, fhp, offset, host_err);
894 		return nfserrno(host_err);
895 	}
896 }
897 
898 __be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
899 			struct file *file, loff_t offset, unsigned long *count,
900 			u32 *eof)
901 {
902 	struct splice_desc sd = {
903 		.len		= 0,
904 		.total_len	= *count,
905 		.pos		= offset,
906 		.u.data		= rqstp,
907 	};
908 	ssize_t host_err;
909 
910 	trace_nfsd_read_splice(rqstp, fhp, offset, *count);
911 	rqstp->rq_next_page = rqstp->rq_respages + 1;
912 	host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
913 	return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
914 }
915 
916 __be32 nfsd_readv(struct svc_rqst *rqstp, struct svc_fh *fhp,
917 		  struct file *file, loff_t offset,
918 		  struct kvec *vec, int vlen, unsigned long *count,
919 		  u32 *eof)
920 {
921 	struct iov_iter iter;
922 	loff_t ppos = offset;
923 	ssize_t host_err;
924 
925 	trace_nfsd_read_vector(rqstp, fhp, offset, *count);
926 	iov_iter_kvec(&iter, READ, vec, vlen, *count);
927 	host_err = vfs_iter_read(file, &iter, &ppos, 0);
928 	return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
929 }
930 
931 /*
932  * Gathered writes: If another process is currently writing to the file,
933  * there's a high chance this is another nfsd (triggered by a bulk write
934  * from a client's biod). Rather than syncing the file with each write
935  * request, we sleep for 10 msec.
936  *
937  * I don't know if this roughly approximates C. Juszak's idea of
938  * gathered writes, but it's a nice and simple solution (IMHO), and it
939  * seems to work:-)
940  *
941  * Note: we do this only in the NFSv2 case, since v3 and higher have a
942  * better tool (separate unstable writes and commits) for solving this
943  * problem.
944  */
945 static int wait_for_concurrent_writes(struct file *file)
946 {
947 	struct inode *inode = file_inode(file);
948 	static ino_t last_ino;
949 	static dev_t last_dev;
950 	int err = 0;
951 
952 	if (atomic_read(&inode->i_writecount) > 1
953 	    || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
954 		dprintk("nfsd: write defer %d\n", task_pid_nr(current));
955 		msleep(10);
956 		dprintk("nfsd: write resume %d\n", task_pid_nr(current));
957 	}
958 
959 	if (inode->i_state & I_DIRTY) {
960 		dprintk("nfsd: write sync %d\n", task_pid_nr(current));
961 		err = vfs_fsync(file, 0);
962 	}
963 	last_ino = inode->i_ino;
964 	last_dev = inode->i_sb->s_dev;
965 	return err;
966 }
967 
968 __be32
969 nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfsd_file *nf,
970 				loff_t offset, struct kvec *vec, int vlen,
971 				unsigned long *cnt, int stable,
972 				__be32 *verf)
973 {
974 	struct nfsd_net		*nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
975 	struct file		*file = nf->nf_file;
976 	struct super_block	*sb = file_inode(file)->i_sb;
977 	struct svc_export	*exp;
978 	struct iov_iter		iter;
979 	errseq_t		since;
980 	__be32			nfserr;
981 	int			host_err;
982 	int			use_wgather;
983 	loff_t			pos = offset;
984 	unsigned long		exp_op_flags = 0;
985 	unsigned int		pflags = current->flags;
986 	rwf_t			flags = 0;
987 	bool			restore_flags = false;
988 
989 	trace_nfsd_write_opened(rqstp, fhp, offset, *cnt);
990 
991 	if (sb->s_export_op)
992 		exp_op_flags = sb->s_export_op->flags;
993 
994 	if (test_bit(RQ_LOCAL, &rqstp->rq_flags) &&
995 	    !(exp_op_flags & EXPORT_OP_REMOTE_FS)) {
996 		/*
997 		 * We want throttling in balance_dirty_pages()
998 		 * and shrink_inactive_list() to only consider
999 		 * the backingdev we are writing to, so that nfs to
1000 		 * localhost doesn't cause nfsd to lock up due to all
1001 		 * the client's dirty pages or its congested queue.
1002 		 */
1003 		current->flags |= PF_LOCAL_THROTTLE;
1004 		restore_flags = true;
1005 	}
1006 
1007 	exp = fhp->fh_export;
1008 	use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
1009 
1010 	if (!EX_ISSYNC(exp))
1011 		stable = NFS_UNSTABLE;
1012 
1013 	if (stable && !use_wgather)
1014 		flags |= RWF_SYNC;
1015 
1016 	iov_iter_kvec(&iter, WRITE, vec, vlen, *cnt);
1017 	since = READ_ONCE(file->f_wb_err);
1018 	if (verf)
1019 		nfsd_copy_write_verifier(verf, nn);
1020 	host_err = vfs_iter_write(file, &iter, &pos, flags);
1021 	if (host_err < 0) {
1022 		nfsd_reset_write_verifier(nn);
1023 		trace_nfsd_writeverf_reset(nn, rqstp, host_err);
1024 		goto out_nfserr;
1025 	}
1026 	*cnt = host_err;
1027 	nfsd_stats_io_write_add(exp, *cnt);
1028 	fsnotify_modify(file);
1029 	host_err = filemap_check_wb_err(file->f_mapping, since);
1030 	if (host_err < 0)
1031 		goto out_nfserr;
1032 
1033 	if (stable && use_wgather) {
1034 		host_err = wait_for_concurrent_writes(file);
1035 		if (host_err < 0) {
1036 			nfsd_reset_write_verifier(nn);
1037 			trace_nfsd_writeverf_reset(nn, rqstp, host_err);
1038 		}
1039 	}
1040 
1041 out_nfserr:
1042 	if (host_err >= 0) {
1043 		trace_nfsd_write_io_done(rqstp, fhp, offset, *cnt);
1044 		nfserr = nfs_ok;
1045 	} else {
1046 		trace_nfsd_write_err(rqstp, fhp, offset, host_err);
1047 		nfserr = nfserrno(host_err);
1048 	}
1049 	if (restore_flags)
1050 		current_restore_flags(pflags, PF_LOCAL_THROTTLE);
1051 	return nfserr;
1052 }
1053 
1054 /*
1055  * Read data from a file. count must contain the requested read count
1056  * on entry. On return, *count contains the number of bytes actually read.
1057  * N.B. After this call fhp needs an fh_put
1058  */
1059 __be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
1060 	loff_t offset, struct kvec *vec, int vlen, unsigned long *count,
1061 	u32 *eof)
1062 {
1063 	struct nfsd_file	*nf;
1064 	struct file *file;
1065 	__be32 err;
1066 
1067 	trace_nfsd_read_start(rqstp, fhp, offset, *count);
1068 	err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
1069 	if (err)
1070 		return err;
1071 
1072 	file = nf->nf_file;
1073 	if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
1074 		err = nfsd_splice_read(rqstp, fhp, file, offset, count, eof);
1075 	else
1076 		err = nfsd_readv(rqstp, fhp, file, offset, vec, vlen, count, eof);
1077 
1078 	nfsd_file_put(nf);
1079 
1080 	trace_nfsd_read_done(rqstp, fhp, offset, *count);
1081 
1082 	return err;
1083 }
1084 
1085 /*
1086  * Write data to a file.
1087  * The stable flag requests synchronous writes.
1088  * N.B. After this call fhp needs an fh_put
1089  */
1090 __be32
1091 nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
1092 	   struct kvec *vec, int vlen, unsigned long *cnt, int stable,
1093 	   __be32 *verf)
1094 {
1095 	struct nfsd_file *nf;
1096 	__be32 err;
1097 
1098 	trace_nfsd_write_start(rqstp, fhp, offset, *cnt);
1099 
1100 	err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_WRITE, &nf);
1101 	if (err)
1102 		goto out;
1103 
1104 	err = nfsd_vfs_write(rqstp, fhp, nf, offset, vec,
1105 			vlen, cnt, stable, verf);
1106 	nfsd_file_put(nf);
1107 out:
1108 	trace_nfsd_write_done(rqstp, fhp, offset, *cnt);
1109 	return err;
1110 }
1111 
1112 #ifdef CONFIG_NFSD_V3
1113 /*
1114  * Commit all pending writes to stable storage.
1115  *
1116  * Note: we only guarantee that data that lies within the range specified
1117  * by the 'offset' and 'count' parameters will be synced.
1118  *
1119  * Unfortunately we cannot lock the file to make sure we return full WCC
1120  * data to the client, as locking happens lower down in the filesystem.
1121  */
1122 __be32
1123 nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1124                loff_t offset, unsigned long count, __be32 *verf)
1125 {
1126 	struct nfsd_net		*nn;
1127 	struct nfsd_file	*nf;
1128 	loff_t			end = LLONG_MAX;
1129 	__be32			err = nfserr_inval;
1130 
1131 	if (offset < 0)
1132 		goto out;
1133 	if (count != 0) {
1134 		end = offset + (loff_t)count - 1;
1135 		if (end < offset)
1136 			goto out;
1137 	}
1138 
1139 	err = nfsd_file_acquire(rqstp, fhp,
1140 			NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &nf);
1141 	if (err)
1142 		goto out;
1143 	nn = net_generic(nf->nf_net, nfsd_net_id);
1144 	if (EX_ISSYNC(fhp->fh_export)) {
1145 		errseq_t since = READ_ONCE(nf->nf_file->f_wb_err);
1146 		int err2;
1147 
1148 		err2 = vfs_fsync_range(nf->nf_file, offset, end, 0);
1149 		switch (err2) {
1150 		case 0:
1151 			nfsd_copy_write_verifier(verf, nn);
1152 			err2 = filemap_check_wb_err(nf->nf_file->f_mapping,
1153 						    since);
1154 			break;
1155 		case -EINVAL:
1156 			err = nfserr_notsupp;
1157 			break;
1158 		default:
1159 			nfsd_reset_write_verifier(nn);
1160 			trace_nfsd_writeverf_reset(nn, rqstp, err2);
1161 		}
1162 		err = nfserrno(err2);
1163 	} else
1164 		nfsd_copy_write_verifier(verf, nn);
1165 
1166 	nfsd_file_put(nf);
1167 out:
1168 	return err;
1169 }
1170 #endif /* CONFIG_NFSD_V3 */
1171 
1172 static __be32
1173 nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1174 			struct iattr *iap)
1175 {
1176 	/*
1177 	 * Mode has already been set earlier in create:
1178 	 */
1179 	iap->ia_valid &= ~ATTR_MODE;
1180 	/*
1181 	 * Setting uid/gid works only for root.  Irix appears to
1182 	 * send along the gid on create when it tries to implement
1183 	 * setgid directories via NFS:
1184 	 */
1185 	if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
1186 		iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1187 	if (iap->ia_valid)
1188 		return nfsd_setattr(rqstp, resfhp, iap, 0, (time64_t)0);
1189 	/* Callers expect file metadata to be committed here */
1190 	return nfserrno(commit_metadata(resfhp));
1191 }
1192 
1193 /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1194  * setting size to 0 may fail for some specific file systems by the permission
1195  * checking which requires WRITE permission but the mode is 000.
1196  * we ignore the resizing(to 0) on the just new created file, since the size is
1197  * 0 after file created.
1198  *
1199  * call this only after vfs_create() is called.
1200  * */
1201 static void
1202 nfsd_check_ignore_resizing(struct iattr *iap)
1203 {
1204 	if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1205 		iap->ia_valid &= ~ATTR_SIZE;
1206 }
1207 
1208 /* The parent directory should already be locked: */
1209 __be32
1210 nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
1211 		char *fname, int flen, struct iattr *iap,
1212 		int type, dev_t rdev, struct svc_fh *resfhp)
1213 {
1214 	struct dentry	*dentry, *dchild;
1215 	struct inode	*dirp;
1216 	__be32		err;
1217 	__be32		err2;
1218 	int		host_err;
1219 
1220 	dentry = fhp->fh_dentry;
1221 	dirp = d_inode(dentry);
1222 
1223 	dchild = dget(resfhp->fh_dentry);
1224 	if (!fhp->fh_locked) {
1225 		WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
1226 				dentry);
1227 		err = nfserr_io;
1228 		goto out;
1229 	}
1230 
1231 	err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1232 	if (err)
1233 		goto out;
1234 
1235 	if (!(iap->ia_valid & ATTR_MODE))
1236 		iap->ia_mode = 0;
1237 	iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1238 
1239 	if (!IS_POSIXACL(dirp))
1240 		iap->ia_mode &= ~current_umask();
1241 
1242 	err = 0;
1243 	host_err = 0;
1244 	switch (type) {
1245 	case S_IFREG:
1246 		host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1247 		if (!host_err)
1248 			nfsd_check_ignore_resizing(iap);
1249 		break;
1250 	case S_IFDIR:
1251 		host_err = vfs_mkdir(&init_user_ns, dirp, dchild, iap->ia_mode);
1252 		if (!host_err && unlikely(d_unhashed(dchild))) {
1253 			struct dentry *d;
1254 			d = lookup_one_len(dchild->d_name.name,
1255 					   dchild->d_parent,
1256 					   dchild->d_name.len);
1257 			if (IS_ERR(d)) {
1258 				host_err = PTR_ERR(d);
1259 				break;
1260 			}
1261 			if (unlikely(d_is_negative(d))) {
1262 				dput(d);
1263 				err = nfserr_serverfault;
1264 				goto out;
1265 			}
1266 			dput(resfhp->fh_dentry);
1267 			resfhp->fh_dentry = dget(d);
1268 			err = fh_update(resfhp);
1269 			dput(dchild);
1270 			dchild = d;
1271 			if (err)
1272 				goto out;
1273 		}
1274 		break;
1275 	case S_IFCHR:
1276 	case S_IFBLK:
1277 	case S_IFIFO:
1278 	case S_IFSOCK:
1279 		host_err = vfs_mknod(&init_user_ns, dirp, dchild,
1280 				     iap->ia_mode, rdev);
1281 		break;
1282 	default:
1283 		printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1284 		       type);
1285 		host_err = -EINVAL;
1286 	}
1287 	if (host_err < 0)
1288 		goto out_nfserr;
1289 
1290 	err = nfsd_create_setattr(rqstp, resfhp, iap);
1291 
1292 	/*
1293 	 * nfsd_create_setattr already committed the child.  Transactional
1294 	 * filesystems had a chance to commit changes for both parent and
1295 	 * child simultaneously making the following commit_metadata a
1296 	 * noop.
1297 	 */
1298 	err2 = nfserrno(commit_metadata(fhp));
1299 	if (err2)
1300 		err = err2;
1301 	/*
1302 	 * Update the file handle to get the new inode info.
1303 	 */
1304 	if (!err)
1305 		err = fh_update(resfhp);
1306 out:
1307 	dput(dchild);
1308 	return err;
1309 
1310 out_nfserr:
1311 	err = nfserrno(host_err);
1312 	goto out;
1313 }
1314 
1315 /*
1316  * Create a filesystem object (regular, directory, special).
1317  * Note that the parent directory is left locked.
1318  *
1319  * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1320  */
1321 __be32
1322 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1323 		char *fname, int flen, struct iattr *iap,
1324 		int type, dev_t rdev, struct svc_fh *resfhp)
1325 {
1326 	struct dentry	*dentry, *dchild = NULL;
1327 	__be32		err;
1328 	int		host_err;
1329 
1330 	if (isdotent(fname, flen))
1331 		return nfserr_exist;
1332 
1333 	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
1334 	if (err)
1335 		return err;
1336 
1337 	dentry = fhp->fh_dentry;
1338 
1339 	host_err = fh_want_write(fhp);
1340 	if (host_err)
1341 		return nfserrno(host_err);
1342 
1343 	fh_lock_nested(fhp, I_MUTEX_PARENT);
1344 	dchild = lookup_one_len(fname, dentry, flen);
1345 	host_err = PTR_ERR(dchild);
1346 	if (IS_ERR(dchild))
1347 		return nfserrno(host_err);
1348 	err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1349 	/*
1350 	 * We unconditionally drop our ref to dchild as fh_compose will have
1351 	 * already grabbed its own ref for it.
1352 	 */
1353 	dput(dchild);
1354 	if (err)
1355 		return err;
1356 	return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1357 					rdev, resfhp);
1358 }
1359 
1360 #ifdef CONFIG_NFSD_V3
1361 
1362 /*
1363  * NFSv3 and NFSv4 version of nfsd_create
1364  */
1365 __be32
1366 do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1367 		char *fname, int flen, struct iattr *iap,
1368 		struct svc_fh *resfhp, int createmode, u32 *verifier,
1369 	        bool *truncp, bool *created)
1370 {
1371 	struct dentry	*dentry, *dchild = NULL;
1372 	struct inode	*dirp;
1373 	__be32		err;
1374 	int		host_err;
1375 	__u32		v_mtime=0, v_atime=0;
1376 
1377 	err = nfserr_perm;
1378 	if (!flen)
1379 		goto out;
1380 	err = nfserr_exist;
1381 	if (isdotent(fname, flen))
1382 		goto out;
1383 	if (!(iap->ia_valid & ATTR_MODE))
1384 		iap->ia_mode = 0;
1385 	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
1386 	if (err)
1387 		goto out;
1388 
1389 	dentry = fhp->fh_dentry;
1390 	dirp = d_inode(dentry);
1391 
1392 	host_err = fh_want_write(fhp);
1393 	if (host_err)
1394 		goto out_nfserr;
1395 
1396 	fh_lock_nested(fhp, I_MUTEX_PARENT);
1397 
1398 	/*
1399 	 * Compose the response file handle.
1400 	 */
1401 	dchild = lookup_one_len(fname, dentry, flen);
1402 	host_err = PTR_ERR(dchild);
1403 	if (IS_ERR(dchild))
1404 		goto out_nfserr;
1405 
1406 	/* If file doesn't exist, check for permissions to create one */
1407 	if (d_really_is_negative(dchild)) {
1408 		err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1409 		if (err)
1410 			goto out;
1411 	}
1412 
1413 	err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1414 	if (err)
1415 		goto out;
1416 
1417 	if (nfsd_create_is_exclusive(createmode)) {
1418 		/* solaris7 gets confused (bugid 4218508) if these have
1419 		 * the high bit set, as do xfs filesystems without the
1420 		 * "bigtime" feature.  So just clear the high bits. If this is
1421 		 * ever changed to use different attrs for storing the
1422 		 * verifier, then do_open_lookup() will also need to be fixed
1423 		 * accordingly.
1424 		 */
1425 		v_mtime = verifier[0]&0x7fffffff;
1426 		v_atime = verifier[1]&0x7fffffff;
1427 	}
1428 
1429 	if (d_really_is_positive(dchild)) {
1430 		err = 0;
1431 
1432 		switch (createmode) {
1433 		case NFS3_CREATE_UNCHECKED:
1434 			if (! d_is_reg(dchild))
1435 				goto out;
1436 			else if (truncp) {
1437 				/* in nfsv4, we need to treat this case a little
1438 				 * differently.  we don't want to truncate the
1439 				 * file now; this would be wrong if the OPEN
1440 				 * fails for some other reason.  furthermore,
1441 				 * if the size is nonzero, we should ignore it
1442 				 * according to spec!
1443 				 */
1444 				*truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1445 			}
1446 			else {
1447 				iap->ia_valid &= ATTR_SIZE;
1448 				goto set_attr;
1449 			}
1450 			break;
1451 		case NFS3_CREATE_EXCLUSIVE:
1452 			if (   d_inode(dchild)->i_mtime.tv_sec == v_mtime
1453 			    && d_inode(dchild)->i_atime.tv_sec == v_atime
1454 			    && d_inode(dchild)->i_size  == 0 ) {
1455 				if (created)
1456 					*created = true;
1457 				break;
1458 			}
1459 			fallthrough;
1460 		case NFS4_CREATE_EXCLUSIVE4_1:
1461 			if (   d_inode(dchild)->i_mtime.tv_sec == v_mtime
1462 			    && d_inode(dchild)->i_atime.tv_sec == v_atime
1463 			    && d_inode(dchild)->i_size  == 0 ) {
1464 				if (created)
1465 					*created = true;
1466 				goto set_attr;
1467 			}
1468 			fallthrough;
1469 		case NFS3_CREATE_GUARDED:
1470 			err = nfserr_exist;
1471 		}
1472 		fh_drop_write(fhp);
1473 		goto out;
1474 	}
1475 
1476 	if (!IS_POSIXACL(dirp))
1477 		iap->ia_mode &= ~current_umask();
1478 
1479 	host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1480 	if (host_err < 0) {
1481 		fh_drop_write(fhp);
1482 		goto out_nfserr;
1483 	}
1484 	if (created)
1485 		*created = true;
1486 
1487 	nfsd_check_ignore_resizing(iap);
1488 
1489 	if (nfsd_create_is_exclusive(createmode)) {
1490 		/* Cram the verifier into atime/mtime */
1491 		iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1492 			| ATTR_MTIME_SET|ATTR_ATIME_SET;
1493 		/* XXX someone who knows this better please fix it for nsec */
1494 		iap->ia_mtime.tv_sec = v_mtime;
1495 		iap->ia_atime.tv_sec = v_atime;
1496 		iap->ia_mtime.tv_nsec = 0;
1497 		iap->ia_atime.tv_nsec = 0;
1498 	}
1499 
1500  set_attr:
1501 	err = nfsd_create_setattr(rqstp, resfhp, iap);
1502 
1503 	/*
1504 	 * nfsd_create_setattr already committed the child
1505 	 * (and possibly also the parent).
1506 	 */
1507 	if (!err)
1508 		err = nfserrno(commit_metadata(fhp));
1509 
1510 	/*
1511 	 * Update the filehandle to get the new inode info.
1512 	 */
1513 	if (!err)
1514 		err = fh_update(resfhp);
1515 
1516  out:
1517 	fh_unlock(fhp);
1518 	if (dchild && !IS_ERR(dchild))
1519 		dput(dchild);
1520 	fh_drop_write(fhp);
1521  	return err;
1522 
1523  out_nfserr:
1524 	err = nfserrno(host_err);
1525 	goto out;
1526 }
1527 #endif /* CONFIG_NFSD_V3 */
1528 
1529 /*
1530  * Read a symlink. On entry, *lenp must contain the maximum path length that
1531  * fits into the buffer. On return, it contains the true length.
1532  * N.B. After this call fhp needs an fh_put
1533  */
1534 __be32
1535 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1536 {
1537 	__be32		err;
1538 	const char *link;
1539 	struct path path;
1540 	DEFINE_DELAYED_CALL(done);
1541 	int len;
1542 
1543 	err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
1544 	if (unlikely(err))
1545 		return err;
1546 
1547 	path.mnt = fhp->fh_export->ex_path.mnt;
1548 	path.dentry = fhp->fh_dentry;
1549 
1550 	if (unlikely(!d_is_symlink(path.dentry)))
1551 		return nfserr_inval;
1552 
1553 	touch_atime(&path);
1554 
1555 	link = vfs_get_link(path.dentry, &done);
1556 	if (IS_ERR(link))
1557 		return nfserrno(PTR_ERR(link));
1558 
1559 	len = strlen(link);
1560 	if (len < *lenp)
1561 		*lenp = len;
1562 	memcpy(buf, link, *lenp);
1563 	do_delayed_call(&done);
1564 	return 0;
1565 }
1566 
1567 /*
1568  * Create a symlink and look up its inode
1569  * N.B. After this call _both_ fhp and resfhp need an fh_put
1570  */
1571 __be32
1572 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1573 				char *fname, int flen,
1574 				char *path,
1575 				struct svc_fh *resfhp)
1576 {
1577 	struct dentry	*dentry, *dnew;
1578 	__be32		err, cerr;
1579 	int		host_err;
1580 
1581 	err = nfserr_noent;
1582 	if (!flen || path[0] == '\0')
1583 		goto out;
1584 	err = nfserr_exist;
1585 	if (isdotent(fname, flen))
1586 		goto out;
1587 
1588 	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1589 	if (err)
1590 		goto out;
1591 
1592 	host_err = fh_want_write(fhp);
1593 	if (host_err)
1594 		goto out_nfserr;
1595 
1596 	fh_lock(fhp);
1597 	dentry = fhp->fh_dentry;
1598 	dnew = lookup_one_len(fname, dentry, flen);
1599 	host_err = PTR_ERR(dnew);
1600 	if (IS_ERR(dnew))
1601 		goto out_nfserr;
1602 
1603 	host_err = vfs_symlink(&init_user_ns, d_inode(dentry), dnew, path);
1604 	err = nfserrno(host_err);
1605 	fh_unlock(fhp);
1606 	if (!err)
1607 		err = nfserrno(commit_metadata(fhp));
1608 
1609 	fh_drop_write(fhp);
1610 
1611 	cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1612 	dput(dnew);
1613 	if (err==0) err = cerr;
1614 out:
1615 	return err;
1616 
1617 out_nfserr:
1618 	err = nfserrno(host_err);
1619 	goto out;
1620 }
1621 
1622 /*
1623  * Create a hardlink
1624  * N.B. After this call _both_ ffhp and tfhp need an fh_put
1625  */
1626 __be32
1627 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1628 				char *name, int len, struct svc_fh *tfhp)
1629 {
1630 	struct dentry	*ddir, *dnew, *dold;
1631 	struct inode	*dirp;
1632 	__be32		err;
1633 	int		host_err;
1634 
1635 	err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
1636 	if (err)
1637 		goto out;
1638 	err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
1639 	if (err)
1640 		goto out;
1641 	err = nfserr_isdir;
1642 	if (d_is_dir(tfhp->fh_dentry))
1643 		goto out;
1644 	err = nfserr_perm;
1645 	if (!len)
1646 		goto out;
1647 	err = nfserr_exist;
1648 	if (isdotent(name, len))
1649 		goto out;
1650 
1651 	host_err = fh_want_write(tfhp);
1652 	if (host_err) {
1653 		err = nfserrno(host_err);
1654 		goto out;
1655 	}
1656 
1657 	fh_lock_nested(ffhp, I_MUTEX_PARENT);
1658 	ddir = ffhp->fh_dentry;
1659 	dirp = d_inode(ddir);
1660 
1661 	dnew = lookup_one_len(name, ddir, len);
1662 	host_err = PTR_ERR(dnew);
1663 	if (IS_ERR(dnew))
1664 		goto out_nfserr;
1665 
1666 	dold = tfhp->fh_dentry;
1667 
1668 	err = nfserr_noent;
1669 	if (d_really_is_negative(dold))
1670 		goto out_dput;
1671 	host_err = vfs_link(dold, &init_user_ns, dirp, dnew, NULL);
1672 	fh_unlock(ffhp);
1673 	if (!host_err) {
1674 		err = nfserrno(commit_metadata(ffhp));
1675 		if (!err)
1676 			err = nfserrno(commit_metadata(tfhp));
1677 	} else {
1678 		if (host_err == -EXDEV && rqstp->rq_vers == 2)
1679 			err = nfserr_acces;
1680 		else
1681 			err = nfserrno(host_err);
1682 	}
1683 out_dput:
1684 	dput(dnew);
1685 out_unlock:
1686 	fh_unlock(ffhp);
1687 	fh_drop_write(tfhp);
1688 out:
1689 	return err;
1690 
1691 out_nfserr:
1692 	err = nfserrno(host_err);
1693 	goto out_unlock;
1694 }
1695 
1696 static void
1697 nfsd_close_cached_files(struct dentry *dentry)
1698 {
1699 	struct inode *inode = d_inode(dentry);
1700 
1701 	if (inode && S_ISREG(inode->i_mode))
1702 		nfsd_file_close_inode_sync(inode);
1703 }
1704 
1705 static bool
1706 nfsd_has_cached_files(struct dentry *dentry)
1707 {
1708 	bool		ret = false;
1709 	struct inode *inode = d_inode(dentry);
1710 
1711 	if (inode && S_ISREG(inode->i_mode))
1712 		ret = nfsd_file_is_cached(inode);
1713 	return ret;
1714 }
1715 
1716 /*
1717  * Rename a file
1718  * N.B. After this call _both_ ffhp and tfhp need an fh_put
1719  */
1720 __be32
1721 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1722 			    struct svc_fh *tfhp, char *tname, int tlen)
1723 {
1724 	struct dentry	*fdentry, *tdentry, *odentry, *ndentry, *trap;
1725 	struct inode	*fdir, *tdir;
1726 	__be32		err;
1727 	int		host_err;
1728 	bool		close_cached = false;
1729 
1730 	err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
1731 	if (err)
1732 		goto out;
1733 	err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
1734 	if (err)
1735 		goto out;
1736 
1737 	fdentry = ffhp->fh_dentry;
1738 	fdir = d_inode(fdentry);
1739 
1740 	tdentry = tfhp->fh_dentry;
1741 	tdir = d_inode(tdentry);
1742 
1743 	err = nfserr_perm;
1744 	if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1745 		goto out;
1746 
1747 retry:
1748 	host_err = fh_want_write(ffhp);
1749 	if (host_err) {
1750 		err = nfserrno(host_err);
1751 		goto out;
1752 	}
1753 
1754 	/* cannot use fh_lock as we need deadlock protective ordering
1755 	 * so do it by hand */
1756 	trap = lock_rename(tdentry, fdentry);
1757 	ffhp->fh_locked = tfhp->fh_locked = true;
1758 	fh_fill_pre_attrs(ffhp);
1759 	fh_fill_pre_attrs(tfhp);
1760 
1761 	odentry = lookup_one_len(fname, fdentry, flen);
1762 	host_err = PTR_ERR(odentry);
1763 	if (IS_ERR(odentry))
1764 		goto out_nfserr;
1765 
1766 	host_err = -ENOENT;
1767 	if (d_really_is_negative(odentry))
1768 		goto out_dput_old;
1769 	host_err = -EINVAL;
1770 	if (odentry == trap)
1771 		goto out_dput_old;
1772 
1773 	ndentry = lookup_one_len(tname, tdentry, tlen);
1774 	host_err = PTR_ERR(ndentry);
1775 	if (IS_ERR(ndentry))
1776 		goto out_dput_old;
1777 	host_err = -ENOTEMPTY;
1778 	if (ndentry == trap)
1779 		goto out_dput_new;
1780 
1781 	host_err = -EXDEV;
1782 	if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1783 		goto out_dput_new;
1784 	if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1785 		goto out_dput_new;
1786 
1787 	if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) &&
1788 	    nfsd_has_cached_files(ndentry)) {
1789 		close_cached = true;
1790 		goto out_dput_old;
1791 	} else {
1792 		struct renamedata rd = {
1793 			.old_mnt_userns	= &init_user_ns,
1794 			.old_dir	= fdir,
1795 			.old_dentry	= odentry,
1796 			.new_mnt_userns	= &init_user_ns,
1797 			.new_dir	= tdir,
1798 			.new_dentry	= ndentry,
1799 		};
1800 		host_err = vfs_rename(&rd);
1801 		if (!host_err) {
1802 			host_err = commit_metadata(tfhp);
1803 			if (!host_err)
1804 				host_err = commit_metadata(ffhp);
1805 		}
1806 	}
1807  out_dput_new:
1808 	dput(ndentry);
1809  out_dput_old:
1810 	dput(odentry);
1811  out_nfserr:
1812 	err = nfserrno(host_err);
1813 	/*
1814 	 * We cannot rely on fh_unlock on the two filehandles,
1815 	 * as that would do the wrong thing if the two directories
1816 	 * were the same, so again we do it by hand.
1817 	 */
1818 	if (!close_cached) {
1819 		fh_fill_post_attrs(ffhp);
1820 		fh_fill_post_attrs(tfhp);
1821 	}
1822 	unlock_rename(tdentry, fdentry);
1823 	ffhp->fh_locked = tfhp->fh_locked = false;
1824 	fh_drop_write(ffhp);
1825 
1826 	/*
1827 	 * If the target dentry has cached open files, then we need to try to
1828 	 * close them prior to doing the rename. Flushing delayed fput
1829 	 * shouldn't be done with locks held however, so we delay it until this
1830 	 * point and then reattempt the whole shebang.
1831 	 */
1832 	if (close_cached) {
1833 		close_cached = false;
1834 		nfsd_close_cached_files(ndentry);
1835 		dput(ndentry);
1836 		goto retry;
1837 	}
1838 out:
1839 	return err;
1840 }
1841 
1842 /*
1843  * Unlink a file or directory
1844  * N.B. After this call fhp needs an fh_put
1845  */
1846 __be32
1847 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1848 				char *fname, int flen)
1849 {
1850 	struct dentry	*dentry, *rdentry;
1851 	struct inode	*dirp;
1852 	struct inode	*rinode;
1853 	__be32		err;
1854 	int		host_err;
1855 
1856 	err = nfserr_acces;
1857 	if (!flen || isdotent(fname, flen))
1858 		goto out;
1859 	err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
1860 	if (err)
1861 		goto out;
1862 
1863 	host_err = fh_want_write(fhp);
1864 	if (host_err)
1865 		goto out_nfserr;
1866 
1867 	fh_lock_nested(fhp, I_MUTEX_PARENT);
1868 	dentry = fhp->fh_dentry;
1869 	dirp = d_inode(dentry);
1870 
1871 	rdentry = lookup_one_len(fname, dentry, flen);
1872 	host_err = PTR_ERR(rdentry);
1873 	if (IS_ERR(rdentry))
1874 		goto out_drop_write;
1875 
1876 	if (d_really_is_negative(rdentry)) {
1877 		dput(rdentry);
1878 		host_err = -ENOENT;
1879 		goto out_drop_write;
1880 	}
1881 	rinode = d_inode(rdentry);
1882 	ihold(rinode);
1883 
1884 	if (!type)
1885 		type = d_inode(rdentry)->i_mode & S_IFMT;
1886 
1887 	if (type != S_IFDIR) {
1888 		if (rdentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK)
1889 			nfsd_close_cached_files(rdentry);
1890 		host_err = vfs_unlink(&init_user_ns, dirp, rdentry, NULL);
1891 	} else {
1892 		host_err = vfs_rmdir(&init_user_ns, dirp, rdentry);
1893 	}
1894 
1895 	fh_unlock(fhp);
1896 	if (!host_err)
1897 		host_err = commit_metadata(fhp);
1898 	dput(rdentry);
1899 	iput(rinode);    /* truncate the inode here */
1900 
1901 out_drop_write:
1902 	fh_drop_write(fhp);
1903 out_nfserr:
1904 	if (host_err == -EBUSY) {
1905 		/* name is mounted-on. There is no perfect
1906 		 * error status.
1907 		 */
1908 		if (nfsd_v4client(rqstp))
1909 			err = nfserr_file_open;
1910 		else
1911 			err = nfserr_acces;
1912 	} else {
1913 		err = nfserrno(host_err);
1914 	}
1915 out:
1916 	return err;
1917 }
1918 
1919 /*
1920  * We do this buffering because we must not call back into the file
1921  * system's ->lookup() method from the filldir callback. That may well
1922  * deadlock a number of file systems.
1923  *
1924  * This is based heavily on the implementation of same in XFS.
1925  */
1926 struct buffered_dirent {
1927 	u64		ino;
1928 	loff_t		offset;
1929 	int		namlen;
1930 	unsigned int	d_type;
1931 	char		name[];
1932 };
1933 
1934 struct readdir_data {
1935 	struct dir_context ctx;
1936 	char		*dirent;
1937 	size_t		used;
1938 	int		full;
1939 };
1940 
1941 static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1942 				 int namlen, loff_t offset, u64 ino,
1943 				 unsigned int d_type)
1944 {
1945 	struct readdir_data *buf =
1946 		container_of(ctx, struct readdir_data, ctx);
1947 	struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1948 	unsigned int reclen;
1949 
1950 	reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
1951 	if (buf->used + reclen > PAGE_SIZE) {
1952 		buf->full = 1;
1953 		return -EINVAL;
1954 	}
1955 
1956 	de->namlen = namlen;
1957 	de->offset = offset;
1958 	de->ino = ino;
1959 	de->d_type = d_type;
1960 	memcpy(de->name, name, namlen);
1961 	buf->used += reclen;
1962 
1963 	return 0;
1964 }
1965 
1966 static __be32 nfsd_buffered_readdir(struct file *file, struct svc_fh *fhp,
1967 				    nfsd_filldir_t func, struct readdir_cd *cdp,
1968 				    loff_t *offsetp)
1969 {
1970 	struct buffered_dirent *de;
1971 	int host_err;
1972 	int size;
1973 	loff_t offset;
1974 	struct readdir_data buf = {
1975 		.ctx.actor = nfsd_buffered_filldir,
1976 		.dirent = (void *)__get_free_page(GFP_KERNEL)
1977 	};
1978 
1979 	if (!buf.dirent)
1980 		return nfserrno(-ENOMEM);
1981 
1982 	offset = *offsetp;
1983 
1984 	while (1) {
1985 		unsigned int reclen;
1986 
1987 		cdp->err = nfserr_eof; /* will be cleared on successful read */
1988 		buf.used = 0;
1989 		buf.full = 0;
1990 
1991 		host_err = iterate_dir(file, &buf.ctx);
1992 		if (buf.full)
1993 			host_err = 0;
1994 
1995 		if (host_err < 0)
1996 			break;
1997 
1998 		size = buf.used;
1999 
2000 		if (!size)
2001 			break;
2002 
2003 		de = (struct buffered_dirent *)buf.dirent;
2004 		while (size > 0) {
2005 			offset = de->offset;
2006 
2007 			if (func(cdp, de->name, de->namlen, de->offset,
2008 				 de->ino, de->d_type))
2009 				break;
2010 
2011 			if (cdp->err != nfs_ok)
2012 				break;
2013 
2014 			trace_nfsd_dirent(fhp, de->ino, de->name, de->namlen);
2015 
2016 			reclen = ALIGN(sizeof(*de) + de->namlen,
2017 				       sizeof(u64));
2018 			size -= reclen;
2019 			de = (struct buffered_dirent *)((char *)de + reclen);
2020 		}
2021 		if (size > 0) /* We bailed out early */
2022 			break;
2023 
2024 		offset = vfs_llseek(file, 0, SEEK_CUR);
2025 	}
2026 
2027 	free_page((unsigned long)(buf.dirent));
2028 
2029 	if (host_err)
2030 		return nfserrno(host_err);
2031 
2032 	*offsetp = offset;
2033 	return cdp->err;
2034 }
2035 
2036 /*
2037  * Read entries from a directory.
2038  * The  NFSv3/4 verifier we ignore for now.
2039  */
2040 __be32
2041 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
2042 	     struct readdir_cd *cdp, nfsd_filldir_t func)
2043 {
2044 	__be32		err;
2045 	struct file	*file;
2046 	loff_t		offset = *offsetp;
2047 	int             may_flags = NFSD_MAY_READ;
2048 
2049 	/* NFSv2 only supports 32 bit cookies */
2050 	if (rqstp->rq_vers > 2)
2051 		may_flags |= NFSD_MAY_64BIT_COOKIE;
2052 
2053 	err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
2054 	if (err)
2055 		goto out;
2056 
2057 	offset = vfs_llseek(file, offset, SEEK_SET);
2058 	if (offset < 0) {
2059 		err = nfserrno((int)offset);
2060 		goto out_close;
2061 	}
2062 
2063 	err = nfsd_buffered_readdir(file, fhp, func, cdp, offsetp);
2064 
2065 	if (err == nfserr_eof || err == nfserr_toosmall)
2066 		err = nfs_ok; /* can still be found in ->err */
2067 out_close:
2068 	fput(file);
2069 out:
2070 	return err;
2071 }
2072 
2073 /*
2074  * Get file system stats
2075  * N.B. After this call fhp needs an fh_put
2076  */
2077 __be32
2078 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
2079 {
2080 	__be32 err;
2081 
2082 	err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
2083 	if (!err) {
2084 		struct path path = {
2085 			.mnt	= fhp->fh_export->ex_path.mnt,
2086 			.dentry	= fhp->fh_dentry,
2087 		};
2088 		if (vfs_statfs(&path, stat))
2089 			err = nfserr_io;
2090 	}
2091 	return err;
2092 }
2093 
2094 static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
2095 {
2096 	return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
2097 }
2098 
2099 #ifdef CONFIG_NFSD_V4
2100 /*
2101  * Helper function to translate error numbers. In the case of xattr operations,
2102  * some error codes need to be translated outside of the standard translations.
2103  *
2104  * ENODATA needs to be translated to nfserr_noxattr.
2105  * E2BIG to nfserr_xattr2big.
2106  *
2107  * Additionally, vfs_listxattr can return -ERANGE. This means that the
2108  * file has too many extended attributes to retrieve inside an
2109  * XATTR_LIST_MAX sized buffer. This is a bug in the xattr implementation:
2110  * filesystems will allow the adding of extended attributes until they hit
2111  * their own internal limit. This limit may be larger than XATTR_LIST_MAX.
2112  * So, at that point, the attributes are present and valid, but can't
2113  * be retrieved using listxattr, since the upper level xattr code enforces
2114  * the XATTR_LIST_MAX limit.
2115  *
2116  * This bug means that we need to deal with listxattr returning -ERANGE. The
2117  * best mapping is to return TOOSMALL.
2118  */
2119 static __be32
2120 nfsd_xattr_errno(int err)
2121 {
2122 	switch (err) {
2123 	case -ENODATA:
2124 		return nfserr_noxattr;
2125 	case -E2BIG:
2126 		return nfserr_xattr2big;
2127 	case -ERANGE:
2128 		return nfserr_toosmall;
2129 	}
2130 	return nfserrno(err);
2131 }
2132 
2133 /*
2134  * Retrieve the specified user extended attribute. To avoid always
2135  * having to allocate the maximum size (since we are not getting
2136  * a maximum size from the RPC), do a probe + alloc. Hold a reader
2137  * lock on i_rwsem to prevent the extended attribute from changing
2138  * size while we're doing this.
2139  */
2140 __be32
2141 nfsd_getxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2142 	      void **bufp, int *lenp)
2143 {
2144 	ssize_t len;
2145 	__be32 err;
2146 	char *buf;
2147 	struct inode *inode;
2148 	struct dentry *dentry;
2149 
2150 	err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2151 	if (err)
2152 		return err;
2153 
2154 	err = nfs_ok;
2155 	dentry = fhp->fh_dentry;
2156 	inode = d_inode(dentry);
2157 
2158 	inode_lock_shared(inode);
2159 
2160 	len = vfs_getxattr(&init_user_ns, dentry, name, NULL, 0);
2161 
2162 	/*
2163 	 * Zero-length attribute, just return.
2164 	 */
2165 	if (len == 0) {
2166 		*bufp = NULL;
2167 		*lenp = 0;
2168 		goto out;
2169 	}
2170 
2171 	if (len < 0) {
2172 		err = nfsd_xattr_errno(len);
2173 		goto out;
2174 	}
2175 
2176 	if (len > *lenp) {
2177 		err = nfserr_toosmall;
2178 		goto out;
2179 	}
2180 
2181 	buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2182 	if (buf == NULL) {
2183 		err = nfserr_jukebox;
2184 		goto out;
2185 	}
2186 
2187 	len = vfs_getxattr(&init_user_ns, dentry, name, buf, len);
2188 	if (len <= 0) {
2189 		kvfree(buf);
2190 		buf = NULL;
2191 		err = nfsd_xattr_errno(len);
2192 	}
2193 
2194 	*lenp = len;
2195 	*bufp = buf;
2196 
2197 out:
2198 	inode_unlock_shared(inode);
2199 
2200 	return err;
2201 }
2202 
2203 /*
2204  * Retrieve the xattr names. Since we can't know how many are
2205  * user extended attributes, we must get all attributes here,
2206  * and have the XDR encode filter out the "user." ones.
2207  *
2208  * While this could always just allocate an XATTR_LIST_MAX
2209  * buffer, that's a waste, so do a probe + allocate. To
2210  * avoid any changes between the probe and allocate, wrap
2211  * this in inode_lock.
2212  */
2213 __be32
2214 nfsd_listxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char **bufp,
2215 	       int *lenp)
2216 {
2217 	ssize_t len;
2218 	__be32 err;
2219 	char *buf;
2220 	struct inode *inode;
2221 	struct dentry *dentry;
2222 
2223 	err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2224 	if (err)
2225 		return err;
2226 
2227 	dentry = fhp->fh_dentry;
2228 	inode = d_inode(dentry);
2229 	*lenp = 0;
2230 
2231 	inode_lock_shared(inode);
2232 
2233 	len = vfs_listxattr(dentry, NULL, 0);
2234 	if (len <= 0) {
2235 		err = nfsd_xattr_errno(len);
2236 		goto out;
2237 	}
2238 
2239 	if (len > XATTR_LIST_MAX) {
2240 		err = nfserr_xattr2big;
2241 		goto out;
2242 	}
2243 
2244 	/*
2245 	 * We're holding i_rwsem - use GFP_NOFS.
2246 	 */
2247 	buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2248 	if (buf == NULL) {
2249 		err = nfserr_jukebox;
2250 		goto out;
2251 	}
2252 
2253 	len = vfs_listxattr(dentry, buf, len);
2254 	if (len <= 0) {
2255 		kvfree(buf);
2256 		err = nfsd_xattr_errno(len);
2257 		goto out;
2258 	}
2259 
2260 	*lenp = len;
2261 	*bufp = buf;
2262 
2263 	err = nfs_ok;
2264 out:
2265 	inode_unlock_shared(inode);
2266 
2267 	return err;
2268 }
2269 
2270 /*
2271  * Removexattr and setxattr need to call fh_lock to both lock the inode
2272  * and set the change attribute. Since the top-level vfs_removexattr
2273  * and vfs_setxattr calls already do their own inode_lock calls, call
2274  * the _locked variant. Pass in a NULL pointer for delegated_inode,
2275  * and let the client deal with NFS4ERR_DELAY (same as with e.g.
2276  * setattr and remove).
2277  */
2278 __be32
2279 nfsd_removexattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name)
2280 {
2281 	__be32 err;
2282 	int ret;
2283 
2284 	err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2285 	if (err)
2286 		return err;
2287 
2288 	ret = fh_want_write(fhp);
2289 	if (ret)
2290 		return nfserrno(ret);
2291 
2292 	fh_lock(fhp);
2293 
2294 	ret = __vfs_removexattr_locked(&init_user_ns, fhp->fh_dentry,
2295 				       name, NULL);
2296 
2297 	fh_unlock(fhp);
2298 	fh_drop_write(fhp);
2299 
2300 	return nfsd_xattr_errno(ret);
2301 }
2302 
2303 __be32
2304 nfsd_setxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2305 	      void *buf, u32 len, u32 flags)
2306 {
2307 	__be32 err;
2308 	int ret;
2309 
2310 	err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2311 	if (err)
2312 		return err;
2313 
2314 	ret = fh_want_write(fhp);
2315 	if (ret)
2316 		return nfserrno(ret);
2317 	fh_lock(fhp);
2318 
2319 	ret = __vfs_setxattr_locked(&init_user_ns, fhp->fh_dentry, name, buf,
2320 				    len, flags, NULL);
2321 
2322 	fh_unlock(fhp);
2323 	fh_drop_write(fhp);
2324 
2325 	return nfsd_xattr_errno(ret);
2326 }
2327 #endif
2328 
2329 /*
2330  * Check for a user's access permissions to this inode.
2331  */
2332 __be32
2333 nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2334 					struct dentry *dentry, int acc)
2335 {
2336 	struct inode	*inode = d_inode(dentry);
2337 	int		err;
2338 
2339 	if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
2340 		return 0;
2341 #if 0
2342 	dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2343 		acc,
2344 		(acc & NFSD_MAY_READ)?	" read"  : "",
2345 		(acc & NFSD_MAY_WRITE)?	" write" : "",
2346 		(acc & NFSD_MAY_EXEC)?	" exec"  : "",
2347 		(acc & NFSD_MAY_SATTR)?	" sattr" : "",
2348 		(acc & NFSD_MAY_TRUNC)?	" trunc" : "",
2349 		(acc & NFSD_MAY_LOCK)?	" lock"  : "",
2350 		(acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
2351 		inode->i_mode,
2352 		IS_IMMUTABLE(inode)?	" immut" : "",
2353 		IS_APPEND(inode)?	" append" : "",
2354 		__mnt_is_readonly(exp->ex_path.mnt)?	" ro" : "");
2355 	dprintk("      owner %d/%d user %d/%d\n",
2356 		inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
2357 #endif
2358 
2359 	/* Normally we reject any write/sattr etc access on a read-only file
2360 	 * system.  But if it is IRIX doing check on write-access for a
2361 	 * device special file, we ignore rofs.
2362 	 */
2363 	if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2364 		if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2365 			if (exp_rdonly(rqstp, exp) ||
2366 			    __mnt_is_readonly(exp->ex_path.mnt))
2367 				return nfserr_rofs;
2368 			if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
2369 				return nfserr_perm;
2370 		}
2371 	if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
2372 		return nfserr_perm;
2373 
2374 	if (acc & NFSD_MAY_LOCK) {
2375 		/* If we cannot rely on authentication in NLM requests,
2376 		 * just allow locks, otherwise require read permission, or
2377 		 * ownership
2378 		 */
2379 		if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2380 			return 0;
2381 		else
2382 			acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
2383 	}
2384 	/*
2385 	 * The file owner always gets access permission for accesses that
2386 	 * would normally be checked at open time. This is to make
2387 	 * file access work even when the client has done a fchmod(fd, 0).
2388 	 *
2389 	 * However, `cp foo bar' should fail nevertheless when bar is
2390 	 * readonly. A sensible way to do this might be to reject all
2391 	 * attempts to truncate a read-only file, because a creat() call
2392 	 * always implies file truncation.
2393 	 * ... but this isn't really fair.  A process may reasonably call
2394 	 * ftruncate on an open file descriptor on a file with perm 000.
2395 	 * We must trust the client to do permission checking - using "ACCESS"
2396 	 * with NFSv3.
2397 	 */
2398 	if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
2399 	    uid_eq(inode->i_uid, current_fsuid()))
2400 		return 0;
2401 
2402 	/* This assumes  NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2403 	err = inode_permission(&init_user_ns, inode,
2404 			       acc & (MAY_READ | MAY_WRITE | MAY_EXEC));
2405 
2406 	/* Allow read access to binaries even when mode 111 */
2407 	if (err == -EACCES && S_ISREG(inode->i_mode) &&
2408 	     (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2409 	      acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
2410 		err = inode_permission(&init_user_ns, inode, MAY_EXEC);
2411 
2412 	return err? nfserrno(err) : 0;
2413 }
2414