blob: 5859f58260458e9ddf84f47777b8d96b79d2a2aa [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
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800335/*
336 * Set various file attributes. After this call fhp needs an fh_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Al Viro6264d692006-10-19 23:28:58 -0700338__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
340 int check_guard, time_t guardtime)
341{
342 struct dentry *dentry;
343 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200344 int accmode = NFSD_MAY_SATTR;
Al Viro175a4eb2011-07-26 03:30:54 -0400345 umode_t ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700346 __be32 err;
347 int host_err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500348 bool get_write_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200351 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 if (iap->ia_valid & ATTR_SIZE)
353 ftype = S_IFREG;
354
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500355 /* Callers that do fh_verify should do the fh_want_write: */
356 get_write_count = !fhp->fh_dentry;
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /* Get inode */
359 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800360 if (err)
Christoph Hellwig41f53352017-01-24 09:22:41 +0100361 return err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500362 if (get_write_count) {
363 host_err = fh_want_write(fhp);
364 if (host_err)
Christoph Hellwig41f53352017-01-24 09:22:41 +0100365 goto out_host_err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000369 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
NeilBrown15b7a1b2005-11-07 01:00:23 -0800371 /* Ignore any mode updates on symlinks */
372 if (S_ISLNK(inode->i_mode))
373 iap->ia_valid &= ~ATTR_MODE;
374
375 if (!iap->ia_valid)
Christoph Hellwig41f53352017-01-24 09:22:41 +0100376 return 0;
NeilBrown15b7a1b2005-11-07 01:00:23 -0800377
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800378 nfsd_sanitize_attrs(inode, iap);
379
Christoph Hellwig41f53352017-01-24 09:22:41 +0100380 if (check_guard && guardtime != inode->i_ctime.tv_sec)
381 return nfserr_notsync;
382
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000383 /*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800384 * The size case is special, it changes the file in addition to the
Christoph Hellwig41f53352017-01-24 09:22:41 +0100385 * attributes, and file systems don't expect it to be mixed with
386 * "random" attribute changes. We thus split out the size change
387 * into a separate call for vfs_truncate, and do the rest as a
388 * a separate setattr call.
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000389 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (iap->ia_valid & ATTR_SIZE) {
Christoph Hellwig41f53352017-01-24 09:22:41 +0100391 struct path path = {
392 .mnt = fhp->fh_export->ex_path.mnt,
393 .dentry = dentry,
394 };
395 bool implicit_mtime = false;
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700396
397 /*
Christoph Hellwig41f53352017-01-24 09:22:41 +0100398 * vfs_truncate implicity updates the mtime IFF the file size
399 * actually changes. Avoid the additional seattr call below if
400 * the only other attribute that the client sends is the mtime.
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700401 */
Christoph Hellwig41f53352017-01-24 09:22:41 +0100402 if (iap->ia_size != i_size_read(inode) &&
403 ((iap->ia_valid & ~(ATTR_SIZE | ATTR_MTIME)) == 0))
404 implicit_mtime = true;
405
406 host_err = vfs_truncate(&path, iap->ia_size);
407 if (host_err)
408 goto out_host_err;
409
410 iap->ia_valid &= ~ATTR_SIZE;
411 if (implicit_mtime)
412 iap->ia_valid &= ~ATTR_MTIME;
413 if (!iap->ia_valid)
414 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 iap->ia_valid |= ATTR_CTIME;
418
Christoph Hellwig987da472013-11-18 05:07:47 -0800419 fh_lock(fhp);
420 host_err = notify_change(dentry, iap, NULL);
421 fh_unlock(fhp);
Christoph Hellwig41f53352017-01-24 09:22:41 +0100422 if (host_err)
423 goto out_host_err;
Christoph Hellwig987da472013-11-18 05:07:47 -0800424
Christoph Hellwig41f53352017-01-24 09:22:41 +0100425done:
426 host_err = commit_metadata(fhp);
427out_host_err:
428 return nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800431#if defined(CONFIG_NFSD_V4)
Chuck Lever9b4146e2012-01-04 16:26:43 -0500432/*
433 * NFS junction information is stored in an extended attribute.
434 */
435#define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
436
437/**
438 * nfsd4_is_junction - Test if an object could be an NFS junction
439 *
440 * @dentry: object to test
441 *
442 * Returns 1 if "dentry" appears to contain NFS junction information.
443 * Otherwise 0 is returned.
444 */
Trond Myklebust11fcee022011-09-12 19:37:26 -0400445int nfsd4_is_junction(struct dentry *dentry)
446{
David Howells2b0143b2015-03-17 22:25:59 +0000447 struct inode *inode = d_inode(dentry);
Trond Myklebust11fcee022011-09-12 19:37:26 -0400448
449 if (inode == NULL)
450 return 0;
451 if (inode->i_mode & S_IXUGO)
452 return 0;
453 if (!(inode->i_mode & S_ISVTX))
454 return 0;
Chuck Lever9b4146e2012-01-04 16:26:43 -0500455 if (vfs_getxattr(dentry, NFSD_JUNCTION_XATTR_NAME, NULL, 0) <= 0)
Trond Myklebust11fcee022011-09-12 19:37:26 -0400456 return 0;
457 return 1;
458}
David Quigley18032ca2013-05-02 13:19:10 -0400459#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
460__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
461 struct xdr_netobj *label)
462{
463 __be32 error;
464 int host_error;
465 struct dentry *dentry;
466
467 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
468 if (error)
469 return error;
470
471 dentry = fhp->fh_dentry;
472
Al Viro59551022016-01-22 15:40:57 -0500473 inode_lock(d_inode(dentry));
David Quigley18032ca2013-05-02 13:19:10 -0400474 host_error = security_inode_setsecctx(dentry, label->data, label->len);
Al Viro59551022016-01-22 15:40:57 -0500475 inode_unlock(d_inode(dentry));
David Quigley18032ca2013-05-02 13:19:10 -0400476 return nfserrno(host_error);
477}
478#else
479__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
480 struct xdr_netobj *label)
481{
482 return nfserr_notsupp;
483}
484#endif
485
Christoph Hellwigffa01602015-12-03 12:59:52 +0100486__be32 nfsd4_clone_file_range(struct file *src, u64 src_pos, struct file *dst,
487 u64 dst_pos, u64 count)
488{
Amir Goldstein031a0722016-09-23 11:38:11 +0300489 return nfserrno(do_clone_file_range(src, src_pos, dst, dst_pos, count));
Christoph Hellwigffa01602015-12-03 12:59:52 +0100490}
491
Anna Schumaker29ae7f92016-09-07 15:57:30 -0400492ssize_t nfsd_copy_file_range(struct file *src, u64 src_pos, struct file *dst,
493 u64 dst_pos, u64 count)
494{
495
496 /*
497 * Limit copy to 4MB to prevent indefinitely blocking an nfsd
498 * thread and client rpc slot. The choice of 4MB is somewhat
499 * arbitrary. We might instead base this on r/wsize, or make it
500 * tunable, or use a time instead of a byte limit, or implement
501 * asynchronous copy. In theory a client could also recognize a
502 * limit like this and pipeline multiple COPY requests.
503 */
504 count = min_t(u64, count, 1 << 22);
505 return vfs_copy_file_range(src, src_pos, dst, dst_pos, count, 0);
506}
507
Anna Schumaker95d871f2014-11-07 14:44:26 -0500508__be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
509 struct file *file, loff_t offset, loff_t len,
510 int flags)
511{
Anna Schumaker95d871f2014-11-07 14:44:26 -0500512 int error;
513
514 if (!S_ISREG(file_inode(file)->i_mode))
515 return nfserr_inval;
516
Anna Schumaker95d871f2014-11-07 14:44:26 -0500517 error = vfs_fallocate(file, flags, offset, len);
518 if (!error)
519 error = commit_metadata(fhp);
520
521 return nfserrno(error);
522}
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400523#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525#ifdef CONFIG_NFSD_V3
526/*
527 * Check server access rights to a file system object
528 */
529struct accessmap {
530 u32 access;
531 int how;
532};
533static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200534 { NFS3_ACCESS_READ, NFSD_MAY_READ },
535 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
536 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
537 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 { 0, 0 }
540};
541
542static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200543 { NFS3_ACCESS_READ, NFSD_MAY_READ },
544 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
545 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
546 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
547 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 { 0, 0 }
550};
551
552static struct accessmap nfs3_anyaccess[] = {
553 /* Some clients - Solaris 2.6 at least, make an access call
554 * to the server to check for access for things like /dev/null
555 * (which really, the server doesn't care about). So
556 * We provide simple access checking for them, looking
557 * mainly at mode bits, and we make sure to ignore read-only
558 * filesystem checks
559 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200560 { NFS3_ACCESS_READ, NFSD_MAY_READ },
561 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
562 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
563 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 { 0, 0 }
566};
567
Al Viro6264d692006-10-19 23:28:58 -0700568__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
570{
571 struct accessmap *map;
572 struct svc_export *export;
573 struct dentry *dentry;
574 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700575 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200577 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (error)
579 goto out;
580
581 export = fhp->fh_export;
582 dentry = fhp->fh_dentry;
583
David Howellse36cb0b2015-01-29 12:02:35 +0000584 if (d_is_reg(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 map = nfs3_regaccess;
David Howellse36cb0b2015-01-29 12:02:35 +0000586 else if (d_is_dir(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 map = nfs3_diraccess;
588 else
589 map = nfs3_anyaccess;
590
591
592 query = *access;
593 for (; map->access; map++) {
594 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700595 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 sresult |= map->access;
598
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700599 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 switch (err2) {
601 case nfs_ok:
602 result |= map->access;
603 break;
604
605 /* the following error codes just mean the access was not allowed,
606 * rather than an error occurred */
607 case nfserr_rofs:
608 case nfserr_acces:
609 case nfserr_perm:
610 /* simply don't "or" in the access bit. */
611 break;
612 default:
613 error = err2;
614 goto out;
615 }
616 }
617 }
618 *access = result;
619 if (supported)
620 *supported = sresult;
621
622 out:
623 return error;
624}
625#endif /* CONFIG_NFSD_V3 */
626
J. Bruce Fields105f4622011-06-07 11:50:23 -0400627static int nfsd_open_break_lease(struct inode *inode, int access)
628{
629 unsigned int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
J. Bruce Fields105f4622011-06-07 11:50:23 -0400631 if (access & NFSD_MAY_NOT_BREAK_LEASE)
632 return 0;
633 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
634 return break_lease(inode, mode | O_NONBLOCK);
635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637/*
638 * Open an existing file or directory.
Bernd Schubert999448a2012-03-18 22:44:49 -0400639 * The may_flags argument indicates the type of open (read/write/lock)
640 * and additional flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 * N.B. After this call fhp needs an fh_put
642 */
Al Viro6264d692006-10-19 23:28:58 -0700643__be32
Al Viro175a4eb2011-07-26 03:30:54 -0400644nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
Bernd Schubert999448a2012-03-18 22:44:49 -0400645 int may_flags, struct file **filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
Al Viro765927b2012-06-26 21:58:53 +0400647 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 struct inode *inode;
Kinglong Mee8519f992014-09-03 08:14:06 +0800649 struct file *file;
Al Viro6264d692006-10-19 23:28:58 -0700650 int flags = O_RDONLY|O_LARGEFILE;
651 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400652 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
David Howellse0e81732009-09-02 09:13:40 +0100654 validate_process_creds();
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /*
657 * If we get here, then the client has already done an "open",
658 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
659 * in case a chmod has now revoked permission.
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400660 *
661 * Arguably we should also allow the owner override for
662 * directories, but we never have and it doesn't seem to have
663 * caused anyone a problem. If we were to change this, note
664 * also that our filldir callbacks would need a variant of
665 * lookup_one_len that doesn't check permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400667 if (type == S_IFREG)
668 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
669 err = fh_verify(rqstp, fhp, type, may_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (err)
671 goto out;
672
Al Viro765927b2012-06-26 21:58:53 +0400673 path.mnt = fhp->fh_export->ex_path.mnt;
674 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000675 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 /* Disallow write access to files with the append-only bit set
678 * or any access when mandatory locking enabled
679 */
680 err = nfserr_perm;
Bernd Schubert999448a2012-03-18 22:44:49 -0400681 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400683 /*
684 * We must ignore files (but only files) which might have mandatory
685 * locks on them because there is no way to know if the accesser has
686 * the lock.
687 */
688 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 goto out;
690
691 if (!inode->i_fop)
692 goto out;
693
Bernd Schubert999448a2012-03-18 22:44:49 -0400694 host_err = nfsd_open_break_lease(inode, may_flags);
Al Viro6264d692006-10-19 23:28:58 -0700695 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 goto out_nfserr;
697
Bernd Schubert999448a2012-03-18 22:44:49 -0400698 if (may_flags & NFSD_MAY_WRITE) {
699 if (may_flags & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700700 flags = O_RDWR|O_LARGEFILE;
701 else
702 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Bernd Schubert999448a2012-03-18 22:44:49 -0400704
Kinglong Mee8519f992014-09-03 08:14:06 +0800705 file = dentry_open(&path, flags, current_cred());
706 if (IS_ERR(file)) {
707 host_err = PTR_ERR(file);
708 goto out_nfserr;
Bernd Schubert06effdb2012-03-18 22:44:50 -0400709 }
710
Linus Torvalds5e40d332014-10-12 10:13:55 -0400711 host_err = ima_file_check(file, may_flags, 0);
Kinglong Mee8519f992014-09-03 08:14:06 +0800712 if (host_err) {
Christoph Hellwigfd891452015-04-28 15:41:16 +0200713 fput(file);
Kinglong Mee8519f992014-09-03 08:14:06 +0800714 goto out_nfserr;
715 }
716
717 if (may_flags & NFSD_MAY_64BIT_COOKIE)
718 file->f_mode |= FMODE_64BITHASH;
719 else
720 file->f_mode |= FMODE_32BITHASH;
721
722 *filp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700724 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725out:
David Howellse0e81732009-09-02 09:13:40 +0100726 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return err;
728}
729
Christoph Hellwige749a462015-06-18 16:44:58 +0200730struct raparms *
731nfsd_init_raparms(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732{
Christoph Hellwige749a462015-06-18 16:44:58 +0200733 struct inode *inode = file_inode(file);
734 dev_t dev = inode->i_sb->s_dev;
735 ino_t ino = inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 struct raparms *ra, **rap, **frap = NULL;
737 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700738 unsigned int hash;
739 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Greg Banksfce14562006-10-04 02:15:49 -0700741 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
742 rab = &raparm_hash[hash];
743
744 spin_lock(&rab->pb_lock);
745 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (ra->p_ino == ino && ra->p_dev == dev)
747 goto found;
748 depth++;
749 if (ra->p_count == 0)
750 frap = rap;
751 }
Konstantin Khorenko3aa6e0a2011-02-01 17:16:29 +0300752 depth = nfsdstats.ra_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700754 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return NULL;
756 }
757 rap = frap;
758 ra = *frap;
759 ra->p_dev = dev;
760 ra->p_ino = ino;
761 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700762 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763found:
Greg Banksfce14562006-10-04 02:15:49 -0700764 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700766 ra->p_next = rab->pb_head;
767 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 ra->p_count++;
770 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700771 spin_unlock(&rab->pb_lock);
Christoph Hellwige749a462015-06-18 16:44:58 +0200772
773 if (ra->p_set)
774 file->f_ra = ra->p_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return ra;
776}
777
Christoph Hellwige749a462015-06-18 16:44:58 +0200778void nfsd_put_raparams(struct file *file, struct raparms *ra)
779{
780 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
781
782 spin_lock(&rab->pb_lock);
783 ra->p_ra = file->f_ra;
784 ra->p_set = 1;
785 ra->p_count--;
786 spin_unlock(&rab->pb_lock);
787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200790 * Grab and keep cached pages associated with a file in the svc_rqst
791 * so that they can be passed to the network sendmsg/sendpage routines
792 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
794static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200795nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
796 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Jens Axboecf8208d2007-06-12 21:22:14 +0200798 struct svc_rqst *rqstp = sd->u.data;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500799 struct page **pp = rqstp->rq_next_page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200800 struct page *page = buf->page;
801 size_t size;
Jens Axboecf8208d2007-06-12 21:22:14 +0200802
803 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 if (rqstp->rq_res.page_len == 0) {
806 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500807 put_page(*rqstp->rq_next_page);
808 *(rqstp->rq_next_page++) = page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200809 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700811 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500813 if (*rqstp->rq_next_page)
814 put_page(*rqstp->rq_next_page);
815 *(rqstp->rq_next_page++) = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700817 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return size;
821}
822
Jens Axboecf8208d2007-06-12 21:22:14 +0200823static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
824 struct splice_desc *sd)
825{
826 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
827}
828
Jeff Laytone2afc812014-06-17 07:44:13 -0400829static __be32
830nfsd_finish_read(struct file *file, unsigned long *count, int host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Al Viro6264d692006-10-19 23:28:58 -0700832 if (host_err >= 0) {
833 nfsdstats.io_read += host_err;
834 *count = host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500835 fsnotify_access(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 } else
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400838 return nfserrno(host_err);
839}
840
Jeff Laytone2afc812014-06-17 07:44:13 -0400841__be32 nfsd_splice_read(struct svc_rqst *rqstp,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400842 struct file *file, loff_t offset, unsigned long *count)
843{
844 struct splice_desc sd = {
845 .len = 0,
846 .total_len = *count,
847 .pos = offset,
848 .u.data = rqstp,
849 };
850 int host_err;
851
852 rqstp->rq_next_page = rqstp->rq_respages + 1;
853 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
854 return nfsd_finish_read(file, count, host_err);
855}
856
Jeff Laytone2afc812014-06-17 07:44:13 -0400857__be32 nfsd_readv(struct file *file, loff_t offset, struct kvec *vec, int vlen,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400858 unsigned long *count)
859{
860 mm_segment_t oldfs;
861 int host_err;
862
863 oldfs = get_fs();
864 set_fs(KERNEL_DS);
Christoph Hellwig793b80e2016-03-03 16:03:58 +0100865 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset, 0);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400866 set_fs(oldfs);
867 return nfsd_finish_read(file, count, host_err);
868}
869
870static __be32
871nfsd_vfs_read(struct svc_rqst *rqstp, struct file *file,
872 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
873{
Jeff Layton779fb0f2014-11-19 07:51:18 -0500874 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400875 return nfsd_splice_read(rqstp, file, offset, count);
876 else
877 return nfsd_readv(file, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700880/*
881 * Gathered writes: If another process is currently writing to the file,
882 * there's a high chance this is another nfsd (triggered by a bulk write
883 * from a client's biod). Rather than syncing the file with each write
884 * request, we sleep for 10 msec.
885 *
886 * I don't know if this roughly approximates C. Juszak's idea of
887 * gathered writes, but it's a nice and simple solution (IMHO), and it
888 * seems to work:-)
889 *
890 * Note: we do this only in the NFSv2 case, since v3 and higher have a
891 * better tool (separate unstable writes and commits) for solving this
892 * problem.
893 */
894static int wait_for_concurrent_writes(struct file *file)
895{
Al Viro496ad9a2013-01-23 17:07:38 -0500896 struct inode *inode = file_inode(file);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700897 static ino_t last_ino;
898 static dev_t last_dev;
899 int err = 0;
900
901 if (atomic_read(&inode->i_writecount) > 1
902 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
903 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
904 msleep(10);
905 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
906 }
907
908 if (inode->i_state & I_DIRTY) {
909 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100910 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700911 }
912 last_ino = inode->i_ino;
913 last_dev = inode->i_sb->s_dev;
914 return err;
915}
916
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200917__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
919 loff_t offset, struct kvec *vec, int vlen,
Kinglong Mee54bbb7d2016-12-31 20:59:53 +0800920 unsigned long *cnt, int stable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 struct svc_export *exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700924 __be32 err = 0;
925 int host_err;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400926 int use_wgather;
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700927 loff_t pos = offset;
NeilBrown86584522014-05-12 11:22:47 +1000928 unsigned int pflags = current->flags;
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700929 int flags = 0;
NeilBrown86584522014-05-12 11:22:47 +1000930
Jeff Layton7501cc22014-11-19 07:51:15 -0500931 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000932 /*
933 * We want less throttling in balance_dirty_pages()
934 * and shrink_inactive_list() so that nfs to
935 * localhost doesn't cause nfsd to lock up due to all
936 * the client's dirty pages or its congested queue.
937 */
938 current->flags |= PF_LESS_THROTTLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Kinglong Mee865d50b2016-12-31 21:00:21 +0800940 exp = fhp->fh_export;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400941 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (!EX_ISSYNC(exp))
Kinglong Mee54bbb7d2016-12-31 20:59:53 +0800944 stable = NFS_UNSTABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700946 if (stable && !use_wgather)
947 flags |= RWF_SYNC;
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /* Write the data. */
950 oldfs = get_fs(); set_fs(KERNEL_DS);
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700951 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700953 if (host_err < 0)
954 goto out_nfserr;
955 *cnt = host_err;
956 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500957 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Christoph Hellwig24368aa2016-04-07 08:52:04 -0700959 if (stable && use_wgather)
960 host_err = wait_for_concurrent_writes(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700962out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700963 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +0800964 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +0800966 else
Al Viro6264d692006-10-19 23:28:58 -0700967 err = nfserrno(host_err);
Jeff Layton7501cc22014-11-19 07:51:15 -0500968 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000969 tsk_restore_flags(current, pflags, PF_LESS_THROTTLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 return err;
971}
972
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400973/*
974 * Read data from a file. count must contain the requested read count
975 * on entry. On return, *count contains the number of bytes actually read.
976 * N.B. After this call fhp needs an fh_put
977 */
978__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
979 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
980{
981 struct file *file;
982 struct raparms *ra;
983 __be32 err;
984
Jeff Layton6e8b50d2015-11-17 06:52:23 -0500985 trace_read_start(rqstp, fhp, offset, vlen);
Christoph Hellwige749a462015-06-18 16:44:58 +0200986 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400987 if (err)
988 return err;
989
Christoph Hellwige749a462015-06-18 16:44:58 +0200990 ra = nfsd_init_raparms(file);
Jeff Layton6e8b50d2015-11-17 06:52:23 -0500991
992 trace_read_opened(rqstp, fhp, offset, vlen);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400993 err = nfsd_vfs_read(rqstp, file, offset, vec, vlen, count);
Jeff Layton6e8b50d2015-11-17 06:52:23 -0500994 trace_read_io_done(rqstp, fhp, offset, vlen);
995
Christoph Hellwige749a462015-06-18 16:44:58 +0200996 if (ra)
997 nfsd_put_raparams(file, ra);
998 fput(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400999
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001000 trace_read_done(rqstp, fhp, offset, vlen);
1001
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001002 return err;
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005/*
1006 * Write data to a file.
1007 * The stable flag requests synchronous writes.
1008 * N.B. After this call fhp needs an fh_put
1009 */
Al Viro6264d692006-10-19 23:28:58 -07001010__be32
Kinglong Mee52e380e2016-12-31 21:00:13 +08001011nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t offset,
1012 struct kvec *vec, int vlen, unsigned long *cnt, int stable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Kinglong Mee52e380e2016-12-31 21:00:13 +08001014 struct file *file = NULL;
1015 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001017 trace_write_start(rqstp, fhp, offset, vlen);
1018
Kinglong Mee52e380e2016-12-31 21:00:13 +08001019 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
1020 if (err)
1021 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Kinglong Mee52e380e2016-12-31 21:00:13 +08001023 trace_write_opened(rqstp, fhp, offset, vlen);
1024 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt, stable);
1025 trace_write_io_done(rqstp, fhp, offset, vlen);
1026 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027out:
Jeff Layton6e8b50d2015-11-17 06:52:23 -05001028 trace_write_done(rqstp, fhp, offset, vlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return err;
1030}
1031
1032#ifdef CONFIG_NFSD_V3
1033/*
1034 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001035 *
1036 * Note: we only guarantee that data that lies within the range specified
1037 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 *
1039 * Unfortunately we cannot lock the file to make sure we return full WCC
1040 * data to the client, as locking happens lower down in the filesystem.
1041 */
Al Viro6264d692006-10-19 23:28:58 -07001042__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1044 loff_t offset, unsigned long count)
1045{
1046 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001047 loff_t end = LLONG_MAX;
1048 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Trond Myklebustaa696a62010-01-29 16:44:25 -05001050 if (offset < 0)
1051 goto out;
1052 if (count != 0) {
1053 end = offset + (loff_t)count - 1;
1054 if (end < offset)
1055 goto out;
1056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Jeff Layton91885252010-03-19 08:06:28 -04001058 err = nfsd_open(rqstp, fhp, S_IFREG,
1059 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001060 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001061 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001063 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001064
1065 if (err2 != -EINVAL)
1066 err = nfserrno(err2);
1067 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070
Christoph Hellwigfd891452015-04-28 15:41:16 +02001071 fput(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001072out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return err;
1074}
1075#endif /* CONFIG_NFSD_V3 */
1076
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001077static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001078nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1079 struct iattr *iap)
1080{
1081 /*
1082 * Mode has already been set earlier in create:
1083 */
1084 iap->ia_valid &= ~ATTR_MODE;
1085 /*
1086 * Setting uid/gid works only for root. Irix appears to
1087 * send along the gid on create when it tries to implement
1088 * setgid directories via NFS:
1089 */
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001090 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001091 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1092 if (iap->ia_valid)
1093 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001094 /* Callers expect file metadata to be committed here */
Jeff Layton722b6202014-07-03 07:54:19 -04001095 return nfserrno(commit_metadata(resfhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001096}
1097
wengang wang4ac35c22009-02-10 11:27:51 +08001098/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1099 * setting size to 0 may fail for some specific file systems by the permission
1100 * checking which requires WRITE permission but the mode is 000.
1101 * we ignore the resizing(to 0) on the just new created file, since the size is
1102 * 0 after file created.
1103 *
1104 * call this only after vfs_create() is called.
1105 * */
1106static void
1107nfsd_check_ignore_resizing(struct iattr *iap)
1108{
1109 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1110 iap->ia_valid &= ~ATTR_SIZE;
1111}
1112
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001113/* The parent directory should already be locked: */
Al Viro6264d692006-10-19 23:28:58 -07001114__be32
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001115nfsd_create_locked(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 char *fname, int flen, struct iattr *iap,
1117 int type, dev_t rdev, struct svc_fh *resfhp)
1118{
Dan Carpenter2b118852016-08-03 22:05:00 +03001119 struct dentry *dentry, *dchild;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001121 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001122 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001123 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001126 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001128 dchild = dget(resfhp->fh_dentry);
1129 if (!fhp->fh_locked) {
1130 WARN_ONCE(1, "nfsd_create: parent %pd2 not locked!\n",
Al Viroa6a9f182013-09-16 10:57:01 -04001131 dentry);
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001132 err = nfserr_io;
1133 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Oleg Drokin7eed34f2016-07-14 23:20:22 -04001136 err = nfsd_permission(rqstp, fhp->fh_export, dentry, NFSD_MAY_CREATE);
1137 if (err)
1138 goto out;
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (!(iap->ia_valid & ATTR_MODE))
1141 iap->ia_mode = 0;
1142 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1143
J. Bruce Fields088406b2006-11-08 17:44:59 -08001144 err = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001145 host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 switch (type) {
1147 case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04001148 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
wengang wang4ac35c22009-02-10 11:27:51 +08001149 if (!host_err)
1150 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 break;
1152 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001153 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
1155 case S_IFCHR:
1156 case S_IFBLK:
1157 case S_IFIFO:
1158 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001159 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 break;
J. Bruce Fields714232742016-07-22 12:03:46 -04001161 default:
1162 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1163 type);
1164 host_err = -EINVAL;
Dave Hansen463c3192008-02-15 14:37:57 -08001165 }
Jan Kara4a55c102012-06-12 16:20:33 +02001166 if (host_err < 0)
Dave Hansen463c3192008-02-15 14:37:57 -08001167 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
Ben Myersf5019122010-02-17 14:05:11 -06001169 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Ben Myersf5019122010-02-17 14:05:11 -06001171 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001172 * nfsd_create_setattr already committed the child. Transactional
1173 * filesystems had a chance to commit changes for both parent and
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001174 * child simultaneously making the following commit_metadata a
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001175 * noop.
Ben Myersf5019122010-02-17 14:05:11 -06001176 */
1177 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001178 if (err2)
1179 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * Update the file handle to get the new inode info.
1182 */
1183 if (!err)
1184 err = fh_update(resfhp);
1185out:
Dan Carpenter2b118852016-08-03 22:05:00 +03001186 dput(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 return err;
1188
1189out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001190 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 goto out;
1192}
1193
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001194/*
1195 * Create a filesystem object (regular, directory, special).
1196 * Note that the parent directory is left locked.
1197 *
1198 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1199 */
1200__be32
1201nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1202 char *fname, int flen, struct iattr *iap,
1203 int type, dev_t rdev, struct svc_fh *resfhp)
1204{
1205 struct dentry *dentry, *dchild = NULL;
1206 struct inode *dirp;
1207 __be32 err;
1208 int host_err;
1209
1210 if (isdotent(fname, flen))
1211 return nfserr_exist;
1212
J. Bruce Fieldsfa081392016-07-21 16:00:12 -04001213 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_NOP);
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001214 if (err)
1215 return err;
1216
1217 dentry = fhp->fh_dentry;
1218 dirp = d_inode(dentry);
1219
1220 host_err = fh_want_write(fhp);
1221 if (host_err)
1222 return nfserrno(host_err);
1223
1224 fh_lock_nested(fhp, I_MUTEX_PARENT);
1225 dchild = lookup_one_len(fname, dentry, flen);
1226 host_err = PTR_ERR(dchild);
1227 if (IS_ERR(dchild))
1228 return nfserrno(host_err);
1229 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
Josef Bacik502aa0a2016-08-10 14:46:27 -04001230 /*
1231 * We unconditionally drop our ref to dchild as fh_compose will have
1232 * already grabbed its own ref for it.
1233 */
1234 dput(dchild);
1235 if (err)
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001236 return err;
J. Bruce Fieldsb44061d2016-07-20 16:16:06 -04001237 return nfsd_create_locked(rqstp, fhp, fname, flen, iap, type,
1238 rdev, resfhp);
1239}
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241#ifdef CONFIG_NFSD_V3
Mi Jinlongac6721a2011-04-20 17:06:25 +08001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243/*
Mi Jinlongac6721a2011-04-20 17:06:25 +08001244 * NFSv3 and NFSv4 version of nfsd_create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 */
Al Viro6264d692006-10-19 23:28:58 -07001246__be32
Mi Jinlongac6721a2011-04-20 17:06:25 +08001247do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 char *fname, int flen, struct iattr *iap,
1249 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields856121b2011-10-13 11:37:11 -04001250 bool *truncp, bool *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
1252 struct dentry *dentry, *dchild = NULL;
1253 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001254 __be32 err;
1255 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
1258 err = nfserr_perm;
1259 if (!flen)
1260 goto out;
1261 err = nfserr_exist;
1262 if (isdotent(fname, flen))
1263 goto out;
1264 if (!(iap->ia_valid & ATTR_MODE))
1265 iap->ia_mode = 0;
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001266 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (err)
1268 goto out;
1269
1270 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001271 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Jan Kara4a55c102012-06-12 16:20:33 +02001273 host_err = fh_want_write(fhp);
1274 if (host_err)
1275 goto out_nfserr;
1276
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001277 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /*
1280 * Compose the response file handle.
1281 */
1282 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001283 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (IS_ERR(dchild))
1285 goto out_nfserr;
1286
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001287 /* If file doesn't exist, check for permissions to create one */
David Howells2b0143b2015-03-17 22:25:59 +00001288 if (d_really_is_negative(dchild)) {
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001289 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1290 if (err)
1291 goto out;
1292 }
1293
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1295 if (err)
1296 goto out;
1297
Mi Jinlongac6721a2011-04-20 17:06:25 +08001298 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001299 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001300 * the high bit set, so just clear the high bits. If this is
1301 * ever changed to use different attrs for storing the
1302 * verifier, then do_open_lookup() will also need to be fixed
1303 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 */
1305 v_mtime = verifier[0]&0x7fffffff;
1306 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
1308
David Howells2b0143b2015-03-17 22:25:59 +00001309 if (d_really_is_positive(dchild)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 err = 0;
1311
1312 switch (createmode) {
1313 case NFS3_CREATE_UNCHECKED:
David Howellse36cb0b2015-01-29 12:02:35 +00001314 if (! d_is_reg(dchild))
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -04001315 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 else if (truncp) {
1317 /* in nfsv4, we need to treat this case a little
1318 * differently. we don't want to truncate the
1319 * file now; this would be wrong if the OPEN
1320 * fails for some other reason. furthermore,
1321 * if the size is nonzero, we should ignore it
1322 * according to spec!
1323 */
1324 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1325 }
1326 else {
1327 iap->ia_valid &= ATTR_SIZE;
1328 goto set_attr;
1329 }
1330 break;
1331 case NFS3_CREATE_EXCLUSIVE:
David Howells2b0143b2015-03-17 22:25:59 +00001332 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1333 && d_inode(dchild)->i_atime.tv_sec == v_atime
1334 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001335 if (created)
1336 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
Neil Brown7007c902012-12-07 15:40:55 -05001338 }
Mi Jinlongac6721a2011-04-20 17:06:25 +08001339 case NFS4_CREATE_EXCLUSIVE4_1:
David Howells2b0143b2015-03-17 22:25:59 +00001340 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1341 && d_inode(dchild)->i_atime.tv_sec == v_atime
1342 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001343 if (created)
1344 *created = 1;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001345 goto set_attr;
Neil Brown7007c902012-12-07 15:40:55 -05001346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 /* fallthru */
1348 case NFS3_CREATE_GUARDED:
1349 err = nfserr_exist;
1350 }
Al Virobad0dcf2011-11-23 12:03:18 -05001351 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 goto out;
1353 }
1354
Al Viro312b63f2012-06-10 18:09:36 -04001355 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
Dave Hansen463c3192008-02-15 14:37:57 -08001356 if (host_err < 0) {
Al Virobad0dcf2011-11-23 12:03:18 -05001357 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001359 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001360 if (created)
1361 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
wengang wang4ac35c22009-02-10 11:27:51 +08001363 nfsd_check_ignore_resizing(iap);
1364
Mi Jinlongac6721a2011-04-20 17:06:25 +08001365 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001366 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001368 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 /* XXX someone who knows this better please fix it for nsec */
1370 iap->ia_mtime.tv_sec = v_mtime;
1371 iap->ia_atime.tv_sec = v_atime;
1372 iap->ia_mtime.tv_nsec = 0;
1373 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001377 err = nfsd_create_setattr(rqstp, resfhp, iap);
1378
1379 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001380 * nfsd_create_setattr already committed the child
1381 * (and possibly also the parent).
Ben Myersf5019122010-02-17 14:05:11 -06001382 */
1383 if (!err)
1384 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001385
1386 /*
1387 * Update the filehandle to get the new inode info.
1388 */
1389 if (!err)
1390 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 out:
1393 fh_unlock(fhp);
1394 if (dchild && !IS_ERR(dchild))
1395 dput(dchild);
Jan Kara4a55c102012-06-12 16:20:33 +02001396 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return err;
1398
1399 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001400 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 goto out;
1402}
1403#endif /* CONFIG_NFSD_V3 */
1404
1405/*
1406 * Read a symlink. On entry, *lenp must contain the maximum path length that
1407 * fits into the buffer. On return, it contains the true length.
1408 * N.B. After this call fhp needs an fh_put
1409 */
Al Viro6264d692006-10-19 23:28:58 -07001410__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1412{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001414 __be32 err;
1415 int host_err;
Al Viro68ac1232012-03-15 08:21:57 -04001416 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001418 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (err)
1420 goto out;
1421
Al Viro68ac1232012-03-15 08:21:57 -04001422 path.mnt = fhp->fh_export->ex_path.mnt;
1423 path.dentry = fhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 err = nfserr_inval;
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01001426 if (!d_is_symlink(path.dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 goto out;
1428
Al Viro68ac1232012-03-15 08:21:57 -04001429 touch_atime(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 /* N.B. Why does this call need a get_fs()??
1431 * Remove the set_fs and watch the fireworks:-) --okir
1432 */
1433
1434 oldfs = get_fs(); set_fs(KERNEL_DS);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01001435 host_err = vfs_readlink(path.dentry, (char __user *)buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 set_fs(oldfs);
1437
Al Viro6264d692006-10-19 23:28:58 -07001438 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001440 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 err = 0;
1442out:
1443 return err;
1444
1445out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001446 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 goto out;
1448}
1449
1450/*
1451 * Create a symlink and look up its inode
1452 * N.B. After this call _both_ fhp and resfhp need an fh_put
1453 */
Al Viro6264d692006-10-19 23:28:58 -07001454__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1456 char *fname, int flen,
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001457 char *path,
Kinglong Mee1e444f52014-07-01 17:48:02 +08001458 struct svc_fh *resfhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001461 __be32 err, cerr;
1462 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 err = nfserr_noent;
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001465 if (!flen || path[0] == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 goto out;
1467 err = nfserr_exist;
1468 if (isdotent(fname, flen))
1469 goto out;
1470
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001471 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (err)
1473 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001474
1475 host_err = fh_want_write(fhp);
1476 if (host_err)
1477 goto out_nfserr;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 fh_lock(fhp);
1480 dentry = fhp->fh_dentry;
1481 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001482 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 if (IS_ERR(dnew))
1484 goto out_nfserr;
1485
David Howells2b0143b2015-03-17 22:25:59 +00001486 host_err = vfs_symlink(d_inode(dentry), dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001487 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001488 if (!err)
1489 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 fh_unlock(fhp);
1491
Al Virobad0dcf2011-11-23 12:03:18 -05001492 fh_drop_write(fhp);
Dave Hansen75c3f292008-02-15 14:37:45 -08001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1495 dput(dnew);
1496 if (err==0) err = cerr;
1497out:
1498 return err;
1499
1500out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001501 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 goto out;
1503}
1504
1505/*
1506 * Create a hardlink
1507 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1508 */
Al Viro6264d692006-10-19 23:28:58 -07001509__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1511 char *name, int len, struct svc_fh *tfhp)
1512{
1513 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001514 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001515 __be32 err;
1516 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001518 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (err)
1520 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001521 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 if (err)
1523 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001524 err = nfserr_isdir;
David Howellse36cb0b2015-01-29 12:02:35 +00001525 if (d_is_dir(tfhp->fh_dentry))
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001526 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 err = nfserr_perm;
1528 if (!len)
1529 goto out;
1530 err = nfserr_exist;
1531 if (isdotent(name, len))
1532 goto out;
1533
Jan Kara4a55c102012-06-12 16:20:33 +02001534 host_err = fh_want_write(tfhp);
1535 if (host_err) {
1536 err = nfserrno(host_err);
1537 goto out;
1538 }
1539
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001540 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 ddir = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001542 dirp = d_inode(ddir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001545 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (IS_ERR(dnew))
1547 goto out_nfserr;
1548
1549 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001551 err = nfserr_noent;
David Howells2b0143b2015-03-17 22:25:59 +00001552 if (d_really_is_negative(dold))
Jan Kara4a55c102012-06-12 16:20:33 +02001553 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04001554 host_err = vfs_link(dold, dirp, dnew, NULL);
Al Viro6264d692006-10-19 23:28:58 -07001555 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001556 err = nfserrno(commit_metadata(ffhp));
1557 if (!err)
1558 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 } else {
Al Viro6264d692006-10-19 23:28:58 -07001560 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 err = nfserr_acces;
1562 else
Al Viro6264d692006-10-19 23:28:58 -07001563 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001565out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001567out_unlock:
1568 fh_unlock(ffhp);
Jan Kara4a55c102012-06-12 16:20:33 +02001569 fh_drop_write(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570out:
1571 return err;
1572
1573out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001574 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001575 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
1578/*
1579 * Rename a file
1580 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1581 */
Al Viro6264d692006-10-19 23:28:58 -07001582__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1584 struct svc_fh *tfhp, char *tname, int tlen)
1585{
1586 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1587 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001588 __be32 err;
1589 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001591 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 if (err)
1593 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001594 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (err)
1596 goto out;
1597
1598 fdentry = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001599 fdir = d_inode(fdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 tdentry = tfhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001602 tdir = d_inode(tdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 err = nfserr_perm;
1605 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1606 goto out;
1607
Jan Kara4a55c102012-06-12 16:20:33 +02001608 host_err = fh_want_write(ffhp);
1609 if (host_err) {
1610 err = nfserrno(host_err);
1611 goto out;
1612 }
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /* cannot use fh_lock as we need deadlock protective ordering
1615 * so do it by hand */
1616 trap = lock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001617 ffhp->fh_locked = tfhp->fh_locked = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 fill_pre_wcc(ffhp);
1619 fill_pre_wcc(tfhp);
1620
1621 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001622 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (IS_ERR(odentry))
1624 goto out_nfserr;
1625
Al Viro6264d692006-10-19 23:28:58 -07001626 host_err = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00001627 if (d_really_is_negative(odentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001629 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (odentry == trap)
1631 goto out_dput_old;
1632
1633 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001634 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (IS_ERR(ndentry))
1636 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001637 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (ndentry == trap)
1639 goto out_dput_new;
1640
Dave Hansen9079b1e2008-02-15 14:37:49 -08001641 host_err = -EXDEV;
1642 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1643 goto out_dput_new;
J. Bruce Fieldsaa387d6c2013-04-15 16:03:46 -04001644 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1645 goto out_dput_new;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001646
Miklos Szeredi520c8b12014-04-01 17:08:42 +02001647 host_err = vfs_rename(fdir, odentry, tdir, ndentry, NULL, 0);
Ben Myersf5019122010-02-17 14:05:11 -06001648 if (!host_err) {
1649 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001650 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001651 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 out_dput_new:
1654 dput(ndentry);
1655 out_dput_old:
1656 dput(odentry);
1657 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001658 err = nfserrno(host_err);
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001659 /*
1660 * We cannot rely on fh_unlock on the two filehandles,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 * as that would do the wrong thing if the two directories
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001662 * were the same, so again we do it by hand.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 */
1664 fill_post_wcc(ffhp);
1665 fill_post_wcc(tfhp);
1666 unlock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001667 ffhp->fh_locked = tfhp->fh_locked = false;
Jan Kara4a55c102012-06-12 16:20:33 +02001668 fh_drop_write(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670out:
1671 return err;
1672}
1673
1674/*
1675 * Unlink a file or directory
1676 * N.B. After this call fhp needs an fh_put
1677 */
Al Viro6264d692006-10-19 23:28:58 -07001678__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1680 char *fname, int flen)
1681{
1682 struct dentry *dentry, *rdentry;
1683 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001684 __be32 err;
1685 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 err = nfserr_acces;
1688 if (!flen || isdotent(fname, flen))
1689 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001690 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (err)
1692 goto out;
1693
Jan Kara4a55c102012-06-12 16:20:33 +02001694 host_err = fh_want_write(fhp);
1695 if (host_err)
1696 goto out_nfserr;
1697
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001698 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001700 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001703 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if (IS_ERR(rdentry))
1705 goto out_nfserr;
1706
David Howells2b0143b2015-03-17 22:25:59 +00001707 if (d_really_is_negative(rdentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 dput(rdentry);
1709 err = nfserr_noent;
1710 goto out;
1711 }
1712
1713 if (!type)
David Howells2b0143b2015-03-17 22:25:59 +00001714 type = d_inode(rdentry)->i_mode & S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001716 if (type != S_IFDIR)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04001717 host_err = vfs_unlink(dirp, rdentry, NULL);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001718 else
Al Viro6264d692006-10-19 23:28:58 -07001719 host_err = vfs_rmdir(dirp, rdentry);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001720 if (!host_err)
1721 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 dput(rdentry);
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001725 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001726out:
1727 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
1729
1730/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001731 * We do this buffering because we must not call back into the file
1732 * system's ->lookup() method from the filldir callback. That may well
1733 * deadlock a number of file systems.
1734 *
1735 * This is based heavily on the implementation of same in XFS.
1736 */
1737struct buffered_dirent {
1738 u64 ino;
1739 loff_t offset;
1740 int namlen;
1741 unsigned int d_type;
1742 char name[];
1743};
1744
1745struct readdir_data {
Al Viro5c0ba4e2013-05-15 13:52:59 -04001746 struct dir_context ctx;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001747 char *dirent;
1748 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001749 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001750};
1751
Miklos Szerediac7576f2014-10-30 17:37:34 +01001752static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1753 int namlen, loff_t offset, u64 ino,
1754 unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001755{
Miklos Szerediac7576f2014-10-30 17:37:34 +01001756 struct readdir_data *buf =
1757 container_of(ctx, struct readdir_data, ctx);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001758 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1759 unsigned int reclen;
1760
1761 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001762 if (buf->used + reclen > PAGE_SIZE) {
1763 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001764 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001765 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001766
1767 de->namlen = namlen;
1768 de->offset = offset;
1769 de->ino = ino;
1770 de->d_type = d_type;
1771 memcpy(de->name, name, namlen);
1772 buf->used += reclen;
1773
1774 return 0;
1775}
1776
Miklos Szerediac7576f2014-10-30 17:37:34 +01001777static __be32 nfsd_buffered_readdir(struct file *file, nfsd_filldir_t func,
David Woodhouse2f9092e2009-04-20 23:18:37 +01001778 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001779{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001780 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001781 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001782 int size;
1783 loff_t offset;
Al Viroac6614b2013-05-22 22:22:04 -04001784 struct readdir_data buf = {
1785 .ctx.actor = nfsd_buffered_filldir,
1786 .dirent = (void *)__get_free_page(GFP_KERNEL)
1787 };
David Woodhouse2628b762008-07-31 17:16:51 +01001788
David Woodhouse14f7dd62008-07-31 20:29:12 +01001789 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001790 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001791
David Woodhouse14f7dd62008-07-31 20:29:12 +01001792 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001793
1794 while (1) {
1795 unsigned int reclen;
1796
Doug Nazarb726e922008-11-05 06:16:28 -05001797 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001798 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001799 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001800
Al Viro5c0ba4e2013-05-15 13:52:59 -04001801 host_err = iterate_dir(file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -04001802 if (buf.full)
1803 host_err = 0;
1804
1805 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001806 break;
1807
1808 size = buf.used;
1809
1810 if (!size)
1811 break;
1812
David Woodhouse14f7dd62008-07-31 20:29:12 +01001813 de = (struct buffered_dirent *)buf.dirent;
1814 while (size > 0) {
1815 offset = de->offset;
1816
1817 if (func(cdp, de->name, de->namlen, de->offset,
1818 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001819 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001820
1821 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001822 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001823
1824 reclen = ALIGN(sizeof(*de) + de->namlen,
1825 sizeof(u64));
1826 size -= reclen;
1827 de = (struct buffered_dirent *)((char *)de + reclen);
1828 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001829 if (size > 0) /* We bailed out early */
1830 break;
1831
David Woodhousec002a6c2008-08-17 17:21:18 +01001832 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001833 }
1834
David Woodhouse14f7dd62008-07-31 20:29:12 +01001835 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001836
1837 if (host_err)
1838 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001839
1840 *offsetp = offset;
1841 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001842}
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844/*
1845 * Read entries from a directory.
1846 * The NFSv3/4 verifier we ignore for now.
1847 */
Al Viro6264d692006-10-19 23:28:58 -07001848__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
Miklos Szerediac7576f2014-10-30 17:37:34 +01001850 struct readdir_cd *cdp, nfsd_filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Al Viro6264d692006-10-19 23:28:58 -07001852 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 struct file *file;
1854 loff_t offset = *offsetp;
Bernd Schubert06effdb2012-03-18 22:44:50 -04001855 int may_flags = NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Bernd Schubert06effdb2012-03-18 22:44:50 -04001857 /* NFSv2 only supports 32 bit cookies */
1858 if (rqstp->rq_vers > 2)
1859 may_flags |= NFSD_MAY_64BIT_COOKIE;
1860
1861 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (err)
1863 goto out;
1864
Jeff Laytonb108fe62012-04-25 15:30:00 -04001865 offset = vfs_llseek(file, offset, SEEK_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (offset < 0) {
1867 err = nfserrno((int)offset);
1868 goto out_close;
1869 }
1870
David Woodhouse14f7dd62008-07-31 20:29:12 +01001871 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 if (err == nfserr_eof || err == nfserr_toosmall)
1874 err = nfs_ok; /* can still be found in ->err */
1875out_close:
Christoph Hellwigfd891452015-04-28 15:41:16 +02001876 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877out:
1878 return err;
1879}
1880
1881/*
1882 * Get file system stats
1883 * N.B. After this call fhp needs an fh_put
1884 */
Al Viro6264d692006-10-19 23:28:58 -07001885__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04001886nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001888 __be32 err;
1889
1890 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02001891 if (!err) {
1892 struct path path = {
1893 .mnt = fhp->fh_export->ex_path.mnt,
1894 .dentry = fhp->fh_dentry,
1895 };
1896 if (vfs_statfs(&path, stat))
1897 err = nfserr_io;
1898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 return err;
1900}
1901
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001902static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001903{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001904 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001905}
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907/*
1908 * Check for a user's access permissions to this inode.
1909 */
Al Viro6264d692006-10-19 23:28:58 -07001910__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001911nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
1912 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
David Howells2b0143b2015-03-17 22:25:59 +00001914 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 int err;
1916
J. Bruce Fieldsaea93392011-04-10 10:35:12 -04001917 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 return 0;
1919#if 0
1920 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1921 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001922 (acc & NFSD_MAY_READ)? " read" : "",
1923 (acc & NFSD_MAY_WRITE)? " write" : "",
1924 (acc & NFSD_MAY_EXEC)? " exec" : "",
1925 (acc & NFSD_MAY_SATTR)? " sattr" : "",
1926 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
1927 (acc & NFSD_MAY_LOCK)? " lock" : "",
1928 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 inode->i_mode,
1930 IS_IMMUTABLE(inode)? " immut" : "",
1931 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08001932 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11001934 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935#endif
1936
1937 /* Normally we reject any write/sattr etc access on a read-only file
1938 * system. But if it is IRIX doing check on write-access for a
1939 * device special file, we ignore rofs.
1940 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001941 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
1942 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08001943 if (exp_rdonly(rqstp, exp) ||
1944 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001946 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 return nfserr_perm;
1948 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001949 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return nfserr_perm;
1951
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001952 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 /* If we cannot rely on authentication in NLM requests,
1954 * just allow locks, otherwise require read permission, or
1955 * ownership
1956 */
1957 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
1958 return 0;
1959 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001960 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 }
1962 /*
1963 * The file owner always gets access permission for accesses that
1964 * would normally be checked at open time. This is to make
1965 * file access work even when the client has done a fchmod(fd, 0).
1966 *
1967 * However, `cp foo bar' should fail nevertheless when bar is
1968 * readonly. A sensible way to do this might be to reject all
1969 * attempts to truncate a read-only file, because a creat() call
1970 * always implies file truncation.
1971 * ... but this isn't really fair. A process may reasonably call
1972 * ftruncate on an open file descriptor on a file with perm 000.
1973 * We must trust the client to do permission checking - using "ACCESS"
1974 * with NFSv3.
1975 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001976 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001977 uid_eq(inode->i_uid, current_fsuid()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return 0;
1979
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001980 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04001981 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 /* Allow read access to binaries even when mode 111 */
1984 if (err == -EACCES && S_ISREG(inode->i_mode) &&
J. Bruce Fieldsa0432262011-08-25 10:48:39 -04001985 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
1986 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
Al Virof419a2e2008-07-22 00:07:17 -04001987 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 return err? nfserrno(err) : 0;
1990}
1991
1992void
1993nfsd_racache_shutdown(void)
1994{
Jeff Layton54a66e52008-08-13 22:03:27 -04001995 struct raparms *raparm, *last_raparm;
1996 unsigned int i;
1997
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04001999
2000 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2001 raparm = raparm_hash[i].pb_head;
2002 while(raparm) {
2003 last_raparm = raparm;
2004 raparm = raparm->p_next;
2005 kfree(last_raparm);
2006 }
2007 raparm_hash[i].pb_head = NULL;
2008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009}
2010/*
2011 * Initialize readahead param cache
2012 */
2013int
2014nfsd_racache_init(int cache_size)
2015{
2016 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002017 int j = 0;
2018 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002019 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
Greg Banksfce14562006-10-04 02:15:49 -07002021
Jeff Layton54a66e52008-08-13 22:03:27 -04002022 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002024 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002025 nperbucket = max(2, nperbucket);
Jeff Layton54a66e52008-08-13 22:03:27 -04002026 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002027
2028 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002029
2030 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002031 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002032
2033 raparm = &raparm_hash[i].pb_head;
2034 for (j = 0; j < nperbucket; j++) {
2035 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2036 if (!*raparm)
2037 goto out_nomem;
2038 raparm = &(*raparm)->p_next;
2039 }
2040 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002041 }
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 nfsdstats.ra_size = cache_size;
2044 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002045
2046out_nomem:
2047 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2048 nfsd_racache_shutdown();
2049 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}