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