1 // SPDX-License-Identifier: GPL-2.0
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.
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.
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>
37 #endif /* CONFIG_NFSD_V3 */
40 #include "../internal.h"
43 #endif /* CONFIG_NFSD_V4 */
47 #include "filecache.h"
50 #define NFSDDBG_FACILITY NFSDDBG_FILEOP
53 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
55 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
56 * or nfs_ok having possibly changed *dpp and *expp
59 nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
60 struct svc_export **expp)
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)};
68 err = follow_down(&path);
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 */
78 exp2 = rqst_exp_get_by_name(rqstp, &path);
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
88 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
93 if (nfsd_v4client(rqstp) ||
94 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
95 /* successfully crossed mount point */
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
103 path.dentry = dentry;
113 static void follow_to_parent(struct path *path)
117 while (path->dentry == path->mnt->mnt_root && follow_up(path))
119 dp = dget_parent(path->dentry);
124 static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
126 struct svc_export *exp2;
127 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
128 .dentry = dget(dparent)};
130 follow_to_parent(&path);
132 exp2 = rqst_exp_parent(rqstp, &path);
133 if (PTR_ERR(exp2) == -ENOENT) {
134 *dentryp = dget(dparent);
135 } else if (IS_ERR(exp2)) {
137 return PTR_ERR(exp2);
139 *dentryp = dget(path.dentry);
148 * For nfsd purposes, we treat V4ROOT exports as though there was an
149 * export at *every* directory.
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.
155 int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
157 if (!d_inode(dentry))
159 if (exp->ex_flags & NFSEXP_V4ROOT)
161 if (nfsd4_is_junction(dentry))
163 if (d_mountpoint(dentry))
165 * Might only be a mountpoint in a different namespace,
166 * but we need to check.
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)
177 struct svc_export *exp;
178 struct dentry *dparent;
179 struct dentry *dentry;
182 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
184 dparent = fhp->fh_dentry;
185 exp = exp_get(fhp->fh_export);
187 /* Lookup the name, but don't follow links */
188 if (isdotent(name, len)) {
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 / */
196 /* checking mountpoint crossing is very different when stepping up */
197 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
203 * In the nfsd4_open() case, this may be held across
204 * subsequent open and delegation acquisition which may
205 * need to take the child's i_mutex:
207 fh_lock_nested(fhp, I_MUTEX_PARENT);
208 dentry = lookup_one_len(name, dparent, len);
209 host_err = PTR_ERR(dentry);
212 if (nfsd_mountpoint(dentry, exp)) {
214 * We don't need the i_mutex after all. It's
215 * still possible we could open this (regular
216 * files can be mountpoints too), but the
217 * i_mutex is just there to prevent renames of
218 * something that we might be about to delegate,
219 * and a mountpoint won't be renamed:
222 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
228 *dentry_ret = dentry;
234 return nfserrno(host_err);
238 * Look up one component of a pathname.
239 * N.B. After this call _both_ fhp and resfh need an fh_put
241 * If the lookup would cross a mountpoint, and the mounted filesystem
242 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
243 * accepted as it stands and the mounted directory is
244 * returned. Otherwise the covered directory is returned.
245 * NOTE: this mountpoint crossing is not supported properly by all
246 * clients and is explicitly disallowed for NFSv3
250 nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
251 unsigned int len, struct svc_fh *resfh)
253 struct svc_export *exp;
254 struct dentry *dentry;
257 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
260 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
263 err = check_nfsd_access(exp, rqstp);
267 * Note: we compose the file handle now, but as the
268 * dentry may be negative, it may need to be updated.
270 err = fh_compose(resfh, exp, dentry, fhp);
271 if (!err && d_really_is_negative(dentry))
280 * Commit metadata changes to stable storage.
283 commit_inode_metadata(struct inode *inode)
285 const struct export_operations *export_ops = inode->i_sb->s_export_op;
287 if (export_ops->commit_metadata)
288 return export_ops->commit_metadata(inode);
289 return sync_inode_metadata(inode, 1);
293 commit_metadata(struct svc_fh *fhp)
295 struct inode *inode = d_inode(fhp->fh_dentry);
297 if (!EX_ISSYNC(fhp->fh_export))
299 return commit_inode_metadata(inode);
303 * Go over the attributes and take care of the small differences between
304 * NFS semantics and what Linux expects.
307 nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
309 /* sanitize the mode change */
310 if (iap->ia_valid & ATTR_MODE) {
311 iap->ia_mode &= S_IALLUGO;
312 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
315 /* Revoke setuid/setgid on chown */
316 if (!S_ISDIR(inode->i_mode) &&
317 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
318 iap->ia_valid |= ATTR_KILL_PRIV;
319 if (iap->ia_valid & ATTR_MODE) {
320 /* we're setting mode too, just clear the s*id bits */
321 iap->ia_mode &= ~S_ISUID;
322 if (iap->ia_mode & S_IXGRP)
323 iap->ia_mode &= ~S_ISGID;
325 /* set ATTR_KILL_* bits and let VFS handle it */
326 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
332 nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
335 struct inode *inode = d_inode(fhp->fh_dentry);
337 if (iap->ia_size < inode->i_size) {
340 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
341 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
345 return nfserrno(get_write_access(inode));
349 * Set various file attributes. After this call fhp needs an fh_put.
352 nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
353 int check_guard, time64_t guardtime)
355 struct dentry *dentry;
357 int accmode = NFSD_MAY_SATTR;
361 bool get_write_count;
362 bool size_change = (iap->ia_valid & ATTR_SIZE);
364 if (iap->ia_valid & ATTR_SIZE) {
365 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
370 * If utimes(2) and friends are called with times not NULL, we should
371 * not set NFSD_MAY_WRITE bit. Otherwise fh_verify->nfsd_permission
372 * will return EACCES, when the caller's effective UID does not match
373 * the owner of the file, and the caller is not privileged. In this
374 * situation, we should return EPERM(notify_change will return this).
376 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME)) {
377 accmode |= NFSD_MAY_OWNER_OVERRIDE;
378 if (!(iap->ia_valid & (ATTR_ATIME_SET | ATTR_MTIME_SET)))
379 accmode |= NFSD_MAY_WRITE;
382 /* Callers that do fh_verify should do the fh_want_write: */
383 get_write_count = !fhp->fh_dentry;
386 err = fh_verify(rqstp, fhp, ftype, accmode);
389 if (get_write_count) {
390 host_err = fh_want_write(fhp);
395 dentry = fhp->fh_dentry;
396 inode = d_inode(dentry);
398 /* Ignore any mode updates on symlinks */
399 if (S_ISLNK(inode->i_mode))
400 iap->ia_valid &= ~ATTR_MODE;
405 nfsd_sanitize_attrs(inode, iap);
407 if (check_guard && guardtime != inode->i_ctime.tv_sec)
408 return nfserr_notsync;
411 * The size case is special, it changes the file in addition to the
412 * attributes, and file systems don't expect it to be mixed with
413 * "random" attribute changes. We thus split out the size change
414 * into a separate call to ->setattr, and do the rest as a separate
418 err = nfsd_get_write_access(rqstp, fhp, iap);
426 * RFC5661, Section 18.30.4:
427 * Changing the size of a file with SETATTR indirectly
428 * changes the time_modify and change attributes.
430 * (and similar for the older RFCs)
432 struct iattr size_attr = {
433 .ia_valid = ATTR_SIZE | ATTR_CTIME | ATTR_MTIME,
434 .ia_size = iap->ia_size,
437 host_err = notify_change(&init_user_ns, dentry, &size_attr, NULL);
440 iap->ia_valid &= ~ATTR_SIZE;
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.
447 if ((iap->ia_valid & ~ATTR_MTIME) == 0)
451 iap->ia_valid |= ATTR_CTIME;
452 host_err = notify_change(&init_user_ns, dentry, iap, NULL);
457 put_write_access(inode);
460 host_err = commit_metadata(fhp);
461 return nfserrno(host_err);
464 #if defined(CONFIG_NFSD_V4)
466 * NFS junction information is stored in an extended attribute.
468 #define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
471 * nfsd4_is_junction - Test if an object could be an NFS junction
473 * @dentry: object to test
475 * Returns 1 if "dentry" appears to contain NFS junction information.
476 * Otherwise 0 is returned.
478 int nfsd4_is_junction(struct dentry *dentry)
480 struct inode *inode = d_inode(dentry);
484 if (inode->i_mode & S_IXUGO)
486 if (!(inode->i_mode & S_ISVTX))
488 if (vfs_getxattr(&init_user_ns, dentry, NFSD_JUNCTION_XATTR_NAME,
493 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
494 __be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
495 struct xdr_netobj *label)
499 struct dentry *dentry;
501 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
505 dentry = fhp->fh_dentry;
507 inode_lock(d_inode(dentry));
508 host_error = security_inode_setsecctx(dentry, label->data, label->len);
509 inode_unlock(d_inode(dentry));
510 return nfserrno(host_error);
513 __be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
514 struct xdr_netobj *label)
516 return nfserr_notsupp;
520 __be32 nfsd4_clone_file_range(struct nfsd_file *nf_src, u64 src_pos,
521 struct nfsd_file *nf_dst, u64 dst_pos, u64 count, bool sync)
523 struct file *src = nf_src->nf_file;
524 struct file *dst = nf_dst->nf_file;
528 down_write(&nf_dst->nf_rwsem);
529 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0);
531 ret = nfserrno(cloned);
534 if (count && cloned != count) {
535 ret = nfserrno(-EINVAL);
539 loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX;
540 int status = vfs_fsync_range(dst, dst_pos, dst_end, 0);
543 status = commit_inode_metadata(file_inode(src));
545 nfsd_reset_boot_verifier(net_generic(nf_dst->nf_net,
547 ret = nfserrno(status);
551 up_write(&nf_dst->nf_rwsem);
555 ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst,
556 u64 dst_pos, u64 count)
560 * Limit copy to 4MB to prevent indefinitely blocking an nfsd
561 * thread and client rpc slot. The choice of 4MB is somewhat
562 * arbitrary. We might instead base this on r/wsize, or make it
563 * tunable, or use a time instead of a byte limit, or implement
564 * asynchronous copy. In theory a client could also recognize a
565 * limit like this and pipeline multiple COPY requests.
567 count = min_t(u64, count, 1 << 22);
568 return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0);
571 __be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
572 struct file *file, loff_t offset, loff_t len,
577 if (!S_ISREG(file_inode(file)->i_mode))
580 error = vfs_fallocate(file, flags, offset, len);
582 error = commit_metadata(fhp);
584 return nfserrno(error);
586 #endif /* defined(CONFIG_NFSD_V4) */
588 #ifdef CONFIG_NFSD_V3
590 * Check server access rights to a file system object
596 static struct accessmap nfs3_regaccess[] = {
597 { NFS3_ACCESS_READ, NFSD_MAY_READ },
598 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
599 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
600 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
602 #ifdef CONFIG_NFSD_V4
603 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ },
604 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE },
605 { NFS4_ACCESS_XALIST, NFSD_MAY_READ },
611 static struct accessmap nfs3_diraccess[] = {
612 { NFS3_ACCESS_READ, NFSD_MAY_READ },
613 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
614 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
615 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
616 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
618 #ifdef CONFIG_NFSD_V4
619 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ },
620 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE },
621 { NFS4_ACCESS_XALIST, NFSD_MAY_READ },
627 static struct accessmap nfs3_anyaccess[] = {
628 /* Some clients - Solaris 2.6 at least, make an access call
629 * to the server to check for access for things like /dev/null
630 * (which really, the server doesn't care about). So
631 * We provide simple access checking for them, looking
632 * mainly at mode bits, and we make sure to ignore read-only
635 { NFS3_ACCESS_READ, NFSD_MAY_READ },
636 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
637 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
638 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
644 nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
646 struct accessmap *map;
647 struct svc_export *export;
648 struct dentry *dentry;
649 u32 query, result = 0, sresult = 0;
652 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
656 export = fhp->fh_export;
657 dentry = fhp->fh_dentry;
659 if (d_is_reg(dentry))
660 map = nfs3_regaccess;
661 else if (d_is_dir(dentry))
662 map = nfs3_diraccess;
664 map = nfs3_anyaccess;
668 for (; map->access; map++) {
669 if (map->access & query) {
672 sresult |= map->access;
674 err2 = nfsd_permission(rqstp, export, dentry, map->how);
677 result |= map->access;
680 /* the following error codes just mean the access was not allowed,
681 * rather than an error occurred */
685 /* simply don't "or" in the access bit. */
695 *supported = sresult;
700 #endif /* CONFIG_NFSD_V3 */
702 int nfsd_open_break_lease(struct inode *inode, int access)
706 if (access & NFSD_MAY_NOT_BREAK_LEASE)
708 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
709 return break_lease(inode, mode | O_NONBLOCK);
713 * Open an existing file or directory.
714 * The may_flags argument indicates the type of open (read/write/lock)
715 * and additional flags.
716 * N.B. After this call fhp needs an fh_put
719 __nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
720 int may_flags, struct file **filp)
725 int flags = O_RDONLY|O_LARGEFILE;
729 path.mnt = fhp->fh_export->ex_path.mnt;
730 path.dentry = fhp->fh_dentry;
731 inode = d_inode(path.dentry);
734 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
740 host_err = nfsd_open_break_lease(inode, may_flags);
741 if (host_err) /* NOMEM or WOULDBLOCK */
744 if (may_flags & NFSD_MAY_WRITE) {
745 if (may_flags & NFSD_MAY_READ)
746 flags = O_RDWR|O_LARGEFILE;
748 flags = O_WRONLY|O_LARGEFILE;
751 file = dentry_open(&path, flags, current_cred());
753 host_err = PTR_ERR(file);
757 host_err = ima_file_check(file, may_flags);
763 if (may_flags & NFSD_MAY_64BIT_COOKIE)
764 file->f_mode |= FMODE_64BITHASH;
766 file->f_mode |= FMODE_32BITHASH;
770 err = nfserrno(host_err);
776 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
777 int may_flags, struct file **filp)
781 validate_process_creds();
783 * If we get here, then the client has already done an "open",
784 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
785 * in case a chmod has now revoked permission.
787 * Arguably we should also allow the owner override for
788 * directories, but we never have and it doesn't seem to have
789 * caused anyone a problem. If we were to change this, note
790 * also that our filldir callbacks would need a variant of
791 * lookup_one_len that doesn't check permissions.
794 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
795 err = fh_verify(rqstp, fhp, type, may_flags);
797 err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
798 validate_process_creds();
803 nfsd_open_verified(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
804 int may_flags, struct file **filp)
808 validate_process_creds();
809 err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
810 validate_process_creds();
815 * Grab and keep cached pages associated with a file in the svc_rqst
816 * so that they can be passed to the network sendmsg/sendpage routines
817 * directly. They will be released after the sending has completed.
820 nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
821 struct splice_desc *sd)
823 struct svc_rqst *rqstp = sd->u.data;
824 struct page **pp = rqstp->rq_next_page;
825 struct page *page = buf->page;
827 if (rqstp->rq_res.page_len == 0) {
828 svc_rqst_replace_page(rqstp, page);
829 rqstp->rq_res.page_base = buf->offset;
830 } else if (page != pp[-1]) {
831 svc_rqst_replace_page(rqstp, page);
833 rqstp->rq_res.page_len += sd->len;
838 static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
839 struct splice_desc *sd)
841 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
844 static u32 nfsd_eof_on_read(struct file *file, loff_t offset, ssize_t len,
847 if (expected != 0 && len == 0)
849 if (offset+len >= i_size_read(file_inode(file)))
854 static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
855 struct file *file, loff_t offset,
856 unsigned long *count, u32 *eof, ssize_t host_err)
859 nfsd_stats_io_read_add(fhp->fh_export, host_err);
860 *eof = nfsd_eof_on_read(file, offset, host_err, *count);
862 fsnotify_access(file);
863 trace_nfsd_read_io_done(rqstp, fhp, offset, *count);
866 trace_nfsd_read_err(rqstp, fhp, offset, host_err);
867 return nfserrno(host_err);
871 __be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
872 struct file *file, loff_t offset, unsigned long *count,
875 struct splice_desc sd = {
883 trace_nfsd_read_splice(rqstp, fhp, offset, *count);
884 rqstp->rq_next_page = rqstp->rq_respages + 1;
885 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
886 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
889 __be32 nfsd_readv(struct svc_rqst *rqstp, struct svc_fh *fhp,
890 struct file *file, loff_t offset,
891 struct kvec *vec, int vlen, unsigned long *count,
894 struct iov_iter iter;
895 loff_t ppos = offset;
898 trace_nfsd_read_vector(rqstp, fhp, offset, *count);
899 iov_iter_kvec(&iter, READ, vec, vlen, *count);
900 host_err = vfs_iter_read(file, &iter, &ppos, 0);
901 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
905 * Gathered writes: If another process is currently writing to the file,
906 * there's a high chance this is another nfsd (triggered by a bulk write
907 * from a client's biod). Rather than syncing the file with each write
908 * request, we sleep for 10 msec.
910 * I don't know if this roughly approximates C. Juszak's idea of
911 * gathered writes, but it's a nice and simple solution (IMHO), and it
914 * Note: we do this only in the NFSv2 case, since v3 and higher have a
915 * better tool (separate unstable writes and commits) for solving this
918 static int wait_for_concurrent_writes(struct file *file)
920 struct inode *inode = file_inode(file);
921 static ino_t last_ino;
922 static dev_t last_dev;
925 if (atomic_read(&inode->i_writecount) > 1
926 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
927 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
929 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
932 if (inode->i_state & I_DIRTY) {
933 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
934 err = vfs_fsync(file, 0);
936 last_ino = inode->i_ino;
937 last_dev = inode->i_sb->s_dev;
942 nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfsd_file *nf,
943 loff_t offset, struct kvec *vec, int vlen,
944 unsigned long *cnt, int stable,
947 struct file *file = nf->nf_file;
948 struct super_block *sb = file_inode(file)->i_sb;
949 struct svc_export *exp;
950 struct iov_iter iter;
955 unsigned long exp_op_flags = 0;
956 unsigned int pflags = current->flags;
958 bool restore_flags = false;
960 trace_nfsd_write_opened(rqstp, fhp, offset, *cnt);
963 exp_op_flags = sb->s_export_op->flags;
965 if (test_bit(RQ_LOCAL, &rqstp->rq_flags) &&
966 !(exp_op_flags & EXPORT_OP_REMOTE_FS)) {
968 * We want throttling in balance_dirty_pages()
969 * and shrink_inactive_list() to only consider
970 * the backingdev we are writing to, so that nfs to
971 * localhost doesn't cause nfsd to lock up due to all
972 * the client's dirty pages or its congested queue.
974 current->flags |= PF_LOCAL_THROTTLE;
975 restore_flags = true;
978 exp = fhp->fh_export;
979 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
982 stable = NFS_UNSTABLE;
984 if (stable && !use_wgather)
987 iov_iter_kvec(&iter, WRITE, vec, vlen, *cnt);
988 if (flags & RWF_SYNC) {
989 down_write(&nf->nf_rwsem);
990 host_err = vfs_iter_write(file, &iter, &pos, flags);
992 nfsd_reset_boot_verifier(net_generic(SVC_NET(rqstp),
994 up_write(&nf->nf_rwsem);
996 down_read(&nf->nf_rwsem);
998 nfsd_copy_boot_verifier(verf,
999 net_generic(SVC_NET(rqstp),
1001 host_err = vfs_iter_write(file, &iter, &pos, flags);
1002 up_read(&nf->nf_rwsem);
1005 nfsd_reset_boot_verifier(net_generic(SVC_NET(rqstp),
1010 nfsd_stats_io_write_add(exp, *cnt);
1011 fsnotify_modify(file);
1013 if (stable && use_wgather) {
1014 host_err = wait_for_concurrent_writes(file);
1016 nfsd_reset_boot_verifier(net_generic(SVC_NET(rqstp),
1021 if (host_err >= 0) {
1022 trace_nfsd_write_io_done(rqstp, fhp, offset, *cnt);
1025 trace_nfsd_write_err(rqstp, fhp, offset, host_err);
1026 nfserr = nfserrno(host_err);
1029 current_restore_flags(pflags, PF_LOCAL_THROTTLE);
1034 * Read data from a file. count must contain the requested read count
1035 * on entry. On return, *count contains the number of bytes actually read.
1036 * N.B. After this call fhp needs an fh_put
1038 __be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
1039 loff_t offset, struct kvec *vec, int vlen, unsigned long *count,
1042 struct nfsd_file *nf;
1046 trace_nfsd_read_start(rqstp, fhp, offset, *count);
1047 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
1052 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
1053 err = nfsd_splice_read(rqstp, fhp, file, offset, count, eof);
1055 err = nfsd_readv(rqstp, fhp, file, offset, vec, vlen, count, eof);
1059 trace_nfsd_read_done(rqstp, fhp, offset, *count);
1065 * Write data to a file.
1066 * The stable flag requests synchronous writes.
1067 * N.B. After this call fhp needs an fh_put
1070 nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
1071 struct kvec *vec, int vlen, unsigned long *cnt, int stable,
1074 struct nfsd_file *nf;
1077 trace_nfsd_write_start(rqstp, fhp, offset, *cnt);
1079 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_WRITE, &nf);
1083 err = nfsd_vfs_write(rqstp, fhp, nf, offset, vec,
1084 vlen, cnt, stable, verf);
1087 trace_nfsd_write_done(rqstp, fhp, offset, *cnt);
1091 #ifdef CONFIG_NFSD_V3
1093 nfsd_filemap_write_and_wait_range(struct nfsd_file *nf, loff_t offset,
1096 struct address_space *mapping = nf->nf_file->f_mapping;
1097 int ret = filemap_fdatawrite_range(mapping, offset, end);
1101 filemap_fdatawait_range_keep_errors(mapping, offset, end);
1106 * Commit all pending writes to stable storage.
1108 * Note: we only guarantee that data that lies within the range specified
1109 * by the 'offset' and 'count' parameters will be synced.
1111 * Unfortunately we cannot lock the file to make sure we return full WCC
1112 * data to the client, as locking happens lower down in the filesystem.
1115 nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1116 loff_t offset, unsigned long count, __be32 *verf)
1118 struct nfsd_file *nf;
1119 loff_t end = LLONG_MAX;
1120 __be32 err = nfserr_inval;
1125 end = offset + (loff_t)count - 1;
1130 err = nfsd_file_acquire(rqstp, fhp,
1131 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &nf);
1134 if (EX_ISSYNC(fhp->fh_export)) {
1135 int err2 = nfsd_filemap_write_and_wait_range(nf, offset, end);
1137 down_write(&nf->nf_rwsem);
1139 err2 = vfs_fsync_range(nf->nf_file, offset, end, 0);
1142 nfsd_copy_boot_verifier(verf, net_generic(nf->nf_net,
1146 err = nfserr_notsupp;
1149 err = nfserrno(err2);
1150 nfsd_reset_boot_verifier(net_generic(nf->nf_net,
1153 up_write(&nf->nf_rwsem);
1155 nfsd_copy_boot_verifier(verf, net_generic(nf->nf_net,
1162 #endif /* CONFIG_NFSD_V3 */
1165 nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1169 * Mode has already been set earlier in create:
1171 iap->ia_valid &= ~ATTR_MODE;
1173 * Setting uid/gid works only for root. Irix appears to
1174 * send along the gid on create when it tries to implement
1175 * setgid directories via NFS:
1177 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
1178 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1180 return nfsd_setattr(rqstp, resfhp, iap, 0, (time64_t)0);
1181 /* Callers expect file metadata to be committed here */
1182 return nfserrno(commit_metadata(resfhp));
1185 /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1186 * setting size to 0 may fail for some specific file systems by the permission
1187 * checking which requires WRITE permission but the mode is 000.
1188 * we ignore the resizing(to 0) on the just new created file, since the size is
1189 * 0 after file created.
1191 * call this only after vfs_create() is called.
1194 nfsd_check_ignore_resizing(struct iattr *iap)
1196 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1197 iap->ia_valid &= ~ATTR_SIZE;
1200 /* The parent directory should already be locked: */
1202 nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
1203 char *fname, int flen, struct iattr *iap,
1204 int type, dev_t rdev, struct svc_fh *resfhp)
1206 struct dentry *dentry, *dchild;
1212 dentry = fhp->fh_dentry;
1213 dirp = d_inode(dentry);
1215 dchild = dget(resfhp->fh_dentry);
1216 if (!fhp->fh_locked) {
1217 WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
1223 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1227 if (!(iap->ia_valid & ATTR_MODE))
1229 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1231 if (!IS_POSIXACL(dirp))
1232 iap->ia_mode &= ~current_umask();
1238 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1240 nfsd_check_ignore_resizing(iap);
1243 host_err = vfs_mkdir(&init_user_ns, dirp, dchild, iap->ia_mode);
1244 if (!host_err && unlikely(d_unhashed(dchild))) {
1246 d = lookup_one_len(dchild->d_name.name,
1248 dchild->d_name.len);
1250 host_err = PTR_ERR(d);
1253 if (unlikely(d_is_negative(d))) {
1255 err = nfserr_serverfault;
1258 dput(resfhp->fh_dentry);
1259 resfhp->fh_dentry = dget(d);
1260 err = fh_update(resfhp);
1271 host_err = vfs_mknod(&init_user_ns, dirp, dchild,
1272 iap->ia_mode, rdev);
1275 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1282 err = nfsd_create_setattr(rqstp, resfhp, iap);
1285 * nfsd_create_setattr already committed the child. Transactional
1286 * filesystems had a chance to commit changes for both parent and
1287 * child simultaneously making the following commit_metadata a
1290 err2 = nfserrno(commit_metadata(fhp));
1294 * Update the file handle to get the new inode info.
1297 err = fh_update(resfhp);
1303 err = nfserrno(host_err);
1308 * Create a filesystem object (regular, directory, special).
1309 * Note that the parent directory is left locked.
1311 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1314 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1315 char *fname, int flen, struct iattr *iap,
1316 int type, dev_t rdev, struct svc_fh *resfhp)
1318 struct dentry *dentry, *dchild = NULL;
1322 if (isdotent(fname, flen))
1323 return nfserr_exist;
1325 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
1329 dentry = fhp->fh_dentry;
1331 host_err = fh_want_write(fhp);
1333 return nfserrno(host_err);
1335 fh_lock_nested(fhp, I_MUTEX_PARENT);
1336 dchild = lookup_one_len(fname, dentry, flen);
1337 host_err = PTR_ERR(dchild);
1339 return nfserrno(host_err);
1340 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1342 * We unconditionally drop our ref to dchild as fh_compose will have
1343 * already grabbed its own ref for it.
1348 return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1352 #ifdef CONFIG_NFSD_V3
1355 * NFSv3 and NFSv4 version of nfsd_create
1358 do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1359 char *fname, int flen, struct iattr *iap,
1360 struct svc_fh *resfhp, int createmode, u32 *verifier,
1361 bool *truncp, bool *created)
1363 struct dentry *dentry, *dchild = NULL;
1367 __u32 v_mtime=0, v_atime=0;
1373 if (isdotent(fname, flen))
1375 if (!(iap->ia_valid & ATTR_MODE))
1377 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
1381 dentry = fhp->fh_dentry;
1382 dirp = d_inode(dentry);
1384 host_err = fh_want_write(fhp);
1388 fh_lock_nested(fhp, I_MUTEX_PARENT);
1391 * Compose the response file handle.
1393 dchild = lookup_one_len(fname, dentry, flen);
1394 host_err = PTR_ERR(dchild);
1398 /* If file doesn't exist, check for permissions to create one */
1399 if (d_really_is_negative(dchild)) {
1400 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1405 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1409 if (nfsd_create_is_exclusive(createmode)) {
1410 /* solaris7 gets confused (bugid 4218508) if these have
1411 * the high bit set, as do xfs filesystems without the
1412 * "bigtime" feature. So just clear the high bits. If this is
1413 * ever changed to use different attrs for storing the
1414 * verifier, then do_open_lookup() will also need to be fixed
1417 v_mtime = verifier[0]&0x7fffffff;
1418 v_atime = verifier[1]&0x7fffffff;
1421 if (d_really_is_positive(dchild)) {
1424 switch (createmode) {
1425 case NFS3_CREATE_UNCHECKED:
1426 if (! d_is_reg(dchild))
1429 /* in nfsv4, we need to treat this case a little
1430 * differently. we don't want to truncate the
1431 * file now; this would be wrong if the OPEN
1432 * fails for some other reason. furthermore,
1433 * if the size is nonzero, we should ignore it
1434 * according to spec!
1436 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1439 iap->ia_valid &= ATTR_SIZE;
1443 case NFS3_CREATE_EXCLUSIVE:
1444 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1445 && d_inode(dchild)->i_atime.tv_sec == v_atime
1446 && d_inode(dchild)->i_size == 0 ) {
1452 case NFS4_CREATE_EXCLUSIVE4_1:
1453 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1454 && d_inode(dchild)->i_atime.tv_sec == v_atime
1455 && d_inode(dchild)->i_size == 0 ) {
1461 case NFS3_CREATE_GUARDED:
1468 if (!IS_POSIXACL(dirp))
1469 iap->ia_mode &= ~current_umask();
1471 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1479 nfsd_check_ignore_resizing(iap);
1481 if (nfsd_create_is_exclusive(createmode)) {
1482 /* Cram the verifier into atime/mtime */
1483 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1484 | ATTR_MTIME_SET|ATTR_ATIME_SET;
1485 /* XXX someone who knows this better please fix it for nsec */
1486 iap->ia_mtime.tv_sec = v_mtime;
1487 iap->ia_atime.tv_sec = v_atime;
1488 iap->ia_mtime.tv_nsec = 0;
1489 iap->ia_atime.tv_nsec = 0;
1493 err = nfsd_create_setattr(rqstp, resfhp, iap);
1496 * nfsd_create_setattr already committed the child
1497 * (and possibly also the parent).
1500 err = nfserrno(commit_metadata(fhp));
1503 * Update the filehandle to get the new inode info.
1506 err = fh_update(resfhp);
1510 if (dchild && !IS_ERR(dchild))
1516 err = nfserrno(host_err);
1519 #endif /* CONFIG_NFSD_V3 */
1522 * Read a symlink. On entry, *lenp must contain the maximum path length that
1523 * fits into the buffer. On return, it contains the true length.
1524 * N.B. After this call fhp needs an fh_put
1527 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1532 DEFINE_DELAYED_CALL(done);
1535 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
1539 path.mnt = fhp->fh_export->ex_path.mnt;
1540 path.dentry = fhp->fh_dentry;
1542 if (unlikely(!d_is_symlink(path.dentry)))
1543 return nfserr_inval;
1547 link = vfs_get_link(path.dentry, &done);
1549 return nfserrno(PTR_ERR(link));
1554 memcpy(buf, link, *lenp);
1555 do_delayed_call(&done);
1560 * Create a symlink and look up its inode
1561 * N.B. After this call _both_ fhp and resfhp need an fh_put
1564 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1565 char *fname, int flen,
1567 struct svc_fh *resfhp)
1569 struct dentry *dentry, *dnew;
1574 if (!flen || path[0] == '\0')
1577 if (isdotent(fname, flen))
1580 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1584 host_err = fh_want_write(fhp);
1589 dentry = fhp->fh_dentry;
1590 dnew = lookup_one_len(fname, dentry, flen);
1591 host_err = PTR_ERR(dnew);
1595 host_err = vfs_symlink(&init_user_ns, d_inode(dentry), dnew, path);
1596 err = nfserrno(host_err);
1599 err = nfserrno(commit_metadata(fhp));
1603 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1605 if (err==0) err = cerr;
1610 err = nfserrno(host_err);
1616 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1619 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1620 char *name, int len, struct svc_fh *tfhp)
1622 struct dentry *ddir, *dnew, *dold;
1627 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
1630 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
1634 if (d_is_dir(tfhp->fh_dentry))
1640 if (isdotent(name, len))
1643 host_err = fh_want_write(tfhp);
1645 err = nfserrno(host_err);
1649 fh_lock_nested(ffhp, I_MUTEX_PARENT);
1650 ddir = ffhp->fh_dentry;
1651 dirp = d_inode(ddir);
1653 dnew = lookup_one_len(name, ddir, len);
1654 host_err = PTR_ERR(dnew);
1658 dold = tfhp->fh_dentry;
1661 if (d_really_is_negative(dold))
1663 host_err = vfs_link(dold, &init_user_ns, dirp, dnew, NULL);
1666 err = nfserrno(commit_metadata(ffhp));
1668 err = nfserrno(commit_metadata(tfhp));
1670 if (host_err == -EXDEV && rqstp->rq_vers == 2)
1673 err = nfserrno(host_err);
1679 fh_drop_write(tfhp);
1684 err = nfserrno(host_err);
1689 nfsd_close_cached_files(struct dentry *dentry)
1691 struct inode *inode = d_inode(dentry);
1693 if (inode && S_ISREG(inode->i_mode))
1694 nfsd_file_close_inode_sync(inode);
1698 nfsd_has_cached_files(struct dentry *dentry)
1701 struct inode *inode = d_inode(dentry);
1703 if (inode && S_ISREG(inode->i_mode))
1704 ret = nfsd_file_is_cached(inode);
1710 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1713 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1714 struct svc_fh *tfhp, char *tname, int tlen)
1716 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1717 struct inode *fdir, *tdir;
1720 bool close_cached = false;
1722 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
1725 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
1729 fdentry = ffhp->fh_dentry;
1730 fdir = d_inode(fdentry);
1732 tdentry = tfhp->fh_dentry;
1733 tdir = d_inode(tdentry);
1736 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1740 host_err = fh_want_write(ffhp);
1742 err = nfserrno(host_err);
1746 /* cannot use fh_lock as we need deadlock protective ordering
1747 * so do it by hand */
1748 trap = lock_rename(tdentry, fdentry);
1749 ffhp->fh_locked = tfhp->fh_locked = true;
1753 odentry = lookup_one_len(fname, fdentry, flen);
1754 host_err = PTR_ERR(odentry);
1755 if (IS_ERR(odentry))
1759 if (d_really_is_negative(odentry))
1762 if (odentry == trap)
1765 ndentry = lookup_one_len(tname, tdentry, tlen);
1766 host_err = PTR_ERR(ndentry);
1767 if (IS_ERR(ndentry))
1769 host_err = -ENOTEMPTY;
1770 if (ndentry == trap)
1774 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1776 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1779 if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) &&
1780 nfsd_has_cached_files(ndentry)) {
1781 close_cached = true;
1784 struct renamedata rd = {
1785 .old_mnt_userns = &init_user_ns,
1787 .old_dentry = odentry,
1788 .new_mnt_userns = &init_user_ns,
1790 .new_dentry = ndentry,
1792 host_err = vfs_rename(&rd);
1794 host_err = commit_metadata(tfhp);
1796 host_err = commit_metadata(ffhp);
1804 err = nfserrno(host_err);
1806 * We cannot rely on fh_unlock on the two filehandles,
1807 * as that would do the wrong thing if the two directories
1808 * were the same, so again we do it by hand.
1810 if (!close_cached) {
1811 fill_post_wcc(ffhp);
1812 fill_post_wcc(tfhp);
1814 unlock_rename(tdentry, fdentry);
1815 ffhp->fh_locked = tfhp->fh_locked = false;
1816 fh_drop_write(ffhp);
1819 * If the target dentry has cached open files, then we need to try to
1820 * close them prior to doing the rename. Flushing delayed fput
1821 * shouldn't be done with locks held however, so we delay it until this
1822 * point and then reattempt the whole shebang.
1825 close_cached = false;
1826 nfsd_close_cached_files(ndentry);
1835 * Unlink a file or directory
1836 * N.B. After this call fhp needs an fh_put
1839 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1840 char *fname, int flen)
1842 struct dentry *dentry, *rdentry;
1844 struct inode *rinode;
1849 if (!flen || isdotent(fname, flen))
1851 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
1855 host_err = fh_want_write(fhp);
1859 fh_lock_nested(fhp, I_MUTEX_PARENT);
1860 dentry = fhp->fh_dentry;
1861 dirp = d_inode(dentry);
1863 rdentry = lookup_one_len(fname, dentry, flen);
1864 host_err = PTR_ERR(rdentry);
1865 if (IS_ERR(rdentry))
1866 goto out_drop_write;
1868 if (d_really_is_negative(rdentry)) {
1871 goto out_drop_write;
1873 rinode = d_inode(rdentry);
1877 type = d_inode(rdentry)->i_mode & S_IFMT;
1879 if (type != S_IFDIR) {
1880 if (rdentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK)
1881 nfsd_close_cached_files(rdentry);
1882 host_err = vfs_unlink(&init_user_ns, dirp, rdentry, NULL);
1884 host_err = vfs_rmdir(&init_user_ns, dirp, rdentry);
1889 host_err = commit_metadata(fhp);
1891 iput(rinode); /* truncate the inode here */
1896 if (host_err == -EBUSY) {
1897 /* name is mounted-on. There is no perfect
1900 if (nfsd_v4client(rqstp))
1901 err = nfserr_file_open;
1905 err = nfserrno(host_err);
1912 * We do this buffering because we must not call back into the file
1913 * system's ->lookup() method from the filldir callback. That may well
1914 * deadlock a number of file systems.
1916 * This is based heavily on the implementation of same in XFS.
1918 struct buffered_dirent {
1922 unsigned int d_type;
1926 struct readdir_data {
1927 struct dir_context ctx;
1933 static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1934 int namlen, loff_t offset, u64 ino,
1935 unsigned int d_type)
1937 struct readdir_data *buf =
1938 container_of(ctx, struct readdir_data, ctx);
1939 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1940 unsigned int reclen;
1942 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
1943 if (buf->used + reclen > PAGE_SIZE) {
1948 de->namlen = namlen;
1949 de->offset = offset;
1951 de->d_type = d_type;
1952 memcpy(de->name, name, namlen);
1953 buf->used += reclen;
1958 static __be32 nfsd_buffered_readdir(struct file *file, struct svc_fh *fhp,
1959 nfsd_filldir_t func, struct readdir_cd *cdp,
1962 struct buffered_dirent *de;
1966 struct readdir_data buf = {
1967 .ctx.actor = nfsd_buffered_filldir,
1968 .dirent = (void *)__get_free_page(GFP_KERNEL)
1972 return nfserrno(-ENOMEM);
1977 unsigned int reclen;
1979 cdp->err = nfserr_eof; /* will be cleared on successful read */
1983 host_err = iterate_dir(file, &buf.ctx);
1995 de = (struct buffered_dirent *)buf.dirent;
1997 offset = de->offset;
1999 if (func(cdp, de->name, de->namlen, de->offset,
2000 de->ino, de->d_type))
2003 if (cdp->err != nfs_ok)
2006 trace_nfsd_dirent(fhp, de->ino, de->name, de->namlen);
2008 reclen = ALIGN(sizeof(*de) + de->namlen,
2011 de = (struct buffered_dirent *)((char *)de + reclen);
2013 if (size > 0) /* We bailed out early */
2016 offset = vfs_llseek(file, 0, SEEK_CUR);
2019 free_page((unsigned long)(buf.dirent));
2022 return nfserrno(host_err);
2029 * Read entries from a directory.
2030 * The NFSv3/4 verifier we ignore for now.
2033 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
2034 struct readdir_cd *cdp, nfsd_filldir_t func)
2038 loff_t offset = *offsetp;
2039 int may_flags = NFSD_MAY_READ;
2041 /* NFSv2 only supports 32 bit cookies */
2042 if (rqstp->rq_vers > 2)
2043 may_flags |= NFSD_MAY_64BIT_COOKIE;
2045 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
2049 offset = vfs_llseek(file, offset, SEEK_SET);
2051 err = nfserrno((int)offset);
2055 err = nfsd_buffered_readdir(file, fhp, func, cdp, offsetp);
2057 if (err == nfserr_eof || err == nfserr_toosmall)
2058 err = nfs_ok; /* can still be found in ->err */
2066 * Get file system stats
2067 * N.B. After this call fhp needs an fh_put
2070 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
2074 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
2076 struct path path = {
2077 .mnt = fhp->fh_export->ex_path.mnt,
2078 .dentry = fhp->fh_dentry,
2080 if (vfs_statfs(&path, stat))
2086 static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
2088 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
2091 #ifdef CONFIG_NFSD_V4
2093 * Helper function to translate error numbers. In the case of xattr operations,
2094 * some error codes need to be translated outside of the standard translations.
2096 * ENODATA needs to be translated to nfserr_noxattr.
2097 * E2BIG to nfserr_xattr2big.
2099 * Additionally, vfs_listxattr can return -ERANGE. This means that the
2100 * file has too many extended attributes to retrieve inside an
2101 * XATTR_LIST_MAX sized buffer. This is a bug in the xattr implementation:
2102 * filesystems will allow the adding of extended attributes until they hit
2103 * their own internal limit. This limit may be larger than XATTR_LIST_MAX.
2104 * So, at that point, the attributes are present and valid, but can't
2105 * be retrieved using listxattr, since the upper level xattr code enforces
2106 * the XATTR_LIST_MAX limit.
2108 * This bug means that we need to deal with listxattr returning -ERANGE. The
2109 * best mapping is to return TOOSMALL.
2112 nfsd_xattr_errno(int err)
2116 return nfserr_noxattr;
2118 return nfserr_xattr2big;
2120 return nfserr_toosmall;
2122 return nfserrno(err);
2126 * Retrieve the specified user extended attribute. To avoid always
2127 * having to allocate the maximum size (since we are not getting
2128 * a maximum size from the RPC), do a probe + alloc. Hold a reader
2129 * lock on i_rwsem to prevent the extended attribute from changing
2130 * size while we're doing this.
2133 nfsd_getxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2134 void **bufp, int *lenp)
2139 struct inode *inode;
2140 struct dentry *dentry;
2142 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2147 dentry = fhp->fh_dentry;
2148 inode = d_inode(dentry);
2150 inode_lock_shared(inode);
2152 len = vfs_getxattr(&init_user_ns, dentry, name, NULL, 0);
2155 * Zero-length attribute, just return.
2164 err = nfsd_xattr_errno(len);
2169 err = nfserr_toosmall;
2173 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2175 err = nfserr_jukebox;
2179 len = vfs_getxattr(&init_user_ns, dentry, name, buf, len);
2183 err = nfsd_xattr_errno(len);
2190 inode_unlock_shared(inode);
2196 * Retrieve the xattr names. Since we can't know how many are
2197 * user extended attributes, we must get all attributes here,
2198 * and have the XDR encode filter out the "user." ones.
2200 * While this could always just allocate an XATTR_LIST_MAX
2201 * buffer, that's a waste, so do a probe + allocate. To
2202 * avoid any changes between the probe and allocate, wrap
2203 * this in inode_lock.
2206 nfsd_listxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char **bufp,
2212 struct inode *inode;
2213 struct dentry *dentry;
2215 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2219 dentry = fhp->fh_dentry;
2220 inode = d_inode(dentry);
2223 inode_lock_shared(inode);
2225 len = vfs_listxattr(dentry, NULL, 0);
2227 err = nfsd_xattr_errno(len);
2231 if (len > XATTR_LIST_MAX) {
2232 err = nfserr_xattr2big;
2237 * We're holding i_rwsem - use GFP_NOFS.
2239 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2241 err = nfserr_jukebox;
2245 len = vfs_listxattr(dentry, buf, len);
2248 err = nfsd_xattr_errno(len);
2257 inode_unlock_shared(inode);
2263 * Removexattr and setxattr need to call fh_lock to both lock the inode
2264 * and set the change attribute. Since the top-level vfs_removexattr
2265 * and vfs_setxattr calls already do their own inode_lock calls, call
2266 * the _locked variant. Pass in a NULL pointer for delegated_inode,
2267 * and let the client deal with NFS4ERR_DELAY (same as with e.g.
2268 * setattr and remove).
2271 nfsd_removexattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name)
2276 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2280 ret = fh_want_write(fhp);
2282 return nfserrno(ret);
2286 ret = __vfs_removexattr_locked(&init_user_ns, fhp->fh_dentry,
2292 return nfsd_xattr_errno(ret);
2296 nfsd_setxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2297 void *buf, u32 len, u32 flags)
2302 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2306 ret = fh_want_write(fhp);
2308 return nfserrno(ret);
2311 ret = __vfs_setxattr_locked(&init_user_ns, fhp->fh_dentry, name, buf,
2317 return nfsd_xattr_errno(ret);
2322 * Check for a user's access permissions to this inode.
2325 nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2326 struct dentry *dentry, int acc)
2328 struct inode *inode = d_inode(dentry);
2331 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
2334 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2336 (acc & NFSD_MAY_READ)? " read" : "",
2337 (acc & NFSD_MAY_WRITE)? " write" : "",
2338 (acc & NFSD_MAY_EXEC)? " exec" : "",
2339 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2340 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2341 (acc & NFSD_MAY_LOCK)? " lock" : "",
2342 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
2344 IS_IMMUTABLE(inode)? " immut" : "",
2345 IS_APPEND(inode)? " append" : "",
2346 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
2347 dprintk(" owner %d/%d user %d/%d\n",
2348 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
2351 /* Normally we reject any write/sattr etc access on a read-only file
2352 * system. But if it is IRIX doing check on write-access for a
2353 * device special file, we ignore rofs.
2355 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2356 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2357 if (exp_rdonly(rqstp, exp) ||
2358 __mnt_is_readonly(exp->ex_path.mnt))
2360 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
2363 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
2366 if (acc & NFSD_MAY_LOCK) {
2367 /* If we cannot rely on authentication in NLM requests,
2368 * just allow locks, otherwise require read permission, or
2371 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2374 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
2377 * The file owner always gets access permission for accesses that
2378 * would normally be checked at open time. This is to make
2379 * file access work even when the client has done a fchmod(fd, 0).
2381 * However, `cp foo bar' should fail nevertheless when bar is
2382 * readonly. A sensible way to do this might be to reject all
2383 * attempts to truncate a read-only file, because a creat() call
2384 * always implies file truncation.
2385 * ... but this isn't really fair. A process may reasonably call
2386 * ftruncate on an open file descriptor on a file with perm 000.
2387 * We must trust the client to do permission checking - using "ACCESS"
2390 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
2391 uid_eq(inode->i_uid, current_fsuid()))
2394 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2395 err = inode_permission(&init_user_ns, inode,
2396 acc & (MAY_READ | MAY_WRITE | MAY_EXEC));
2398 /* Allow read access to binaries even when mode 111 */
2399 if (err == -EACCES && S_ISREG(inode->i_mode) &&
2400 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2401 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
2402 err = inode_permission(&init_user_ns, inode, MAY_EXEC);
2404 return err? nfserrno(err) : 0;