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"
44 #endif /* CONFIG_NFSD_V4 */
48 #include "filecache.h"
51 #define NFSDDBG_FACILITY NFSDDBG_FILEOP
54 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
56 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
57 * or nfs_ok having possibly changed *dpp and *expp
60 nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
61 struct svc_export **expp)
63 struct svc_export *exp = *expp, *exp2 = NULL;
64 struct dentry *dentry = *dpp;
65 struct path path = {.mnt = mntget(exp->ex_path.mnt),
66 .dentry = dget(dentry)};
69 err = follow_down(&path);
72 if (path.mnt == exp->ex_path.mnt && path.dentry == dentry &&
73 nfsd_mountpoint(dentry, exp) == 2) {
74 /* This is only a mountpoint in some other namespace */
79 exp2 = rqst_exp_get_by_name(rqstp, &path);
83 * We normally allow NFS clients to continue
84 * "underneath" a mountpoint that is not exported.
85 * The exception is V4ROOT, where no traversal is ever
86 * allowed without an explicit export of the new
89 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
94 if (nfsd_v4client(rqstp) ||
95 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
96 /* successfully crossed mount point */
98 * This is subtle: path.dentry is *not* on path.mnt
99 * at this point. The only reason we are safe is that
100 * original mnt is pinned down by exp, so we should
101 * put path *before* putting exp
104 path.dentry = dentry;
114 static void follow_to_parent(struct path *path)
118 while (path->dentry == path->mnt->mnt_root && follow_up(path))
120 dp = dget_parent(path->dentry);
125 static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
127 struct svc_export *exp2;
128 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
129 .dentry = dget(dparent)};
131 follow_to_parent(&path);
133 exp2 = rqst_exp_parent(rqstp, &path);
134 if (PTR_ERR(exp2) == -ENOENT) {
135 *dentryp = dget(dparent);
136 } else if (IS_ERR(exp2)) {
138 return PTR_ERR(exp2);
140 *dentryp = dget(path.dentry);
149 * For nfsd purposes, we treat V4ROOT exports as though there was an
150 * export at *every* directory.
152 * '1' if this dentry *must* be an export point,
153 * '2' if it might be, if there is really a mount here, and
154 * '0' if there is no chance of an export point here.
156 int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
158 if (!d_inode(dentry))
160 if (exp->ex_flags & NFSEXP_V4ROOT)
162 if (nfsd4_is_junction(dentry))
164 if (d_mountpoint(dentry))
166 * Might only be a mountpoint in a different namespace,
167 * but we need to check.
174 nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
175 const char *name, unsigned int len,
176 struct svc_export **exp_ret, struct dentry **dentry_ret)
178 struct svc_export *exp;
179 struct dentry *dparent;
180 struct dentry *dentry;
183 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
185 dparent = fhp->fh_dentry;
186 exp = exp_get(fhp->fh_export);
188 /* Lookup the name, but don't follow links */
189 if (isdotent(name, len)) {
191 dentry = dget(dparent);
192 else if (dparent != exp->ex_path.dentry)
193 dentry = dget_parent(dparent);
194 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
195 dentry = dget(dparent); /* .. == . just like at / */
197 /* checking mountpoint crossing is very different when stepping up */
198 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
204 * In the nfsd4_open() case, this may be held across
205 * subsequent open and delegation acquisition which may
206 * need to take the child's i_mutex:
208 fh_lock_nested(fhp, I_MUTEX_PARENT);
209 dentry = lookup_one_len(name, dparent, len);
210 host_err = PTR_ERR(dentry);
213 if (nfsd_mountpoint(dentry, exp)) {
215 * We don't need the i_mutex after all. It's
216 * still possible we could open this (regular
217 * files can be mountpoints too), but the
218 * i_mutex is just there to prevent renames of
219 * something that we might be about to delegate,
220 * and a mountpoint won't be renamed:
223 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
229 *dentry_ret = dentry;
235 return nfserrno(host_err);
239 * Look up one component of a pathname.
240 * N.B. After this call _both_ fhp and resfh need an fh_put
242 * If the lookup would cross a mountpoint, and the mounted filesystem
243 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
244 * accepted as it stands and the mounted directory is
245 * returned. Otherwise the covered directory is returned.
246 * NOTE: this mountpoint crossing is not supported properly by all
247 * clients and is explicitly disallowed for NFSv3
251 nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
252 unsigned int len, struct svc_fh *resfh)
254 struct svc_export *exp;
255 struct dentry *dentry;
258 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
261 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
264 err = check_nfsd_access(exp, rqstp);
268 * Note: we compose the file handle now, but as the
269 * dentry may be negative, it may need to be updated.
271 err = fh_compose(resfh, exp, dentry, fhp);
272 if (!err && d_really_is_negative(dentry))
281 * Commit metadata changes to stable storage.
284 commit_inode_metadata(struct inode *inode)
286 const struct export_operations *export_ops = inode->i_sb->s_export_op;
288 if (export_ops->commit_metadata)
289 return export_ops->commit_metadata(inode);
290 return sync_inode_metadata(inode, 1);
294 commit_metadata(struct svc_fh *fhp)
296 struct inode *inode = d_inode(fhp->fh_dentry);
298 if (!EX_ISSYNC(fhp->fh_export))
300 return commit_inode_metadata(inode);
304 * Go over the attributes and take care of the small differences between
305 * NFS semantics and what Linux expects.
308 nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
310 /* sanitize the mode change */
311 if (iap->ia_valid & ATTR_MODE) {
312 iap->ia_mode &= S_IALLUGO;
313 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
316 /* Revoke setuid/setgid on chown */
317 if (!S_ISDIR(inode->i_mode) &&
318 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
319 iap->ia_valid |= ATTR_KILL_PRIV;
320 if (iap->ia_valid & ATTR_MODE) {
321 /* we're setting mode too, just clear the s*id bits */
322 iap->ia_mode &= ~S_ISUID;
323 if (iap->ia_mode & S_IXGRP)
324 iap->ia_mode &= ~S_ISGID;
326 /* set ATTR_KILL_* bits and let VFS handle it */
327 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
333 nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
336 struct inode *inode = d_inode(fhp->fh_dentry);
338 if (iap->ia_size < inode->i_size) {
341 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
342 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
346 return nfserrno(get_write_access(inode));
350 * Set various file attributes. After this call fhp needs an fh_put.
353 nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
354 int check_guard, time64_t guardtime)
356 struct dentry *dentry;
358 int accmode = NFSD_MAY_SATTR;
362 bool get_write_count;
363 bool size_change = (iap->ia_valid & ATTR_SIZE);
365 if (iap->ia_valid & ATTR_SIZE) {
366 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
371 * If utimes(2) and friends are called with times not NULL, we should
372 * not set NFSD_MAY_WRITE bit. Otherwise fh_verify->nfsd_permission
373 * will return EACCES, when the caller's effective UID does not match
374 * the owner of the file, and the caller is not privileged. In this
375 * situation, we should return EPERM(notify_change will return this).
377 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME)) {
378 accmode |= NFSD_MAY_OWNER_OVERRIDE;
379 if (!(iap->ia_valid & (ATTR_ATIME_SET | ATTR_MTIME_SET)))
380 accmode |= NFSD_MAY_WRITE;
383 /* Callers that do fh_verify should do the fh_want_write: */
384 get_write_count = !fhp->fh_dentry;
387 err = fh_verify(rqstp, fhp, ftype, accmode);
390 if (get_write_count) {
391 host_err = fh_want_write(fhp);
396 dentry = fhp->fh_dentry;
397 inode = d_inode(dentry);
399 /* Ignore any mode updates on symlinks */
400 if (S_ISLNK(inode->i_mode))
401 iap->ia_valid &= ~ATTR_MODE;
406 nfsd_sanitize_attrs(inode, iap);
408 if (check_guard && guardtime != inode->i_ctime.tv_sec)
409 return nfserr_notsync;
412 * The size case is special, it changes the file in addition to the
413 * attributes, and file systems don't expect it to be mixed with
414 * "random" attribute changes. We thus split out the size change
415 * into a separate call to ->setattr, and do the rest as a separate
419 err = nfsd_get_write_access(rqstp, fhp, iap);
427 * RFC5661, Section 18.30.4:
428 * Changing the size of a file with SETATTR indirectly
429 * changes the time_modify and change attributes.
431 * (and similar for the older RFCs)
433 struct iattr size_attr = {
434 .ia_valid = ATTR_SIZE | ATTR_CTIME | ATTR_MTIME,
435 .ia_size = iap->ia_size,
438 host_err = notify_change(&init_user_ns, dentry, &size_attr, NULL);
441 iap->ia_valid &= ~ATTR_SIZE;
444 * Avoid the additional setattr call below if the only other
445 * attribute that the client sends is the mtime, as we update
446 * it as part of the size change above.
448 if ((iap->ia_valid & ~ATTR_MTIME) == 0)
452 iap->ia_valid |= ATTR_CTIME;
453 host_err = notify_change(&init_user_ns, dentry, iap, NULL);
458 put_write_access(inode);
461 host_err = commit_metadata(fhp);
462 return nfserrno(host_err);
465 #if defined(CONFIG_NFSD_V4)
467 * NFS junction information is stored in an extended attribute.
469 #define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
472 * nfsd4_is_junction - Test if an object could be an NFS junction
474 * @dentry: object to test
476 * Returns 1 if "dentry" appears to contain NFS junction information.
477 * Otherwise 0 is returned.
479 int nfsd4_is_junction(struct dentry *dentry)
481 struct inode *inode = d_inode(dentry);
485 if (inode->i_mode & S_IXUGO)
487 if (!(inode->i_mode & S_ISVTX))
489 if (vfs_getxattr(&init_user_ns, dentry, NFSD_JUNCTION_XATTR_NAME,
494 #ifdef CONFIG_NFSD_V4_SECURITY_LABEL
495 __be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
496 struct xdr_netobj *label)
500 struct dentry *dentry;
502 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
506 dentry = fhp->fh_dentry;
508 inode_lock(d_inode(dentry));
509 host_error = security_inode_setsecctx(dentry, label->data, label->len);
510 inode_unlock(d_inode(dentry));
511 return nfserrno(host_error);
514 __be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
515 struct xdr_netobj *label)
517 return nfserr_notsupp;
521 static struct nfsd4_compound_state *nfsd4_get_cstate(struct svc_rqst *rqstp)
523 return &((struct nfsd4_compoundres *)rqstp->rq_resp)->cstate;
526 __be32 nfsd4_clone_file_range(struct svc_rqst *rqstp,
527 struct nfsd_file *nf_src, u64 src_pos,
528 struct nfsd_file *nf_dst, u64 dst_pos,
529 u64 count, bool sync)
531 struct file *src = nf_src->nf_file;
532 struct file *dst = nf_dst->nf_file;
537 since = READ_ONCE(dst->f_wb_err);
538 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0);
540 ret = nfserrno(cloned);
543 if (count && cloned != count) {
544 ret = nfserrno(-EINVAL);
548 loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX;
549 int status = vfs_fsync_range(dst, dst_pos, dst_end, 0);
552 status = filemap_check_wb_err(dst->f_mapping, since);
554 status = commit_inode_metadata(file_inode(src));
556 struct nfsd_net *nn = net_generic(nf_dst->nf_net,
559 trace_nfsd_clone_file_range_err(rqstp,
560 &nfsd4_get_cstate(rqstp)->save_fh,
562 &nfsd4_get_cstate(rqstp)->current_fh,
565 nfsd_reset_write_verifier(nn);
566 trace_nfsd_writeverf_reset(nn, rqstp, status);
567 ret = nfserrno(status);
574 ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst,
575 u64 dst_pos, u64 count)
579 * Limit copy to 4MB to prevent indefinitely blocking an nfsd
580 * thread and client rpc slot. The choice of 4MB is somewhat
581 * arbitrary. We might instead base this on r/wsize, or make it
582 * tunable, or use a time instead of a byte limit, or implement
583 * asynchronous copy. In theory a client could also recognize a
584 * limit like this and pipeline multiple COPY requests.
586 count = min_t(u64, count, 1 << 22);
587 return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0);
590 __be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
591 struct file *file, loff_t offset, loff_t len,
596 if (!S_ISREG(file_inode(file)->i_mode))
599 error = vfs_fallocate(file, flags, offset, len);
601 error = commit_metadata(fhp);
603 return nfserrno(error);
605 #endif /* defined(CONFIG_NFSD_V4) */
607 #ifdef CONFIG_NFSD_V3
609 * Check server access rights to a file system object
615 static struct accessmap nfs3_regaccess[] = {
616 { NFS3_ACCESS_READ, NFSD_MAY_READ },
617 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
618 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
619 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
621 #ifdef CONFIG_NFSD_V4
622 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ },
623 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE },
624 { NFS4_ACCESS_XALIST, NFSD_MAY_READ },
630 static struct accessmap nfs3_diraccess[] = {
631 { NFS3_ACCESS_READ, NFSD_MAY_READ },
632 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
633 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
634 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
635 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
637 #ifdef CONFIG_NFSD_V4
638 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ },
639 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE },
640 { NFS4_ACCESS_XALIST, NFSD_MAY_READ },
646 static struct accessmap nfs3_anyaccess[] = {
647 /* Some clients - Solaris 2.6 at least, make an access call
648 * to the server to check for access for things like /dev/null
649 * (which really, the server doesn't care about). So
650 * We provide simple access checking for them, looking
651 * mainly at mode bits, and we make sure to ignore read-only
654 { NFS3_ACCESS_READ, NFSD_MAY_READ },
655 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
656 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
657 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
663 nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
665 struct accessmap *map;
666 struct svc_export *export;
667 struct dentry *dentry;
668 u32 query, result = 0, sresult = 0;
671 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
675 export = fhp->fh_export;
676 dentry = fhp->fh_dentry;
678 if (d_is_reg(dentry))
679 map = nfs3_regaccess;
680 else if (d_is_dir(dentry))
681 map = nfs3_diraccess;
683 map = nfs3_anyaccess;
687 for (; map->access; map++) {
688 if (map->access & query) {
691 sresult |= map->access;
693 err2 = nfsd_permission(rqstp, export, dentry, map->how);
696 result |= map->access;
699 /* the following error codes just mean the access was not allowed,
700 * rather than an error occurred */
704 /* simply don't "or" in the access bit. */
714 *supported = sresult;
719 #endif /* CONFIG_NFSD_V3 */
721 int nfsd_open_break_lease(struct inode *inode, int access)
725 if (access & NFSD_MAY_NOT_BREAK_LEASE)
727 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
728 return break_lease(inode, mode | O_NONBLOCK);
732 * Open an existing file or directory.
733 * The may_flags argument indicates the type of open (read/write/lock)
734 * and additional flags.
735 * N.B. After this call fhp needs an fh_put
738 __nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
739 int may_flags, struct file **filp)
744 int flags = O_RDONLY|O_LARGEFILE;
748 path.mnt = fhp->fh_export->ex_path.mnt;
749 path.dentry = fhp->fh_dentry;
750 inode = d_inode(path.dentry);
753 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
759 host_err = nfsd_open_break_lease(inode, may_flags);
760 if (host_err) /* NOMEM or WOULDBLOCK */
763 if (may_flags & NFSD_MAY_WRITE) {
764 if (may_flags & NFSD_MAY_READ)
765 flags = O_RDWR|O_LARGEFILE;
767 flags = O_WRONLY|O_LARGEFILE;
770 file = dentry_open(&path, flags, current_cred());
772 host_err = PTR_ERR(file);
776 host_err = ima_file_check(file, may_flags);
782 if (may_flags & NFSD_MAY_64BIT_COOKIE)
783 file->f_mode |= FMODE_64BITHASH;
785 file->f_mode |= FMODE_32BITHASH;
789 err = nfserrno(host_err);
795 nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
796 int may_flags, struct file **filp)
799 bool retried = false;
801 validate_process_creds();
803 * If we get here, then the client has already done an "open",
804 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
805 * in case a chmod has now revoked permission.
807 * Arguably we should also allow the owner override for
808 * directories, but we never have and it doesn't seem to have
809 * caused anyone a problem. If we were to change this, note
810 * also that our filldir callbacks would need a variant of
811 * lookup_one_len that doesn't check permissions.
814 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
816 err = fh_verify(rqstp, fhp, type, may_flags);
818 err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
819 if (err == nfserr_stale && !retried) {
825 validate_process_creds();
830 nfsd_open_verified(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
831 int may_flags, struct file **filp)
835 validate_process_creds();
836 err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
837 validate_process_creds();
842 * Grab and keep cached pages associated with a file in the svc_rqst
843 * so that they can be passed to the network sendmsg/sendpage routines
844 * directly. They will be released after the sending has completed.
847 nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
848 struct splice_desc *sd)
850 struct svc_rqst *rqstp = sd->u.data;
851 struct page **pp = rqstp->rq_next_page;
852 struct page *page = buf->page;
854 if (rqstp->rq_res.page_len == 0) {
855 svc_rqst_replace_page(rqstp, page);
856 rqstp->rq_res.page_base = buf->offset;
857 } else if (page != pp[-1]) {
858 svc_rqst_replace_page(rqstp, page);
860 rqstp->rq_res.page_len += sd->len;
865 static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
866 struct splice_desc *sd)
868 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
871 static u32 nfsd_eof_on_read(struct file *file, loff_t offset, ssize_t len,
874 if (expected != 0 && len == 0)
876 if (offset+len >= i_size_read(file_inode(file)))
881 static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
882 struct file *file, loff_t offset,
883 unsigned long *count, u32 *eof, ssize_t host_err)
886 nfsd_stats_io_read_add(fhp->fh_export, host_err);
887 *eof = nfsd_eof_on_read(file, offset, host_err, *count);
889 fsnotify_access(file);
890 trace_nfsd_read_io_done(rqstp, fhp, offset, *count);
893 trace_nfsd_read_err(rqstp, fhp, offset, host_err);
894 return nfserrno(host_err);
898 __be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
899 struct file *file, loff_t offset, unsigned long *count,
902 struct splice_desc sd = {
910 trace_nfsd_read_splice(rqstp, fhp, offset, *count);
911 rqstp->rq_next_page = rqstp->rq_respages + 1;
912 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
913 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
916 __be32 nfsd_readv(struct svc_rqst *rqstp, struct svc_fh *fhp,
917 struct file *file, loff_t offset,
918 struct kvec *vec, int vlen, unsigned long *count,
921 struct iov_iter iter;
922 loff_t ppos = offset;
925 trace_nfsd_read_vector(rqstp, fhp, offset, *count);
926 iov_iter_kvec(&iter, READ, vec, vlen, *count);
927 host_err = vfs_iter_read(file, &iter, &ppos, 0);
928 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
932 * Gathered writes: If another process is currently writing to the file,
933 * there's a high chance this is another nfsd (triggered by a bulk write
934 * from a client's biod). Rather than syncing the file with each write
935 * request, we sleep for 10 msec.
937 * I don't know if this roughly approximates C. Juszak's idea of
938 * gathered writes, but it's a nice and simple solution (IMHO), and it
941 * Note: we do this only in the NFSv2 case, since v3 and higher have a
942 * better tool (separate unstable writes and commits) for solving this
945 static int wait_for_concurrent_writes(struct file *file)
947 struct inode *inode = file_inode(file);
948 static ino_t last_ino;
949 static dev_t last_dev;
952 if (atomic_read(&inode->i_writecount) > 1
953 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
954 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
956 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
959 if (inode->i_state & I_DIRTY) {
960 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
961 err = vfs_fsync(file, 0);
963 last_ino = inode->i_ino;
964 last_dev = inode->i_sb->s_dev;
969 nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfsd_file *nf,
970 loff_t offset, struct kvec *vec, int vlen,
971 unsigned long *cnt, int stable,
974 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
975 struct file *file = nf->nf_file;
976 struct super_block *sb = file_inode(file)->i_sb;
977 struct svc_export *exp;
978 struct iov_iter iter;
984 unsigned long exp_op_flags = 0;
985 unsigned int pflags = current->flags;
987 bool restore_flags = false;
989 trace_nfsd_write_opened(rqstp, fhp, offset, *cnt);
992 exp_op_flags = sb->s_export_op->flags;
994 if (test_bit(RQ_LOCAL, &rqstp->rq_flags) &&
995 !(exp_op_flags & EXPORT_OP_REMOTE_FS)) {
997 * We want throttling in balance_dirty_pages()
998 * and shrink_inactive_list() to only consider
999 * the backingdev we are writing to, so that nfs to
1000 * localhost doesn't cause nfsd to lock up due to all
1001 * the client's dirty pages or its congested queue.
1003 current->flags |= PF_LOCAL_THROTTLE;
1004 restore_flags = true;
1007 exp = fhp->fh_export;
1008 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
1010 if (!EX_ISSYNC(exp))
1011 stable = NFS_UNSTABLE;
1013 if (stable && !use_wgather)
1016 iov_iter_kvec(&iter, WRITE, vec, vlen, *cnt);
1017 since = READ_ONCE(file->f_wb_err);
1019 nfsd_copy_write_verifier(verf, nn);
1020 host_err = vfs_iter_write(file, &iter, &pos, flags);
1022 nfsd_reset_write_verifier(nn);
1023 trace_nfsd_writeverf_reset(nn, rqstp, host_err);
1027 nfsd_stats_io_write_add(exp, *cnt);
1028 fsnotify_modify(file);
1029 host_err = filemap_check_wb_err(file->f_mapping, since);
1033 if (stable && use_wgather) {
1034 host_err = wait_for_concurrent_writes(file);
1036 nfsd_reset_write_verifier(nn);
1037 trace_nfsd_writeverf_reset(nn, rqstp, host_err);
1042 if (host_err >= 0) {
1043 trace_nfsd_write_io_done(rqstp, fhp, offset, *cnt);
1046 trace_nfsd_write_err(rqstp, fhp, offset, host_err);
1047 nfserr = nfserrno(host_err);
1050 current_restore_flags(pflags, PF_LOCAL_THROTTLE);
1055 * Read data from a file. count must contain the requested read count
1056 * on entry. On return, *count contains the number of bytes actually read.
1057 * N.B. After this call fhp needs an fh_put
1059 __be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
1060 loff_t offset, struct kvec *vec, int vlen, unsigned long *count,
1063 struct nfsd_file *nf;
1067 trace_nfsd_read_start(rqstp, fhp, offset, *count);
1068 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
1073 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
1074 err = nfsd_splice_read(rqstp, fhp, file, offset, count, eof);
1076 err = nfsd_readv(rqstp, fhp, file, offset, vec, vlen, count, eof);
1080 trace_nfsd_read_done(rqstp, fhp, offset, *count);
1086 * Write data to a file.
1087 * The stable flag requests synchronous writes.
1088 * N.B. After this call fhp needs an fh_put
1091 nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
1092 struct kvec *vec, int vlen, unsigned long *cnt, int stable,
1095 struct nfsd_file *nf;
1098 trace_nfsd_write_start(rqstp, fhp, offset, *cnt);
1100 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_WRITE, &nf);
1104 err = nfsd_vfs_write(rqstp, fhp, nf, offset, vec,
1105 vlen, cnt, stable, verf);
1108 trace_nfsd_write_done(rqstp, fhp, offset, *cnt);
1112 #ifdef CONFIG_NFSD_V3
1114 * Commit all pending writes to stable storage.
1116 * Note: we only guarantee that data that lies within the range specified
1117 * by the 'offset' and 'count' parameters will be synced.
1119 * Unfortunately we cannot lock the file to make sure we return full WCC
1120 * data to the client, as locking happens lower down in the filesystem.
1123 nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1124 loff_t offset, unsigned long count, __be32 *verf)
1126 struct nfsd_net *nn;
1127 struct nfsd_file *nf;
1128 loff_t end = LLONG_MAX;
1129 __be32 err = nfserr_inval;
1134 end = offset + (loff_t)count - 1;
1139 err = nfsd_file_acquire(rqstp, fhp,
1140 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &nf);
1143 nn = net_generic(nf->nf_net, nfsd_net_id);
1144 if (EX_ISSYNC(fhp->fh_export)) {
1145 errseq_t since = READ_ONCE(nf->nf_file->f_wb_err);
1148 err2 = vfs_fsync_range(nf->nf_file, offset, end, 0);
1151 nfsd_copy_write_verifier(verf, nn);
1152 err2 = filemap_check_wb_err(nf->nf_file->f_mapping,
1156 err = nfserr_notsupp;
1159 nfsd_reset_write_verifier(nn);
1160 trace_nfsd_writeverf_reset(nn, rqstp, err2);
1162 err = nfserrno(err2);
1164 nfsd_copy_write_verifier(verf, nn);
1170 #endif /* CONFIG_NFSD_V3 */
1173 nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1177 * Mode has already been set earlier in create:
1179 iap->ia_valid &= ~ATTR_MODE;
1181 * Setting uid/gid works only for root. Irix appears to
1182 * send along the gid on create when it tries to implement
1183 * setgid directories via NFS:
1185 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
1186 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1188 return nfsd_setattr(rqstp, resfhp, iap, 0, (time64_t)0);
1189 /* Callers expect file metadata to be committed here */
1190 return nfserrno(commit_metadata(resfhp));
1193 /* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1194 * setting size to 0 may fail for some specific file systems by the permission
1195 * checking which requires WRITE permission but the mode is 000.
1196 * we ignore the resizing(to 0) on the just new created file, since the size is
1197 * 0 after file created.
1199 * call this only after vfs_create() is called.
1202 nfsd_check_ignore_resizing(struct iattr *iap)
1204 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1205 iap->ia_valid &= ~ATTR_SIZE;
1208 /* The parent directory should already be locked: */
1210 nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
1211 char *fname, int flen, struct iattr *iap,
1212 int type, dev_t rdev, struct svc_fh *resfhp)
1214 struct dentry *dentry, *dchild;
1220 dentry = fhp->fh_dentry;
1221 dirp = d_inode(dentry);
1223 dchild = dget(resfhp->fh_dentry);
1224 if (!fhp->fh_locked) {
1225 WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
1231 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1235 if (!(iap->ia_valid & ATTR_MODE))
1237 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1239 if (!IS_POSIXACL(dirp))
1240 iap->ia_mode &= ~current_umask();
1246 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1248 nfsd_check_ignore_resizing(iap);
1251 host_err = vfs_mkdir(&init_user_ns, dirp, dchild, iap->ia_mode);
1252 if (!host_err && unlikely(d_unhashed(dchild))) {
1254 d = lookup_one_len(dchild->d_name.name,
1256 dchild->d_name.len);
1258 host_err = PTR_ERR(d);
1261 if (unlikely(d_is_negative(d))) {
1263 err = nfserr_serverfault;
1266 dput(resfhp->fh_dentry);
1267 resfhp->fh_dentry = dget(d);
1268 err = fh_update(resfhp);
1279 host_err = vfs_mknod(&init_user_ns, dirp, dchild,
1280 iap->ia_mode, rdev);
1283 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1290 err = nfsd_create_setattr(rqstp, resfhp, iap);
1293 * nfsd_create_setattr already committed the child. Transactional
1294 * filesystems had a chance to commit changes for both parent and
1295 * child simultaneously making the following commit_metadata a
1298 err2 = nfserrno(commit_metadata(fhp));
1302 * Update the file handle to get the new inode info.
1305 err = fh_update(resfhp);
1311 err = nfserrno(host_err);
1316 * Create a filesystem object (regular, directory, special).
1317 * Note that the parent directory is left locked.
1319 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1322 nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1323 char *fname, int flen, struct iattr *iap,
1324 int type, dev_t rdev, struct svc_fh *resfhp)
1326 struct dentry *dentry, *dchild = NULL;
1330 if (isdotent(fname, flen))
1331 return nfserr_exist;
1333 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
1337 dentry = fhp->fh_dentry;
1339 host_err = fh_want_write(fhp);
1341 return nfserrno(host_err);
1343 fh_lock_nested(fhp, I_MUTEX_PARENT);
1344 dchild = lookup_one_len(fname, dentry, flen);
1345 host_err = PTR_ERR(dchild);
1347 return nfserrno(host_err);
1348 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1350 * We unconditionally drop our ref to dchild as fh_compose will have
1351 * already grabbed its own ref for it.
1356 return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1360 #ifdef CONFIG_NFSD_V3
1363 * NFSv3 and NFSv4 version of nfsd_create
1366 do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1367 char *fname, int flen, struct iattr *iap,
1368 struct svc_fh *resfhp, int createmode, u32 *verifier,
1369 bool *truncp, bool *created)
1371 struct dentry *dentry, *dchild = NULL;
1375 __u32 v_mtime=0, v_atime=0;
1381 if (isdotent(fname, flen))
1383 if (!(iap->ia_valid & ATTR_MODE))
1385 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
1389 dentry = fhp->fh_dentry;
1390 dirp = d_inode(dentry);
1392 host_err = fh_want_write(fhp);
1396 fh_lock_nested(fhp, I_MUTEX_PARENT);
1399 * Compose the response file handle.
1401 dchild = lookup_one_len(fname, dentry, flen);
1402 host_err = PTR_ERR(dchild);
1406 /* If file doesn't exist, check for permissions to create one */
1407 if (d_really_is_negative(dchild)) {
1408 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1413 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1417 if (nfsd_create_is_exclusive(createmode)) {
1418 /* solaris7 gets confused (bugid 4218508) if these have
1419 * the high bit set, as do xfs filesystems without the
1420 * "bigtime" feature. So just clear the high bits. If this is
1421 * ever changed to use different attrs for storing the
1422 * verifier, then do_open_lookup() will also need to be fixed
1425 v_mtime = verifier[0]&0x7fffffff;
1426 v_atime = verifier[1]&0x7fffffff;
1429 if (d_really_is_positive(dchild)) {
1432 switch (createmode) {
1433 case NFS3_CREATE_UNCHECKED:
1434 if (! d_is_reg(dchild))
1437 /* in nfsv4, we need to treat this case a little
1438 * differently. we don't want to truncate the
1439 * file now; this would be wrong if the OPEN
1440 * fails for some other reason. furthermore,
1441 * if the size is nonzero, we should ignore it
1442 * according to spec!
1444 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1447 iap->ia_valid &= ATTR_SIZE;
1451 case NFS3_CREATE_EXCLUSIVE:
1452 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1453 && d_inode(dchild)->i_atime.tv_sec == v_atime
1454 && d_inode(dchild)->i_size == 0 ) {
1460 case NFS4_CREATE_EXCLUSIVE4_1:
1461 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1462 && d_inode(dchild)->i_atime.tv_sec == v_atime
1463 && d_inode(dchild)->i_size == 0 ) {
1469 case NFS3_CREATE_GUARDED:
1476 if (!IS_POSIXACL(dirp))
1477 iap->ia_mode &= ~current_umask();
1479 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
1487 nfsd_check_ignore_resizing(iap);
1489 if (nfsd_create_is_exclusive(createmode)) {
1490 /* Cram the verifier into atime/mtime */
1491 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
1492 | ATTR_MTIME_SET|ATTR_ATIME_SET;
1493 /* XXX someone who knows this better please fix it for nsec */
1494 iap->ia_mtime.tv_sec = v_mtime;
1495 iap->ia_atime.tv_sec = v_atime;
1496 iap->ia_mtime.tv_nsec = 0;
1497 iap->ia_atime.tv_nsec = 0;
1501 err = nfsd_create_setattr(rqstp, resfhp, iap);
1504 * nfsd_create_setattr already committed the child
1505 * (and possibly also the parent).
1508 err = nfserrno(commit_metadata(fhp));
1511 * Update the filehandle to get the new inode info.
1514 err = fh_update(resfhp);
1518 if (dchild && !IS_ERR(dchild))
1524 err = nfserrno(host_err);
1527 #endif /* CONFIG_NFSD_V3 */
1530 * Read a symlink. On entry, *lenp must contain the maximum path length that
1531 * fits into the buffer. On return, it contains the true length.
1532 * N.B. After this call fhp needs an fh_put
1535 nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1540 DEFINE_DELAYED_CALL(done);
1543 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
1547 path.mnt = fhp->fh_export->ex_path.mnt;
1548 path.dentry = fhp->fh_dentry;
1550 if (unlikely(!d_is_symlink(path.dentry)))
1551 return nfserr_inval;
1555 link = vfs_get_link(path.dentry, &done);
1557 return nfserrno(PTR_ERR(link));
1562 memcpy(buf, link, *lenp);
1563 do_delayed_call(&done);
1568 * Create a symlink and look up its inode
1569 * N.B. After this call _both_ fhp and resfhp need an fh_put
1572 nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1573 char *fname, int flen,
1575 struct svc_fh *resfhp)
1577 struct dentry *dentry, *dnew;
1582 if (!flen || path[0] == '\0')
1585 if (isdotent(fname, flen))
1588 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1592 host_err = fh_want_write(fhp);
1597 dentry = fhp->fh_dentry;
1598 dnew = lookup_one_len(fname, dentry, flen);
1599 host_err = PTR_ERR(dnew);
1603 host_err = vfs_symlink(&init_user_ns, d_inode(dentry), dnew, path);
1604 err = nfserrno(host_err);
1607 err = nfserrno(commit_metadata(fhp));
1611 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1613 if (err==0) err = cerr;
1618 err = nfserrno(host_err);
1624 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1627 nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1628 char *name, int len, struct svc_fh *tfhp)
1630 struct dentry *ddir, *dnew, *dold;
1635 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
1638 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
1642 if (d_is_dir(tfhp->fh_dentry))
1648 if (isdotent(name, len))
1651 host_err = fh_want_write(tfhp);
1653 err = nfserrno(host_err);
1657 fh_lock_nested(ffhp, I_MUTEX_PARENT);
1658 ddir = ffhp->fh_dentry;
1659 dirp = d_inode(ddir);
1661 dnew = lookup_one_len(name, ddir, len);
1662 host_err = PTR_ERR(dnew);
1666 dold = tfhp->fh_dentry;
1669 if (d_really_is_negative(dold))
1671 host_err = vfs_link(dold, &init_user_ns, dirp, dnew, NULL);
1674 err = nfserrno(commit_metadata(ffhp));
1676 err = nfserrno(commit_metadata(tfhp));
1678 if (host_err == -EXDEV && rqstp->rq_vers == 2)
1681 err = nfserrno(host_err);
1687 fh_drop_write(tfhp);
1692 err = nfserrno(host_err);
1697 nfsd_close_cached_files(struct dentry *dentry)
1699 struct inode *inode = d_inode(dentry);
1701 if (inode && S_ISREG(inode->i_mode))
1702 nfsd_file_close_inode_sync(inode);
1706 nfsd_has_cached_files(struct dentry *dentry)
1709 struct inode *inode = d_inode(dentry);
1711 if (inode && S_ISREG(inode->i_mode))
1712 ret = nfsd_file_is_cached(inode);
1718 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1721 nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1722 struct svc_fh *tfhp, char *tname, int tlen)
1724 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1725 struct inode *fdir, *tdir;
1728 bool close_cached = false;
1730 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
1733 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
1737 fdentry = ffhp->fh_dentry;
1738 fdir = d_inode(fdentry);
1740 tdentry = tfhp->fh_dentry;
1741 tdir = d_inode(tdentry);
1744 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1748 host_err = fh_want_write(ffhp);
1750 err = nfserrno(host_err);
1754 /* cannot use fh_lock as we need deadlock protective ordering
1755 * so do it by hand */
1756 trap = lock_rename(tdentry, fdentry);
1757 ffhp->fh_locked = tfhp->fh_locked = true;
1758 fh_fill_pre_attrs(ffhp);
1759 fh_fill_pre_attrs(tfhp);
1761 odentry = lookup_one_len(fname, fdentry, flen);
1762 host_err = PTR_ERR(odentry);
1763 if (IS_ERR(odentry))
1767 if (d_really_is_negative(odentry))
1770 if (odentry == trap)
1773 ndentry = lookup_one_len(tname, tdentry, tlen);
1774 host_err = PTR_ERR(ndentry);
1775 if (IS_ERR(ndentry))
1777 host_err = -ENOTEMPTY;
1778 if (ndentry == trap)
1782 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1784 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1787 if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) &&
1788 nfsd_has_cached_files(ndentry)) {
1789 close_cached = true;
1792 struct renamedata rd = {
1793 .old_mnt_userns = &init_user_ns,
1795 .old_dentry = odentry,
1796 .new_mnt_userns = &init_user_ns,
1798 .new_dentry = ndentry,
1800 host_err = vfs_rename(&rd);
1802 host_err = commit_metadata(tfhp);
1804 host_err = commit_metadata(ffhp);
1812 err = nfserrno(host_err);
1814 * We cannot rely on fh_unlock on the two filehandles,
1815 * as that would do the wrong thing if the two directories
1816 * were the same, so again we do it by hand.
1818 if (!close_cached) {
1819 fh_fill_post_attrs(ffhp);
1820 fh_fill_post_attrs(tfhp);
1822 unlock_rename(tdentry, fdentry);
1823 ffhp->fh_locked = tfhp->fh_locked = false;
1824 fh_drop_write(ffhp);
1827 * If the target dentry has cached open files, then we need to try to
1828 * close them prior to doing the rename. Flushing delayed fput
1829 * shouldn't be done with locks held however, so we delay it until this
1830 * point and then reattempt the whole shebang.
1833 close_cached = false;
1834 nfsd_close_cached_files(ndentry);
1843 * Unlink a file or directory
1844 * N.B. After this call fhp needs an fh_put
1847 nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1848 char *fname, int flen)
1850 struct dentry *dentry, *rdentry;
1852 struct inode *rinode;
1857 if (!flen || isdotent(fname, flen))
1859 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
1863 host_err = fh_want_write(fhp);
1867 fh_lock_nested(fhp, I_MUTEX_PARENT);
1868 dentry = fhp->fh_dentry;
1869 dirp = d_inode(dentry);
1871 rdentry = lookup_one_len(fname, dentry, flen);
1872 host_err = PTR_ERR(rdentry);
1873 if (IS_ERR(rdentry))
1874 goto out_drop_write;
1876 if (d_really_is_negative(rdentry)) {
1879 goto out_drop_write;
1881 rinode = d_inode(rdentry);
1885 type = d_inode(rdentry)->i_mode & S_IFMT;
1887 if (type != S_IFDIR) {
1888 if (rdentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK)
1889 nfsd_close_cached_files(rdentry);
1890 host_err = vfs_unlink(&init_user_ns, dirp, rdentry, NULL);
1892 host_err = vfs_rmdir(&init_user_ns, dirp, rdentry);
1897 host_err = commit_metadata(fhp);
1899 iput(rinode); /* truncate the inode here */
1904 if (host_err == -EBUSY) {
1905 /* name is mounted-on. There is no perfect
1908 if (nfsd_v4client(rqstp))
1909 err = nfserr_file_open;
1913 err = nfserrno(host_err);
1920 * We do this buffering because we must not call back into the file
1921 * system's ->lookup() method from the filldir callback. That may well
1922 * deadlock a number of file systems.
1924 * This is based heavily on the implementation of same in XFS.
1926 struct buffered_dirent {
1930 unsigned int d_type;
1934 struct readdir_data {
1935 struct dir_context ctx;
1941 static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1942 int namlen, loff_t offset, u64 ino,
1943 unsigned int d_type)
1945 struct readdir_data *buf =
1946 container_of(ctx, struct readdir_data, ctx);
1947 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1948 unsigned int reclen;
1950 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
1951 if (buf->used + reclen > PAGE_SIZE) {
1956 de->namlen = namlen;
1957 de->offset = offset;
1959 de->d_type = d_type;
1960 memcpy(de->name, name, namlen);
1961 buf->used += reclen;
1966 static __be32 nfsd_buffered_readdir(struct file *file, struct svc_fh *fhp,
1967 nfsd_filldir_t func, struct readdir_cd *cdp,
1970 struct buffered_dirent *de;
1974 struct readdir_data buf = {
1975 .ctx.actor = nfsd_buffered_filldir,
1976 .dirent = (void *)__get_free_page(GFP_KERNEL)
1980 return nfserrno(-ENOMEM);
1985 unsigned int reclen;
1987 cdp->err = nfserr_eof; /* will be cleared on successful read */
1991 host_err = iterate_dir(file, &buf.ctx);
2003 de = (struct buffered_dirent *)buf.dirent;
2005 offset = de->offset;
2007 if (func(cdp, de->name, de->namlen, de->offset,
2008 de->ino, de->d_type))
2011 if (cdp->err != nfs_ok)
2014 trace_nfsd_dirent(fhp, de->ino, de->name, de->namlen);
2016 reclen = ALIGN(sizeof(*de) + de->namlen,
2019 de = (struct buffered_dirent *)((char *)de + reclen);
2021 if (size > 0) /* We bailed out early */
2024 offset = vfs_llseek(file, 0, SEEK_CUR);
2027 free_page((unsigned long)(buf.dirent));
2030 return nfserrno(host_err);
2037 * Read entries from a directory.
2038 * The NFSv3/4 verifier we ignore for now.
2041 nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
2042 struct readdir_cd *cdp, nfsd_filldir_t func)
2046 loff_t offset = *offsetp;
2047 int may_flags = NFSD_MAY_READ;
2049 /* NFSv2 only supports 32 bit cookies */
2050 if (rqstp->rq_vers > 2)
2051 may_flags |= NFSD_MAY_64BIT_COOKIE;
2053 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
2057 offset = vfs_llseek(file, offset, SEEK_SET);
2059 err = nfserrno((int)offset);
2063 err = nfsd_buffered_readdir(file, fhp, func, cdp, offsetp);
2065 if (err == nfserr_eof || err == nfserr_toosmall)
2066 err = nfs_ok; /* can still be found in ->err */
2074 * Get file system stats
2075 * N.B. After this call fhp needs an fh_put
2078 nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
2082 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
2084 struct path path = {
2085 .mnt = fhp->fh_export->ex_path.mnt,
2086 .dentry = fhp->fh_dentry,
2088 if (vfs_statfs(&path, stat))
2094 static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
2096 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
2099 #ifdef CONFIG_NFSD_V4
2101 * Helper function to translate error numbers. In the case of xattr operations,
2102 * some error codes need to be translated outside of the standard translations.
2104 * ENODATA needs to be translated to nfserr_noxattr.
2105 * E2BIG to nfserr_xattr2big.
2107 * Additionally, vfs_listxattr can return -ERANGE. This means that the
2108 * file has too many extended attributes to retrieve inside an
2109 * XATTR_LIST_MAX sized buffer. This is a bug in the xattr implementation:
2110 * filesystems will allow the adding of extended attributes until they hit
2111 * their own internal limit. This limit may be larger than XATTR_LIST_MAX.
2112 * So, at that point, the attributes are present and valid, but can't
2113 * be retrieved using listxattr, since the upper level xattr code enforces
2114 * the XATTR_LIST_MAX limit.
2116 * This bug means that we need to deal with listxattr returning -ERANGE. The
2117 * best mapping is to return TOOSMALL.
2120 nfsd_xattr_errno(int err)
2124 return nfserr_noxattr;
2126 return nfserr_xattr2big;
2128 return nfserr_toosmall;
2130 return nfserrno(err);
2134 * Retrieve the specified user extended attribute. To avoid always
2135 * having to allocate the maximum size (since we are not getting
2136 * a maximum size from the RPC), do a probe + alloc. Hold a reader
2137 * lock on i_rwsem to prevent the extended attribute from changing
2138 * size while we're doing this.
2141 nfsd_getxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2142 void **bufp, int *lenp)
2147 struct inode *inode;
2148 struct dentry *dentry;
2150 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2155 dentry = fhp->fh_dentry;
2156 inode = d_inode(dentry);
2158 inode_lock_shared(inode);
2160 len = vfs_getxattr(&init_user_ns, dentry, name, NULL, 0);
2163 * Zero-length attribute, just return.
2172 err = nfsd_xattr_errno(len);
2177 err = nfserr_toosmall;
2181 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2183 err = nfserr_jukebox;
2187 len = vfs_getxattr(&init_user_ns, dentry, name, buf, len);
2191 err = nfsd_xattr_errno(len);
2198 inode_unlock_shared(inode);
2204 * Retrieve the xattr names. Since we can't know how many are
2205 * user extended attributes, we must get all attributes here,
2206 * and have the XDR encode filter out the "user." ones.
2208 * While this could always just allocate an XATTR_LIST_MAX
2209 * buffer, that's a waste, so do a probe + allocate. To
2210 * avoid any changes between the probe and allocate, wrap
2211 * this in inode_lock.
2214 nfsd_listxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char **bufp,
2220 struct inode *inode;
2221 struct dentry *dentry;
2223 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2227 dentry = fhp->fh_dentry;
2228 inode = d_inode(dentry);
2231 inode_lock_shared(inode);
2233 len = vfs_listxattr(dentry, NULL, 0);
2235 err = nfsd_xattr_errno(len);
2239 if (len > XATTR_LIST_MAX) {
2240 err = nfserr_xattr2big;
2245 * We're holding i_rwsem - use GFP_NOFS.
2247 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2249 err = nfserr_jukebox;
2253 len = vfs_listxattr(dentry, buf, len);
2256 err = nfsd_xattr_errno(len);
2265 inode_unlock_shared(inode);
2271 * Removexattr and setxattr need to call fh_lock to both lock the inode
2272 * and set the change attribute. Since the top-level vfs_removexattr
2273 * and vfs_setxattr calls already do their own inode_lock calls, call
2274 * the _locked variant. Pass in a NULL pointer for delegated_inode,
2275 * and let the client deal with NFS4ERR_DELAY (same as with e.g.
2276 * setattr and remove).
2279 nfsd_removexattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name)
2284 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2288 ret = fh_want_write(fhp);
2290 return nfserrno(ret);
2294 ret = __vfs_removexattr_locked(&init_user_ns, fhp->fh_dentry,
2300 return nfsd_xattr_errno(ret);
2304 nfsd_setxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2305 void *buf, u32 len, u32 flags)
2310 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2314 ret = fh_want_write(fhp);
2316 return nfserrno(ret);
2319 ret = __vfs_setxattr_locked(&init_user_ns, fhp->fh_dentry, name, buf,
2325 return nfsd_xattr_errno(ret);
2330 * Check for a user's access permissions to this inode.
2333 nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2334 struct dentry *dentry, int acc)
2336 struct inode *inode = d_inode(dentry);
2339 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
2342 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2344 (acc & NFSD_MAY_READ)? " read" : "",
2345 (acc & NFSD_MAY_WRITE)? " write" : "",
2346 (acc & NFSD_MAY_EXEC)? " exec" : "",
2347 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2348 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2349 (acc & NFSD_MAY_LOCK)? " lock" : "",
2350 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
2352 IS_IMMUTABLE(inode)? " immut" : "",
2353 IS_APPEND(inode)? " append" : "",
2354 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
2355 dprintk(" owner %d/%d user %d/%d\n",
2356 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
2359 /* Normally we reject any write/sattr etc access on a read-only file
2360 * system. But if it is IRIX doing check on write-access for a
2361 * device special file, we ignore rofs.
2363 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2364 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
2365 if (exp_rdonly(rqstp, exp) ||
2366 __mnt_is_readonly(exp->ex_path.mnt))
2368 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
2371 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
2374 if (acc & NFSD_MAY_LOCK) {
2375 /* If we cannot rely on authentication in NLM requests,
2376 * just allow locks, otherwise require read permission, or
2379 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2382 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
2385 * The file owner always gets access permission for accesses that
2386 * would normally be checked at open time. This is to make
2387 * file access work even when the client has done a fchmod(fd, 0).
2389 * However, `cp foo bar' should fail nevertheless when bar is
2390 * readonly. A sensible way to do this might be to reject all
2391 * attempts to truncate a read-only file, because a creat() call
2392 * always implies file truncation.
2393 * ... but this isn't really fair. A process may reasonably call
2394 * ftruncate on an open file descriptor on a file with perm 000.
2395 * We must trust the client to do permission checking - using "ACCESS"
2398 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
2399 uid_eq(inode->i_uid, current_fsuid()))
2402 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
2403 err = inode_permission(&init_user_ns, inode,
2404 acc & (MAY_READ | MAY_WRITE | MAY_EXEC));
2406 /* Allow read access to binaries even when mode 111 */
2407 if (err == -EACCES && S_ISREG(inode->i_mode) &&
2408 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2409 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
2410 err = inode_permission(&init_user_ns, inode, MAY_EXEC);
2412 return err? nfserrno(err) : 0;