blob: 19d50f600e8d48c6f493130076606a6213de258d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * File operations used by nfsd. Some of these have been ripped from
3 * other parts of the kernel because they weren't exported, others
4 * are partial duplicates with added or changed functionality.
5 *
6 * Note that several functions dget() the dentry upon which they want
7 * to act, most notably those that create directory entries. Response
8 * dentry's are dput()'d if necessary in the release callback.
9 * So if you notice code paths that apparently fail to dput() the
10 * dentry, don't worry--they have been taken care of.
11 *
12 * Copyright (C) 1995-1999 Olaf Kirch <okir@monad.swb.de>
13 * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp>
14 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/fs.h>
17#include <linux/file.h>
Jens Axboed6b29d72007-06-04 09:59:47 +020018#include <linux/splice.h>
Anna Schumaker95d871f2014-11-07 14:44:26 -050019#include <linux/falloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/fcntl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/delay.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/posix_acl_xattr.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/xattr.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020026#include <linux/jhash.h>
27#include <linux/ima.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080029#include <linux/uaccess.h>
Ben Myersf5019122010-02-17 14:05:11 -060030#include <linux/exportfs.h>
31#include <linux/writeback.h>
David Quigley18032ca2013-05-02 13:19:10 -040032#include <linux/security.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020033
34#ifdef CONFIG_NFSD_V3
35#include "xdr3.h"
36#endif /* CONFIG_NFSD_V3 */
37
Christoph Hellwig5be196e2006-01-09 20:51:55 -080038#ifdef CONFIG_NFSD_V4
Christoph Hellwigffa01602015-12-03 12:59:52 +010039#include "../internal.h"
J. Bruce Fields2ca72e12011-01-04 17:37:15 -050040#include "acl.h"
41#include "idmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#endif /* CONFIG_NFSD_V4 */
43
Boaz Harrosh9a74af22009-12-03 20:30:56 +020044#include "nfsd.h"
45#include "vfs.h"
Jeff Layton6e8b50d2015-11-17 06:52:23 -050046#include "trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/*
52 * This is a cache of readahead params that help us choose the proper
53 * readahead strategy. Initially, we set all readahead parameters to 0
54 * and let the VFS handle things.
55 * If you increase the number of cached files very much, you'll need to
56 * add a hash table here.
57 */
58struct raparms {
59 struct raparms *p_next;
60 unsigned int p_count;
61 ino_t p_ino;
62 dev_t p_dev;
63 int p_set;
64 struct file_ra_state p_ra;
Greg Banksfce14562006-10-04 02:15:49 -070065 unsigned int p_hindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066};
67
Greg Banksfce14562006-10-04 02:15:49 -070068struct raparm_hbucket {
69 struct raparms *pb_head;
70 spinlock_t pb_lock;
71} ____cacheline_aligned_in_smp;
72
Greg Banksfce14562006-10-04 02:15:49 -070073#define RAPARM_HASH_BITS 4
74#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
75#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
76static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
80 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080081 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 * or nfs_ok having possibly changed *dpp and *expp
83 */
84int
85nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
86 struct svc_export **expp)
87{
88 struct svc_export *exp = *expp, *exp2 = NULL;
89 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040090 struct path path = {.mnt = mntget(exp->ex_path.mnt),
91 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070092 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Al Viro7cc90cc2011-03-18 09:04:20 -040094 err = follow_down(&path);
David Howellscc53ce52011-01-14 18:45:26 +000095 if (err < 0)
96 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Al Viro91c9fa82009-04-18 02:42:05 -040098 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -0400100 err = PTR_ERR(exp2);
101 /*
102 * We normally allow NFS clients to continue
103 * "underneath" a mountpoint that is not exported.
104 * The exception is V4ROOT, where no traversal is ever
105 * allowed without an explicit export of the new
106 * directory.
107 */
108 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
109 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400110 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 goto out;
112 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400113 if (nfsd_v4client(rqstp) ||
114 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400116 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400117 * This is subtle: path.dentry is *not* on path.mnt
118 * at this point. The only reason we are safe is that
119 * original mnt is pinned down by exp, so we should
120 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400121 */
Al Viro91c9fa82009-04-18 02:42:05 -0400122 *dpp = path.dentry;
123 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400124 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400125 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Al Viro91c9fa82009-04-18 02:42:05 -0400127 path_put(&path);
128 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129out:
130 return err;
131}
132
J. Bruce Fields289ede42009-09-26 20:32:24 -0400133static void follow_to_parent(struct path *path)
134{
135 struct dentry *dp;
136
137 while (path->dentry == path->mnt->mnt_root && follow_up(path))
138 ;
139 dp = dget_parent(path->dentry);
140 dput(path->dentry);
141 path->dentry = dp;
142}
143
144static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
145{
146 struct svc_export *exp2;
147 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
148 .dentry = dget(dparent)};
149
150 follow_to_parent(&path);
151
152 exp2 = rqst_exp_parent(rqstp, &path);
153 if (PTR_ERR(exp2) == -ENOENT) {
154 *dentryp = dget(dparent);
155 } else if (IS_ERR(exp2)) {
156 path_put(&path);
157 return PTR_ERR(exp2);
158 } else {
159 *dentryp = dget(path.dentry);
160 exp_put(*exp);
161 *exp = exp2;
162 }
163 path_put(&path);
164 return 0;
165}
166
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400167/*
168 * For nfsd purposes, we treat V4ROOT exports as though there was an
169 * export at *every* directory.
170 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400171int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400172{
173 if (d_mountpoint(dentry))
174 return 1;
Trond Myklebust11fcee022011-09-12 19:37:26 -0400175 if (nfsd4_is_junction(dentry))
176 return 1;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400177 if (!(exp->ex_flags & NFSEXP_V4ROOT))
178 return 0;
David Howells2b0143b2015-03-17 22:25:59 +0000179 return d_inode(dentry) != NULL;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400180}
181
Al Viro6264d692006-10-19 23:28:58 -0700182__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700183nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400184 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700185 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
187 struct svc_export *exp;
188 struct dentry *dparent;
189 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700190 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 dparent = fhp->fh_dentry;
Kinglong Meebf18f162014-06-10 22:06:44 +0800195 exp = exp_get(fhp->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* Lookup the name, but don't follow links */
198 if (isdotent(name, len)) {
199 if (len==1)
200 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800201 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400203 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 dentry = dget(dparent); /* .. == . just like at / */
205 else {
206 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400207 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
208 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211 } else {
J. Bruce Fields43357232014-01-24 18:04:40 -0500212 /*
213 * In the nfsd4_open() case, this may be held across
214 * subsequent open and delegation acquisition which may
215 * need to take the child's i_mutex:
216 */
217 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700219 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (IS_ERR(dentry))
221 goto out_nfserr;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400222 if (nfsd_mountpoint(dentry, exp)) {
NeilBrownbbddca82016-01-07 16:08:20 -0500223 /*
224 * We don't need the i_mutex after all. It's
225 * still possible we could open this (regular
226 * files can be mountpoints too), but the
227 * i_mutex is just there to prevent renames of
228 * something that we might be about to delegate,
229 * and a mountpoint won't be renamed:
230 */
231 fh_unlock(fhp);
Al Viro6264d692006-10-19 23:28:58 -0700232 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 dput(dentry);
234 goto out_nfserr;
235 }
236 }
237 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700238 *dentry_ret = dentry;
239 *exp_ret = exp;
240 return 0;
241
242out_nfserr:
243 exp_put(exp);
244 return nfserrno(host_err);
245}
246
247/*
248 * Look up one component of a pathname.
249 * N.B. After this call _both_ fhp and resfh need an fh_put
250 *
251 * If the lookup would cross a mountpoint, and the mounted filesystem
252 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
253 * accepted as it stands and the mounted directory is
254 * returned. Otherwise the covered directory is returned.
255 * NOTE: this mountpoint crossing is not supported properly by all
256 * clients and is explicitly disallowed for NFSv3
257 * NeilBrown <neilb@cse.unsw.edu.au>
258 */
259__be32
260nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400261 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700262{
263 struct svc_export *exp;
264 struct dentry *dentry;
265 __be32 err;
266
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400267 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
268 if (err)
269 return err;
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700270 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
271 if (err)
272 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700273 err = check_nfsd_access(exp, rqstp);
274 if (err)
275 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /*
277 * Note: we compose the file handle now, but as the
278 * dentry may be negative, it may need to be updated.
279 */
280 err = fh_compose(resfh, exp, dentry, fhp);
David Howells2b0143b2015-03-17 22:25:59 +0000281 if (!err && d_really_is_negative(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700283out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 exp_put(exp);
286 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
Ben Myersf5019122010-02-17 14:05:11 -0600289/*
290 * Commit metadata changes to stable storage.
291 */
292static int
293commit_metadata(struct svc_fh *fhp)
294{
David Howells2b0143b2015-03-17 22:25:59 +0000295 struct inode *inode = d_inode(fhp->fh_dentry);
Ben Myersf5019122010-02-17 14:05:11 -0600296 const struct export_operations *export_ops = inode->i_sb->s_export_op;
Ben Myersf5019122010-02-17 14:05:11 -0600297
298 if (!EX_ISSYNC(fhp->fh_export))
299 return 0;
300
Christoph Hellwigc37650162010-10-06 10:48:20 +0200301 if (export_ops->commit_metadata)
302 return export_ops->commit_metadata(inode);
303 return sync_inode_metadata(inode, 1);
Ben Myersf5019122010-02-17 14:05:11 -0600304}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800307 * Go over the attributes and take care of the small differences between
308 * NFS semantics and what Linux expects.
309 */
310static void
311nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
312{
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800313 /* sanitize the mode change */
314 if (iap->ia_valid & ATTR_MODE) {
315 iap->ia_mode &= S_IALLUGO;
316 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
317 }
318
319 /* Revoke setuid/setgid on chown */
320 if (!S_ISDIR(inode->i_mode) &&
Stanislav Kholmanskikhc4fa6d72013-12-11 14:16:36 +0400321 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800322 iap->ia_valid |= ATTR_KILL_PRIV;
323 if (iap->ia_valid & ATTR_MODE) {
324 /* we're setting mode too, just clear the s*id bits */
325 iap->ia_mode &= ~S_ISUID;
326 if (iap->ia_mode & S_IXGRP)
327 iap->ia_mode &= ~S_ISGID;
328 } else {
329 /* set ATTR_KILL_* bits and let VFS handle it */
330 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
331 }
332 }
333}
334
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500335static __be32
336nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
337 struct iattr *iap)
338{
339 struct inode *inode = d_inode(fhp->fh_dentry);
340 int host_err;
341
342 if (iap->ia_size < inode->i_size) {
343 __be32 err;
344
345 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
346 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
347 if (err)
348 return err;
349 }
350
351 host_err = get_write_access(inode);
352 if (host_err)
353 goto out_nfserrno;
354
355 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
356 if (host_err)
357 goto out_put_write_access;
358 return 0;
359
360out_put_write_access:
361 put_write_access(inode);
362out_nfserrno:
363 return nfserrno(host_err);
364}
365
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800366/*
367 * Set various file attributes. After this call fhp needs an fh_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
Al Viro6264d692006-10-19 23:28:58 -0700369__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
371 int check_guard, time_t guardtime)
372{
373 struct dentry *dentry;
374 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200375 int accmode = NFSD_MAY_SATTR;
Al Viro175a4eb2011-07-26 03:30:54 -0400376 umode_t ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700377 __be32 err;
378 int host_err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500379 bool get_write_count;
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500380 bool size_change = (iap->ia_valid & ATTR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200383 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (iap->ia_valid & ATTR_SIZE)
385 ftype = S_IFREG;
386
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500387 /* Callers that do fh_verify should do the fh_want_write: */
388 get_write_count = !fhp->fh_dentry;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* Get inode */
391 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800392 if (err)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500393 return err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500394 if (get_write_count) {
395 host_err = fh_want_write(fhp);
396 if (host_err)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500397 goto out;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000401 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
NeilBrown15b7a1b2005-11-07 01:00:23 -0800403 /* Ignore any mode updates on symlinks */
404 if (S_ISLNK(inode->i_mode))
405 iap->ia_valid &= ~ATTR_MODE;
406
407 if (!iap->ia_valid)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500408 return 0;
NeilBrown15b7a1b2005-11-07 01:00:23 -0800409
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800410 nfsd_sanitize_attrs(inode, iap);
411
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500412 if (check_guard && guardtime != inode->i_ctime.tv_sec)
413 return nfserr_notsync;
414
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000415 /*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800416 * The size case is special, it changes the file in addition to the
Christoph Hellwig783112f2017-02-20 07:21:33 +0100417 * attributes, and file systems don't expect it to be mixed with
418 * "random" attribute changes. We thus split out the size change
419 * into a separate call to ->setattr, and do the rest as a separate
420 * setattr call.
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000421 */
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500422 if (size_change) {
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500423 err = nfsd_get_write_access(rqstp, fhp, iap);
424 if (err)
Christoph Hellwig758e99f2017-02-20 17:04:42 -0500425 return err;
Christoph Hellwig783112f2017-02-20 07:21:33 +0100426 }
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700427
Christoph Hellwig783112f2017-02-20 07:21:33 +0100428 fh_lock(fhp);
429 if (size_change) {
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700430 /*
J. Bruce Fields0839ffb2017-02-09 14:20:42 -0500431 * RFC5661, Section 18.30.4:
432 * Changing the size of a file with SETATTR indirectly
433 * changes the time_modify and change attributes.
434 *
435 * (and similar for the older RFCs)
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700436 */
Christoph Hellwig783112f2017-02-20 07:21:33 +0100437 struct iattr size_attr = {
438 .ia_valid = ATTR_SIZE | ATTR_CTIME | ATTR_MTIME,
439 .ia_size = iap->ia_size,
440 };
441
442 host_err = notify_change(dentry, &size_attr, NULL);
443 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;
Christoph Hellwig987da472013-11-18 05:07:47 -0800457 host_err = notify_change(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;
Chuck Lever9b4146e2012-01-04 16:26:43 -0500493 if (vfs_getxattr(dentry, NFSD_JUNCTION_XATTR_NAME, NULL, 0) <= 0)
Trond Myklebust11fcee022011-09-12 19:37:26 -0400494 return 0;
495 return 1;
496}
David Quigley18032ca2013-05-02 13:19:10 -0400497#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
498__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
499 struct xdr_netobj *label)
500{
501 __be32 error;
502 int host_error;
503 struct dentry *dentry;
504
505 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
506 if (error)
507 return error;
508
509 dentry = fhp->fh_dentry;
510
Al Viro59551022016-01-22 15:40:57 -0500511 inode_lock(d_inode(dentry));
David Quigley18032ca2013-05-02 13:19:10 -0400512 host_error = security_inode_setsecctx(dentry, label->data, label->len);
Al Viro59551022016-01-22 15:40:57 -0500513 inode_unlock(d_inode(dentry));
David Quigley18032ca2013-05-02 13:19:10 -0400514 return nfserrno(host_error);
515}
516#else
517__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
518 struct xdr_netobj *label)
519{
520 return nfserr_notsupp;
521}
522#endif
523
Christoph Hellwigffa01602015-12-03 12:59:52 +0100524__be32 nfsd4_clone_file_range(struct file *src, u64 src_pos, struct file *dst,
525 u64 dst_pos, u64 count)
526{
Amir Goldstein031a0722016-09-23 11:38:11 +0300527 return nfserrno(do_clone_file_range(src, src_pos, dst, dst_pos, count));
Christoph Hellwigffa01602015-12-03 12:59:52 +0100528}
529
Anna Schumaker29ae7f92016-09-07 15:57:30 -0400530ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst,
531 u64 dst_pos, u64 count)
532{
533
534 /*
535 * Limit copy to 4MB to prevent indefinitely blocking an nfsd
536 * thread and client rpc slot. The choice of 4MB is somewhat
537 * arbitrary. We might instead base this on r/wsize, or make it
538 * tunable, or use a time instead of a byte limit, or implement
539 * asynchronous copy. In theory a client could also recognize a
540 * limit like this and pipeline multiple COPY requests.
541 */
542 count = min_t(u64, count, 1 << 22);
543 return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0);
544}
545
Anna Schumaker95d871f2014-11-07 14:44:26 -0500546__be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
547 struct file *file, loff_t offset, loff_t len,
548 int flags)
549{
Anna Schumaker95d871f2014-11-07 14:44:26 -0500550 int error;
551
552 if (!S_ISREG(file_inode(file)->i_mode))
553 return nfserr_inval;
554
Anna Schumaker95d871f2014-11-07 14:44:26 -0500555 error = vfs_fallocate(file, flags, offset, len);
556 if (!error)
557 error = commit_metadata(fhp);
558
559 return nfserrno(error);
560}
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400561#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563#ifdef CONFIG_NFSD_V3
564/*
565 * Check server access rights to a file system object
566 */
567struct accessmap {
568 u32 access;
569 int how;
570};
571static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200572 { NFS3_ACCESS_READ, NFSD_MAY_READ },
573 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
574 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
575 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 { 0, 0 }
578};
579
580static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200581 { NFS3_ACCESS_READ, NFSD_MAY_READ },
582 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
583 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
584 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
585 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 { 0, 0 }
588};
589
590static struct accessmap nfs3_anyaccess[] = {
591 /* Some clients - Solaris 2.6 at least, make an access call
592 * to the server to check for access for things like /dev/null
593 * (which really, the server doesn't care about). So
594 * We provide simple access checking for them, looking
595 * mainly at mode bits, and we make sure to ignore read-only
596 * filesystem checks
597 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200598 { NFS3_ACCESS_READ, NFSD_MAY_READ },
599 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
600 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
601 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 { 0, 0 }
604};
605
Al Viro6264d692006-10-19 23:28:58 -0700606__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
608{
609 struct accessmap *map;
610 struct svc_export *export;
611 struct dentry *dentry;
612 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700613 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200615 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 if (error)
617 goto out;
618
619 export = fhp->fh_export;
620 dentry = fhp->fh_dentry;
621
David Howellse36cb0b2015-01-29 12:02:35 +0000622 if (d_is_reg(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 map = nfs3_regaccess;
David Howellse36cb0b2015-01-29 12:02:35 +0000624 else if (d_is_dir(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 map = nfs3_diraccess;
626 else
627 map = nfs3_anyaccess;
628
629
630 query = *access;
631 for (; map->access; map++) {
632 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700633 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
635 sresult |= map->access;
636
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700637 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 switch (err2) {
639 case nfs_ok:
640 result |= map->access;
641 break;
642
643 /* the following error codes just mean the access was not allowed,
644 * rather than an error occurred */
645 case nfserr_rofs:
646 case nfserr_acces:
647 case nfserr_perm:
648 /* simply don't "or" in the access bit. */
649 break;
650 default:
651 error = err2;
652 goto out;
653 }
654 }
655 }
656 *access = result;
657 if (supported)
658 *supported = sresult;
659
660 out:
661 return error;
662}
663#endif /* CONFIG_NFSD_V3 */
664
J. Bruce Fields105f4622011-06-07 11:50:23 -0400665static int nfsd_open_break_lease(struct inode *inode, int access)
666{
667 unsigned int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
J. Bruce Fields105f4622011-06-07 11:50:23 -0400669 if (access & NFSD_MAY_NOT_BREAK_LEASE)
670 return 0;
671 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
672 return break_lease(inode, mode | O_NONBLOCK);
673}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675/*
676 * Open an existing file or directory.
Bernd Schubert999448a2012-03-18 22:44:49 -0400677 * The may_flags argument indicates the type of open (read/write/lock)
678 * and additional flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * N.B. After this call fhp needs an fh_put
680 */
Al Viro6264d692006-10-19 23:28:58 -0700681__be32
Al Viro175a4eb2011-07-26 03:30:54 -0400682nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
Bernd Schubert999448a2012-03-18 22:44:49 -0400683 int may_flags, struct file **filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Al Viro765927b2012-06-26 21:58:53 +0400685 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 struct inode *inode;
Kinglong Mee8519f992014-09-03 08:14:06 +0800687 struct file *file;
Al Viro6264d692006-10-19 23:28:58 -0700688 int flags = O_RDONLY|O_LARGEFILE;
689 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400690 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
David Howellse0e81732009-09-02 09:13:40 +0100692 validate_process_creds();
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 /*
695 * If we get here, then the client has already done an "open",
696 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
697 * in case a chmod has now revoked permission.
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400698 *
699 * Arguably we should also allow the owner override for
700 * directories, but we never have and it doesn't seem to have
701 * caused anyone a problem. If we were to change this, note
702 * also that our filldir callbacks would need a variant of
703 * lookup_one_len that doesn't check permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400705 if (type == S_IFREG)
706 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
707 err = fh_verify(rqstp, fhp, type, may_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (err)
709 goto out;
710
Al Viro765927b2012-06-26 21:58:53 +0400711 path.mnt = fhp->fh_export->ex_path.mnt;
712 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000713 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 /* Disallow write access to files with the append-only bit set
716 * or any access when mandatory locking enabled
717 */
718 err = nfserr_perm;
Bernd Schubert999448a2012-03-18 22:44:49 -0400719 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400721 /*
722 * We must ignore files (but only files) which might have mandatory
723 * locks on them because there is no way to know if the accesser has
724 * the lock.
725 */
726 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 goto out;
728
729 if (!inode->i_fop)
730 goto out;
731
Bernd Schubert999448a2012-03-18 22:44:49 -0400732 host_err = nfsd_open_break_lease(inode, may_flags);
Al Viro6264d692006-10-19 23:28:58 -0700733 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 goto out_nfserr;
735
Bernd Schubert999448a2012-03-18 22:44:49 -0400736 if (may_flags & NFSD_MAY_WRITE) {
737 if (may_flags & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700738 flags = O_RDWR|O_LARGEFILE;
739 else
740 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Bernd Schubert999448a2012-03-18 22:44:49 -0400742
Kinglong Mee8519f992014-09-03 08:14:06 +0800743 file = dentry_open(&path, flags, current_cred());
744 if (IS_ERR(file)) {
745 host_err = PTR_ERR(file);
746 goto out_nfserr;
Bernd Schubert06effdb2012-03-18 22:44:50 -0400747 }
748
Linus Torvalds5e40d332014-10-12 10:13:55 -0400749 host_err = ima_file_check(file, may_flags, 0);
Kinglong Mee8519f992014-09-03 08:14:06 +0800750 if (host_err) {
Christoph Hellwigfd891452015-04-28 15:41:16 +0200751 fput(file);
Kinglong Mee8519f992014-09-03 08:14:06 +0800752 goto out_nfserr;
753 }
754
755 if (may_flags & NFSD_MAY_64BIT_COOKIE)
756 file->f_mode |= FMODE_64BITHASH;
757 else
758 file->f_mode |= FMODE_32BITHASH;
759
760 *filp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700762 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763out:
David Howellse0e81732009-09-02 09:13:40 +0100764 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 return err;
766}
767
Christoph Hellwige749a462015-06-18 16:44:58 +0200768struct raparms *
769nfsd_init_raparms(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
Christoph Hellwige749a462015-06-18 16:44:58 +0200771 struct inode *inode = file_inode(file);
772 dev_t dev = inode->i_sb->s_dev;
773 ino_t ino = inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 struct raparms *ra, **rap, **frap = NULL;
775 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700776 unsigned int hash;
777 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Greg Banksfce14562006-10-04 02:15:49 -0700779 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
780 rab = &raparm_hash[hash];
781
782 spin_lock(&rab->pb_lock);
783 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (ra->p_ino == ino && ra->p_dev == dev)
785 goto found;
786 depth++;
787 if (ra->p_count == 0)
788 frap = rap;
789 }
Konstantin Khorenko3aa6e0a2011-02-01 17:16:29 +0300790 depth = nfsdstats.ra_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700792 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return NULL;
794 }
795 rap = frap;
796 ra = *frap;
797 ra->p_dev = dev;
798 ra->p_ino = ino;
799 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700800 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801found:
Greg Banksfce14562006-10-04 02:15:49 -0700802 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700804 ra->p_next = rab->pb_head;
805 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
807 ra->p_count++;
808 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700809 spin_unlock(&rab->pb_lock);
Christoph Hellwige749a462015-06-18 16:44:58 +0200810
811 if (ra->p_set)
812 file->f_ra = ra->p_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return ra;
814}
815
Christoph Hellwige749a462015-06-18 16:44:58 +0200816void nfsd_put_raparams(struct file *file, struct raparms *ra)
817{
818 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
819
820 spin_lock(&rab->pb_lock);
821 ra->p_ra = file->f_ra;
822 ra->p_set = 1;
823 ra->p_count--;
824 spin_unlock(&rab->pb_lock);
825}
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200828 * Grab and keep cached pages associated with a file in the svc_rqst
829 * so that they can be passed to the network sendmsg/sendpage routines
830 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 */
832static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200833nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
834 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
Jens Axboecf8208d2007-06-12 21:22:14 +0200836 struct svc_rqst *rqstp = sd->u.data;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500837 struct page **pp = rqstp->rq_next_page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200838 struct page *page = buf->page;
839 size_t size;
Jens Axboecf8208d2007-06-12 21:22:14 +0200840
841 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 if (rqstp->rq_res.page_len == 0) {
844 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500845 put_page(*rqstp->rq_next_page);
846 *(rqstp->rq_next_page++) = page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200847 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700849 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500851 if (*rqstp->rq_next_page)
852 put_page(*rqstp->rq_next_page);
853 *(rqstp->rq_next_page++) = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700855 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return size;
859}
860
Jens Axboecf8208d2007-06-12 21:22:14 +0200861static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
862 struct splice_desc *sd)
863{
864 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
865}
866
Jeff Laytone2afc812014-06-17 07:44:13 -0400867static __be32
868nfsd_finish_read(struct file *file, unsigned long *count, int host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Al Viro6264d692006-10-19 23:28:58 -0700870 if (host_err >= 0) {
871 nfsdstats.io_read += host_err;
872 *count = host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500873 fsnotify_access(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400874 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 } else
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400876 return nfserrno(host_err);
877}
878
Jeff Laytone2afc812014-06-17 07:44:13 -0400879__be32 nfsd_splice_read(struct svc_rqst *rqstp,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400880 struct file *file, loff_t offset, unsigned long *count)
881{
882 struct splice_desc sd = {
883 .len = 0,
884 .total_len = *count,
885 .pos = offset,
886 .u.data = rqstp,
887 };
888 int host_err;
889
890 rqstp->rq_next_page = rqstp->rq_respages + 1;
891 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
892 return nfsd_finish_read(file, count, host_err);
893}
894
Jeff Laytone2afc812014-06-17 07:44:13 -0400895__be32 nfsd_readv(struct file *file, loff_t offset, struct kvec *vec, int vlen,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400896 unsigned long *count)
897{
898 mm_segment_t oldfs;
899 int host_err;
900
901 oldfs = get_fs();
902 set_fs(KERNEL_DS);
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100903 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset, 0);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400904 set_fs(oldfs);
905 return nfsd_finish_read(file, count, host_err);
906}
907
908static __be32
909nfsd_vfs_read(struct svc_rqst *rqstp, struct file *file,
910 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
911{
Jeff Layton779fb0f2014-11-19 07:51:18 -0500912 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400913 return nfsd_splice_read(rqstp, file, offset, count);
914 else
915 return nfsd_readv(file, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700918/*
919 * Gathered writes: If another process is currently writing to the file,
920 * there's a high chance this is another nfsd (triggered by a bulk write
921 * from a client's biod). Rather than syncing the file with each write
922 * request, we sleep for 10 msec.
923 *
924 * I don't know if this roughly approximates C. Juszak's idea of
925 * gathered writes, but it's a nice and simple solution (IMHO), and it
926 * seems to work:-)
927 *
928 * Note: we do this only in the NFSv2 case, since v3 and higher have a
929 * better tool (separate unstable writes and commits) for solving this
930 * problem.
931 */
932static int wait_for_concurrent_writes(struct file *file)
933{
Al Viro496ad9a2013-01-23 17:07:38 -0500934 struct inode *inode = file_inode(file);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700935 static ino_t last_ino;
936 static dev_t last_dev;
937 int err = 0;
938
939 if (atomic_read(&inode->i_writecount) > 1
940 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
941 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
942 msleep(10);
943 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
944 }
945
946 if (inode->i_state & I_DIRTY) {
947 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100948 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700949 }
950 last_ino = inode->i_ino;
951 last_dev = inode->i_sb->s_dev;
952 return err;
953}
954
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200955__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
957 loff_t offset, struct kvec *vec, int vlen,
Kinglong Mee54bbb7d2016-12-31 20:59:53 +0800958 unsigned long *cnt, int stable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
960 struct svc_export *exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700962 __be32 err = 0;
963 int host_err;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400964 int use_wgather;
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700965 loff_t pos = offset;
NeilBrown86584522014-05-12 11:22:47 +1000966 unsigned int pflags = current->flags;
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700967 int flags = 0;
NeilBrown86584522014-05-12 11:22:47 +1000968
Jeff Layton7501cc22014-11-19 07:51:15 -0500969 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000970 /*
971 * We want less throttling in balance_dirty_pages()
972 * and shrink_inactive_list() so that nfs to
973 * localhost doesn't cause nfsd to lock up due to all
974 * the client's dirty pages or its congested queue.
975 */
976 current->flags |= PF_LESS_THROTTLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Kinglong Mee865d50b2016-12-31 21:00:21 +0800978 exp = fhp->fh_export;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400979 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (!EX_ISSYNC(exp))
Kinglong Mee54bbb7d2016-12-31 20:59:53 +0800982 stable = NFS_UNSTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700984 if (stable && !use_wgather)
985 flags |= RWF_SYNC;
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /* Write the data. */
988 oldfs = get_fs(); set_fs(KERNEL_DS);
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700989 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700991 if (host_err < 0)
992 goto out_nfserr;
993 *cnt = host_err;
994 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500995 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700997 if (stable && use_wgather)
998 host_err = wait_for_concurrent_writes(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
J. Bruce Fieldse4636d52009-06-15 19:07:13 -07001000out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001001 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001002 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +08001004 else
Al Viro6264d692006-10-19 23:28:58 -07001005 err = nfserrno(host_err);
Jeff Layton7501cc22014-11-19 07:51:15 -05001006 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +10001007 tsk_restore_flags(current, pflags, PF_LESS_THROTTLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return err;
1009}
1010
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001011/*
1012 * Read data from a file. count must contain the requested read count
1013 * on entry. On return, *count contains the number of bytes actually read.
1014 * N.B. After this call fhp needs an fh_put
1015 */
1016__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
1017 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
1018{
1019 struct file *file;
1020 struct raparms *ra;
1021 __be32 err;
1022
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001023 trace_read_start(rqstp, fhp, offset, vlen);
Christoph Hellwige749a462015-06-18 16:44:58 +02001024 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001025 if (err)
1026 return err;
1027
Christoph Hellwige749a462015-06-18 16:44:58 +02001028 ra = nfsd_init_raparms(file);
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001029
1030 trace_read_opened(rqstp, fhp, offset, vlen);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001031 err = nfsd_vfs_read(rqstp, file, offset, vec, vlen, count);
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001032 trace_read_io_done(rqstp, fhp, offset, vlen);
1033
Christoph Hellwige749a462015-06-18 16:44:58 +02001034 if (ra)
1035 nfsd_put_raparams(file, ra);
1036 fput(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001037
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001038 trace_read_done(rqstp, fhp, offset, vlen);
1039
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001040 return err;
1041}
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043/*
1044 * Write data to a file.
1045 * The stable flag requests synchronous writes.
1046 * N.B. After this call fhp needs an fh_put
1047 */
Al Viro6264d692006-10-19 23:28:58 -07001048__be32
Kinglong Mee52e380e2016-12-31 21:00:13 +08001049nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
1050 struct kvec *vec, int vlen, unsigned long *cnt, int stable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Kinglong Mee52e380e2016-12-31 21:00:13 +08001052 struct file *file = NULL;
1053 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001055 trace_write_start(rqstp, fhp, offset, vlen);
1056
Kinglong Mee52e380e2016-12-31 21:00:13 +08001057 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
1058 if (err)
1059 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
Kinglong Mee52e380e2016-12-31 21:00:13 +08001061 trace_write_opened(rqstp, fhp, offset, vlen);
1062 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt, stable);
1063 trace_write_io_done(rqstp, fhp, offset, vlen);
1064 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065out:
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001066 trace_write_done(rqstp, fhp, offset, vlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 return err;
1068}
1069
1070#ifdef CONFIG_NFSD_V3
1071/*
1072 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001073 *
1074 * Note: we only guarantee that data that lies within the range specified
1075 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 *
1077 * Unfortunately we cannot lock the file to make sure we return full WCC
1078 * data to the client, as locking happens lower down in the filesystem.
1079 */
Al Viro6264d692006-10-19 23:28:58 -07001080__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1082 loff_t offset, unsigned long count)
1083{
1084 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001085 loff_t end = LLONG_MAX;
1086 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Trond Myklebustaa696a62010-01-29 16:44:25 -05001088 if (offset < 0)
1089 goto out;
1090 if (count != 0) {
1091 end = offset + (loff_t)count - 1;
1092 if (end < offset)
1093 goto out;
1094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Jeff Layton91885252010-03-19 08:06:28 -04001096 err = nfsd_open(rqstp, fhp, S_IFREG,
1097 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001098 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001099 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001101 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001102
1103 if (err2 != -EINVAL)
1104 err = nfserrno(err2);
1105 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
1108
Christoph Hellwigfd891452015-04-28 15:41:16 +02001109 fput(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001110out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return err;
1112}
1113#endif /* CONFIG_NFSD_V3 */
1114
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001115static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001116nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1117 struct iattr *iap)
1118{
1119 /*
1120 * Mode has already been set earlier in create:
1121 */
1122 iap->ia_valid &= ~ATTR_MODE;
1123 /*
1124 * Setting uid/gid works only for root. Irix appears to
1125 * send along the gid on create when it tries to implement
1126 * setgid directories via NFS:
1127 */
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001128 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001129 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1130 if (iap->ia_valid)
1131 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001132 /* Callers expect file metadata to be committed here */
Jeff Layton722b6202014-07-03 07:54:19 -04001133 return nfserrno(commit_metadata(resfhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001134}
1135
wengang wang4ac35c22009-02-10 11:27:51 +08001136/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1137 * setting size to 0 may fail for some specific file systems by the permission
1138 * checking which requires WRITE permission but the mode is 000.
1139 * we ignore the resizing(to 0) on the just new created file, since the size is
1140 * 0 after file created.
1141 *
1142 * call this only after vfs_create() is called.
1143 * */
1144static void
1145nfsd_check_ignore_resizing(struct iattr *iap)
1146{
1147 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1148 iap->ia_valid &= ~ATTR_SIZE;
1149}
1150
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001151/* The parent directory should already be locked: */
Al Viro6264d692006-10-19 23:28:58 -07001152__be32
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001153nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 char *fname, int flen, struct iattr *iap,
1155 int type, dev_t rdev, struct svc_fh *resfhp)
1156{
Dan Carpenter2b118852016-08-03 22:05:00 +03001157 struct dentry *dentry, *dchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001159 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001160 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001161 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001164 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001166 dchild = dget(resfhp->fh_dentry);
1167 if (!fhp->fh_locked) {
1168 WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
Al Viroa6a9f182013-09-16 10:57:01 -04001169 dentry);
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001170 err = nfserr_io;
1171 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Oleg Drokin7eed34f2016-07-14 23:20:22 -04001174 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1175 if (err)
1176 goto out;
1177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (!(iap->ia_valid & ATTR_MODE))
1179 iap->ia_mode = 0;
1180 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1181
J. Bruce Fields088406b2006-11-08 17:44:59 -08001182 err = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001183 host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 switch (type) {
1185 case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04001186 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
wengang wang4ac35c22009-02-10 11:27:51 +08001187 if (!host_err)
1188 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 break;
1190 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001191 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 break;
1193 case S_IFCHR:
1194 case S_IFBLK:
1195 case S_IFIFO:
1196 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001197 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 break;
J. Bruce Fields714232742016-07-22 12:03:46 -04001199 default:
1200 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1201 type);
1202 host_err = -EINVAL;
Dave Hansen463c3192008-02-15 14:37:57 -08001203 }
Jan Kara4a55c102012-06-12 16:20:33 +02001204 if (host_err < 0)
Dave Hansen463c3192008-02-15 14:37:57 -08001205 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Ben Myersf5019122010-02-17 14:05:11 -06001207 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
Ben Myersf5019122010-02-17 14:05:11 -06001209 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001210 * nfsd_create_setattr already committed the child. Transactional
1211 * filesystems had a chance to commit changes for both parent and
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001212 * child simultaneously making the following commit_metadata a
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001213 * noop.
Ben Myersf5019122010-02-17 14:05:11 -06001214 */
1215 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001216 if (err2)
1217 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 /*
1219 * Update the file handle to get the new inode info.
1220 */
1221 if (!err)
1222 err = fh_update(resfhp);
1223out:
Dan Carpenter2b118852016-08-03 22:05:00 +03001224 dput(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 return err;
1226
1227out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001228 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 goto out;
1230}
1231
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001232/*
1233 * Create a filesystem object (regular, directory, special).
1234 * Note that the parent directory is left locked.
1235 *
1236 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1237 */
1238__be32
1239nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1240 char *fname, int flen, struct iattr *iap,
1241 int type, dev_t rdev, struct svc_fh *resfhp)
1242{
1243 struct dentry *dentry, *dchild = NULL;
1244 struct inode *dirp;
1245 __be32 err;
1246 int host_err;
1247
1248 if (isdotent(fname, flen))
1249 return nfserr_exist;
1250
J. Bruce Fieldsfa081392016-07-21 16:00:12 -04001251 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001252 if (err)
1253 return err;
1254
1255 dentry = fhp->fh_dentry;
1256 dirp = d_inode(dentry);
1257
1258 host_err = fh_want_write(fhp);
1259 if (host_err)
1260 return nfserrno(host_err);
1261
1262 fh_lock_nested(fhp, I_MUTEX_PARENT);
1263 dchild = lookup_one_len(fname, dentry, flen);
1264 host_err = PTR_ERR(dchild);
1265 if (IS_ERR(dchild))
1266 return nfserrno(host_err);
1267 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
Josef Bacik502aa0a2016-08-10 14:46:27 -04001268 /*
1269 * We unconditionally drop our ref to dchild as fh_compose will have
1270 * already grabbed its own ref for it.
1271 */
1272 dput(dchild);
1273 if (err)
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001274 return err;
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001275 return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1276 rdev, resfhp);
1277}
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279#ifdef CONFIG_NFSD_V3
Mi Jinlongac6721a2011-04-20 17:06:25 +08001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281/*
Mi Jinlongac6721a2011-04-20 17:06:25 +08001282 * NFSv3 and NFSv4 version of nfsd_create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 */
Al Viro6264d692006-10-19 23:28:58 -07001284__be32
Mi Jinlongac6721a2011-04-20 17:06:25 +08001285do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 char *fname, int flen, struct iattr *iap,
1287 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields856121b2011-10-13 11:37:11 -04001288 bool *truncp, bool *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 struct dentry *dentry, *dchild = NULL;
1291 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001292 __be32 err;
1293 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 err = nfserr_perm;
1297 if (!flen)
1298 goto out;
1299 err = nfserr_exist;
1300 if (isdotent(fname, flen))
1301 goto out;
1302 if (!(iap->ia_valid & ATTR_MODE))
1303 iap->ia_mode = 0;
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001304 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (err)
1306 goto out;
1307
1308 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001309 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Jan Kara4a55c102012-06-12 16:20:33 +02001311 host_err = fh_want_write(fhp);
1312 if (host_err)
1313 goto out_nfserr;
1314
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001315 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
1318 * Compose the response file handle.
1319 */
1320 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001321 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 if (IS_ERR(dchild))
1323 goto out_nfserr;
1324
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001325 /* If file doesn't exist, check for permissions to create one */
David Howells2b0143b2015-03-17 22:25:59 +00001326 if (d_really_is_negative(dchild)) {
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001327 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1328 if (err)
1329 goto out;
1330 }
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1333 if (err)
1334 goto out;
1335
Mi Jinlongac6721a2011-04-20 17:06:25 +08001336 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001337 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001338 * the high bit set, so just clear the high bits. If this is
1339 * ever changed to use different attrs for storing the
1340 * verifier, then do_open_lookup() will also need to be fixed
1341 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 */
1343 v_mtime = verifier[0]&0x7fffffff;
1344 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
1346
David Howells2b0143b2015-03-17 22:25:59 +00001347 if (d_really_is_positive(dchild)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 err = 0;
1349
1350 switch (createmode) {
1351 case NFS3_CREATE_UNCHECKED:
David Howellse36cb0b2015-01-29 12:02:35 +00001352 if (! d_is_reg(dchild))
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -04001353 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 else if (truncp) {
1355 /* in nfsv4, we need to treat this case a little
1356 * differently. we don't want to truncate the
1357 * file now; this would be wrong if the OPEN
1358 * fails for some other reason. furthermore,
1359 * if the size is nonzero, we should ignore it
1360 * according to spec!
1361 */
1362 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1363 }
1364 else {
1365 iap->ia_valid &= ATTR_SIZE;
1366 goto set_attr;
1367 }
1368 break;
1369 case NFS3_CREATE_EXCLUSIVE:
David Howells2b0143b2015-03-17 22:25:59 +00001370 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1371 && d_inode(dchild)->i_atime.tv_sec == v_atime
1372 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001373 if (created)
1374 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 break;
Neil Brown7007c902012-12-07 15:40:55 -05001376 }
Mi Jinlongac6721a2011-04-20 17:06:25 +08001377 case NFS4_CREATE_EXCLUSIVE4_1:
David Howells2b0143b2015-03-17 22:25:59 +00001378 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1379 && d_inode(dchild)->i_atime.tv_sec == v_atime
1380 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001381 if (created)
1382 *created = 1;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001383 goto set_attr;
Neil Brown7007c902012-12-07 15:40:55 -05001384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* fallthru */
1386 case NFS3_CREATE_GUARDED:
1387 err = nfserr_exist;
1388 }
Al Virobad0dcf2011-11-23 12:03:18 -05001389 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 goto out;
1391 }
1392
Al Viro312b63f2012-06-10 18:09:36 -04001393 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
Dave Hansen463c3192008-02-15 14:37:57 -08001394 if (host_err < 0) {
Al Virobad0dcf2011-11-23 12:03:18 -05001395 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001397 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001398 if (created)
1399 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
wengang wang4ac35c22009-02-10 11:27:51 +08001401 nfsd_check_ignore_resizing(iap);
1402
Mi Jinlongac6721a2011-04-20 17:06:25 +08001403 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001404 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001406 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /* XXX someone who knows this better please fix it for nsec */
1408 iap->ia_mtime.tv_sec = v_mtime;
1409 iap->ia_atime.tv_sec = v_atime;
1410 iap->ia_mtime.tv_nsec = 0;
1411 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001415 err = nfsd_create_setattr(rqstp, resfhp, iap);
1416
1417 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001418 * nfsd_create_setattr already committed the child
1419 * (and possibly also the parent).
Ben Myersf5019122010-02-17 14:05:11 -06001420 */
1421 if (!err)
1422 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001423
1424 /*
1425 * Update the filehandle to get the new inode info.
1426 */
1427 if (!err)
1428 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 out:
1431 fh_unlock(fhp);
1432 if (dchild && !IS_ERR(dchild))
1433 dput(dchild);
Jan Kara4a55c102012-06-12 16:20:33 +02001434 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return err;
1436
1437 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001438 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto out;
1440}
1441#endif /* CONFIG_NFSD_V3 */
1442
1443/*
1444 * Read a symlink. On entry, *lenp must contain the maximum path length that
1445 * fits into the buffer. On return, it contains the true length.
1446 * N.B. After this call fhp needs an fh_put
1447 */
Al Viro6264d692006-10-19 23:28:58 -07001448__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1450{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001452 __be32 err;
1453 int host_err;
Al Viro68ac1232012-03-15 08:21:57 -04001454 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001456 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (err)
1458 goto out;
1459
Al Viro68ac1232012-03-15 08:21:57 -04001460 path.mnt = fhp->fh_export->ex_path.mnt;
1461 path.dentry = fhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 err = nfserr_inval;
Miklos Szeredifd4a0ed2016-12-09 16:45:04 +01001464 if (!d_is_symlink(path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 goto out;
1466
Al Viro68ac1232012-03-15 08:21:57 -04001467 touch_atime(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 /* N.B. Why does this call need a get_fs()??
1469 * Remove the set_fs and watch the fireworks:-) --okir
1470 */
1471
1472 oldfs = get_fs(); set_fs(KERNEL_DS);
Miklos Szeredifd4a0ed2016-12-09 16:45:04 +01001473 host_err = vfs_readlink(path.dentry, (char __user *)buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 set_fs(oldfs);
1475
Al Viro6264d692006-10-19 23:28:58 -07001476 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001478 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 err = 0;
1480out:
1481 return err;
1482
1483out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001484 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 goto out;
1486}
1487
1488/*
1489 * Create a symlink and look up its inode
1490 * N.B. After this call _both_ fhp and resfhp need an fh_put
1491 */
Al Viro6264d692006-10-19 23:28:58 -07001492__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1494 char *fname, int flen,
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001495 char *path,
Kinglong Mee1e444f52014-07-01 17:48:02 +08001496 struct svc_fh *resfhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
1498 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001499 __be32 err, cerr;
1500 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
1502 err = nfserr_noent;
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001503 if (!flen || path[0] == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 goto out;
1505 err = nfserr_exist;
1506 if (isdotent(fname, flen))
1507 goto out;
1508
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001509 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 if (err)
1511 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001512
1513 host_err = fh_want_write(fhp);
1514 if (host_err)
1515 goto out_nfserr;
1516
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 fh_lock(fhp);
1518 dentry = fhp->fh_dentry;
1519 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001520 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (IS_ERR(dnew))
1522 goto out_nfserr;
1523
David Howells2b0143b2015-03-17 22:25:59 +00001524 host_err = vfs_symlink(d_inode(dentry), dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001525 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001526 if (!err)
1527 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 fh_unlock(fhp);
1529
Al Virobad0dcf2011-11-23 12:03:18 -05001530 fh_drop_write(fhp);
Dave Hansen75c3f292008-02-15 14:37:45 -08001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1533 dput(dnew);
1534 if (err==0) err = cerr;
1535out:
1536 return err;
1537
1538out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001539 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 goto out;
1541}
1542
1543/*
1544 * Create a hardlink
1545 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1546 */
Al Viro6264d692006-10-19 23:28:58 -07001547__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1549 char *name, int len, struct svc_fh *tfhp)
1550{
1551 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001552 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001553 __be32 err;
1554 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001556 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (err)
1558 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001559 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (err)
1561 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001562 err = nfserr_isdir;
David Howellse36cb0b2015-01-29 12:02:35 +00001563 if (d_is_dir(tfhp->fh_dentry))
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001564 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 err = nfserr_perm;
1566 if (!len)
1567 goto out;
1568 err = nfserr_exist;
1569 if (isdotent(name, len))
1570 goto out;
1571
Jan Kara4a55c102012-06-12 16:20:33 +02001572 host_err = fh_want_write(tfhp);
1573 if (host_err) {
1574 err = nfserrno(host_err);
1575 goto out;
1576 }
1577
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001578 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 ddir = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001580 dirp = d_inode(ddir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001583 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (IS_ERR(dnew))
1585 goto out_nfserr;
1586
1587 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001589 err = nfserr_noent;
David Howells2b0143b2015-03-17 22:25:59 +00001590 if (d_really_is_negative(dold))
Jan Kara4a55c102012-06-12 16:20:33 +02001591 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04001592 host_err = vfs_link(dold, dirp, dnew, NULL);
Al Viro6264d692006-10-19 23:28:58 -07001593 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001594 err = nfserrno(commit_metadata(ffhp));
1595 if (!err)
1596 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 } else {
Al Viro6264d692006-10-19 23:28:58 -07001598 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 err = nfserr_acces;
1600 else
Al Viro6264d692006-10-19 23:28:58 -07001601 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001603out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001605out_unlock:
1606 fh_unlock(ffhp);
Jan Kara4a55c102012-06-12 16:20:33 +02001607 fh_drop_write(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608out:
1609 return err;
1610
1611out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001612 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001613 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
1616/*
1617 * Rename a file
1618 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1619 */
Al Viro6264d692006-10-19 23:28:58 -07001620__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1622 struct svc_fh *tfhp, char *tname, int tlen)
1623{
1624 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1625 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001626 __be32 err;
1627 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001629 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (err)
1631 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001632 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (err)
1634 goto out;
1635
1636 fdentry = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001637 fdir = d_inode(fdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 tdentry = tfhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001640 tdir = d_inode(tdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 err = nfserr_perm;
1643 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1644 goto out;
1645
Jan Kara4a55c102012-06-12 16:20:33 +02001646 host_err = fh_want_write(ffhp);
1647 if (host_err) {
1648 err = nfserrno(host_err);
1649 goto out;
1650 }
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 /* cannot use fh_lock as we need deadlock protective ordering
1653 * so do it by hand */
1654 trap = lock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001655 ffhp->fh_locked = tfhp->fh_locked = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 fill_pre_wcc(ffhp);
1657 fill_pre_wcc(tfhp);
1658
1659 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001660 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (IS_ERR(odentry))
1662 goto out_nfserr;
1663
Al Viro6264d692006-10-19 23:28:58 -07001664 host_err = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00001665 if (d_really_is_negative(odentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001667 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 if (odentry == trap)
1669 goto out_dput_old;
1670
1671 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001672 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 if (IS_ERR(ndentry))
1674 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001675 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 if (ndentry == trap)
1677 goto out_dput_new;
1678
Dave Hansen9079b1e2008-02-15 14:37:49 -08001679 host_err = -EXDEV;
1680 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1681 goto out_dput_new;
J. Bruce Fieldsaa387d6c2013-04-15 16:03:46 -04001682 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1683 goto out_dput_new;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001684
Miklos Szeredi520c8b12014-04-01 17:08:42 +02001685 host_err = vfs_rename(fdir, odentry, tdir, ndentry, NULL, 0);
Ben Myersf5019122010-02-17 14:05:11 -06001686 if (!host_err) {
1687 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001688 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001689 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 out_dput_new:
1692 dput(ndentry);
1693 out_dput_old:
1694 dput(odentry);
1695 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001696 err = nfserrno(host_err);
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001697 /*
1698 * We cannot rely on fh_unlock on the two filehandles,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 * as that would do the wrong thing if the two directories
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001700 * were the same, so again we do it by hand.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 */
1702 fill_post_wcc(ffhp);
1703 fill_post_wcc(tfhp);
1704 unlock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001705 ffhp->fh_locked = tfhp->fh_locked = false;
Jan Kara4a55c102012-06-12 16:20:33 +02001706 fh_drop_write(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707
1708out:
1709 return err;
1710}
1711
1712/*
1713 * Unlink a file or directory
1714 * N.B. After this call fhp needs an fh_put
1715 */
Al Viro6264d692006-10-19 23:28:58 -07001716__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1718 char *fname, int flen)
1719{
1720 struct dentry *dentry, *rdentry;
1721 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001722 __be32 err;
1723 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725 err = nfserr_acces;
1726 if (!flen || isdotent(fname, flen))
1727 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001728 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (err)
1730 goto out;
1731
Jan Kara4a55c102012-06-12 16:20:33 +02001732 host_err = fh_want_write(fhp);
1733 if (host_err)
1734 goto out_nfserr;
1735
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001736 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001738 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001741 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (IS_ERR(rdentry))
1743 goto out_nfserr;
1744
David Howells2b0143b2015-03-17 22:25:59 +00001745 if (d_really_is_negative(rdentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 dput(rdentry);
1747 err = nfserr_noent;
1748 goto out;
1749 }
1750
1751 if (!type)
David Howells2b0143b2015-03-17 22:25:59 +00001752 type = d_inode(rdentry)->i_mode & S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001754 if (type != S_IFDIR)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04001755 host_err = vfs_unlink(dirp, rdentry, NULL);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001756 else
Al Viro6264d692006-10-19 23:28:58 -07001757 host_err = vfs_rmdir(dirp, rdentry);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001758 if (!host_err)
1759 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 dput(rdentry);
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001763 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001764out:
1765 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767
1768/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001769 * We do this buffering because we must not call back into the file
1770 * system's ->lookup() method from the filldir callback. That may well
1771 * deadlock a number of file systems.
1772 *
1773 * This is based heavily on the implementation of same in XFS.
1774 */
1775struct buffered_dirent {
1776 u64 ino;
1777 loff_t offset;
1778 int namlen;
1779 unsigned int d_type;
1780 char name[];
1781};
1782
1783struct readdir_data {
Al Viro5c0ba4e2013-05-15 13:52:59 -04001784 struct dir_context ctx;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001785 char *dirent;
1786 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001787 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001788};
1789
Miklos Szerediac7576f2014-10-30 17:37:34 +01001790static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1791 int namlen, loff_t offset, u64 ino,
1792 unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001793{
Miklos Szerediac7576f2014-10-30 17:37:34 +01001794 struct readdir_data *buf =
1795 container_of(ctx, struct readdir_data, ctx);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001796 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1797 unsigned int reclen;
1798
1799 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001800 if (buf->used + reclen > PAGE_SIZE) {
1801 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001802 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001803 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001804
1805 de->namlen = namlen;
1806 de->offset = offset;
1807 de->ino = ino;
1808 de->d_type = d_type;
1809 memcpy(de->name, name, namlen);
1810 buf->used += reclen;
1811
1812 return 0;
1813}
1814
Miklos Szerediac7576f2014-10-30 17:37:34 +01001815static __be32 nfsd_buffered_readdir(struct file *file, nfsd_filldir_t func,
David Woodhouse2f9092e2009-04-20 23:18:37 +01001816 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001817{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001818 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001819 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001820 int size;
1821 loff_t offset;
Al Viroac6614b2013-05-22 22:22:04 -04001822 struct readdir_data buf = {
1823 .ctx.actor = nfsd_buffered_filldir,
1824 .dirent = (void *)__get_free_page(GFP_KERNEL)
1825 };
David Woodhouse2628b762008-07-31 17:16:51 +01001826
David Woodhouse14f7dd62008-07-31 20:29:12 +01001827 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001828 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001829
David Woodhouse14f7dd62008-07-31 20:29:12 +01001830 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001831
1832 while (1) {
1833 unsigned int reclen;
1834
Doug Nazarb726e922008-11-05 06:16:28 -05001835 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001836 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001837 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001838
Al Viro5c0ba4e2013-05-15 13:52:59 -04001839 host_err = iterate_dir(file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -04001840 if (buf.full)
1841 host_err = 0;
1842
1843 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001844 break;
1845
1846 size = buf.used;
1847
1848 if (!size)
1849 break;
1850
David Woodhouse14f7dd62008-07-31 20:29:12 +01001851 de = (struct buffered_dirent *)buf.dirent;
1852 while (size > 0) {
1853 offset = de->offset;
1854
1855 if (func(cdp, de->name, de->namlen, de->offset,
1856 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001857 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001858
1859 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001860 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001861
1862 reclen = ALIGN(sizeof(*de) + de->namlen,
1863 sizeof(u64));
1864 size -= reclen;
1865 de = (struct buffered_dirent *)((char *)de + reclen);
1866 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001867 if (size > 0) /* We bailed out early */
1868 break;
1869
David Woodhousec002a6c2008-08-17 17:21:18 +01001870 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001871 }
1872
David Woodhouse14f7dd62008-07-31 20:29:12 +01001873 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001874
1875 if (host_err)
1876 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001877
1878 *offsetp = offset;
1879 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882/*
1883 * Read entries from a directory.
1884 * The NFSv3/4 verifier we ignore for now.
1885 */
Al Viro6264d692006-10-19 23:28:58 -07001886__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
Miklos Szerediac7576f2014-10-30 17:37:34 +01001888 struct readdir_cd *cdp, nfsd_filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Al Viro6264d692006-10-19 23:28:58 -07001890 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 struct file *file;
1892 loff_t offset = *offsetp;
Bernd Schubert06effdb2012-03-18 22:44:50 -04001893 int may_flags = NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Bernd Schubert06effdb2012-03-18 22:44:50 -04001895 /* NFSv2 only supports 32 bit cookies */
1896 if (rqstp->rq_vers > 2)
1897 may_flags |= NFSD_MAY_64BIT_COOKIE;
1898
1899 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (err)
1901 goto out;
1902
Jeff Laytonb108fe62012-04-25 15:30:00 -04001903 offset = vfs_llseek(file, offset, SEEK_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (offset < 0) {
1905 err = nfserrno((int)offset);
1906 goto out_close;
1907 }
1908
David Woodhouse14f7dd62008-07-31 20:29:12 +01001909 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911 if (err == nfserr_eof || err == nfserr_toosmall)
1912 err = nfs_ok; /* can still be found in ->err */
1913out_close:
Christoph Hellwigfd891452015-04-28 15:41:16 +02001914 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915out:
1916 return err;
1917}
1918
1919/*
1920 * Get file system stats
1921 * N.B. After this call fhp needs an fh_put
1922 */
Al Viro6264d692006-10-19 23:28:58 -07001923__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04001924nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001926 __be32 err;
1927
1928 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02001929 if (!err) {
1930 struct path path = {
1931 .mnt = fhp->fh_export->ex_path.mnt,
1932 .dentry = fhp->fh_dentry,
1933 };
1934 if (vfs_statfs(&path, stat))
1935 err = nfserr_io;
1936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return err;
1938}
1939
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001940static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001941{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001942 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001943}
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945/*
1946 * Check for a user's access permissions to this inode.
1947 */
Al Viro6264d692006-10-19 23:28:58 -07001948__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001949nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
1950 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
David Howells2b0143b2015-03-17 22:25:59 +00001952 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 int err;
1954
J. Bruce Fieldsaea93392011-04-10 10:35:12 -04001955 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return 0;
1957#if 0
1958 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1959 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001960 (acc & NFSD_MAY_READ)? " read" : "",
1961 (acc & NFSD_MAY_WRITE)? " write" : "",
1962 (acc & NFSD_MAY_EXEC)? " exec" : "",
1963 (acc & NFSD_MAY_SATTR)? " sattr" : "",
1964 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
1965 (acc & NFSD_MAY_LOCK)? " lock" : "",
1966 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 inode->i_mode,
1968 IS_IMMUTABLE(inode)? " immut" : "",
1969 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08001970 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11001972 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973#endif
1974
1975 /* Normally we reject any write/sattr etc access on a read-only file
1976 * system. But if it is IRIX doing check on write-access for a
1977 * device special file, we ignore rofs.
1978 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001979 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
1980 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08001981 if (exp_rdonly(rqstp, exp) ||
1982 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001984 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 return nfserr_perm;
1986 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001987 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return nfserr_perm;
1989
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001990 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 /* If we cannot rely on authentication in NLM requests,
1992 * just allow locks, otherwise require read permission, or
1993 * ownership
1994 */
1995 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
1996 return 0;
1997 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001998 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
2000 /*
2001 * The file owner always gets access permission for accesses that
2002 * would normally be checked at open time. This is to make
2003 * file access work even when the client has done a fchmod(fd, 0).
2004 *
2005 * However, `cp foo bar' should fail nevertheless when bar is
2006 * readonly. A sensible way to do this might be to reject all
2007 * attempts to truncate a read-only file, because a creat() call
2008 * always implies file truncation.
2009 * ... but this isn't really fair. A process may reasonably call
2010 * ftruncate on an open file descriptor on a file with perm 000.
2011 * We must trust the client to do permission checking - using "ACCESS"
2012 * with NFSv3.
2013 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002014 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002015 uid_eq(inode->i_uid, current_fsuid()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return 0;
2017
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002018 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002019 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /* Allow read access to binaries even when mode 111 */
2022 if (err == -EACCES && S_ISREG(inode->i_mode) &&
J. Bruce Fieldsa0432262011-08-25 10:48:39 -04002023 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2024 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
Al Virof419a2e2008-07-22 00:07:17 -04002025 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 return err? nfserrno(err) : 0;
2028}
2029
2030void
2031nfsd_racache_shutdown(void)
2032{
Jeff Layton54a66e52008-08-13 22:03:27 -04002033 struct raparms *raparm, *last_raparm;
2034 unsigned int i;
2035
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002037
2038 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2039 raparm = raparm_hash[i].pb_head;
2040 while(raparm) {
2041 last_raparm = raparm;
2042 raparm = raparm->p_next;
2043 kfree(last_raparm);
2044 }
2045 raparm_hash[i].pb_head = NULL;
2046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
2048/*
2049 * Initialize readahead param cache
2050 */
2051int
2052nfsd_racache_init(int cache_size)
2053{
2054 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002055 int j = 0;
2056 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002057 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Greg Banksfce14562006-10-04 02:15:49 -07002059
Jeff Layton54a66e52008-08-13 22:03:27 -04002060 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002062 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002063 nperbucket = max(2, nperbucket);
Jeff Layton54a66e52008-08-13 22:03:27 -04002064 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002065
2066 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002067
2068 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002069 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002070
2071 raparm = &raparm_hash[i].pb_head;
2072 for (j = 0; j < nperbucket; j++) {
2073 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2074 if (!*raparm)
2075 goto out_nomem;
2076 raparm = &(*raparm)->p_next;
2077 }
2078 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002079 }
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 nfsdstats.ra_size = cache_size;
2082 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002083
2084out_nomem:
2085 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2086 nfsd_racache_shutdown();
2087 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088}