blob: 91600e71be19183f82158663540caa2b55d02db2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * File operations used by nfsd. Some of these have been ripped from
4 * other parts of the kernel because they weren't exported, others
5 * are partial duplicates with added or changed functionality.
6 *
7 * Note that several functions dget() the dentry upon which they want
8 * to act, most notably those that create directory entries. Response
9 * dentry's are dput()'d if necessary in the release callback.
10 * So if you notice code paths that apparently fail to dput() the
11 * dentry, don't worry--they have been taken care of.
12 *
13 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
14 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
15 */
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
18#include <linux/file.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020019#include <linux/splice.h>
Anna Schumaker95d871f2014-11-07 14:44:26 -050020#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/delay.h>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020027#include <linux/jhash.h>
28#include <linux/ima.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/uaccess.h>
Ben Myersf5019122010-02-17 14:05:11 -060031#include <linux/exportfs.h>
32#include <linux/writeback.h>
David Quigley18032ca2013-05-02 13:19:10 -040033#include <linux/security.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020034
35#ifdef CONFIG_NFSD_V3
36#include "xdr3.h"
37#endif /* CONFIG_NFSD_V3 */
38
Christoph Hellwig5be196e2006-01-09 20:51:55 -080039#ifdef CONFIG_NFSD_V4
Christoph Hellwigffa01602015-12-03 12:59:52 +010040#include "../internal.h"
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050041#include "acl.h"
42#include "idmap.h"
Trond Myklebusta2f4c3f2021-12-18 20:38:00 -050043#include "xdr4.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#endif /* CONFIG_NFSD_V4 */
45
Boaz Harrosh9a74af22009-12-03 20:30:56 +020046#include "nfsd.h"
47#include "vfs.h"
Jeff Laytonb4935232019-08-18 14:18:49 -040048#include "filecache.h"
Jeff Layton6e8b50d2015-11-17 06:52:23 -050049#include "trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
55 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080056 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * or nfs_ok having possibly changed *dpp and *expp
58 */
59int
60nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
61 struct svc_export **expp)
62{
63 struct svc_export *exp = *expp, *exp2 = NULL;
64 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040065 struct path path = {.mnt = mntget(exp->ex_path.mnt),
66 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070067 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Al Viro7cc90cc2011-03-18 09:04:20 -040069 err = follow_down(&path);
David Howellscc53ce52011-01-14 18:45:26 +000070 if (err < 0)
71 goto out;
NeilBrown99bbf6e2017-03-15 12:40:44 +110072 if (path.mnt == exp->ex_path.mnt && path.dentry == dentry &&
73 nfsd_mountpoint(dentry, exp) == 2) {
74 /* This is only a mountpoint in some other namespace */
75 path_put(&path);
76 goto out;
77 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Al Viro91c9fa82009-04-18 02:42:05 -040079 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -040081 err = PTR_ERR(exp2);
82 /*
83 * We normally allow NFS clients to continue
84 * "underneath" a mountpoint that is not exported.
85 * The exception is V4ROOT, where no traversal is ever
86 * allowed without an explicit export of the new
87 * directory.
88 */
89 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
90 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -040091 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 goto out;
93 }
Steve Dickson3c394dd2009-09-09 15:02:40 -040094 if (nfsd_v4client(rqstp) ||
95 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -040097 /*
Al Viro91c9fa82009-04-18 02:42:05 -040098 * 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
Al Viro1644ccc2009-04-18 02:32:31 -0400102 */
Al Viro91c9fa82009-04-18 02:42:05 -0400103 *dpp = path.dentry;
104 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400105 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400106 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Al Viro91c9fa82009-04-18 02:42:05 -0400108 path_put(&path);
109 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110out:
111 return err;
112}
113
J. Bruce Fields289ede42009-09-26 20:32:24 -0400114static void follow_to_parent(struct path *path)
115{
116 struct dentry *dp;
117
118 while (path->dentry == path->mnt->mnt_root && follow_up(path))
119 ;
120 dp = dget_parent(path->dentry);
121 dput(path->dentry);
122 path->dentry = dp;
123}
124
125static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
126{
127 struct svc_export *exp2;
128 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
129 .dentry = dget(dparent)};
130
131 follow_to_parent(&path);
132
133 exp2 = rqst_exp_parent(rqstp, &path);
134 if (PTR_ERR(exp2) == -ENOENT) {
135 *dentryp = dget(dparent);
136 } else if (IS_ERR(exp2)) {
137 path_put(&path);
138 return PTR_ERR(exp2);
139 } else {
140 *dentryp = dget(path.dentry);
141 exp_put(*exp);
142 *exp = exp2;
143 }
144 path_put(&path);
145 return 0;
146}
147
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400148/*
149 * For nfsd purposes, we treat V4ROOT exports as though there was an
150 * export at *every* directory.
NeilBrown99bbf6e2017-03-15 12:40:44 +1100151 * We return:
152 * '1' if this dentry *must* be an export point,
153 * '2' if it might be, if there is really a mount here, and
154 * '0' if there is no chance of an export point here.
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400155 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400156int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400157{
NeilBrown99bbf6e2017-03-15 12:40:44 +1100158 if (!d_inode(dentry))
159 return 0;
160 if (exp->ex_flags & NFSEXP_V4ROOT)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400161 return 1;
Trond Myklebust11fcee022011-09-12 19:37:26 -0400162 if (nfsd4_is_junction(dentry))
163 return 1;
NeilBrown99bbf6e2017-03-15 12:40:44 +1100164 if (d_mountpoint(dentry))
165 /*
166 * Might only be a mountpoint in a different namespace,
167 * but we need to check.
168 */
169 return 2;
170 return 0;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400171}
172
Al Viro6264d692006-10-19 23:28:58 -0700173__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700174nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400175 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700176 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
178 struct svc_export *exp;
179 struct dentry *dparent;
180 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700181 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
183 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 dparent = fhp->fh_dentry;
Kinglong Meebf18f162014-06-10 22:06:44 +0800186 exp = exp_get(fhp->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /* Lookup the name, but don't follow links */
189 if (isdotent(name, len)) {
190 if (len==1)
191 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800192 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400194 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 dentry = dget(dparent); /* .. == . just like at / */
196 else {
197 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400198 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
199 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
202 } else {
J. Bruce Fields43357232014-01-24 18:04:40 -0500203 /*
204 * In the nfsd4_open() case, this may be held across
205 * subsequent open and delegation acquisition which may
206 * need to take the child's i_mutex:
207 */
208 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700210 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (IS_ERR(dentry))
212 goto out_nfserr;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400213 if (nfsd_mountpoint(dentry, exp)) {
NeilBrownbbddca82016-01-07 16:08:20 -0500214 /*
215 * We don't need the i_mutex after all. It's
216 * still possible we could open this (regular
217 * files can be mountpoints too), but the
218 * i_mutex is just there to prevent renames of
219 * something that we might be about to delegate,
220 * and a mountpoint won't be renamed:
221 */
222 fh_unlock(fhp);
Al Viro6264d692006-10-19 23:28:58 -0700223 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 dput(dentry);
225 goto out_nfserr;
226 }
227 }
228 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700229 *dentry_ret = dentry;
230 *exp_ret = exp;
231 return 0;
232
233out_nfserr:
234 exp_put(exp);
235 return nfserrno(host_err);
236}
237
238/*
239 * Look up one component of a pathname.
240 * N.B. After this call _both_ fhp and resfh need an fh_put
241 *
242 * If the lookup would cross a mountpoint, and the mounted filesystem
243 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
244 * accepted as it stands and the mounted directory is
245 * returned. Otherwise the covered directory is returned.
246 * NOTE: this mountpoint crossing is not supported properly by all
247 * clients and is explicitly disallowed for NFSv3
NeilBrownef5825e2021-09-02 11:14:47 +1000248 * NeilBrown <neilb@cse.unsw.edu.au>
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700249 */
250__be32
251nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400252 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700253{
254 struct svc_export *exp;
255 struct dentry *dentry;
256 __be32 err;
257
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400258 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
259 if (err)
260 return err;
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700261 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
262 if (err)
263 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700264 err = check_nfsd_access(exp, rqstp);
265 if (err)
266 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /*
268 * Note: we compose the file handle now, but as the
269 * dentry may be negative, it may need to be updated.
270 */
271 err = fh_compose(resfh, exp, dentry, fhp);
David Howells2b0143b2015-03-17 22:25:59 +0000272 if (!err && d_really_is_negative(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700274out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 exp_put(exp);
277 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Ben Myersf5019122010-02-17 14:05:11 -0600280/*
281 * Commit metadata changes to stable storage.
282 */
283static int
Trond Myklebust57f64032019-12-18 14:57:23 -0500284commit_inode_metadata(struct inode *inode)
Ben Myersf5019122010-02-17 14:05:11 -0600285{
Ben Myersf5019122010-02-17 14:05:11 -0600286 const struct export_operations *export_ops = inode->i_sb->s_export_op;
Ben Myersf5019122010-02-17 14:05:11 -0600287
Christoph Hellwigc37650162010-10-06 10:48:20 +0200288 if (export_ops->commit_metadata)
289 return export_ops->commit_metadata(inode);
290 return sync_inode_metadata(inode, 1);
Ben Myersf5019122010-02-17 14:05:11 -0600291}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700292
Trond Myklebust57f64032019-12-18 14:57:23 -0500293static int
294commit_metadata(struct svc_fh *fhp)
295{
296 struct inode *inode = d_inode(fhp->fh_dentry);
297
298 if (!EX_ISSYNC(fhp->fh_export))
299 return 0;
300 return commit_inode_metadata(inode);
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800304 * Go over the attributes and take care of the small differences between
305 * NFS semantics and what Linux expects.
306 */
307static void
308nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
309{
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800310 /* sanitize the mode change */
311 if (iap->ia_valid & ATTR_MODE) {
312 iap->ia_mode &= S_IALLUGO;
313 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
314 }
315
316 /* Revoke setuid/setgid on chown */
317 if (!S_ISDIR(inode->i_mode) &&
Stanislav Kholmanskikhc4fa6d72013-12-11 14:16:36 +0400318 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800319 iap->ia_valid |= ATTR_KILL_PRIV;
320 if (iap->ia_valid & ATTR_MODE) {
321 /* we're setting mode too, just clear the s*id bits */
322 iap->ia_mode &= ~S_ISUID;
323 if (iap->ia_mode & S_IXGRP)
324 iap->ia_mode &= ~S_ISGID;
325 } else {
326 /* set ATTR_KILL_* bits and let VFS handle it */
327 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
328 }
329 }
330}
331
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500332static __be32
333nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
334 struct iattr *iap)
335{
336 struct inode *inode = d_inode(fhp->fh_dentry);
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500337
338 if (iap->ia_size < inode->i_size) {
339 __be32 err;
340
341 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
342 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
343 if (err)
344 return err;
345 }
Jeff Laytonf7e33bd2021-08-19 14:56:38 -0400346 return nfserrno(get_write_access(inode));
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500347}
348
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800349/*
350 * Set various file attributes. After this call fhp needs an fh_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Al Viro6264d692006-10-19 23:28:58 -0700352__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
Arnd Bergmann2a1aa482019-11-03 17:50:18 +0100354 int check_guard, time64_t guardtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 struct dentry *dentry;
357 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200358 int accmode = NFSD_MAY_SATTR;
Al Viro175a4eb2011-07-26 03:30:54 -0400359 umode_t ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700360 __be32 err;
361 int host_err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500362 bool get_write_count;
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500363 bool size_change = (iap->ia_valid & ATTR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
zhengbin255fbca2018-11-30 16:04:25 +0800365 if (iap->ia_valid & ATTR_SIZE) {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200366 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 ftype = S_IFREG;
zhengbin255fbca2018-11-30 16:04:25 +0800368 }
369
370 /*
371 * If utimes(2) and friends are called with times not NULL, we should
372 * not set NFSD_MAY_WRITE bit. Otherwise fh_verify->nfsd_permission
Geert Uytterhoevene977cc82019-05-27 14:21:32 +0200373 * will return EACCES, when the caller's effective UID does not match
zhengbin255fbca2018-11-30 16:04:25 +0800374 * the owner of the file, and the caller is not privileged. In this
375 * situation, we should return EPERM(notify_change will return this).
376 */
377 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME)) {
378 accmode |= NFSD_MAY_OWNER_OVERRIDE;
379 if (!(iap->ia_valid & (ATTR_ATIME_SET | ATTR_MTIME_SET)))
380 accmode |= NFSD_MAY_WRITE;
381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500383 /* Callers that do fh_verify should do the fh_want_write: */
384 get_write_count = !fhp->fh_dentry;
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* Get inode */
387 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800388 if (err)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500389 return err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500390 if (get_write_count) {
391 host_err = fh_want_write(fhp);
392 if (host_err)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500393 goto out;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000397 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
NeilBrown15b7a1b2005-11-07 01:00:23 -0800399 /* Ignore any mode updates on symlinks */
400 if (S_ISLNK(inode->i_mode))
401 iap->ia_valid &= ~ATTR_MODE;
402
403 if (!iap->ia_valid)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500404 return 0;
NeilBrown15b7a1b2005-11-07 01:00:23 -0800405
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800406 nfsd_sanitize_attrs(inode, iap);
407
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500408 if (check_guard && guardtime != inode->i_ctime.tv_sec)
409 return nfserr_notsync;
410
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000411 /*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800412 * The size case is special, it changes the file in addition to the
Christoph Hellwig783112f2017-02-20 07:21:33 +0100413 * attributes, and file systems don't expect it to be mixed with
414 * "random" attribute changes. We thus split out the size change
415 * into a separate call to ->setattr, and do the rest as a separate
416 * setattr call.
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000417 */
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500418 if (size_change) {
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500419 err = nfsd_get_write_access(rqstp, fhp, iap);
420 if (err)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500421 return err;
Christoph Hellwig783112f2017-02-20 07:21:33 +0100422 }
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700423
Christoph Hellwig783112f2017-02-20 07:21:33 +0100424 fh_lock(fhp);
425 if (size_change) {
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700426 /*
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500427 * RFC5661, Section 18.30.4:
428 * Changing the size of a file with SETATTR indirectly
429 * changes the time_modify and change attributes.
430 *
431 * (and similar for the older RFCs)
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700432 */
Christoph Hellwig783112f2017-02-20 07:21:33 +0100433 struct iattr size_attr = {
434 .ia_valid = ATTR_SIZE | ATTR_CTIME | ATTR_MTIME,
435 .ia_size = iap->ia_size,
436 };
437
Chuck Levere6faac32022-01-31 13:01:53 -0500438 host_err = -EFBIG;
439 if (iap->ia_size < 0)
440 goto out_unlock;
441
Christian Brauner2f221d62021-01-21 14:19:26 +0100442 host_err = notify_change(&init_user_ns, dentry, &size_attr, NULL);
Christoph Hellwig783112f2017-02-20 07:21:33 +0100443 if (host_err)
444 goto out_unlock;
445 iap->ia_valid &= ~ATTR_SIZE;
446
447 /*
448 * Avoid the additional setattr call below if the only other
449 * attribute that the client sends is the mtime, as we update
450 * it as part of the size change above.
451 */
452 if ((iap->ia_valid & ~ATTR_MTIME) == 0)
453 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 iap->ia_valid |= ATTR_CTIME;
Christian Brauner2f221d62021-01-21 14:19:26 +0100457 host_err = notify_change(&init_user_ns, dentry, iap, NULL);
Christoph Hellwig987da472013-11-18 05:07:47 -0800458
Christoph Hellwig783112f2017-02-20 07:21:33 +0100459out_unlock:
460 fh_unlock(fhp);
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500461 if (size_change)
462 put_write_access(inode);
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500463out:
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500464 if (!host_err)
465 host_err = commit_metadata(fhp);
466 return nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800469#if defined(CONFIG_NFSD_V4)
Chuck Lever9b4146e2012-01-04 16:26:43 -0500470/*
471 * NFS junction information is stored in an extended attribute.
472 */
473#define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
474
475/**
476 * nfsd4_is_junction - Test if an object could be an NFS junction
477 *
478 * @dentry: object to test
479 *
480 * Returns 1 if "dentry" appears to contain NFS junction information.
481 * Otherwise 0 is returned.
482 */
Trond Myklebust11fcee022011-09-12 19:37:26 -0400483int nfsd4_is_junction(struct dentry *dentry)
484{
David Howells2b0143b2015-03-17 22:25:59 +0000485 struct inode *inode = d_inode(dentry);
Trond Myklebust11fcee022011-09-12 19:37:26 -0400486
487 if (inode == NULL)
488 return 0;
489 if (inode->i_mode & S_IXUGO)
490 return 0;
491 if (!(inode->i_mode & S_ISVTX))
492 return 0;
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +0100493 if (vfs_getxattr(&init_user_ns, dentry, NFSD_JUNCTION_XATTR_NAME,
494 NULL, 0) <= 0)
Trond Myklebust11fcee022011-09-12 19:37:26 -0400495 return 0;
496 return 1;
497}
David Quigley18032ca2013-05-02 13:19:10 -0400498#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
499__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
500 struct xdr_netobj *label)
501{
502 __be32 error;
503 int host_error;
504 struct dentry *dentry;
505
506 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
507 if (error)
508 return error;
509
510 dentry = fhp->fh_dentry;
511
Al Viro59551022016-01-22 15:40:57 -0500512 inode_lock(d_inode(dentry));
David Quigley18032ca2013-05-02 13:19:10 -0400513 host_error = security_inode_setsecctx(dentry, label->data, label->len);
Al Viro59551022016-01-22 15:40:57 -0500514 inode_unlock(d_inode(dentry));
David Quigley18032ca2013-05-02 13:19:10 -0400515 return nfserrno(host_error);
516}
517#else
518__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
519 struct xdr_netobj *label)
520{
521 return nfserr_notsupp;
522}
523#endif
524
Trond Myklebusta2f4c3f2021-12-18 20:38:00 -0500525static struct nfsd4_compound_state *nfsd4_get_cstate(struct svc_rqst *rqstp)
526{
527 return &((struct nfsd4_compoundres *)rqstp->rq_resp)->cstate;
528}
529
530__be32 nfsd4_clone_file_range(struct svc_rqst *rqstp,
531 struct nfsd_file *nf_src, u64 src_pos,
532 struct nfsd_file *nf_dst, u64 dst_pos,
533 u64 count, bool sync)
Christoph Hellwigffa01602015-12-03 12:59:52 +0100534{
Trond Myklebustb66ae6d2020-01-06 13:40:32 -0500535 struct file *src = nf_src->nf_file;
536 struct file *dst = nf_dst->nf_file;
Trond Myklebust555dbf12021-12-18 20:38:01 -0500537 errseq_t since;
Darrick J. Wong42ec3d42018-10-30 10:41:49 +1100538 loff_t cloned;
Trond Myklebust1b28d752020-01-06 13:40:33 -0500539 __be32 ret = 0;
Darrick J. Wong42ec3d42018-10-30 10:41:49 +1100540
Trond Myklebust555dbf12021-12-18 20:38:01 -0500541 since = READ_ONCE(dst->f_wb_err);
Darrick J. Wong452ce652018-10-30 10:41:56 +1100542 cloned = vfs_clone_file_range(src, src_pos, dst, dst_pos, count, 0);
Trond Myklebust1b28d752020-01-06 13:40:33 -0500543 if (cloned < 0) {
544 ret = nfserrno(cloned);
545 goto out_err;
546 }
547 if (count && cloned != count) {
548 ret = nfserrno(-EINVAL);
549 goto out_err;
550 }
Trond Myklebusta25e37262019-11-27 17:05:51 -0500551 if (sync) {
552 loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX;
553 int status = vfs_fsync_range(dst, dst_pos, dst_end, 0);
Trond Myklebust57f64032019-12-18 14:57:23 -0500554
555 if (!status)
Trond Myklebust555dbf12021-12-18 20:38:01 -0500556 status = filemap_check_wb_err(dst->f_mapping, since);
557 if (!status)
Trond Myklebust57f64032019-12-18 14:57:23 -0500558 status = commit_inode_metadata(file_inode(src));
Trond Myklebust1b28d752020-01-06 13:40:33 -0500559 if (status < 0) {
Chuck Lever75acacb2021-12-28 14:27:56 -0500560 struct nfsd_net *nn = net_generic(nf_dst->nf_net,
561 nfsd_net_id);
562
Trond Myklebusta2f4c3f2021-12-18 20:38:00 -0500563 trace_nfsd_clone_file_range_err(rqstp,
564 &nfsd4_get_cstate(rqstp)->save_fh,
565 src_pos,
566 &nfsd4_get_cstate(rqstp)->current_fh,
567 dst_pos,
568 count, status);
Chuck Lever75acacb2021-12-28 14:27:56 -0500569 nfsd_reset_write_verifier(nn);
570 trace_nfsd_writeverf_reset(nn, rqstp, status);
Trond Myklebust1b28d752020-01-06 13:40:33 -0500571 ret = nfserrno(status);
572 }
Trond Myklebusta25e37262019-11-27 17:05:51 -0500573 }
Trond Myklebust1b28d752020-01-06 13:40:33 -0500574out_err:
Trond Myklebust1b28d752020-01-06 13:40:33 -0500575 return ret;
Christoph Hellwigffa01602015-12-03 12:59:52 +0100576}
577
Anna Schumaker29ae7f92016-09-07 15:57:30 -0400578ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst,
579 u64 dst_pos, u64 count)
580{
581
582 /*
583 * Limit copy to 4MB to prevent indefinitely blocking an nfsd
584 * thread and client rpc slot. The choice of 4MB is somewhat
585 * arbitrary. We might instead base this on r/wsize, or make it
586 * tunable, or use a time instead of a byte limit, or implement
587 * asynchronous copy. In theory a client could also recognize a
588 * limit like this and pipeline multiple COPY requests.
589 */
590 count = min_t(u64, count, 1 << 22);
591 return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0);
592}
593
Anna Schumaker95d871f2014-11-07 14:44:26 -0500594__be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
595 struct file *file, loff_t offset, loff_t len,
596 int flags)
597{
Anna Schumaker95d871f2014-11-07 14:44:26 -0500598 int error;
599
600 if (!S_ISREG(file_inode(file)->i_mode))
601 return nfserr_inval;
602
Anna Schumaker95d871f2014-11-07 14:44:26 -0500603 error = vfs_fallocate(file, flags, offset, len);
604 if (!error)
605 error = commit_metadata(fhp);
606
607 return nfserrno(error);
608}
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400609#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611#ifdef CONFIG_NFSD_V3
612/*
613 * Check server access rights to a file system object
614 */
615struct accessmap {
616 u32 access;
617 int how;
618};
619static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200620 { NFS3_ACCESS_READ, NFSD_MAY_READ },
621 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
622 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
623 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Frank van der Lindenc11d7fd2020-06-23 22:39:24 +0000625#ifdef CONFIG_NFSD_V4
626 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ },
627 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE },
628 { NFS4_ACCESS_XALIST, NFSD_MAY_READ },
629#endif
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 { 0, 0 }
632};
633
634static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200635 { NFS3_ACCESS_READ, NFSD_MAY_READ },
636 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
637 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
638 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
639 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Frank van der Lindenc11d7fd2020-06-23 22:39:24 +0000641#ifdef CONFIG_NFSD_V4
642 { NFS4_ACCESS_XAREAD, NFSD_MAY_READ },
643 { NFS4_ACCESS_XAWRITE, NFSD_MAY_WRITE },
644 { NFS4_ACCESS_XALIST, NFSD_MAY_READ },
645#endif
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 { 0, 0 }
648};
649
650static struct accessmap nfs3_anyaccess[] = {
651 /* Some clients - Solaris 2.6 at least, make an access call
652 * to the server to check for access for things like /dev/null
653 * (which really, the server doesn't care about). So
654 * We provide simple access checking for them, looking
655 * mainly at mode bits, and we make sure to ignore read-only
656 * filesystem checks
657 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200658 { NFS3_ACCESS_READ, NFSD_MAY_READ },
659 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
660 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
661 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 { 0, 0 }
664};
665
Al Viro6264d692006-10-19 23:28:58 -0700666__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
668{
669 struct accessmap *map;
670 struct svc_export *export;
671 struct dentry *dentry;
672 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700673 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200675 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (error)
677 goto out;
678
679 export = fhp->fh_export;
680 dentry = fhp->fh_dentry;
681
David Howellse36cb0b2015-01-29 12:02:35 +0000682 if (d_is_reg(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 map = nfs3_regaccess;
David Howellse36cb0b2015-01-29 12:02:35 +0000684 else if (d_is_dir(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 map = nfs3_diraccess;
686 else
687 map = nfs3_anyaccess;
688
689
690 query = *access;
691 for (; map->access; map++) {
692 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700693 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 sresult |= map->access;
696
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700697 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 switch (err2) {
699 case nfs_ok:
700 result |= map->access;
701 break;
702
703 /* the following error codes just mean the access was not allowed,
704 * rather than an error occurred */
705 case nfserr_rofs:
706 case nfserr_acces:
707 case nfserr_perm:
708 /* simply don't "or" in the access bit. */
709 break;
710 default:
711 error = err2;
712 goto out;
713 }
714 }
715 }
716 *access = result;
717 if (supported)
718 *supported = sresult;
719
720 out:
721 return error;
722}
723#endif /* CONFIG_NFSD_V3 */
724
Jeff Layton65294c12019-08-18 14:18:48 -0400725int nfsd_open_break_lease(struct inode *inode, int access)
J. Bruce Fields105f4622011-06-07 11:50:23 -0400726{
727 unsigned int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
J. Bruce Fields105f4622011-06-07 11:50:23 -0400729 if (access & NFSD_MAY_NOT_BREAK_LEASE)
730 return 0;
731 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
732 return break_lease(inode, mode | O_NONBLOCK);
733}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735/*
736 * Open an existing file or directory.
Bernd Schubert999448a2012-03-18 22:44:49 -0400737 * The may_flags argument indicates the type of open (read/write/lock)
738 * and additional flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * N.B. After this call fhp needs an fh_put
740 */
Jeff Layton65294c12019-08-18 14:18:48 -0400741static __be32
742__nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
Bernd Schubert999448a2012-03-18 22:44:49 -0400743 int may_flags, struct file **filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Al Viro765927b2012-06-26 21:58:53 +0400745 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 struct inode *inode;
Kinglong Mee8519f992014-09-03 08:14:06 +0800747 struct file *file;
Al Viro6264d692006-10-19 23:28:58 -0700748 int flags = O_RDONLY|O_LARGEFILE;
749 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400750 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Al Viro765927b2012-06-26 21:58:53 +0400752 path.mnt = fhp->fh_export->ex_path.mnt;
753 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000754 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 err = nfserr_perm;
Bernd Schubert999448a2012-03-18 22:44:49 -0400757 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 if (!inode->i_fop)
761 goto out;
762
Bernd Schubert999448a2012-03-18 22:44:49 -0400763 host_err = nfsd_open_break_lease(inode, may_flags);
Al Viro6264d692006-10-19 23:28:58 -0700764 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 goto out_nfserr;
766
Bernd Schubert999448a2012-03-18 22:44:49 -0400767 if (may_flags & NFSD_MAY_WRITE) {
768 if (may_flags & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700769 flags = O_RDWR|O_LARGEFILE;
770 else
771 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Bernd Schubert999448a2012-03-18 22:44:49 -0400773
Kinglong Mee8519f992014-09-03 08:14:06 +0800774 file = dentry_open(&path, flags, current_cred());
775 if (IS_ERR(file)) {
776 host_err = PTR_ERR(file);
777 goto out_nfserr;
Bernd Schubert06effdb2012-03-18 22:44:50 -0400778 }
779
Al Viro6035a272018-06-08 13:40:10 -0400780 host_err = ima_file_check(file, may_flags);
Kinglong Mee8519f992014-09-03 08:14:06 +0800781 if (host_err) {
Christoph Hellwigfd891452015-04-28 15:41:16 +0200782 fput(file);
Kinglong Mee8519f992014-09-03 08:14:06 +0800783 goto out_nfserr;
784 }
785
786 if (may_flags & NFSD_MAY_64BIT_COOKIE)
787 file->f_mode |= FMODE_64BITHASH;
788 else
789 file->f_mode |= FMODE_32BITHASH;
790
791 *filp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700793 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794out:
Jeff Layton65294c12019-08-18 14:18:48 -0400795 return err;
796}
797
798__be32
799nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
800 int may_flags, struct file **filp)
801{
802 __be32 err;
Jeff Layton12bcbd42021-12-18 20:37:56 -0500803 bool retried = false;
Jeff Layton65294c12019-08-18 14:18:48 -0400804
805 validate_process_creds();
806 /*
807 * If we get here, then the client has already done an "open",
808 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
809 * in case a chmod has now revoked permission.
810 *
811 * Arguably we should also allow the owner override for
812 * directories, but we never have and it doesn't seem to have
813 * caused anyone a problem. If we were to change this, note
814 * also that our filldir callbacks would need a variant of
815 * lookup_one_len that doesn't check permissions.
816 */
817 if (type == S_IFREG)
818 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
Jeff Layton12bcbd42021-12-18 20:37:56 -0500819retry:
Jeff Layton65294c12019-08-18 14:18:48 -0400820 err = fh_verify(rqstp, fhp, type, may_flags);
Jeff Layton12bcbd42021-12-18 20:37:56 -0500821 if (!err) {
Jeff Layton65294c12019-08-18 14:18:48 -0400822 err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
Jeff Layton12bcbd42021-12-18 20:37:56 -0500823 if (err == nfserr_stale && !retried) {
824 retried = true;
825 fh_put(fhp);
826 goto retry;
827 }
828 }
David Howellse0e81732009-09-02 09:13:40 +0100829 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return err;
831}
832
Jeff Layton65294c12019-08-18 14:18:48 -0400833__be32
834nfsd_open_verified(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
835 int may_flags, struct file **filp)
836{
837 __be32 err;
838
839 validate_process_creds();
840 err = __nfsd_open(rqstp, fhp, type, may_flags, filp);
841 validate_process_creds();
842 return err;
843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200846 * Grab and keep cached pages associated with a file in the svc_rqst
847 * so that they can be passed to the network sendmsg/sendpage routines
848 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
850static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200851nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
852 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Jens Axboecf8208d2007-06-12 21:22:14 +0200854 struct svc_rqst *rqstp = sd->u.data;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500855 struct page **pp = rqstp->rq_next_page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200856 struct page *page = buf->page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (rqstp->rq_res.page_len == 0) {
Chuck Lever496d83cf2021-06-28 17:24:27 -0400859 svc_rqst_replace_page(rqstp, page);
Jens Axboecf8208d2007-06-12 21:22:14 +0200860 rqstp->rq_res.page_base = buf->offset;
NeilBrown44524352006-10-04 02:15:46 -0700861 } else if (page != pp[-1]) {
Chuck Lever496d83cf2021-06-28 17:24:27 -0400862 svc_rqst_replace_page(rqstp, page);
Chuck Leverc7e0b782021-06-28 16:34:20 -0400863 }
864 rqstp->rq_res.page_len += sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Chuck Leverc7e0b782021-06-28 16:34:20 -0400866 return sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Jens Axboecf8208d2007-06-12 21:22:14 +0200869static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
870 struct splice_desc *sd)
871{
872 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
873}
874
Trond Myklebust83a63072019-08-26 13:03:11 -0400875static u32 nfsd_eof_on_read(struct file *file, loff_t offset, ssize_t len,
876 size_t expected)
877{
878 if (expected != 0 && len == 0)
879 return 1;
880 if (offset+len >= i_size_read(file_inode(file)))
881 return 1;
882 return 0;
883}
884
Chuck Lever87c59422018-03-28 13:29:11 -0400885static __be32 nfsd_finish_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
886 struct file *file, loff_t offset,
Trond Myklebust83a63072019-08-26 13:03:11 -0400887 unsigned long *count, u32 *eof, ssize_t host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Al Viro6264d692006-10-19 23:28:58 -0700889 if (host_err >= 0) {
Amir Goldstein20ad8562021-01-06 09:52:36 +0200890 nfsd_stats_io_read_add(fhp->fh_export, host_err);
Trond Myklebust83a63072019-08-26 13:03:11 -0400891 *eof = nfsd_eof_on_read(file, offset, host_err, *count);
Al Viro6264d692006-10-19 23:28:58 -0700892 *count = host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500893 fsnotify_access(file);
Chuck Lever87c59422018-03-28 13:29:11 -0400894 trace_nfsd_read_io_done(rqstp, fhp, offset, *count);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400895 return 0;
Chuck Lever87c59422018-03-28 13:29:11 -0400896 } else {
897 trace_nfsd_read_err(rqstp, fhp, offset, host_err);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400898 return nfserrno(host_err);
Chuck Lever87c59422018-03-28 13:29:11 -0400899 }
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400900}
901
Chuck Lever87c59422018-03-28 13:29:11 -0400902__be32 nfsd_splice_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
Trond Myklebust83a63072019-08-26 13:03:11 -0400903 struct file *file, loff_t offset, unsigned long *count,
904 u32 *eof)
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400905{
906 struct splice_desc sd = {
907 .len = 0,
908 .total_len = *count,
909 .pos = offset,
910 .u.data = rqstp,
911 };
Trond Myklebust83a63072019-08-26 13:03:11 -0400912 ssize_t host_err;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400913
Chuck Lever87c59422018-03-28 13:29:11 -0400914 trace_nfsd_read_splice(rqstp, fhp, offset, *count);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400915 rqstp->rq_next_page = rqstp->rq_respages + 1;
916 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
Trond Myklebust83a63072019-08-26 13:03:11 -0400917 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400918}
919
Chuck Lever87c59422018-03-28 13:29:11 -0400920__be32 nfsd_readv(struct svc_rqst *rqstp, struct svc_fh *fhp,
921 struct file *file, loff_t offset,
Trond Myklebust83a63072019-08-26 13:03:11 -0400922 struct kvec *vec, int vlen, unsigned long *count,
923 u32 *eof)
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400924{
Christoph Hellwig73da8522017-05-27 11:16:53 +0300925 struct iov_iter iter;
Trond Myklebust83a63072019-08-26 13:03:11 -0400926 loff_t ppos = offset;
927 ssize_t host_err;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400928
Chuck Lever87c59422018-03-28 13:29:11 -0400929 trace_nfsd_read_vector(rqstp, fhp, offset, *count);
David Howellsaa563d72018-10-20 00:57:56 +0100930 iov_iter_kvec(&iter, READ, vec, vlen, *count);
Trond Myklebust83a63072019-08-26 13:03:11 -0400931 host_err = vfs_iter_read(file, &iter, &ppos, 0);
932 return nfsd_finish_read(rqstp, fhp, file, offset, count, eof, host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700935/*
936 * Gathered writes: If another process is currently writing to the file,
937 * there's a high chance this is another nfsd (triggered by a bulk write
938 * from a client's biod). Rather than syncing the file with each write
939 * request, we sleep for 10 msec.
940 *
941 * I don't know if this roughly approximates C. Juszak's idea of
942 * gathered writes, but it's a nice and simple solution (IMHO), and it
943 * seems to work:-)
944 *
945 * Note: we do this only in the NFSv2 case, since v3 and higher have a
946 * better tool (separate unstable writes and commits) for solving this
947 * problem.
948 */
949static int wait_for_concurrent_writes(struct file *file)
950{
Al Viro496ad9a2013-01-23 17:07:38 -0500951 struct inode *inode = file_inode(file);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700952 static ino_t last_ino;
953 static dev_t last_dev;
954 int err = 0;
955
956 if (atomic_read(&inode->i_writecount) > 1
957 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
958 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
959 msleep(10);
960 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
961 }
962
963 if (inode->i_state & I_DIRTY) {
964 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100965 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700966 }
967 last_ino = inode->i_ino;
968 last_dev = inode->i_sb->s_dev;
969 return err;
970}
971
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200972__be32
Trond Myklebust16f8f892020-01-06 13:40:29 -0500973nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct nfsd_file *nf,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 loff_t offset, struct kvec *vec, int vlen,
Trond Myklebust19e06632020-01-06 13:40:37 -0500975 unsigned long *cnt, int stable,
976 __be32 *verf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Chuck Leverfb7622c2021-12-28 12:41:32 -0500978 struct nfsd_net *nn = net_generic(SVC_NET(rqstp), nfsd_net_id);
Trond Myklebust16f8f892020-01-06 13:40:29 -0500979 struct file *file = nf->nf_file;
Trond Myklebust01cbf382020-11-30 17:03:19 -0500980 struct super_block *sb = file_inode(file)->i_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct svc_export *exp;
Christoph Hellwig73da8522017-05-27 11:16:53 +0300982 struct iov_iter iter;
Trond Myklebust555dbf12021-12-18 20:38:01 -0500983 errseq_t since;
Chuck Leverd890be12018-03-27 10:53:27 -0400984 __be32 nfserr;
Al Viro6264d692006-10-19 23:28:58 -0700985 int host_err;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400986 int use_wgather;
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700987 loff_t pos = offset;
Trond Myklebust01cbf382020-11-30 17:03:19 -0500988 unsigned long exp_op_flags = 0;
NeilBrown86584522014-05-12 11:22:47 +1000989 unsigned int pflags = current->flags;
Christoph Hellwigddef7ed22017-07-06 18:58:37 +0200990 rwf_t flags = 0;
Trond Myklebust01cbf382020-11-30 17:03:19 -0500991 bool restore_flags = false;
NeilBrown86584522014-05-12 11:22:47 +1000992
Chuck Leverd890be12018-03-27 10:53:27 -0400993 trace_nfsd_write_opened(rqstp, fhp, offset, *cnt);
994
Trond Myklebust01cbf382020-11-30 17:03:19 -0500995 if (sb->s_export_op)
996 exp_op_flags = sb->s_export_op->flags;
997
998 if (test_bit(RQ_LOCAL, &rqstp->rq_flags) &&
999 !(exp_op_flags & EXPORT_OP_REMOTE_FS)) {
NeilBrown86584522014-05-12 11:22:47 +10001000 /*
NeilBrowna37b0712020-06-01 21:48:18 -07001001 * We want throttling in balance_dirty_pages()
1002 * and shrink_inactive_list() to only consider
1003 * the backingdev we are writing to, so that nfs to
NeilBrown86584522014-05-12 11:22:47 +10001004 * localhost doesn't cause nfsd to lock up due to all
1005 * the client's dirty pages or its congested queue.
1006 */
NeilBrowna37b0712020-06-01 21:48:18 -07001007 current->flags |= PF_LOCAL_THROTTLE;
Trond Myklebust01cbf382020-11-30 17:03:19 -05001008 restore_flags = true;
1009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Kinglong Mee865d50b2016-12-31 21:00:21 +08001011 exp = fhp->fh_export;
Trond Myklebust48e03bc2009-06-05 12:35:15 -04001012 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 if (!EX_ISSYNC(exp))
Kinglong Mee54bbb7d2016-12-31 20:59:53 +08001015 stable = NFS_UNSTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Christoph Hellwig24368aa2016-04-07 08:52:04 -07001017 if (stable && !use_wgather)
1018 flags |= RWF_SYNC;
1019
David Howellsaa563d72018-10-20 00:57:56 +01001020 iov_iter_kvec(&iter, WRITE, vec, vlen, *cnt);
Trond Myklebust555dbf12021-12-18 20:38:01 -05001021 since = READ_ONCE(file->f_wb_err);
Chuck Lever33388b32021-12-28 14:19:41 -05001022 if (verf)
Chuck Lever3988a572021-12-30 10:22:05 -05001023 nfsd_copy_write_verifier(verf, nn);
Chuck Lever33388b32021-12-28 14:19:41 -05001024 host_err = vfs_iter_write(file, &iter, &pos, flags);
Trond Myklebust7bf94c62020-01-06 13:40:31 -05001025 if (host_err < 0) {
Chuck Lever3988a572021-12-30 10:22:05 -05001026 nfsd_reset_write_verifier(nn);
Chuck Lever75acacb2021-12-28 14:27:56 -05001027 trace_nfsd_writeverf_reset(nn, rqstp, host_err);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001028 goto out_nfserr;
Trond Myklebust7bf94c62020-01-06 13:40:31 -05001029 }
Trond Myklebust09a80f22019-12-17 12:33:33 -05001030 *cnt = host_err;
Amir Goldstein20ad8562021-01-06 09:52:36 +02001031 nfsd_stats_io_write_add(exp, *cnt);
Eric Paris2a12a9d2009-12-17 21:24:21 -05001032 fsnotify_modify(file);
Trond Myklebust555dbf12021-12-18 20:38:01 -05001033 host_err = filemap_check_wb_err(file->f_mapping, since);
1034 if (host_err < 0)
1035 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Trond Myklebustbbf2f092019-09-02 13:02:58 -04001037 if (stable && use_wgather) {
Christoph Hellwig24368aa2016-04-07 08:52:04 -07001038 host_err = wait_for_concurrent_writes(file);
Chuck Lever75acacb2021-12-28 14:27:56 -05001039 if (host_err < 0) {
Chuck Lever3988a572021-12-30 10:22:05 -05001040 nfsd_reset_write_verifier(nn);
Chuck Lever75acacb2021-12-28 14:27:56 -05001041 trace_nfsd_writeverf_reset(nn, rqstp, host_err);
1042 }
Trond Myklebustbbf2f092019-09-02 13:02:58 -04001043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001045out_nfserr:
Chuck Leverd890be12018-03-27 10:53:27 -04001046 if (host_err >= 0) {
1047 trace_nfsd_write_io_done(rqstp, fhp, offset, *cnt);
1048 nfserr = nfs_ok;
1049 } else {
1050 trace_nfsd_write_err(rqstp, fhp, offset, host_err);
1051 nfserr = nfserrno(host_err);
1052 }
Trond Myklebust01cbf382020-11-30 17:03:19 -05001053 if (restore_flags)
NeilBrowna37b0712020-06-01 21:48:18 -07001054 current_restore_flags(pflags, PF_LOCAL_THROTTLE);
Chuck Leverd890be12018-03-27 10:53:27 -04001055 return nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001058/*
1059 * Read data from a file. count must contain the requested read count
1060 * on entry. On return, *count contains the number of bytes actually read.
1061 * N.B. After this call fhp needs an fh_put
1062 */
1063__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
Trond Myklebust83a63072019-08-26 13:03:11 -04001064 loff_t offset, struct kvec *vec, int vlen, unsigned long *count,
1065 u32 *eof)
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001066{
Jeff Layton48cd7b52019-08-18 14:18:50 -04001067 struct nfsd_file *nf;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001068 struct file *file;
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001069 __be32 err;
1070
Chuck Leverf394b622018-03-27 10:53:11 -04001071 trace_nfsd_read_start(rqstp, fhp, offset, *count);
Jeff Layton48cd7b52019-08-18 14:18:50 -04001072 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_READ, &nf);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001073 if (err)
1074 return err;
1075
Jeff Layton48cd7b52019-08-18 14:18:50 -04001076 file = nf->nf_file;
Christoph Hellwiga4058c52017-05-27 11:16:54 +03001077 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
Trond Myklebust83a63072019-08-26 13:03:11 -04001078 err = nfsd_splice_read(rqstp, fhp, file, offset, count, eof);
Christoph Hellwiga4058c52017-05-27 11:16:54 +03001079 else
Trond Myklebust83a63072019-08-26 13:03:11 -04001080 err = nfsd_readv(rqstp, fhp, file, offset, vec, vlen, count, eof);
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001081
Jeff Layton48cd7b52019-08-18 14:18:50 -04001082 nfsd_file_put(nf);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001083
Chuck Leverf394b622018-03-27 10:53:11 -04001084 trace_nfsd_read_done(rqstp, fhp, offset, *count);
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001085
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001086 return err;
1087}
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089/*
1090 * Write data to a file.
1091 * The stable flag requests synchronous writes.
1092 * N.B. After this call fhp needs an fh_put
1093 */
Al Viro6264d692006-10-19 23:28:58 -07001094__be32
Kinglong Mee52e380e2016-12-31 21:00:13 +08001095nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
Trond Myklebust19e06632020-01-06 13:40:37 -05001096 struct kvec *vec, int vlen, unsigned long *cnt, int stable,
1097 __be32 *verf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
Jeff Laytonb4935232019-08-18 14:18:49 -04001099 struct nfsd_file *nf;
1100 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Chuck Leverf394b622018-03-27 10:53:11 -04001102 trace_nfsd_write_start(rqstp, fhp, offset, *cnt);
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001103
Jeff Laytonb4935232019-08-18 14:18:49 -04001104 err = nfsd_file_acquire(rqstp, fhp, NFSD_MAY_WRITE, &nf);
Kinglong Mee52e380e2016-12-31 21:00:13 +08001105 if (err)
1106 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Trond Myklebust16f8f892020-01-06 13:40:29 -05001108 err = nfsd_vfs_write(rqstp, fhp, nf, offset, vec,
Trond Myklebust19e06632020-01-06 13:40:37 -05001109 vlen, cnt, stable, verf);
Jeff Laytonb4935232019-08-18 14:18:49 -04001110 nfsd_file_put(nf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111out:
Chuck Leverf394b622018-03-27 10:53:11 -04001112 trace_nfsd_write_done(rqstp, fhp, offset, *cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return err;
1114}
1115
1116#ifdef CONFIG_NFSD_V3
Chuck Lever3f965022022-01-24 15:50:31 -05001117/**
1118 * nfsd_commit - Commit pending writes to stable storage
1119 * @rqstp: RPC request being processed
1120 * @fhp: NFS filehandle
1121 * @offset: raw offset from beginning of file
1122 * @count: raw count of bytes to sync
1123 * @verf: filled in with the server's current write verifier
Trond Myklebustaa696a62010-01-29 16:44:25 -05001124 *
Chuck Lever3f965022022-01-24 15:50:31 -05001125 * Note: we guarantee that data that lies within the range specified
1126 * by the 'offset' and 'count' parameters will be synced. The server
1127 * is permitted to sync data that lies outside this range at the
1128 * same time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 *
1130 * Unfortunately we cannot lock the file to make sure we return full WCC
1131 * data to the client, as locking happens lower down in the filesystem.
Chuck Lever3f965022022-01-24 15:50:31 -05001132 *
1133 * Return values:
1134 * An nfsstat value in network byte order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 */
Al Viro6264d692006-10-19 23:28:58 -07001136__be32
Chuck Lever3f965022022-01-24 15:50:31 -05001137nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp, u64 offset,
1138 u32 count, __be32 *verf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Chuck Lever3f965022022-01-24 15:50:31 -05001140 u64 maxbytes;
1141 loff_t start, end;
Chuck Lever2c445a02021-12-28 14:26:03 -05001142 struct nfsd_net *nn;
Jeff Layton5920afa2019-08-18 14:18:51 -04001143 struct nfsd_file *nf;
Chuck Lever3f965022022-01-24 15:50:31 -05001144 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Jeff Layton5920afa2019-08-18 14:18:51 -04001146 err = nfsd_file_acquire(rqstp, fhp,
1147 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &nf);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001148 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001149 goto out;
Chuck Lever3f965022022-01-24 15:50:31 -05001150
1151 /*
1152 * Convert the client-provided (offset, count) range to a
1153 * (start, end) range. If the client-provided range falls
1154 * outside the maximum file size of the underlying FS,
1155 * clamp the sync range appropriately.
1156 */
1157 start = 0;
1158 end = LLONG_MAX;
1159 maxbytes = (u64)fhp->fh_dentry->d_sb->s_maxbytes;
1160 if (offset < maxbytes) {
1161 start = offset;
1162 if (count && (offset + count - 1 < maxbytes))
1163 end = offset + count - 1;
1164 }
1165
Chuck Lever2c445a02021-12-28 14:26:03 -05001166 nn = net_generic(nf->nf_net, nfsd_net_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (EX_ISSYNC(fhp->fh_export)) {
Trond Myklebust555dbf12021-12-18 20:38:01 -05001168 errseq_t since = READ_ONCE(nf->nf_file->f_wb_err);
1169 int err2;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001170
Chuck Lever3f965022022-01-24 15:50:31 -05001171 err2 = vfs_fsync_range(nf->nf_file, start, end, 0);
Trond Myklebustbbf2f092019-09-02 13:02:58 -04001172 switch (err2) {
1173 case 0:
Chuck Lever3988a572021-12-30 10:22:05 -05001174 nfsd_copy_write_verifier(verf, nn);
Trond Myklebust555dbf12021-12-18 20:38:01 -05001175 err2 = filemap_check_wb_err(nf->nf_file->f_mapping,
1176 since);
Trond Myklebustbbf2f092019-09-02 13:02:58 -04001177 break;
1178 case -EINVAL:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 err = nfserr_notsupp;
Trond Myklebustbbf2f092019-09-02 13:02:58 -04001180 break;
1181 default:
Chuck Lever3988a572021-12-30 10:22:05 -05001182 nfsd_reset_write_verifier(nn);
Chuck Lever75acacb2021-12-28 14:27:56 -05001183 trace_nfsd_writeverf_reset(nn, rqstp, err2);
Trond Myklebustbbf2f092019-09-02 13:02:58 -04001184 }
Trond Myklebust555dbf12021-12-18 20:38:01 -05001185 err = nfserrno(err2);
Trond Myklebust524ff1a2020-01-06 13:40:36 -05001186 } else
Chuck Lever3988a572021-12-30 10:22:05 -05001187 nfsd_copy_write_verifier(verf, nn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Jeff Layton5920afa2019-08-18 14:18:51 -04001189 nfsd_file_put(nf);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001190out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 return err;
1192}
1193#endif /* CONFIG_NFSD_V3 */
1194
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001195static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001196nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1197 struct iattr *iap)
1198{
1199 /*
1200 * Mode has already been set earlier in create:
1201 */
1202 iap->ia_valid &= ~ATTR_MODE;
1203 /*
1204 * Setting uid/gid works only for root. Irix appears to
1205 * send along the gid on create when it tries to implement
1206 * setgid directories via NFS:
1207 */
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001208 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001209 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1210 if (iap->ia_valid)
Arnd Bergmann2a1aa482019-11-03 17:50:18 +01001211 return nfsd_setattr(rqstp, resfhp, iap, 0, (time64_t)0);
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001212 /* Callers expect file metadata to be committed here */
Jeff Layton722b6202014-07-03 07:54:19 -04001213 return nfserrno(commit_metadata(resfhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001214}
1215
wengang wang4ac35c22009-02-10 11:27:51 +08001216/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1217 * setting size to 0 may fail for some specific file systems by the permission
1218 * checking which requires WRITE permission but the mode is 000.
1219 * we ignore the resizing(to 0) on the just new created file, since the size is
1220 * 0 after file created.
1221 *
1222 * call this only after vfs_create() is called.
1223 * */
1224static void
1225nfsd_check_ignore_resizing(struct iattr *iap)
1226{
1227 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1228 iap->ia_valid &= ~ATTR_SIZE;
1229}
1230
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001231/* The parent directory should already be locked: */
Al Viro6264d692006-10-19 23:28:58 -07001232__be32
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001233nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 char *fname, int flen, struct iattr *iap,
1235 int type, dev_t rdev, struct svc_fh *resfhp)
1236{
Dan Carpenter2b118852016-08-03 22:05:00 +03001237 struct dentry *dentry, *dchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001239 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001240 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001241 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001244 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001246 dchild = dget(resfhp->fh_dentry);
1247 if (!fhp->fh_locked) {
1248 WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
Al Viroa6a9f182013-09-16 10:57:01 -04001249 dentry);
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001250 err = nfserr_io;
1251 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Oleg Drokin7eed34f2016-07-14 23:20:22 -04001254 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1255 if (err)
1256 goto out;
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (!(iap->ia_valid & ATTR_MODE))
1259 iap->ia_mode = 0;
1260 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1261
J. Bruce Fields22cf8412020-06-16 16:43:18 -04001262 if (!IS_POSIXACL(dirp))
1263 iap->ia_mode &= ~current_umask();
1264
J. Bruce Fields088406b2006-11-08 17:44:59 -08001265 err = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001266 host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 switch (type) {
1268 case S_IFREG:
Christian Brauner6521f892021-01-21 14:19:33 +01001269 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
wengang wang4ac35c22009-02-10 11:27:51 +08001270 if (!host_err)
1271 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
1273 case S_IFDIR:
Christian Brauner6521f892021-01-21 14:19:33 +01001274 host_err = vfs_mkdir(&init_user_ns, dirp, dchild, iap->ia_mode);
Al Viro3819bb02018-05-11 17:03:19 -04001275 if (!host_err && unlikely(d_unhashed(dchild))) {
1276 struct dentry *d;
1277 d = lookup_one_len(dchild->d_name.name,
1278 dchild->d_parent,
1279 dchild->d_name.len);
1280 if (IS_ERR(d)) {
1281 host_err = PTR_ERR(d);
1282 break;
1283 }
1284 if (unlikely(d_is_negative(d))) {
1285 dput(d);
1286 err = nfserr_serverfault;
1287 goto out;
1288 }
1289 dput(resfhp->fh_dentry);
1290 resfhp->fh_dentry = dget(d);
1291 err = fh_update(resfhp);
1292 dput(dchild);
1293 dchild = d;
1294 if (err)
1295 goto out;
1296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 break;
1298 case S_IFCHR:
1299 case S_IFBLK:
1300 case S_IFIFO:
1301 case S_IFSOCK:
Christian Brauner6521f892021-01-21 14:19:33 +01001302 host_err = vfs_mknod(&init_user_ns, dirp, dchild,
1303 iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
J. Bruce Fields714232742016-07-22 12:03:46 -04001305 default:
1306 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1307 type);
1308 host_err = -EINVAL;
Dave Hansen463c3192008-02-15 14:37:57 -08001309 }
Jan Kara4a55c102012-06-12 16:20:33 +02001310 if (host_err < 0)
Dave Hansen463c3192008-02-15 14:37:57 -08001311 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Ben Myersf5019122010-02-17 14:05:11 -06001313 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Ben Myersf5019122010-02-17 14:05:11 -06001315 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001316 * nfsd_create_setattr already committed the child. Transactional
1317 * filesystems had a chance to commit changes for both parent and
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001318 * child simultaneously making the following commit_metadata a
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001319 * noop.
Ben Myersf5019122010-02-17 14:05:11 -06001320 */
1321 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001322 if (err2)
1323 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 /*
1325 * Update the file handle to get the new inode info.
1326 */
1327 if (!err)
1328 err = fh_update(resfhp);
1329out:
Dan Carpenter2b118852016-08-03 22:05:00 +03001330 dput(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return err;
1332
1333out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001334 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 goto out;
1336}
1337
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001338/*
1339 * Create a filesystem object (regular, directory, special).
1340 * Note that the parent directory is left locked.
1341 *
1342 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1343 */
1344__be32
1345nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1346 char *fname, int flen, struct iattr *iap,
1347 int type, dev_t rdev, struct svc_fh *resfhp)
1348{
1349 struct dentry *dentry, *dchild = NULL;
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001350 __be32 err;
1351 int host_err;
1352
1353 if (isdotent(fname, flen))
1354 return nfserr_exist;
1355
J. Bruce Fieldsfa081392016-07-21 16:00:12 -04001356 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001357 if (err)
1358 return err;
1359
1360 dentry = fhp->fh_dentry;
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001361
1362 host_err = fh_want_write(fhp);
1363 if (host_err)
1364 return nfserrno(host_err);
1365
1366 fh_lock_nested(fhp, I_MUTEX_PARENT);
1367 dchild = lookup_one_len(fname, dentry, flen);
1368 host_err = PTR_ERR(dchild);
1369 if (IS_ERR(dchild))
1370 return nfserrno(host_err);
1371 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
Josef Bacik502aa0a2016-08-10 14:46:27 -04001372 /*
1373 * We unconditionally drop our ref to dchild as fh_compose will have
1374 * already grabbed its own ref for it.
1375 */
1376 dput(dchild);
1377 if (err)
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001378 return err;
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001379 return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1380 rdev, resfhp);
1381}
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383#ifdef CONFIG_NFSD_V3
Mi Jinlongac6721a2011-04-20 17:06:25 +08001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385/*
Mi Jinlongac6721a2011-04-20 17:06:25 +08001386 * NFSv3 and NFSv4 version of nfsd_create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
Al Viro6264d692006-10-19 23:28:58 -07001388__be32
Mi Jinlongac6721a2011-04-20 17:06:25 +08001389do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 char *fname, int flen, struct iattr *iap,
1391 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields856121b2011-10-13 11:37:11 -04001392 bool *truncp, bool *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct dentry *dentry, *dchild = NULL;
1395 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001396 __be32 err;
1397 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 err = nfserr_perm;
1401 if (!flen)
1402 goto out;
1403 err = nfserr_exist;
1404 if (isdotent(fname, flen))
1405 goto out;
1406 if (!(iap->ia_valid & ATTR_MODE))
1407 iap->ia_mode = 0;
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001408 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (err)
1410 goto out;
1411
1412 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001413 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Jan Kara4a55c102012-06-12 16:20:33 +02001415 host_err = fh_want_write(fhp);
1416 if (host_err)
1417 goto out_nfserr;
1418
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001419 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /*
1422 * Compose the response file handle.
1423 */
1424 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001425 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (IS_ERR(dchild))
1427 goto out_nfserr;
1428
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001429 /* If file doesn't exist, check for permissions to create one */
David Howells2b0143b2015-03-17 22:25:59 +00001430 if (d_really_is_negative(dchild)) {
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001431 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1432 if (err)
1433 goto out;
1434 }
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1437 if (err)
1438 goto out;
1439
Mi Jinlongac6721a2011-04-20 17:06:25 +08001440 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001441 /* solaris7 gets confused (bugid 4218508) if these have
J. Bruce Fields2336d692021-10-15 14:42:11 -04001442 * the high bit set, as do xfs filesystems without the
1443 * "bigtime" feature. So just clear the high bits. If this is
Jeff Layton749997e2007-07-31 00:37:51 -07001444 * ever changed to use different attrs for storing the
1445 * verifier, then do_open_lookup() will also need to be fixed
1446 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 */
1448 v_mtime = verifier[0]&0x7fffffff;
1449 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 }
1451
David Howells2b0143b2015-03-17 22:25:59 +00001452 if (d_really_is_positive(dchild)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 err = 0;
1454
1455 switch (createmode) {
1456 case NFS3_CREATE_UNCHECKED:
David Howellse36cb0b2015-01-29 12:02:35 +00001457 if (! d_is_reg(dchild))
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -04001458 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 else if (truncp) {
1460 /* in nfsv4, we need to treat this case a little
1461 * differently. we don't want to truncate the
1462 * file now; this would be wrong if the OPEN
1463 * fails for some other reason. furthermore,
1464 * if the size is nonzero, we should ignore it
1465 * according to spec!
1466 */
1467 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1468 }
1469 else {
1470 iap->ia_valid &= ATTR_SIZE;
1471 goto set_attr;
1472 }
1473 break;
1474 case NFS3_CREATE_EXCLUSIVE:
David Howells2b0143b2015-03-17 22:25:59 +00001475 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1476 && d_inode(dchild)->i_atime.tv_sec == v_atime
1477 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001478 if (created)
zhengbin384a7cca2019-12-25 11:19:34 +08001479 *created = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 break;
Neil Brown7007c902012-12-07 15:40:55 -05001481 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001482 fallthrough;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001483 case NFS4_CREATE_EXCLUSIVE4_1:
David Howells2b0143b2015-03-17 22:25:59 +00001484 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1485 && d_inode(dchild)->i_atime.tv_sec == v_atime
1486 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001487 if (created)
zhengbin384a7cca2019-12-25 11:19:34 +08001488 *created = true;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001489 goto set_attr;
Neil Brown7007c902012-12-07 15:40:55 -05001490 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001491 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 case NFS3_CREATE_GUARDED:
1493 err = nfserr_exist;
1494 }
Al Virobad0dcf2011-11-23 12:03:18 -05001495 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 goto out;
1497 }
1498
J. Bruce Fields22cf8412020-06-16 16:43:18 -04001499 if (!IS_POSIXACL(dirp))
1500 iap->ia_mode &= ~current_umask();
1501
Christian Brauner6521f892021-01-21 14:19:33 +01001502 host_err = vfs_create(&init_user_ns, dirp, dchild, iap->ia_mode, true);
Dave Hansen463c3192008-02-15 14:37:57 -08001503 if (host_err < 0) {
Al Virobad0dcf2011-11-23 12:03:18 -05001504 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001506 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001507 if (created)
zhengbin384a7cca2019-12-25 11:19:34 +08001508 *created = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
wengang wang4ac35c22009-02-10 11:27:51 +08001510 nfsd_check_ignore_resizing(iap);
1511
Mi Jinlongac6721a2011-04-20 17:06:25 +08001512 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001513 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001515 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 /* XXX someone who knows this better please fix it for nsec */
1517 iap->ia_mtime.tv_sec = v_mtime;
1518 iap->ia_atime.tv_sec = v_atime;
1519 iap->ia_mtime.tv_nsec = 0;
1520 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 }
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001524 err = nfsd_create_setattr(rqstp, resfhp, iap);
1525
1526 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001527 * nfsd_create_setattr already committed the child
1528 * (and possibly also the parent).
Ben Myersf5019122010-02-17 14:05:11 -06001529 */
1530 if (!err)
1531 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001532
1533 /*
1534 * Update the filehandle to get the new inode info.
1535 */
1536 if (!err)
1537 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 out:
1540 fh_unlock(fhp);
1541 if (dchild && !IS_ERR(dchild))
1542 dput(dchild);
Jan Kara4a55c102012-06-12 16:20:33 +02001543 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return err;
1545
1546 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001547 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 goto out;
1549}
1550#endif /* CONFIG_NFSD_V3 */
1551
1552/*
1553 * Read a symlink. On entry, *lenp must contain the maximum path length that
1554 * fits into the buffer. On return, it contains the true length.
1555 * N.B. After this call fhp needs an fh_put
1556 */
Al Viro6264d692006-10-19 23:28:58 -07001557__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1559{
Al Viro6264d692006-10-19 23:28:58 -07001560 __be32 err;
Al Viro4d7edbc2017-05-27 16:11:23 -04001561 const char *link;
Al Viro68ac1232012-03-15 08:21:57 -04001562 struct path path;
Al Viro4d7edbc2017-05-27 16:11:23 -04001563 DEFINE_DELAYED_CALL(done);
1564 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001566 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Al Viro4d7edbc2017-05-27 16:11:23 -04001567 if (unlikely(err))
1568 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Al Viro68ac1232012-03-15 08:21:57 -04001570 path.mnt = fhp->fh_export->ex_path.mnt;
1571 path.dentry = fhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Al Viro4d7edbc2017-05-27 16:11:23 -04001573 if (unlikely(!d_is_symlink(path.dentry)))
1574 return nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Al Viro68ac1232012-03-15 08:21:57 -04001576 touch_atime(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Al Viro4d7edbc2017-05-27 16:11:23 -04001578 link = vfs_get_link(path.dentry, &done);
1579 if (IS_ERR(link))
1580 return nfserrno(PTR_ERR(link));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Al Viro4d7edbc2017-05-27 16:11:23 -04001582 len = strlen(link);
1583 if (len < *lenp)
1584 *lenp = len;
1585 memcpy(buf, link, *lenp);
1586 do_delayed_call(&done);
1587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
1589
1590/*
1591 * Create a symlink and look up its inode
1592 * N.B. After this call _both_ fhp and resfhp need an fh_put
1593 */
Al Viro6264d692006-10-19 23:28:58 -07001594__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1596 char *fname, int flen,
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001597 char *path,
Kinglong Mee1e444f52014-07-01 17:48:02 +08001598 struct svc_fh *resfhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
1600 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001601 __be32 err, cerr;
1602 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 err = nfserr_noent;
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001605 if (!flen || path[0] == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 goto out;
1607 err = nfserr_exist;
1608 if (isdotent(fname, flen))
1609 goto out;
1610
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001611 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (err)
1613 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001614
1615 host_err = fh_want_write(fhp);
1616 if (host_err)
1617 goto out_nfserr;
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 fh_lock(fhp);
1620 dentry = fhp->fh_dentry;
1621 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001622 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (IS_ERR(dnew))
1624 goto out_nfserr;
1625
Christian Brauner6521f892021-01-21 14:19:33 +01001626 host_err = vfs_symlink(&init_user_ns, d_inode(dentry), dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001627 err = nfserrno(host_err);
J. Bruce Fieldseeeadbb2021-05-14 18:21:37 -04001628 fh_unlock(fhp);
Ben Myersf5019122010-02-17 14:05:11 -06001629 if (!err)
1630 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Al Virobad0dcf2011-11-23 12:03:18 -05001632 fh_drop_write(fhp);
Dave Hansen75c3f292008-02-15 14:37:45 -08001633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1635 dput(dnew);
1636 if (err==0) err = cerr;
1637out:
1638 return err;
1639
1640out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001641 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 goto out;
1643}
1644
1645/*
1646 * Create a hardlink
1647 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1648 */
Al Viro6264d692006-10-19 23:28:58 -07001649__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1651 char *name, int len, struct svc_fh *tfhp)
1652{
1653 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001654 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001655 __be32 err;
1656 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001658 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 if (err)
1660 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001661 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (err)
1663 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001664 err = nfserr_isdir;
David Howellse36cb0b2015-01-29 12:02:35 +00001665 if (d_is_dir(tfhp->fh_dentry))
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001666 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 err = nfserr_perm;
1668 if (!len)
1669 goto out;
1670 err = nfserr_exist;
1671 if (isdotent(name, len))
1672 goto out;
1673
Jan Kara4a55c102012-06-12 16:20:33 +02001674 host_err = fh_want_write(tfhp);
1675 if (host_err) {
1676 err = nfserrno(host_err);
1677 goto out;
1678 }
1679
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001680 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 ddir = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001682 dirp = d_inode(ddir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001685 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (IS_ERR(dnew))
1687 goto out_nfserr;
1688
1689 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001691 err = nfserr_noent;
David Howells2b0143b2015-03-17 22:25:59 +00001692 if (d_really_is_negative(dold))
Jan Kara4a55c102012-06-12 16:20:33 +02001693 goto out_dput;
Christian Brauner6521f892021-01-21 14:19:33 +01001694 host_err = vfs_link(dold, &init_user_ns, dirp, dnew, NULL);
J. Bruce Fieldseeeadbb2021-05-14 18:21:37 -04001695 fh_unlock(ffhp);
Al Viro6264d692006-10-19 23:28:58 -07001696 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001697 err = nfserrno(commit_metadata(ffhp));
1698 if (!err)
1699 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 } else {
Al Viro6264d692006-10-19 23:28:58 -07001701 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 err = nfserr_acces;
1703 else
Al Viro6264d692006-10-19 23:28:58 -07001704 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001706out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001708out_unlock:
1709 fh_unlock(ffhp);
Jan Kara4a55c102012-06-12 16:20:33 +02001710 fh_drop_write(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711out:
1712 return err;
1713
1714out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001715 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001716 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717}
1718
Jeff Layton7775ec52019-08-18 14:18:57 -04001719static void
1720nfsd_close_cached_files(struct dentry *dentry)
1721{
1722 struct inode *inode = d_inode(dentry);
1723
1724 if (inode && S_ISREG(inode->i_mode))
1725 nfsd_file_close_inode_sync(inode);
1726}
1727
1728static bool
1729nfsd_has_cached_files(struct dentry *dentry)
1730{
1731 bool ret = false;
1732 struct inode *inode = d_inode(dentry);
1733
1734 if (inode && S_ISREG(inode->i_mode))
1735 ret = nfsd_file_is_cached(inode);
1736 return ret;
1737}
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739/*
1740 * Rename a file
1741 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1742 */
Al Viro6264d692006-10-19 23:28:58 -07001743__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1745 struct svc_fh *tfhp, char *tname, int tlen)
1746{
1747 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1748 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001749 __be32 err;
1750 int host_err;
Jeff Layton7f84b482020-11-30 17:03:16 -05001751 bool close_cached = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001753 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (err)
1755 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001756 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (err)
1758 goto out;
1759
1760 fdentry = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001761 fdir = d_inode(fdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
1763 tdentry = tfhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001764 tdir = d_inode(tdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 err = nfserr_perm;
1767 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1768 goto out;
1769
Jeff Layton7775ec52019-08-18 14:18:57 -04001770retry:
Jan Kara4a55c102012-06-12 16:20:33 +02001771 host_err = fh_want_write(ffhp);
1772 if (host_err) {
1773 err = nfserrno(host_err);
1774 goto out;
1775 }
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 /* cannot use fh_lock as we need deadlock protective ordering
1778 * so do it by hand */
1779 trap = lock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001780 ffhp->fh_locked = tfhp->fh_locked = true;
Chuck Leverfcb5e3f2021-12-24 14:36:49 -05001781 fh_fill_pre_attrs(ffhp);
1782 fh_fill_pre_attrs(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001785 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (IS_ERR(odentry))
1787 goto out_nfserr;
1788
Al Viro6264d692006-10-19 23:28:58 -07001789 host_err = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00001790 if (d_really_is_negative(odentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001792 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (odentry == trap)
1794 goto out_dput_old;
1795
1796 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001797 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (IS_ERR(ndentry))
1799 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001800 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (ndentry == trap)
1802 goto out_dput_new;
1803
Dave Hansen9079b1e2008-02-15 14:37:49 -08001804 host_err = -EXDEV;
1805 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1806 goto out_dput_new;
J. Bruce Fieldsaa387d6c2013-04-15 16:03:46 -04001807 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1808 goto out_dput_new;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001809
Jeff Layton7f84b482020-11-30 17:03:16 -05001810 if ((ndentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK) &&
1811 nfsd_has_cached_files(ndentry)) {
1812 close_cached = true;
Jeff Layton7775ec52019-08-18 14:18:57 -04001813 goto out_dput_old;
1814 } else {
Christian Brauner9fe61452021-01-21 14:19:32 +01001815 struct renamedata rd = {
Christian Brauner6521f892021-01-21 14:19:33 +01001816 .old_mnt_userns = &init_user_ns,
Christian Brauner9fe61452021-01-21 14:19:32 +01001817 .old_dir = fdir,
1818 .old_dentry = odentry,
Christian Brauner6521f892021-01-21 14:19:33 +01001819 .new_mnt_userns = &init_user_ns,
Christian Brauner9fe61452021-01-21 14:19:32 +01001820 .new_dir = tdir,
1821 .new_dentry = ndentry,
1822 };
1823 host_err = vfs_rename(&rd);
Jeff Layton7775ec52019-08-18 14:18:57 -04001824 if (!host_err) {
1825 host_err = commit_metadata(tfhp);
1826 if (!host_err)
1827 host_err = commit_metadata(ffhp);
1828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 out_dput_new:
1831 dput(ndentry);
1832 out_dput_old:
1833 dput(odentry);
1834 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001835 err = nfserrno(host_err);
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001836 /*
1837 * We cannot rely on fh_unlock on the two filehandles,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 * as that would do the wrong thing if the two directories
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001839 * were the same, so again we do it by hand.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 */
Jeff Layton7f84b482020-11-30 17:03:16 -05001841 if (!close_cached) {
Chuck Leverfcb5e3f2021-12-24 14:36:49 -05001842 fh_fill_post_attrs(ffhp);
1843 fh_fill_post_attrs(tfhp);
Jeff Layton7775ec52019-08-18 14:18:57 -04001844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 unlock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001846 ffhp->fh_locked = tfhp->fh_locked = false;
Jan Kara4a55c102012-06-12 16:20:33 +02001847 fh_drop_write(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848
Jeff Layton7775ec52019-08-18 14:18:57 -04001849 /*
1850 * If the target dentry has cached open files, then we need to try to
1851 * close them prior to doing the rename. Flushing delayed fput
1852 * shouldn't be done with locks held however, so we delay it until this
1853 * point and then reattempt the whole shebang.
1854 */
Jeff Layton7f84b482020-11-30 17:03:16 -05001855 if (close_cached) {
1856 close_cached = false;
Jeff Layton7775ec52019-08-18 14:18:57 -04001857 nfsd_close_cached_files(ndentry);
1858 dput(ndentry);
1859 goto retry;
1860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861out:
1862 return err;
1863}
1864
1865/*
1866 * Unlink a file or directory
1867 * N.B. After this call fhp needs an fh_put
1868 */
Al Viro6264d692006-10-19 23:28:58 -07001869__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1871 char *fname, int flen)
1872{
1873 struct dentry *dentry, *rdentry;
1874 struct inode *dirp;
Yu Hsiang Huange5d74a22021-05-14 11:58:29 +08001875 struct inode *rinode;
Al Viro6264d692006-10-19 23:28:58 -07001876 __be32 err;
1877 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 err = nfserr_acces;
1880 if (!flen || isdotent(fname, flen))
1881 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001882 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (err)
1884 goto out;
1885
Jan Kara4a55c102012-06-12 16:20:33 +02001886 host_err = fh_want_write(fhp);
1887 if (host_err)
1888 goto out_nfserr;
1889
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001890 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001892 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
1894 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001895 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (IS_ERR(rdentry))
J. Bruce Fields0ca0c9d2019-04-12 16:26:30 -04001897 goto out_drop_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
David Howells2b0143b2015-03-17 22:25:59 +00001899 if (d_really_is_negative(rdentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 dput(rdentry);
J. Bruce Fields0ca0c9d2019-04-12 16:26:30 -04001901 host_err = -ENOENT;
1902 goto out_drop_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
Yu Hsiang Huange5d74a22021-05-14 11:58:29 +08001904 rinode = d_inode(rdentry);
1905 ihold(rinode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
1907 if (!type)
David Howells2b0143b2015-03-17 22:25:59 +00001908 type = d_inode(rdentry)->i_mode & S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Jeff Layton7775ec52019-08-18 14:18:57 -04001910 if (type != S_IFDIR) {
Jeff Layton7f84b482020-11-30 17:03:16 -05001911 if (rdentry->d_sb->s_export_op->flags & EXPORT_OP_CLOSE_BEFORE_UNLINK)
1912 nfsd_close_cached_files(rdentry);
Christian Brauner6521f892021-01-21 14:19:33 +01001913 host_err = vfs_unlink(&init_user_ns, dirp, rdentry, NULL);
Jeff Layton7775ec52019-08-18 14:18:57 -04001914 } else {
Christian Brauner6521f892021-01-21 14:19:33 +01001915 host_err = vfs_rmdir(&init_user_ns, dirp, rdentry);
Jeff Layton7775ec52019-08-18 14:18:57 -04001916 }
1917
J. Bruce Fieldseeeadbb2021-05-14 18:21:37 -04001918 fh_unlock(fhp);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001919 if (!host_err)
1920 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 dput(rdentry);
Yu Hsiang Huange5d74a22021-05-14 11:58:29 +08001922 iput(rinode); /* truncate the inode here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
J. Bruce Fields0ca0c9d2019-04-12 16:26:30 -04001924out_drop_write:
1925 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926out_nfserr:
NeilBrown466e16f2019-11-28 13:56:43 +11001927 if (host_err == -EBUSY) {
1928 /* name is mounted-on. There is no perfect
1929 * error status.
1930 */
1931 if (nfsd_v4client(rqstp))
1932 err = nfserr_file_open;
1933 else
1934 err = nfserr_acces;
1935 } else {
1936 err = nfserrno(host_err);
1937 }
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001938out:
1939 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940}
1941
1942/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001943 * We do this buffering because we must not call back into the file
1944 * system's ->lookup() method from the filldir callback. That may well
1945 * deadlock a number of file systems.
1946 *
1947 * This is based heavily on the implementation of same in XFS.
1948 */
1949struct buffered_dirent {
1950 u64 ino;
1951 loff_t offset;
1952 int namlen;
1953 unsigned int d_type;
1954 char name[];
1955};
1956
1957struct readdir_data {
Al Viro5c0ba4e2013-05-15 13:52:59 -04001958 struct dir_context ctx;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001959 char *dirent;
1960 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001961 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001962};
1963
Miklos Szerediac7576f2014-10-30 17:37:34 +01001964static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1965 int namlen, loff_t offset, u64 ino,
1966 unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001967{
Miklos Szerediac7576f2014-10-30 17:37:34 +01001968 struct readdir_data *buf =
1969 container_of(ctx, struct readdir_data, ctx);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001970 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1971 unsigned int reclen;
1972
1973 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001974 if (buf->used + reclen > PAGE_SIZE) {
1975 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001976 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001977 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001978
1979 de->namlen = namlen;
1980 de->offset = offset;
1981 de->ino = ino;
1982 de->d_type = d_type;
1983 memcpy(de->name, name, namlen);
1984 buf->used += reclen;
1985
1986 return 0;
1987}
1988
Chuck Lever6019ce072021-03-05 13:57:40 -05001989static __be32 nfsd_buffered_readdir(struct file *file, struct svc_fh *fhp,
1990 nfsd_filldir_t func, struct readdir_cd *cdp,
1991 loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001992{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001993 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001994 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001995 int size;
1996 loff_t offset;
Al Viroac6614b2013-05-22 22:22:04 -04001997 struct readdir_data buf = {
1998 .ctx.actor = nfsd_buffered_filldir,
1999 .dirent = (void *)__get_free_page(GFP_KERNEL)
2000 };
David Woodhouse2628b762008-07-31 17:16:51 +01002001
David Woodhouse14f7dd62008-07-31 20:29:12 +01002002 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01002003 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01002004
David Woodhouse14f7dd62008-07-31 20:29:12 +01002005 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01002006
2007 while (1) {
2008 unsigned int reclen;
2009
Doug Nazarb726e922008-11-05 06:16:28 -05002010 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01002011 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04002012 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01002013
Al Viro5c0ba4e2013-05-15 13:52:59 -04002014 host_err = iterate_dir(file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -04002015 if (buf.full)
2016 host_err = 0;
2017
2018 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01002019 break;
2020
2021 size = buf.used;
2022
2023 if (!size)
2024 break;
2025
David Woodhouse14f7dd62008-07-31 20:29:12 +01002026 de = (struct buffered_dirent *)buf.dirent;
2027 while (size > 0) {
2028 offset = de->offset;
2029
2030 if (func(cdp, de->name, de->namlen, de->offset,
2031 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01002032 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01002033
2034 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01002035 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01002036
Chuck Lever6019ce072021-03-05 13:57:40 -05002037 trace_nfsd_dirent(fhp, de->ino, de->name, de->namlen);
2038
David Woodhouse14f7dd62008-07-31 20:29:12 +01002039 reclen = ALIGN(sizeof(*de) + de->namlen,
2040 sizeof(u64));
2041 size -= reclen;
2042 de = (struct buffered_dirent *)((char *)de + reclen);
2043 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01002044 if (size > 0) /* We bailed out early */
2045 break;
2046
David Woodhousec002a6c2008-08-17 17:21:18 +01002047 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01002048 }
2049
David Woodhouse14f7dd62008-07-31 20:29:12 +01002050 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01002051
2052 if (host_err)
2053 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01002054
2055 *offsetp = offset;
2056 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01002057}
2058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059/*
2060 * Read entries from a directory.
2061 * The NFSv3/4 verifier we ignore for now.
2062 */
Al Viro6264d692006-10-19 23:28:58 -07002063__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
Miklos Szerediac7576f2014-10-30 17:37:34 +01002065 struct readdir_cd *cdp, nfsd_filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Al Viro6264d692006-10-19 23:28:58 -07002067 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 struct file *file;
2069 loff_t offset = *offsetp;
Bernd Schubert06effdb2012-03-18 22:44:50 -04002070 int may_flags = NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Bernd Schubert06effdb2012-03-18 22:44:50 -04002072 /* NFSv2 only supports 32 bit cookies */
2073 if (rqstp->rq_vers > 2)
2074 may_flags |= NFSD_MAY_64BIT_COOKIE;
2075
2076 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 if (err)
2078 goto out;
2079
Jeff Laytonb108fe62012-04-25 15:30:00 -04002080 offset = vfs_llseek(file, offset, SEEK_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (offset < 0) {
2082 err = nfserrno((int)offset);
2083 goto out_close;
2084 }
2085
Chuck Lever6019ce072021-03-05 13:57:40 -05002086 err = nfsd_buffered_readdir(file, fhp, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
2088 if (err == nfserr_eof || err == nfserr_toosmall)
2089 err = nfs_ok; /* can still be found in ->err */
2090out_close:
Christoph Hellwigfd891452015-04-28 15:41:16 +02002091 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092out:
2093 return err;
2094}
2095
2096/*
2097 * Get file system stats
2098 * N.B. After this call fhp needs an fh_put
2099 */
Al Viro6264d692006-10-19 23:28:58 -07002100__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04002101nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02002103 __be32 err;
2104
2105 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02002106 if (!err) {
2107 struct path path = {
2108 .mnt = fhp->fh_export->ex_path.mnt,
2109 .dentry = fhp->fh_dentry,
2110 };
2111 if (vfs_statfs(&path, stat))
2112 err = nfserr_io;
2113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return err;
2115}
2116
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002117static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002118{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07002119 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07002120}
2121
Frank van der Linden32119442020-06-23 22:39:23 +00002122#ifdef CONFIG_NFSD_V4
2123/*
2124 * Helper function to translate error numbers. In the case of xattr operations,
2125 * some error codes need to be translated outside of the standard translations.
2126 *
2127 * ENODATA needs to be translated to nfserr_noxattr.
2128 * E2BIG to nfserr_xattr2big.
2129 *
2130 * Additionally, vfs_listxattr can return -ERANGE. This means that the
2131 * file has too many extended attributes to retrieve inside an
2132 * XATTR_LIST_MAX sized buffer. This is a bug in the xattr implementation:
2133 * filesystems will allow the adding of extended attributes until they hit
2134 * their own internal limit. This limit may be larger than XATTR_LIST_MAX.
2135 * So, at that point, the attributes are present and valid, but can't
2136 * be retrieved using listxattr, since the upper level xattr code enforces
2137 * the XATTR_LIST_MAX limit.
2138 *
2139 * This bug means that we need to deal with listxattr returning -ERANGE. The
2140 * best mapping is to return TOOSMALL.
2141 */
2142static __be32
2143nfsd_xattr_errno(int err)
2144{
2145 switch (err) {
2146 case -ENODATA:
2147 return nfserr_noxattr;
2148 case -E2BIG:
2149 return nfserr_xattr2big;
2150 case -ERANGE:
2151 return nfserr_toosmall;
2152 }
2153 return nfserrno(err);
2154}
2155
2156/*
2157 * Retrieve the specified user extended attribute. To avoid always
2158 * having to allocate the maximum size (since we are not getting
2159 * a maximum size from the RPC), do a probe + alloc. Hold a reader
2160 * lock on i_rwsem to prevent the extended attribute from changing
2161 * size while we're doing this.
2162 */
2163__be32
2164nfsd_getxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2165 void **bufp, int *lenp)
2166{
2167 ssize_t len;
2168 __be32 err;
2169 char *buf;
2170 struct inode *inode;
2171 struct dentry *dentry;
2172
2173 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2174 if (err)
2175 return err;
2176
2177 err = nfs_ok;
2178 dentry = fhp->fh_dentry;
2179 inode = d_inode(dentry);
2180
2181 inode_lock_shared(inode);
2182
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01002183 len = vfs_getxattr(&init_user_ns, dentry, name, NULL, 0);
Frank van der Linden32119442020-06-23 22:39:23 +00002184
2185 /*
2186 * Zero-length attribute, just return.
2187 */
2188 if (len == 0) {
2189 *bufp = NULL;
2190 *lenp = 0;
2191 goto out;
2192 }
2193
2194 if (len < 0) {
2195 err = nfsd_xattr_errno(len);
2196 goto out;
2197 }
2198
2199 if (len > *lenp) {
2200 err = nfserr_toosmall;
2201 goto out;
2202 }
2203
2204 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2205 if (buf == NULL) {
2206 err = nfserr_jukebox;
2207 goto out;
2208 }
2209
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01002210 len = vfs_getxattr(&init_user_ns, dentry, name, buf, len);
Frank van der Linden32119442020-06-23 22:39:23 +00002211 if (len <= 0) {
2212 kvfree(buf);
2213 buf = NULL;
2214 err = nfsd_xattr_errno(len);
2215 }
2216
2217 *lenp = len;
2218 *bufp = buf;
2219
2220out:
2221 inode_unlock_shared(inode);
2222
2223 return err;
2224}
2225
2226/*
2227 * Retrieve the xattr names. Since we can't know how many are
2228 * user extended attributes, we must get all attributes here,
2229 * and have the XDR encode filter out the "user." ones.
2230 *
2231 * While this could always just allocate an XATTR_LIST_MAX
2232 * buffer, that's a waste, so do a probe + allocate. To
2233 * avoid any changes between the probe and allocate, wrap
2234 * this in inode_lock.
2235 */
2236__be32
2237nfsd_listxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char **bufp,
2238 int *lenp)
2239{
2240 ssize_t len;
2241 __be32 err;
2242 char *buf;
2243 struct inode *inode;
2244 struct dentry *dentry;
2245
2246 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_READ);
2247 if (err)
2248 return err;
2249
2250 dentry = fhp->fh_dentry;
2251 inode = d_inode(dentry);
2252 *lenp = 0;
2253
2254 inode_lock_shared(inode);
2255
2256 len = vfs_listxattr(dentry, NULL, 0);
2257 if (len <= 0) {
2258 err = nfsd_xattr_errno(len);
2259 goto out;
2260 }
2261
2262 if (len > XATTR_LIST_MAX) {
2263 err = nfserr_xattr2big;
2264 goto out;
2265 }
2266
2267 /*
2268 * We're holding i_rwsem - use GFP_NOFS.
2269 */
2270 buf = kvmalloc(len, GFP_KERNEL | GFP_NOFS);
2271 if (buf == NULL) {
2272 err = nfserr_jukebox;
2273 goto out;
2274 }
2275
2276 len = vfs_listxattr(dentry, buf, len);
2277 if (len <= 0) {
2278 kvfree(buf);
2279 err = nfsd_xattr_errno(len);
2280 goto out;
2281 }
2282
2283 *lenp = len;
2284 *bufp = buf;
2285
2286 err = nfs_ok;
2287out:
2288 inode_unlock_shared(inode);
2289
2290 return err;
2291}
2292
2293/*
2294 * Removexattr and setxattr need to call fh_lock to both lock the inode
2295 * and set the change attribute. Since the top-level vfs_removexattr
2296 * and vfs_setxattr calls already do their own inode_lock calls, call
2297 * the _locked variant. Pass in a NULL pointer for delegated_inode,
2298 * and let the client deal with NFS4ERR_DELAY (same as with e.g.
2299 * setattr and remove).
2300 */
2301__be32
2302nfsd_removexattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name)
2303{
Chuck Lever82372842020-09-11 14:47:48 -04002304 __be32 err;
2305 int ret;
Frank van der Linden32119442020-06-23 22:39:23 +00002306
2307 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2308 if (err)
2309 return err;
2310
2311 ret = fh_want_write(fhp);
2312 if (ret)
2313 return nfserrno(ret);
2314
2315 fh_lock(fhp);
2316
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01002317 ret = __vfs_removexattr_locked(&init_user_ns, fhp->fh_dentry,
2318 name, NULL);
Frank van der Linden32119442020-06-23 22:39:23 +00002319
2320 fh_unlock(fhp);
2321 fh_drop_write(fhp);
2322
2323 return nfsd_xattr_errno(ret);
2324}
2325
2326__be32
2327nfsd_setxattr(struct svc_rqst *rqstp, struct svc_fh *fhp, char *name,
2328 void *buf, u32 len, u32 flags)
2329{
Chuck Lever82372842020-09-11 14:47:48 -04002330 __be32 err;
2331 int ret;
Frank van der Linden32119442020-06-23 22:39:23 +00002332
2333 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_WRITE);
2334 if (err)
2335 return err;
2336
2337 ret = fh_want_write(fhp);
2338 if (ret)
2339 return nfserrno(ret);
2340 fh_lock(fhp);
2341
Tycho Andersenc7c7a1a12021-01-21 14:19:28 +01002342 ret = __vfs_setxattr_locked(&init_user_ns, fhp->fh_dentry, name, buf,
2343 len, flags, NULL);
Frank van der Linden32119442020-06-23 22:39:23 +00002344
2345 fh_unlock(fhp);
2346 fh_drop_write(fhp);
2347
2348 return nfsd_xattr_errno(ret);
2349}
2350#endif
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352/*
2353 * Check for a user's access permissions to this inode.
2354 */
Al Viro6264d692006-10-19 23:28:58 -07002355__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07002356nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
2357 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
David Howells2b0143b2015-03-17 22:25:59 +00002359 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 int err;
2361
J. Bruce Fieldsaea93392011-04-10 10:35:12 -04002362 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 return 0;
2364#if 0
2365 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
2366 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002367 (acc & NFSD_MAY_READ)? " read" : "",
2368 (acc & NFSD_MAY_WRITE)? " write" : "",
2369 (acc & NFSD_MAY_EXEC)? " exec" : "",
2370 (acc & NFSD_MAY_SATTR)? " sattr" : "",
2371 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
2372 (acc & NFSD_MAY_LOCK)? " lock" : "",
2373 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 inode->i_mode,
2375 IS_IMMUTABLE(inode)? " immut" : "",
2376 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08002377 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11002379 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380#endif
2381
2382 /* Normally we reject any write/sattr etc access on a read-only file
2383 * system. But if it is IRIX doing check on write-access for a
2384 * device special file, we ignore rofs.
2385 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002386 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
2387 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08002388 if (exp_rdonly(rqstp, exp) ||
2389 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002391 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return nfserr_perm;
2393 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002394 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return nfserr_perm;
2396
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002397 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 /* If we cannot rely on authentication in NLM requests,
2399 * just allow locks, otherwise require read permission, or
2400 * ownership
2401 */
2402 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
2403 return 0;
2404 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002405 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407 /*
2408 * The file owner always gets access permission for accesses that
2409 * would normally be checked at open time. This is to make
2410 * file access work even when the client has done a fchmod(fd, 0).
2411 *
2412 * However, `cp foo bar' should fail nevertheless when bar is
2413 * readonly. A sensible way to do this might be to reject all
2414 * attempts to truncate a read-only file, because a creat() call
2415 * always implies file truncation.
2416 * ... but this isn't really fair. A process may reasonably call
2417 * ftruncate on an open file descriptor on a file with perm 000.
2418 * We must trust the client to do permission checking - using "ACCESS"
2419 * with NFSv3.
2420 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002421 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002422 uid_eq(inode->i_uid, current_fsuid()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return 0;
2424
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002425 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Christian Brauner47291ba2021-01-21 14:19:24 +01002426 err = inode_permission(&init_user_ns, inode,
2427 acc & (MAY_READ | MAY_WRITE | MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
2429 /* Allow read access to binaries even when mode 111 */
2430 if (err == -EACCES && S_ISREG(inode->i_mode) &&
J. Bruce Fieldsa0432262011-08-25 10:48:39 -04002431 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2432 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
Christian Brauner47291ba2021-01-21 14:19:24 +01002433 err = inode_permission(&init_user_ns, inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
2435 return err? nfserrno(err) : 0;
2436}