blob: d41c149fae75e8c6b88c1295cfdb61c7f10950fe [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>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020029#include <asm/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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define NFSDDBG_FACILITY NFSDDBG_FILEOP
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * This is a cache of readahead params that help us choose the proper
52 * readahead strategy. Initially, we set all readahead parameters to 0
53 * and let the VFS handle things.
54 * If you increase the number of cached files very much, you'll need to
55 * add a hash table here.
56 */
57struct raparms {
58 struct raparms *p_next;
59 unsigned int p_count;
60 ino_t p_ino;
61 dev_t p_dev;
62 int p_set;
63 struct file_ra_state p_ra;
Greg Banksfce14562006-10-04 02:15:49 -070064 unsigned int p_hindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
Greg Banksfce14562006-10-04 02:15:49 -070067struct raparm_hbucket {
68 struct raparms *pb_head;
69 spinlock_t pb_lock;
70} ____cacheline_aligned_in_smp;
71
Greg Banksfce14562006-10-04 02:15:49 -070072#define RAPARM_HASH_BITS 4
73#define RAPARM_HASH_SIZE (1<<RAPARM_HASH_BITS)
74#define RAPARM_HASH_MASK (RAPARM_HASH_SIZE-1)
75static struct raparm_hbucket raparm_hash[RAPARM_HASH_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77/*
78 * Called from nfsd_lookup and encode_dirent. Check if we have crossed
79 * a mount point.
J.Bruce Fieldse0bb89e2006-12-13 00:35:25 -080080 * Returns -EAGAIN or -ETIMEDOUT leaving *dpp and *expp unchanged,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * or nfs_ok having possibly changed *dpp and *expp
82 */
83int
84nfsd_cross_mnt(struct svc_rqst *rqstp, struct dentry **dpp,
85 struct svc_export **expp)
86{
87 struct svc_export *exp = *expp, *exp2 = NULL;
88 struct dentry *dentry = *dpp;
Al Viro91c9fa82009-04-18 02:42:05 -040089 struct path path = {.mnt = mntget(exp->ex_path.mnt),
90 .dentry = dget(dentry)};
Al Viro6264d692006-10-19 23:28:58 -070091 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Al Viro7cc90cc2011-03-18 09:04:20 -040093 err = follow_down(&path);
David Howellscc53ce52011-01-14 18:45:26 +000094 if (err < 0)
95 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Al Viro91c9fa82009-04-18 02:42:05 -040097 exp2 = rqst_exp_get_by_name(rqstp, &path);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (IS_ERR(exp2)) {
J. Bruce Fields3b6cee7bc2009-10-25 21:18:19 -040099 err = PTR_ERR(exp2);
100 /*
101 * We normally allow NFS clients to continue
102 * "underneath" a mountpoint that is not exported.
103 * The exception is V4ROOT, where no traversal is ever
104 * allowed without an explicit export of the new
105 * directory.
106 */
107 if (err == -ENOENT && !(exp->ex_flags & NFSEXP_V4ROOT))
108 err = 0;
Al Viro91c9fa82009-04-18 02:42:05 -0400109 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 goto out;
111 }
Steve Dickson3c394dd2009-09-09 15:02:40 -0400112 if (nfsd_v4client(rqstp) ||
113 (exp->ex_flags & NFSEXP_CROSSMOUNT) || EX_NOHIDE(exp2)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* successfully crossed mount point */
Al Viro1644ccc2009-04-18 02:32:31 -0400115 /*
Al Viro91c9fa82009-04-18 02:42:05 -0400116 * This is subtle: path.dentry is *not* on path.mnt
117 * at this point. The only reason we are safe is that
118 * original mnt is pinned down by exp, so we should
119 * put path *before* putting exp
Al Viro1644ccc2009-04-18 02:32:31 -0400120 */
Al Viro91c9fa82009-04-18 02:42:05 -0400121 *dpp = path.dentry;
122 path.dentry = dentry;
Al Viro1644ccc2009-04-18 02:32:31 -0400123 *expp = exp2;
Al Viro91c9fa82009-04-18 02:42:05 -0400124 exp2 = exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
Al Viro91c9fa82009-04-18 02:42:05 -0400126 path_put(&path);
127 exp_put(exp2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128out:
129 return err;
130}
131
J. Bruce Fields289ede42009-09-26 20:32:24 -0400132static void follow_to_parent(struct path *path)
133{
134 struct dentry *dp;
135
136 while (path->dentry == path->mnt->mnt_root && follow_up(path))
137 ;
138 dp = dget_parent(path->dentry);
139 dput(path->dentry);
140 path->dentry = dp;
141}
142
143static int nfsd_lookup_parent(struct svc_rqst *rqstp, struct dentry *dparent, struct svc_export **exp, struct dentry **dentryp)
144{
145 struct svc_export *exp2;
146 struct path path = {.mnt = mntget((*exp)->ex_path.mnt),
147 .dentry = dget(dparent)};
148
149 follow_to_parent(&path);
150
151 exp2 = rqst_exp_parent(rqstp, &path);
152 if (PTR_ERR(exp2) == -ENOENT) {
153 *dentryp = dget(dparent);
154 } else if (IS_ERR(exp2)) {
155 path_put(&path);
156 return PTR_ERR(exp2);
157 } else {
158 *dentryp = dget(path.dentry);
159 exp_put(*exp);
160 *exp = exp2;
161 }
162 path_put(&path);
163 return 0;
164}
165
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400166/*
167 * For nfsd purposes, we treat V4ROOT exports as though there was an
168 * export at *every* directory.
169 */
J. Bruce Fields3227fa42009-10-25 21:43:01 -0400170int nfsd_mountpoint(struct dentry *dentry, struct svc_export *exp)
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400171{
172 if (d_mountpoint(dentry))
173 return 1;
Trond Myklebust11fcee022011-09-12 19:37:26 -0400174 if (nfsd4_is_junction(dentry))
175 return 1;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400176 if (!(exp->ex_flags & NFSEXP_V4ROOT))
177 return 0;
David Howells2b0143b2015-03-17 22:25:59 +0000178 return d_inode(dentry) != NULL;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400179}
180
Al Viro6264d692006-10-19 23:28:58 -0700181__be32
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700182nfsd_lookup_dentry(struct svc_rqst *rqstp, struct svc_fh *fhp,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400183 const char *name, unsigned int len,
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700184 struct svc_export **exp_ret, struct dentry **dentry_ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
186 struct svc_export *exp;
187 struct dentry *dparent;
188 struct dentry *dentry;
Al Viro6264d692006-10-19 23:28:58 -0700189 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191 dprintk("nfsd: nfsd_lookup(fh %s, %.*s)\n", SVCFH_fmt(fhp), len,name);
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 dparent = fhp->fh_dentry;
Kinglong Meebf18f162014-06-10 22:06:44 +0800194 exp = exp_get(fhp->fh_export);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 /* Lookup the name, but don't follow links */
197 if (isdotent(name, len)) {
198 if (len==1)
199 dentry = dget(dparent);
Jan Blunck54775492008-02-14 19:38:39 -0800200 else if (dparent != exp->ex_path.dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 dentry = dget_parent(dparent);
J. Bruce Fieldsfed83812009-09-26 16:53:01 -0400202 else if (!EX_NOHIDE(exp) && !nfsd_v4client(rqstp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 dentry = dget(dparent); /* .. == . just like at / */
204 else {
205 /* checking mountpoint crossing is very different when stepping up */
J. Bruce Fields289ede42009-09-26 20:32:24 -0400206 host_err = nfsd_lookup_parent(rqstp, dparent, &exp, &dentry);
207 if (host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210 } else {
J. Bruce Fields43357232014-01-24 18:04:40 -0500211 /*
212 * In the nfsd4_open() case, this may be held across
213 * subsequent open and delegation acquisition which may
214 * need to take the child's i_mutex:
215 */
216 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 dentry = lookup_one_len(name, dparent, len);
Al Viro6264d692006-10-19 23:28:58 -0700218 host_err = PTR_ERR(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (IS_ERR(dentry))
220 goto out_nfserr;
J. Bruce Fields82ead7f2009-10-25 21:33:15 -0400221 if (nfsd_mountpoint(dentry, exp)) {
NeilBrownbbddca82016-01-07 16:08:20 -0500222 /*
223 * We don't need the i_mutex after all. It's
224 * still possible we could open this (regular
225 * files can be mountpoints too), but the
226 * i_mutex is just there to prevent renames of
227 * something that we might be about to delegate,
228 * and a mountpoint won't be renamed:
229 */
230 fh_unlock(fhp);
Al Viro6264d692006-10-19 23:28:58 -0700231 if ((host_err = nfsd_cross_mnt(rqstp, &dentry, &exp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 dput(dentry);
233 goto out_nfserr;
234 }
235 }
236 }
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700237 *dentry_ret = dentry;
238 *exp_ret = exp;
239 return 0;
240
241out_nfserr:
242 exp_put(exp);
243 return nfserrno(host_err);
244}
245
246/*
247 * Look up one component of a pathname.
248 * N.B. After this call _both_ fhp and resfh need an fh_put
249 *
250 * If the lookup would cross a mountpoint, and the mounted filesystem
251 * is exported to the client with NFSEXP_NOHIDE, then the lookup is
252 * accepted as it stands and the mounted directory is
253 * returned. Otherwise the covered directory is returned.
254 * NOTE: this mountpoint crossing is not supported properly by all
255 * clients and is explicitly disallowed for NFSv3
256 * NeilBrown <neilb@cse.unsw.edu.au>
257 */
258__be32
259nfsd_lookup(struct svc_rqst *rqstp, struct svc_fh *fhp, const char *name,
Chuck Lever5a022fc2007-11-01 16:57:09 -0400260 unsigned int len, struct svc_fh *resfh)
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700261{
262 struct svc_export *exp;
263 struct dentry *dentry;
264 __be32 err;
265
J. Bruce Fields29a78a32011-04-09 11:28:53 -0400266 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
267 if (err)
268 return err;
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700269 err = nfsd_lookup_dentry(rqstp, fhp, name, len, &exp, &dentry);
270 if (err)
271 return err;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700272 err = check_nfsd_access(exp, rqstp);
273 if (err)
274 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /*
276 * Note: we compose the file handle now, but as the
277 * dentry may be negative, it may need to be updated.
278 */
279 err = fh_compose(resfh, exp, dentry, fhp);
David Howells2b0143b2015-03-17 22:25:59 +0000280 if (!err && d_really_is_negative(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 err = nfserr_noent;
Andy Adamson32c1eb02007-07-17 04:04:48 -0700282out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 dput(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 exp_put(exp);
285 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Ben Myersf5019122010-02-17 14:05:11 -0600288/*
289 * Commit metadata changes to stable storage.
290 */
291static int
292commit_metadata(struct svc_fh *fhp)
293{
David Howells2b0143b2015-03-17 22:25:59 +0000294 struct inode *inode = d_inode(fhp->fh_dentry);
Ben Myersf5019122010-02-17 14:05:11 -0600295 const struct export_operations *export_ops = inode->i_sb->s_export_op;
Ben Myersf5019122010-02-17 14:05:11 -0600296
297 if (!EX_ISSYNC(fhp->fh_export))
298 return 0;
299
Christoph Hellwigc37650162010-10-06 10:48:20 +0200300 if (export_ops->commit_metadata)
301 return export_ops->commit_metadata(inode);
302 return sync_inode_metadata(inode, 1);
Ben Myersf5019122010-02-17 14:05:11 -0600303}
J. Bruce Fields6c0a6542007-07-17 04:04:47 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800306 * Go over the attributes and take care of the small differences between
307 * NFS semantics and what Linux expects.
308 */
309static void
310nfsd_sanitize_attrs(struct inode *inode, struct iattr *iap)
311{
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800312 /* sanitize the mode change */
313 if (iap->ia_valid & ATTR_MODE) {
314 iap->ia_mode &= S_IALLUGO;
315 iap->ia_mode |= (inode->i_mode & ~S_IALLUGO);
316 }
317
318 /* Revoke setuid/setgid on chown */
319 if (!S_ISDIR(inode->i_mode) &&
Stanislav Kholmanskikhc4fa6d72013-12-11 14:16:36 +0400320 ((iap->ia_valid & ATTR_UID) || (iap->ia_valid & ATTR_GID))) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800321 iap->ia_valid |= ATTR_KILL_PRIV;
322 if (iap->ia_valid & ATTR_MODE) {
323 /* we're setting mode too, just clear the s*id bits */
324 iap->ia_mode &= ~S_ISUID;
325 if (iap->ia_mode & S_IXGRP)
326 iap->ia_mode &= ~S_ISGID;
327 } else {
328 /* set ATTR_KILL_* bits and let VFS handle it */
329 iap->ia_valid |= (ATTR_KILL_SUID | ATTR_KILL_SGID);
330 }
331 }
332}
333
334static __be32
335nfsd_get_write_access(struct svc_rqst *rqstp, struct svc_fh *fhp,
336 struct iattr *iap)
337{
David Howells2b0143b2015-03-17 22:25:59 +0000338 struct inode *inode = d_inode(fhp->fh_dentry);
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800339 int host_err;
340
341 if (iap->ia_size < inode->i_size) {
342 __be32 err;
343
344 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
345 NFSD_MAY_TRUNC | NFSD_MAY_OWNER_OVERRIDE);
346 if (err)
347 return err;
348 }
349
350 host_err = get_write_access(inode);
351 if (host_err)
352 goto out_nfserrno;
353
354 host_err = locks_verify_truncate(inode, NULL, iap->ia_size);
355 if (host_err)
356 goto out_put_write_access;
357 return 0;
358
359out_put_write_access:
360 put_write_access(inode);
361out_nfserrno:
362 return nfserrno(host_err);
363}
364
365/*
366 * Set various file attributes. After this call fhp needs an fh_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 */
Al Viro6264d692006-10-19 23:28:58 -0700368__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369nfsd_setattr(struct svc_rqst *rqstp, struct svc_fh *fhp, struct iattr *iap,
370 int check_guard, time_t guardtime)
371{
372 struct dentry *dentry;
373 struct inode *inode;
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200374 int accmode = NFSD_MAY_SATTR;
Al Viro175a4eb2011-07-26 03:30:54 -0400375 umode_t ftype = 0;
Al Viro6264d692006-10-19 23:28:58 -0700376 __be32 err;
377 int host_err;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500378 bool get_write_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 int size_change = 0;
380
381 if (iap->ia_valid & (ATTR_ATIME | ATTR_MTIME | ATTR_SIZE))
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200382 accmode |= NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 if (iap->ia_valid & ATTR_SIZE)
384 ftype = S_IFREG;
385
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500386 /* Callers that do fh_verify should do the fh_want_write: */
387 get_write_count = !fhp->fh_dentry;
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* Get inode */
390 err = fh_verify(rqstp, fhp, ftype, accmode);
NeilBrown15b7a1b2005-11-07 01:00:23 -0800391 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 goto out;
J. Bruce Fields9f67f182014-02-24 14:59:47 -0500393 if (get_write_count) {
394 host_err = fh_want_write(fhp);
395 if (host_err)
396 return nfserrno(host_err);
397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000400 inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
NeilBrown15b7a1b2005-11-07 01:00:23 -0800402 /* Ignore any mode updates on symlinks */
403 if (S_ISLNK(inode->i_mode))
404 iap->ia_valid &= ~ATTR_MODE;
405
406 if (!iap->ia_valid)
407 goto out;
408
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800409 nfsd_sanitize_attrs(inode, iap);
410
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000411 /*
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800412 * The size case is special, it changes the file in addition to the
413 * attributes.
Christoph Hellwig9c85fca2007-03-07 15:26:25 +0000414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (iap->ia_valid & ATTR_SIZE) {
Christoph Hellwig818e5a22013-11-18 05:07:30 -0800416 err = nfsd_get_write_access(rqstp, fhp, iap);
417 if (err)
418 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 size_change = 1;
Christoph Hellwigf0c63122014-09-07 12:15:52 -0700420
421 /*
422 * RFC5661, Section 18.30.4:
423 * Changing the size of a file with SETATTR indirectly
424 * changes the time_modify and change attributes.
425 *
426 * (and similar for the older RFCs)
427 */
428 if (iap->ia_size != i_size_read(inode))
429 iap->ia_valid |= ATTR_MTIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 iap->ia_valid |= ATTR_CTIME;
433
Christoph Hellwig987da472013-11-18 05:07:47 -0800434 if (check_guard && guardtime != inode->i_ctime.tv_sec) {
435 err = nfserr_notsync;
436 goto out_put_write_access;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
Christoph Hellwig987da472013-11-18 05:07:47 -0800438
Christoph Hellwig987da472013-11-18 05:07:47 -0800439 fh_lock(fhp);
440 host_err = notify_change(dentry, iap, NULL);
441 fh_unlock(fhp);
J. R. Okajima1406b912014-02-19 00:27:53 +0900442 err = nfserrno(host_err);
Christoph Hellwig987da472013-11-18 05:07:47 -0800443
Christoph Hellwig987da472013-11-18 05:07:47 -0800444out_put_write_access:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (size_change)
446 put_write_access(inode);
447 if (!err)
Jeff Layton722b6202014-07-03 07:54:19 -0400448 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449out:
450 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Christoph Hellwig5be196e2006-01-09 20:51:55 -0800453#if defined(CONFIG_NFSD_V4)
Chuck Lever9b4146e2012-01-04 16:26:43 -0500454/*
455 * NFS junction information is stored in an extended attribute.
456 */
457#define NFSD_JUNCTION_XATTR_NAME XATTR_TRUSTED_PREFIX "junction.nfs"
458
459/**
460 * nfsd4_is_junction - Test if an object could be an NFS junction
461 *
462 * @dentry: object to test
463 *
464 * Returns 1 if "dentry" appears to contain NFS junction information.
465 * Otherwise 0 is returned.
466 */
Trond Myklebust11fcee022011-09-12 19:37:26 -0400467int nfsd4_is_junction(struct dentry *dentry)
468{
David Howells2b0143b2015-03-17 22:25:59 +0000469 struct inode *inode = d_inode(dentry);
Trond Myklebust11fcee022011-09-12 19:37:26 -0400470
471 if (inode == NULL)
472 return 0;
473 if (inode->i_mode & S_IXUGO)
474 return 0;
475 if (!(inode->i_mode & S_ISVTX))
476 return 0;
Chuck Lever9b4146e2012-01-04 16:26:43 -0500477 if (vfs_getxattr(dentry, NFSD_JUNCTION_XATTR_NAME, NULL, 0) <= 0)
Trond Myklebust11fcee022011-09-12 19:37:26 -0400478 return 0;
479 return 1;
480}
David Quigley18032ca2013-05-02 13:19:10 -0400481#ifdef CONFIG_NFSD_V4_SECURITY_LABEL
482__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
483 struct xdr_netobj *label)
484{
485 __be32 error;
486 int host_error;
487 struct dentry *dentry;
488
489 error = fh_verify(rqstp, fhp, 0 /* S_IFREG */, NFSD_MAY_SATTR);
490 if (error)
491 return error;
492
493 dentry = fhp->fh_dentry;
494
David Howells2b0143b2015-03-17 22:25:59 +0000495 mutex_lock(&d_inode(dentry)->i_mutex);
David Quigley18032ca2013-05-02 13:19:10 -0400496 host_error = security_inode_setsecctx(dentry, label->data, label->len);
David Howells2b0143b2015-03-17 22:25:59 +0000497 mutex_unlock(&d_inode(dentry)->i_mutex);
David Quigley18032ca2013-05-02 13:19:10 -0400498 return nfserrno(host_error);
499}
500#else
501__be32 nfsd4_set_nfs4_label(struct svc_rqst *rqstp, struct svc_fh *fhp,
502 struct xdr_netobj *label)
503{
504 return nfserr_notsupp;
505}
506#endif
507
Christoph Hellwigffa01602015-12-03 12:59:52 +0100508__be32 nfsd4_clone_file_range(struct file *src, u64 src_pos, struct file *dst,
509 u64 dst_pos, u64 count)
510{
511 return nfserrno(vfs_clone_file_range(src, src_pos, dst, dst_pos,
512 count));
513}
514
Anna Schumaker95d871f2014-11-07 14:44:26 -0500515__be32 nfsd4_vfs_fallocate(struct svc_rqst *rqstp, struct svc_fh *fhp,
516 struct file *file, loff_t offset, loff_t len,
517 int flags)
518{
Anna Schumaker95d871f2014-11-07 14:44:26 -0500519 int error;
520
521 if (!S_ISREG(file_inode(file)->i_mode))
522 return nfserr_inval;
523
Anna Schumaker95d871f2014-11-07 14:44:26 -0500524 error = vfs_fallocate(file, flags, offset, len);
525 if (!error)
526 error = commit_metadata(fhp);
527
528 return nfserrno(error);
529}
J. Bruce Fields6a85d6c2010-07-06 12:39:12 -0400530#endif /* defined(CONFIG_NFSD_V4) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532#ifdef CONFIG_NFSD_V3
533/*
534 * Check server access rights to a file system object
535 */
536struct accessmap {
537 u32 access;
538 int how;
539};
540static struct accessmap nfs3_regaccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200541 { NFS3_ACCESS_READ, NFSD_MAY_READ },
542 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
543 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_TRUNC },
544 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 { 0, 0 }
547};
548
549static struct accessmap nfs3_diraccess[] = {
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200550 { NFS3_ACCESS_READ, NFSD_MAY_READ },
551 { NFS3_ACCESS_LOOKUP, NFSD_MAY_EXEC },
552 { NFS3_ACCESS_MODIFY, NFSD_MAY_EXEC|NFSD_MAY_WRITE|NFSD_MAY_TRUNC},
553 { NFS3_ACCESS_EXTEND, NFSD_MAY_EXEC|NFSD_MAY_WRITE },
554 { NFS3_ACCESS_DELETE, NFSD_MAY_REMOVE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 { 0, 0 }
557};
558
559static struct accessmap nfs3_anyaccess[] = {
560 /* Some clients - Solaris 2.6 at least, make an access call
561 * to the server to check for access for things like /dev/null
562 * (which really, the server doesn't care about). So
563 * We provide simple access checking for them, looking
564 * mainly at mode bits, and we make sure to ignore read-only
565 * filesystem checks
566 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200567 { NFS3_ACCESS_READ, NFSD_MAY_READ },
568 { NFS3_ACCESS_EXECUTE, NFSD_MAY_EXEC },
569 { NFS3_ACCESS_MODIFY, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
570 { NFS3_ACCESS_EXTEND, NFSD_MAY_WRITE|NFSD_MAY_LOCAL_ACCESS },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 { 0, 0 }
573};
574
Al Viro6264d692006-10-19 23:28:58 -0700575__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576nfsd_access(struct svc_rqst *rqstp, struct svc_fh *fhp, u32 *access, u32 *supported)
577{
578 struct accessmap *map;
579 struct svc_export *export;
580 struct dentry *dentry;
581 u32 query, result = 0, sresult = 0;
Al Viro6264d692006-10-19 23:28:58 -0700582 __be32 error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Miklos Szeredi8837abc2008-06-16 13:20:29 +0200584 error = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (error)
586 goto out;
587
588 export = fhp->fh_export;
589 dentry = fhp->fh_dentry;
590
David Howellse36cb0b2015-01-29 12:02:35 +0000591 if (d_is_reg(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 map = nfs3_regaccess;
David Howellse36cb0b2015-01-29 12:02:35 +0000593 else if (d_is_dir(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 map = nfs3_diraccess;
595 else
596 map = nfs3_anyaccess;
597
598
599 query = *access;
600 for (; map->access; map++) {
601 if (map->access & query) {
Al Viro6264d692006-10-19 23:28:58 -0700602 __be32 err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 sresult |= map->access;
605
J. Bruce Fields0ec757d2007-07-17 04:04:48 -0700606 err2 = nfsd_permission(rqstp, export, dentry, map->how);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 switch (err2) {
608 case nfs_ok:
609 result |= map->access;
610 break;
611
612 /* the following error codes just mean the access was not allowed,
613 * rather than an error occurred */
614 case nfserr_rofs:
615 case nfserr_acces:
616 case nfserr_perm:
617 /* simply don't "or" in the access bit. */
618 break;
619 default:
620 error = err2;
621 goto out;
622 }
623 }
624 }
625 *access = result;
626 if (supported)
627 *supported = sresult;
628
629 out:
630 return error;
631}
632#endif /* CONFIG_NFSD_V3 */
633
J. Bruce Fields105f4622011-06-07 11:50:23 -0400634static int nfsd_open_break_lease(struct inode *inode, int access)
635{
636 unsigned int mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
J. Bruce Fields105f4622011-06-07 11:50:23 -0400638 if (access & NFSD_MAY_NOT_BREAK_LEASE)
639 return 0;
640 mode = (access & NFSD_MAY_WRITE) ? O_WRONLY : O_RDONLY;
641 return break_lease(inode, mode | O_NONBLOCK);
642}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644/*
645 * Open an existing file or directory.
Bernd Schubert999448a2012-03-18 22:44:49 -0400646 * The may_flags argument indicates the type of open (read/write/lock)
647 * and additional flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 * N.B. After this call fhp needs an fh_put
649 */
Al Viro6264d692006-10-19 23:28:58 -0700650__be32
Al Viro175a4eb2011-07-26 03:30:54 -0400651nfsd_open(struct svc_rqst *rqstp, struct svc_fh *fhp, umode_t type,
Bernd Schubert999448a2012-03-18 22:44:49 -0400652 int may_flags, struct file **filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Al Viro765927b2012-06-26 21:58:53 +0400654 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct inode *inode;
Kinglong Mee8519f992014-09-03 08:14:06 +0800656 struct file *file;
Al Viro6264d692006-10-19 23:28:58 -0700657 int flags = O_RDONLY|O_LARGEFILE;
658 __be32 err;
Jeff Layton91885252010-03-19 08:06:28 -0400659 int host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David Howellse0e81732009-09-02 09:13:40 +0100661 validate_process_creds();
662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /*
664 * If we get here, then the client has already done an "open",
665 * and (hopefully) checked permission - so allow OWNER_OVERRIDE
666 * in case a chmod has now revoked permission.
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400667 *
668 * Arguably we should also allow the owner override for
669 * directories, but we never have and it doesn't seem to have
670 * caused anyone a problem. If we were to change this, note
671 * also that our filldir callbacks would need a variant of
672 * lookup_one_len that doesn't check permissions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 */
J. Bruce Fieldsd91d0b52012-06-06 12:12:57 -0400674 if (type == S_IFREG)
675 may_flags |= NFSD_MAY_OWNER_OVERRIDE;
676 err = fh_verify(rqstp, fhp, type, may_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (err)
678 goto out;
679
Al Viro765927b2012-06-26 21:58:53 +0400680 path.mnt = fhp->fh_export->ex_path.mnt;
681 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +0000682 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 /* Disallow write access to files with the append-only bit set
685 * or any access when mandatory locking enabled
686 */
687 err = nfserr_perm;
Bernd Schubert999448a2012-03-18 22:44:49 -0400688 if (IS_APPEND(inode) && (may_flags & NFSD_MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 goto out;
J. Bruce Fields5e7fc432007-10-02 14:18:12 -0400690 /*
691 * We must ignore files (but only files) which might have mandatory
692 * locks on them because there is no way to know if the accesser has
693 * the lock.
694 */
695 if (S_ISREG((inode)->i_mode) && mandatory_lock(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 goto out;
697
698 if (!inode->i_fop)
699 goto out;
700
Bernd Schubert999448a2012-03-18 22:44:49 -0400701 host_err = nfsd_open_break_lease(inode, may_flags);
Al Viro6264d692006-10-19 23:28:58 -0700702 if (host_err) /* NOMEM or WOULDBLOCK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 goto out_nfserr;
704
Bernd Schubert999448a2012-03-18 22:44:49 -0400705 if (may_flags & NFSD_MAY_WRITE) {
706 if (may_flags & NFSD_MAY_READ)
J. Bruce Fields9ecb6a02006-06-30 01:56:17 -0700707 flags = O_RDWR|O_LARGEFILE;
708 else
709 flags = O_WRONLY|O_LARGEFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 }
Bernd Schubert999448a2012-03-18 22:44:49 -0400711
Kinglong Mee8519f992014-09-03 08:14:06 +0800712 file = dentry_open(&path, flags, current_cred());
713 if (IS_ERR(file)) {
714 host_err = PTR_ERR(file);
715 goto out_nfserr;
Bernd Schubert06effdb2012-03-18 22:44:50 -0400716 }
717
Linus Torvalds5e40d332014-10-12 10:13:55 -0400718 host_err = ima_file_check(file, may_flags, 0);
Kinglong Mee8519f992014-09-03 08:14:06 +0800719 if (host_err) {
Christoph Hellwigfd891452015-04-28 15:41:16 +0200720 fput(file);
Kinglong Mee8519f992014-09-03 08:14:06 +0800721 goto out_nfserr;
722 }
723
724 if (may_flags & NFSD_MAY_64BIT_COOKIE)
725 file->f_mode |= FMODE_64BITHASH;
726 else
727 file->f_mode |= FMODE_32BITHASH;
728
729 *filp = file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700731 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732out:
David Howellse0e81732009-09-02 09:13:40 +0100733 validate_process_creds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return err;
735}
736
Christoph Hellwige749a462015-06-18 16:44:58 +0200737struct raparms *
738nfsd_init_raparms(struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Christoph Hellwige749a462015-06-18 16:44:58 +0200740 struct inode *inode = file_inode(file);
741 dev_t dev = inode->i_sb->s_dev;
742 ino_t ino = inode->i_ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct raparms *ra, **rap, **frap = NULL;
744 int depth = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700745 unsigned int hash;
746 struct raparm_hbucket *rab;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Greg Banksfce14562006-10-04 02:15:49 -0700748 hash = jhash_2words(dev, ino, 0xfeedbeef) & RAPARM_HASH_MASK;
749 rab = &raparm_hash[hash];
750
751 spin_lock(&rab->pb_lock);
752 for (rap = &rab->pb_head; (ra = *rap); rap = &ra->p_next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (ra->p_ino == ino && ra->p_dev == dev)
754 goto found;
755 depth++;
756 if (ra->p_count == 0)
757 frap = rap;
758 }
Konstantin Khorenko3aa6e0a2011-02-01 17:16:29 +0300759 depth = nfsdstats.ra_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!frap) {
Greg Banksfce14562006-10-04 02:15:49 -0700761 spin_unlock(&rab->pb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return NULL;
763 }
764 rap = frap;
765 ra = *frap;
766 ra->p_dev = dev;
767 ra->p_ino = ino;
768 ra->p_set = 0;
Greg Banksfce14562006-10-04 02:15:49 -0700769 ra->p_hindex = hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770found:
Greg Banksfce14562006-10-04 02:15:49 -0700771 if (rap != &rab->pb_head) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 *rap = ra->p_next;
Greg Banksfce14562006-10-04 02:15:49 -0700773 ra->p_next = rab->pb_head;
774 rab->pb_head = ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 ra->p_count++;
777 nfsdstats.ra_depth[depth*10/nfsdstats.ra_size]++;
Greg Banksfce14562006-10-04 02:15:49 -0700778 spin_unlock(&rab->pb_lock);
Christoph Hellwige749a462015-06-18 16:44:58 +0200779
780 if (ra->p_set)
781 file->f_ra = ra->p_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return ra;
783}
784
Christoph Hellwige749a462015-06-18 16:44:58 +0200785void nfsd_put_raparams(struct file *file, struct raparms *ra)
786{
787 struct raparm_hbucket *rab = &raparm_hash[ra->p_hindex];
788
789 spin_lock(&rab->pb_lock);
790 ra->p_ra = file->f_ra;
791 ra->p_set = 1;
792 ra->p_count--;
793 spin_unlock(&rab->pb_lock);
794}
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796/*
Jens Axboecf8208d2007-06-12 21:22:14 +0200797 * Grab and keep cached pages associated with a file in the svc_rqst
798 * so that they can be passed to the network sendmsg/sendpage routines
799 * directly. They will be released after the sending has completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
801static int
Jens Axboecf8208d2007-06-12 21:22:14 +0200802nfsd_splice_actor(struct pipe_inode_info *pipe, struct pipe_buffer *buf,
803 struct splice_desc *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Jens Axboecf8208d2007-06-12 21:22:14 +0200805 struct svc_rqst *rqstp = sd->u.data;
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500806 struct page **pp = rqstp->rq_next_page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200807 struct page *page = buf->page;
808 size_t size;
Jens Axboecf8208d2007-06-12 21:22:14 +0200809
810 size = sd->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 if (rqstp->rq_res.page_len == 0) {
813 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500814 put_page(*rqstp->rq_next_page);
815 *(rqstp->rq_next_page++) = page;
Jens Axboecf8208d2007-06-12 21:22:14 +0200816 rqstp->rq_res.page_base = buf->offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 rqstp->rq_res.page_len = size;
NeilBrown44524352006-10-04 02:15:46 -0700818 } else if (page != pp[-1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 get_page(page);
J. Bruce Fieldsafc59402012-12-10 18:01:37 -0500820 if (*rqstp->rq_next_page)
821 put_page(*rqstp->rq_next_page);
822 *(rqstp->rq_next_page++) = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 rqstp->rq_res.page_len += size;
NeilBrown44524352006-10-04 02:15:46 -0700824 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 rqstp->rq_res.page_len += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return size;
828}
829
Jens Axboecf8208d2007-06-12 21:22:14 +0200830static int nfsd_direct_splice_actor(struct pipe_inode_info *pipe,
831 struct splice_desc *sd)
832{
833 return __splice_from_pipe(pipe, sd, nfsd_splice_actor);
834}
835
Jeff Laytone2afc812014-06-17 07:44:13 -0400836static __be32
837nfsd_finish_read(struct file *file, unsigned long *count, int host_err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Al Viro6264d692006-10-19 23:28:58 -0700839 if (host_err >= 0) {
840 nfsdstats.io_read += host_err;
841 *count = host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500842 fsnotify_access(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 } else
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400845 return nfserrno(host_err);
846}
847
Jeff Laytone2afc812014-06-17 07:44:13 -0400848__be32 nfsd_splice_read(struct svc_rqst *rqstp,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400849 struct file *file, loff_t offset, unsigned long *count)
850{
851 struct splice_desc sd = {
852 .len = 0,
853 .total_len = *count,
854 .pos = offset,
855 .u.data = rqstp,
856 };
857 int host_err;
858
859 rqstp->rq_next_page = rqstp->rq_respages + 1;
860 host_err = splice_direct_to_actor(file, &sd, nfsd_direct_splice_actor);
861 return nfsd_finish_read(file, count, host_err);
862}
863
Jeff Laytone2afc812014-06-17 07:44:13 -0400864__be32 nfsd_readv(struct file *file, loff_t offset, struct kvec *vec, int vlen,
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400865 unsigned long *count)
866{
867 mm_segment_t oldfs;
868 int host_err;
869
870 oldfs = get_fs();
871 set_fs(KERNEL_DS);
872 host_err = vfs_readv(file, (struct iovec __user *)vec, vlen, &offset);
873 set_fs(oldfs);
874 return nfsd_finish_read(file, count, host_err);
875}
876
877static __be32
878nfsd_vfs_read(struct svc_rqst *rqstp, struct file *file,
879 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
880{
Jeff Layton779fb0f2014-11-19 07:51:18 -0500881 if (file->f_op->splice_read && test_bit(RQ_SPLICE_OK, &rqstp->rq_flags))
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400882 return nfsd_splice_read(rqstp, file, offset, count);
883 else
884 return nfsd_readv(file, offset, vec, vlen, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700887/*
888 * Gathered writes: If another process is currently writing to the file,
889 * there's a high chance this is another nfsd (triggered by a bulk write
890 * from a client's biod). Rather than syncing the file with each write
891 * request, we sleep for 10 msec.
892 *
893 * I don't know if this roughly approximates C. Juszak's idea of
894 * gathered writes, but it's a nice and simple solution (IMHO), and it
895 * seems to work:-)
896 *
897 * Note: we do this only in the NFSv2 case, since v3 and higher have a
898 * better tool (separate unstable writes and commits) for solving this
899 * problem.
900 */
901static int wait_for_concurrent_writes(struct file *file)
902{
Al Viro496ad9a2013-01-23 17:07:38 -0500903 struct inode *inode = file_inode(file);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700904 static ino_t last_ino;
905 static dev_t last_dev;
906 int err = 0;
907
908 if (atomic_read(&inode->i_writecount) > 1
909 || (last_ino == inode->i_ino && last_dev == inode->i_sb->s_dev)) {
910 dprintk("nfsd: write defer %d\n", task_pid_nr(current));
911 msleep(10);
912 dprintk("nfsd: write resume %d\n", task_pid_nr(current));
913 }
914
915 if (inode->i_state & I_DIRTY) {
916 dprintk("nfsd: write sync %d\n", task_pid_nr(current));
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100917 err = vfs_fsync(file, 0);
J. Bruce Fieldsd911df72009-06-15 16:03:53 -0700918 }
919 last_ino = inode->i_ino;
920 last_dev = inode->i_sb->s_dev;
921 return err;
922}
923
Christoph Hellwigaf90f702015-06-18 16:45:00 +0200924__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
926 loff_t offset, struct kvec *vec, int vlen,
David Shaw31dec252009-03-05 20:16:14 -0500927 unsigned long *cnt, int *stablep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct svc_export *exp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct inode *inode;
931 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -0700932 __be32 err = 0;
933 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 int stable = *stablep;
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400935 int use_wgather;
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700936 loff_t pos = offset;
Zach Browne77a7b42014-10-06 16:42:52 -0700937 loff_t end = LLONG_MAX;
NeilBrown86584522014-05-12 11:22:47 +1000938 unsigned int pflags = current->flags;
939
Jeff Layton7501cc22014-11-19 07:51:15 -0500940 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000941 /*
942 * We want less throttling in balance_dirty_pages()
943 * and shrink_inactive_list() so that nfs to
944 * localhost doesn't cause nfsd to lock up due to all
945 * the client's dirty pages or its congested queue.
946 */
947 current->flags |= PF_LESS_THROTTLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
Al Viro6f4e0d52014-10-31 02:42:53 -0400949 inode = file_inode(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 exp = fhp->fh_export;
951
Trond Myklebust48e03bc2009-06-05 12:35:15 -0400952 use_wgather = (rqstp->rq_vers == 2) && EX_WGATHER(exp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (!EX_ISSYNC(exp))
955 stable = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 /* Write the data. */
958 oldfs = get_fs(); set_fs(KERNEL_DS);
Kent Overstreete49dbbf2013-03-22 11:18:24 -0700959 host_err = vfs_writev(file, (struct iovec __user *)vec, vlen, &pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 set_fs(oldfs);
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700961 if (host_err < 0)
962 goto out_nfserr;
963 *cnt = host_err;
964 nfsdstats.io_write += host_err;
Eric Paris2a12a9d2009-12-17 21:24:21 -0500965 fsnotify_modify(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
J. Bruce Fieldsface1502012-10-26 16:12:31 -0400967 if (stable) {
Zach Browne77a7b42014-10-06 16:42:52 -0700968 if (use_wgather) {
J. Bruce Fieldsface1502012-10-26 16:12:31 -0400969 host_err = wait_for_concurrent_writes(file);
Zach Browne77a7b42014-10-06 16:42:52 -0700970 } else {
971 if (*cnt)
972 end = offset + *cnt - 1;
973 host_err = vfs_fsync_range(file, offset, end, 0);
974 }
J. Bruce Fieldsface1502012-10-26 16:12:31 -0400975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
J. Bruce Fieldse4636d52009-06-15 19:07:13 -0700977out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -0700978 dprintk("nfsd: write complete host_err=%d\n", host_err);
Wei Yongjuna0d24b22009-05-19 12:03:15 +0800979 if (host_err >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 err = 0;
Wei Yongjuna0d24b22009-05-19 12:03:15 +0800981 else
Al Viro6264d692006-10-19 23:28:58 -0700982 err = nfserrno(host_err);
Jeff Layton7501cc22014-11-19 07:51:15 -0500983 if (test_bit(RQ_LOCAL, &rqstp->rq_flags))
NeilBrown86584522014-05-12 11:22:47 +1000984 tsk_restore_flags(current, pflags, PF_LESS_THROTTLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return err;
986}
987
J. Bruce Fieldsdc976182014-03-18 17:01:51 -0400988/*
989 * Read data from a file. count must contain the requested read count
990 * on entry. On return, *count contains the number of bytes actually read.
991 * N.B. After this call fhp needs an fh_put
992 */
993__be32 nfsd_read(struct svc_rqst *rqstp, struct svc_fh *fhp,
994 loff_t offset, struct kvec *vec, int vlen, unsigned long *count)
995{
996 struct file *file;
997 struct raparms *ra;
998 __be32 err;
999
Christoph Hellwige749a462015-06-18 16:44:58 +02001000 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_READ, &file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001001 if (err)
1002 return err;
1003
Christoph Hellwige749a462015-06-18 16:44:58 +02001004 ra = nfsd_init_raparms(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001005 err = nfsd_vfs_read(rqstp, file, offset, vec, vlen, count);
Christoph Hellwige749a462015-06-18 16:44:58 +02001006 if (ra)
1007 nfsd_put_raparams(file, ra);
1008 fput(file);
J. Bruce Fieldsdc976182014-03-18 17:01:51 -04001009
J. Bruce Fieldsfa0a2122010-07-27 16:48:54 -04001010 return err;
1011}
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013/*
1014 * Write data to a file.
1015 * The stable flag requests synchronous writes.
1016 * N.B. After this call fhp needs an fh_put
1017 */
Al Viro6264d692006-10-19 23:28:58 -07001018__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019nfsd_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
David Shaw31dec252009-03-05 20:16:14 -05001020 loff_t offset, struct kvec *vec, int vlen, unsigned long *cnt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 int *stablep)
1022{
Al Viro6264d692006-10-19 23:28:58 -07001023 __be32 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 if (file) {
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001026 err = nfsd_permission(rqstp, fhp->fh_export, fhp->fh_dentry,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001027 NFSD_MAY_WRITE|NFSD_MAY_OWNER_OVERRIDE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (err)
1029 goto out;
1030 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen, cnt,
1031 stablep);
1032 } else {
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001033 err = nfsd_open(rqstp, fhp, S_IFREG, NFSD_MAY_WRITE, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (err)
1035 goto out;
1036
1037 if (cnt)
1038 err = nfsd_vfs_write(rqstp, fhp, file, offset, vec, vlen,
1039 cnt, stablep);
Christoph Hellwigfd891452015-04-28 15:41:16 +02001040 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 }
1042out:
1043 return err;
1044}
1045
1046#ifdef CONFIG_NFSD_V3
1047/*
1048 * Commit all pending writes to stable storage.
Trond Myklebustaa696a62010-01-29 16:44:25 -05001049 *
1050 * Note: we only guarantee that data that lies within the range specified
1051 * by the 'offset' and 'count' parameters will be synced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 *
1053 * Unfortunately we cannot lock the file to make sure we return full WCC
1054 * data to the client, as locking happens lower down in the filesystem.
1055 */
Al Viro6264d692006-10-19 23:28:58 -07001056__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057nfsd_commit(struct svc_rqst *rqstp, struct svc_fh *fhp,
1058 loff_t offset, unsigned long count)
1059{
1060 struct file *file;
Trond Myklebustaa696a62010-01-29 16:44:25 -05001061 loff_t end = LLONG_MAX;
1062 __be32 err = nfserr_inval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Trond Myklebustaa696a62010-01-29 16:44:25 -05001064 if (offset < 0)
1065 goto out;
1066 if (count != 0) {
1067 end = offset + (loff_t)count - 1;
1068 if (end < offset)
1069 goto out;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Jeff Layton91885252010-03-19 08:06:28 -04001072 err = nfsd_open(rqstp, fhp, S_IFREG,
1073 NFSD_MAY_WRITE|NFSD_MAY_NOT_BREAK_LEASE, &file);
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001074 if (err)
Trond Myklebustaa696a62010-01-29 16:44:25 -05001075 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 if (EX_ISSYNC(fhp->fh_export)) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +01001077 int err2 = vfs_fsync_range(file, offset, end, 0);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001078
1079 if (err2 != -EINVAL)
1080 err = nfserrno(err2);
1081 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 err = nfserr_notsupp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084
Christoph Hellwigfd891452015-04-28 15:41:16 +02001085 fput(file);
Trond Myklebustaa696a62010-01-29 16:44:25 -05001086out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return err;
1088}
1089#endif /* CONFIG_NFSD_V3 */
1090
Adrian Bunkf2b0dee2008-02-13 23:30:26 +02001091static __be32
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001092nfsd_create_setattr(struct svc_rqst *rqstp, struct svc_fh *resfhp,
1093 struct iattr *iap)
1094{
1095 /*
1096 * Mode has already been set earlier in create:
1097 */
1098 iap->ia_valid &= ~ATTR_MODE;
1099 /*
1100 * Setting uid/gid works only for root. Irix appears to
1101 * send along the gid on create when it tries to implement
1102 * setgid directories via NFS:
1103 */
Eric W. Biederman6fab8772013-02-02 06:53:11 -08001104 if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001105 iap->ia_valid &= ~(ATTR_UID|ATTR_GID);
1106 if (iap->ia_valid)
1107 return nfsd_setattr(rqstp, resfhp, iap, 0, (time_t)0);
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001108 /* Callers expect file metadata to be committed here */
Jeff Layton722b6202014-07-03 07:54:19 -04001109 return nfserrno(commit_metadata(resfhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001110}
1111
wengang wang4ac35c22009-02-10 11:27:51 +08001112/* HPUX client sometimes creates a file in mode 000, and sets size to 0.
1113 * setting size to 0 may fail for some specific file systems by the permission
1114 * checking which requires WRITE permission but the mode is 000.
1115 * we ignore the resizing(to 0) on the just new created file, since the size is
1116 * 0 after file created.
1117 *
1118 * call this only after vfs_create() is called.
1119 * */
1120static void
1121nfsd_check_ignore_resizing(struct iattr *iap)
1122{
1123 if ((iap->ia_valid & ATTR_SIZE) && (iap->ia_size == 0))
1124 iap->ia_valid &= ~ATTR_SIZE;
1125}
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127/*
1128 * Create a file (regular, directory, device, fifo); UNIX sockets
1129 * not yet implemented.
1130 * If the response fh has been verified, the parent directory should
1131 * already be locked. Note that the parent directory is left locked.
1132 *
1133 * N.B. Every call to nfsd_create needs an fh_put for _both_ fhp and resfhp
1134 */
Al Viro6264d692006-10-19 23:28:58 -07001135__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
1137 char *fname, int flen, struct iattr *iap,
1138 int type, dev_t rdev, struct svc_fh *resfhp)
1139{
1140 struct dentry *dentry, *dchild = NULL;
1141 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001142 __be32 err;
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001143 __be32 err2;
Al Viro6264d692006-10-19 23:28:58 -07001144 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 err = nfserr_perm;
1147 if (!flen)
1148 goto out;
1149 err = nfserr_exist;
1150 if (isdotent(fname, flen))
1151 goto out;
1152
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001153 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 if (err)
1155 goto out;
1156
1157 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001158 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001161 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 goto out;
1163 /*
1164 * Check whether the response file handle has been verified yet.
1165 * If it has, the parent directory should already be locked.
1166 */
1167 if (!resfhp->fh_dentry) {
Jan Kara4a55c102012-06-12 16:20:33 +02001168 host_err = fh_want_write(fhp);
1169 if (host_err)
1170 goto out_nfserr;
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 /* called from nfsd_proc_mkdir, or possibly nfsd3_proc_create */
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001173 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001175 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (IS_ERR(dchild))
1177 goto out_nfserr;
1178 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1179 if (err)
1180 goto out;
1181 } else {
1182 /* called from nfsd_proc_create */
1183 dchild = dget(resfhp->fh_dentry);
1184 if (!fhp->fh_locked) {
1185 /* not actually possible */
1186 printk(KERN_ERR
Al Viroa6a9f182013-09-16 10:57:01 -04001187 "nfsd_create: parent %pd2 not locked!\n",
1188 dentry);
Al Virod75f2b92006-01-18 17:43:44 -08001189 err = nfserr_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 goto out;
1191 }
1192 }
1193 /*
1194 * Make sure the child dentry is still negative ...
1195 */
1196 err = nfserr_exist;
David Howells2b0143b2015-03-17 22:25:59 +00001197 if (d_really_is_positive(dchild)) {
Al Viroa6a9f182013-09-16 10:57:01 -04001198 dprintk("nfsd_create: dentry %pd/%pd not negative!\n",
1199 dentry, dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 goto out;
1201 }
1202
1203 if (!(iap->ia_valid & ATTR_MODE))
1204 iap->ia_mode = 0;
1205 iap->ia_mode = (iap->ia_mode & S_IALLUGO) | type;
1206
Miklos Szeredi07cad1d2008-07-01 15:38:35 +02001207 err = nfserr_inval;
1208 if (!S_ISREG(type) && !S_ISDIR(type) && !special_file(type)) {
1209 printk(KERN_WARNING "nfsd: bad file type %o in nfsd_create\n",
1210 type);
1211 goto out;
1212 }
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /*
1215 * Get the dir op function pointer.
1216 */
J. Bruce Fields088406b2006-11-08 17:44:59 -08001217 err = 0;
Jan Kara4a55c102012-06-12 16:20:33 +02001218 host_err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 switch (type) {
1220 case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04001221 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
wengang wang4ac35c22009-02-10 11:27:51 +08001222 if (!host_err)
1223 nfsd_check_ignore_resizing(iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 break;
1225 case S_IFDIR:
Al Viro6264d692006-10-19 23:28:58 -07001226 host_err = vfs_mkdir(dirp, dchild, iap->ia_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228 case S_IFCHR:
1229 case S_IFBLK:
1230 case S_IFIFO:
1231 case S_IFSOCK:
Al Viro6264d692006-10-19 23:28:58 -07001232 host_err = vfs_mknod(dirp, dchild, iap->ia_mode, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 break;
Dave Hansen463c3192008-02-15 14:37:57 -08001234 }
Jan Kara4a55c102012-06-12 16:20:33 +02001235 if (host_err < 0)
Dave Hansen463c3192008-02-15 14:37:57 -08001236 goto out_nfserr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Ben Myersf5019122010-02-17 14:05:11 -06001238 err = nfsd_create_setattr(rqstp, resfhp, iap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Ben Myersf5019122010-02-17 14:05:11 -06001240 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001241 * nfsd_create_setattr already committed the child. Transactional
1242 * filesystems had a chance to commit changes for both parent and
1243 * child * simultaneously making the following commit_metadata a
1244 * noop.
Ben Myersf5019122010-02-17 14:05:11 -06001245 */
1246 err2 = nfserrno(commit_metadata(fhp));
J. Bruce Fields5c002b32007-11-30 16:55:23 -05001247 if (err2)
1248 err = err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 /*
1250 * Update the file handle to get the new inode info.
1251 */
1252 if (!err)
1253 err = fh_update(resfhp);
1254out:
1255 if (dchild && !IS_ERR(dchild))
1256 dput(dchild);
1257 return err;
1258
1259out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001260 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 goto out;
1262}
1263
1264#ifdef CONFIG_NFSD_V3
Mi Jinlongac6721a2011-04-20 17:06:25 +08001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266/*
Mi Jinlongac6721a2011-04-20 17:06:25 +08001267 * NFSv3 and NFSv4 version of nfsd_create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 */
Al Viro6264d692006-10-19 23:28:58 -07001269__be32
Mi Jinlongac6721a2011-04-20 17:06:25 +08001270do_nfsd_create(struct svc_rqst *rqstp, struct svc_fh *fhp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 char *fname, int flen, struct iattr *iap,
1272 struct svc_fh *resfhp, int createmode, u32 *verifier,
J. Bruce Fields856121b2011-10-13 11:37:11 -04001273 bool *truncp, bool *created)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
1275 struct dentry *dentry, *dchild = NULL;
1276 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001277 __be32 err;
1278 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 __u32 v_mtime=0, v_atime=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281 err = nfserr_perm;
1282 if (!flen)
1283 goto out;
1284 err = nfserr_exist;
1285 if (isdotent(fname, flen))
1286 goto out;
1287 if (!(iap->ia_valid & ATTR_MODE))
1288 iap->ia_mode = 0;
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001289 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (err)
1291 goto out;
1292
1293 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001294 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /* Get all the sanity checks out of the way before
1297 * we lock the parent. */
1298 err = nfserr_notdir;
Al Viroacfa4382008-12-04 10:06:33 -05001299 if (!dirp->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001301
1302 host_err = fh_want_write(fhp);
1303 if (host_err)
1304 goto out_nfserr;
1305
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001306 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
1308 /*
1309 * Compose the response file handle.
1310 */
1311 dchild = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001312 host_err = PTR_ERR(dchild);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (IS_ERR(dchild))
1314 goto out_nfserr;
1315
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001316 /* If file doesn't exist, check for permissions to create one */
David Howells2b0143b2015-03-17 22:25:59 +00001317 if (d_really_is_negative(dchild)) {
Sachin Prabhu1574dff2011-04-20 13:09:35 +01001318 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
1319 if (err)
1320 goto out;
1321 }
1322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 err = fh_compose(resfhp, fhp->fh_export, dchild, fhp);
1324 if (err)
1325 goto out;
1326
Mi Jinlongac6721a2011-04-20 17:06:25 +08001327 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001328 /* solaris7 gets confused (bugid 4218508) if these have
Jeff Layton749997e2007-07-31 00:37:51 -07001329 * the high bit set, so just clear the high bits. If this is
1330 * ever changed to use different attrs for storing the
1331 * verifier, then do_open_lookup() will also need to be fixed
1332 * accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 */
1334 v_mtime = verifier[0]&0x7fffffff;
1335 v_atime = verifier[1]&0x7fffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
1337
David Howells2b0143b2015-03-17 22:25:59 +00001338 if (d_really_is_positive(dchild)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 err = 0;
1340
1341 switch (createmode) {
1342 case NFS3_CREATE_UNCHECKED:
David Howellse36cb0b2015-01-29 12:02:35 +00001343 if (! d_is_reg(dchild))
J. Bruce Fields9dc4e6c2012-04-09 18:06:49 -04001344 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 else if (truncp) {
1346 /* in nfsv4, we need to treat this case a little
1347 * differently. we don't want to truncate the
1348 * file now; this would be wrong if the OPEN
1349 * fails for some other reason. furthermore,
1350 * if the size is nonzero, we should ignore it
1351 * according to spec!
1352 */
1353 *truncp = (iap->ia_valid & ATTR_SIZE) && !iap->ia_size;
1354 }
1355 else {
1356 iap->ia_valid &= ATTR_SIZE;
1357 goto set_attr;
1358 }
1359 break;
1360 case NFS3_CREATE_EXCLUSIVE:
David Howells2b0143b2015-03-17 22:25:59 +00001361 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1362 && d_inode(dchild)->i_atime.tv_sec == v_atime
1363 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001364 if (created)
1365 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 break;
Neil Brown7007c902012-12-07 15:40:55 -05001367 }
Mi Jinlongac6721a2011-04-20 17:06:25 +08001368 case NFS4_CREATE_EXCLUSIVE4_1:
David Howells2b0143b2015-03-17 22:25:59 +00001369 if ( d_inode(dchild)->i_mtime.tv_sec == v_mtime
1370 && d_inode(dchild)->i_atime.tv_sec == v_atime
1371 && d_inode(dchild)->i_size == 0 ) {
Neil Brown7007c902012-12-07 15:40:55 -05001372 if (created)
1373 *created = 1;
Mi Jinlongac6721a2011-04-20 17:06:25 +08001374 goto set_attr;
Neil Brown7007c902012-12-07 15:40:55 -05001375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 /* fallthru */
1377 case NFS3_CREATE_GUARDED:
1378 err = nfserr_exist;
1379 }
Al Virobad0dcf2011-11-23 12:03:18 -05001380 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 goto out;
1382 }
1383
Al Viro312b63f2012-06-10 18:09:36 -04001384 host_err = vfs_create(dirp, dchild, iap->ia_mode, true);
Dave Hansen463c3192008-02-15 14:37:57 -08001385 if (host_err < 0) {
Al Virobad0dcf2011-11-23 12:03:18 -05001386 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 goto out_nfserr;
Dave Hansen463c3192008-02-15 14:37:57 -08001388 }
J. Bruce Fields81ac95c2006-11-08 17:44:40 -08001389 if (created)
1390 *created = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
wengang wang4ac35c22009-02-10 11:27:51 +08001392 nfsd_check_ignore_resizing(iap);
1393
Mi Jinlongac6721a2011-04-20 17:06:25 +08001394 if (nfsd_create_is_exclusive(createmode)) {
Peter Staubachc3978522007-01-26 00:57:00 -08001395 /* Cram the verifier into atime/mtime */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 iap->ia_valid = ATTR_MTIME|ATTR_ATIME
Peter Staubachc3978522007-01-26 00:57:00 -08001397 | ATTR_MTIME_SET|ATTR_ATIME_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /* XXX someone who knows this better please fix it for nsec */
1399 iap->ia_mtime.tv_sec = v_mtime;
1400 iap->ia_atime.tv_sec = v_atime;
1401 iap->ia_mtime.tv_nsec = 0;
1402 iap->ia_atime.tv_nsec = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 set_attr:
Ben Myersf5019122010-02-17 14:05:11 -06001406 err = nfsd_create_setattr(rqstp, resfhp, iap);
1407
1408 /*
Trond Myklebust0f3a24b2014-07-01 18:27:53 -04001409 * nfsd_create_setattr already committed the child
1410 * (and possibly also the parent).
Ben Myersf5019122010-02-17 14:05:11 -06001411 */
1412 if (!err)
1413 err = nfserrno(commit_metadata(fhp));
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001414
1415 /*
1416 * Update the filehandle to get the new inode info.
1417 */
1418 if (!err)
1419 err = fh_update(resfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 out:
1422 fh_unlock(fhp);
1423 if (dchild && !IS_ERR(dchild))
1424 dput(dchild);
Jan Kara4a55c102012-06-12 16:20:33 +02001425 fh_drop_write(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return err;
1427
1428 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001429 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 goto out;
1431}
1432#endif /* CONFIG_NFSD_V3 */
1433
1434/*
1435 * Read a symlink. On entry, *lenp must contain the maximum path length that
1436 * fits into the buffer. On return, it contains the true length.
1437 * N.B. After this call fhp needs an fh_put
1438 */
Al Viro6264d692006-10-19 23:28:58 -07001439__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
1441{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 struct inode *inode;
1443 mm_segment_t oldfs;
Al Viro6264d692006-10-19 23:28:58 -07001444 __be32 err;
1445 int host_err;
Al Viro68ac1232012-03-15 08:21:57 -04001446 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001448 err = fh_verify(rqstp, fhp, S_IFLNK, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (err)
1450 goto out;
1451
Al Viro68ac1232012-03-15 08:21:57 -04001452 path.mnt = fhp->fh_export->ex_path.mnt;
1453 path.dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001454 inode = d_inode(path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 err = nfserr_inval;
Al Viroacfa4382008-12-04 10:06:33 -05001457 if (!inode->i_op->readlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 goto out;
1459
Al Viro68ac1232012-03-15 08:21:57 -04001460 touch_atime(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* N.B. Why does this call need a get_fs()??
1462 * Remove the set_fs and watch the fireworks:-) --okir
1463 */
1464
1465 oldfs = get_fs(); set_fs(KERNEL_DS);
J. Bruce Fieldsfac7a172012-07-27 14:16:55 -04001466 host_err = inode->i_op->readlink(path.dentry, (char __user *)buf, *lenp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 set_fs(oldfs);
1468
Al Viro6264d692006-10-19 23:28:58 -07001469 if (host_err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 goto out_nfserr;
Al Viro6264d692006-10-19 23:28:58 -07001471 *lenp = host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 err = 0;
1473out:
1474 return err;
1475
1476out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001477 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 goto out;
1479}
1480
1481/*
1482 * Create a symlink and look up its inode
1483 * N.B. After this call _both_ fhp and resfhp need an fh_put
1484 */
Al Viro6264d692006-10-19 23:28:58 -07001485__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486nfsd_symlink(struct svc_rqst *rqstp, struct svc_fh *fhp,
1487 char *fname, int flen,
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001488 char *path,
Kinglong Mee1e444f52014-07-01 17:48:02 +08001489 struct svc_fh *resfhp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
1491 struct dentry *dentry, *dnew;
Al Viro6264d692006-10-19 23:28:58 -07001492 __be32 err, cerr;
1493 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 err = nfserr_noent;
J. Bruce Fields52ee0432014-06-20 11:52:21 -04001496 if (!flen || path[0] == '\0')
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 goto out;
1498 err = nfserr_exist;
1499 if (isdotent(fname, flen))
1500 goto out;
1501
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001502 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (err)
1504 goto out;
Jan Kara4a55c102012-06-12 16:20:33 +02001505
1506 host_err = fh_want_write(fhp);
1507 if (host_err)
1508 goto out_nfserr;
1509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 fh_lock(fhp);
1511 dentry = fhp->fh_dentry;
1512 dnew = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001513 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (IS_ERR(dnew))
1515 goto out_nfserr;
1516
David Howells2b0143b2015-03-17 22:25:59 +00001517 host_err = vfs_symlink(d_inode(dentry), dnew, path);
Al Viro6264d692006-10-19 23:28:58 -07001518 err = nfserrno(host_err);
Ben Myersf5019122010-02-17 14:05:11 -06001519 if (!err)
1520 err = nfserrno(commit_metadata(fhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 fh_unlock(fhp);
1522
Al Virobad0dcf2011-11-23 12:03:18 -05001523 fh_drop_write(fhp);
Dave Hansen75c3f292008-02-15 14:37:45 -08001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 cerr = fh_compose(resfhp, fhp->fh_export, dnew, fhp);
1526 dput(dnew);
1527 if (err==0) err = cerr;
1528out:
1529 return err;
1530
1531out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001532 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 goto out;
1534}
1535
1536/*
1537 * Create a hardlink
1538 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1539 */
Al Viro6264d692006-10-19 23:28:58 -07001540__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541nfsd_link(struct svc_rqst *rqstp, struct svc_fh *ffhp,
1542 char *name, int len, struct svc_fh *tfhp)
1543{
1544 struct dentry *ddir, *dnew, *dold;
J. Bruce Fields55b13352010-07-19 16:38:24 -04001545 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001546 __be32 err;
1547 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001549 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (err)
1551 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001552 err = fh_verify(rqstp, tfhp, 0, NFSD_MAY_NOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (err)
1554 goto out;
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001555 err = nfserr_isdir;
David Howellse36cb0b2015-01-29 12:02:35 +00001556 if (d_is_dir(tfhp->fh_dentry))
J. Bruce Fields7d818a72011-08-15 16:59:55 -04001557 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 err = nfserr_perm;
1559 if (!len)
1560 goto out;
1561 err = nfserr_exist;
1562 if (isdotent(name, len))
1563 goto out;
1564
Jan Kara4a55c102012-06-12 16:20:33 +02001565 host_err = fh_want_write(tfhp);
1566 if (host_err) {
1567 err = nfserrno(host_err);
1568 goto out;
1569 }
1570
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001571 fh_lock_nested(ffhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 ddir = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001573 dirp = d_inode(ddir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 dnew = lookup_one_len(name, ddir, len);
Al Viro6264d692006-10-19 23:28:58 -07001576 host_err = PTR_ERR(dnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (IS_ERR(dnew))
1578 goto out_nfserr;
1579
1580 dold = tfhp->fh_dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
J. Bruce Fields4795bb32011-01-11 13:55:46 -05001582 err = nfserr_noent;
David Howells2b0143b2015-03-17 22:25:59 +00001583 if (d_really_is_negative(dold))
Jan Kara4a55c102012-06-12 16:20:33 +02001584 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04001585 host_err = vfs_link(dold, dirp, dnew, NULL);
Al Viro6264d692006-10-19 23:28:58 -07001586 if (!host_err) {
Ben Myersf5019122010-02-17 14:05:11 -06001587 err = nfserrno(commit_metadata(ffhp));
1588 if (!err)
1589 err = nfserrno(commit_metadata(tfhp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 } else {
Al Viro6264d692006-10-19 23:28:58 -07001591 if (host_err == -EXDEV && rqstp->rq_vers == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 err = nfserr_acces;
1593 else
Al Viro6264d692006-10-19 23:28:58 -07001594 err = nfserrno(host_err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
Dave Hansen75c3f292008-02-15 14:37:45 -08001596out_dput:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 dput(dnew);
David M. Richter270d56e2006-06-30 01:56:15 -07001598out_unlock:
1599 fh_unlock(ffhp);
Jan Kara4a55c102012-06-12 16:20:33 +02001600 fh_drop_write(tfhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601out:
1602 return err;
1603
1604out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001605 err = nfserrno(host_err);
David M. Richter270d56e2006-06-30 01:56:15 -07001606 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607}
1608
1609/*
1610 * Rename a file
1611 * N.B. After this call _both_ ffhp and tfhp need an fh_put
1612 */
Al Viro6264d692006-10-19 23:28:58 -07001613__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614nfsd_rename(struct svc_rqst *rqstp, struct svc_fh *ffhp, char *fname, int flen,
1615 struct svc_fh *tfhp, char *tname, int tlen)
1616{
1617 struct dentry *fdentry, *tdentry, *odentry, *ndentry, *trap;
1618 struct inode *fdir, *tdir;
Al Viro6264d692006-10-19 23:28:58 -07001619 __be32 err;
1620 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001622 err = fh_verify(rqstp, ffhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (err)
1624 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001625 err = fh_verify(rqstp, tfhp, S_IFDIR, NFSD_MAY_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 if (err)
1627 goto out;
1628
1629 fdentry = ffhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001630 fdir = d_inode(fdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 tdentry = tfhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001633 tdir = d_inode(tdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 err = nfserr_perm;
1636 if (!flen || isdotent(fname, flen) || !tlen || isdotent(tname, tlen))
1637 goto out;
1638
Jan Kara4a55c102012-06-12 16:20:33 +02001639 host_err = fh_want_write(ffhp);
1640 if (host_err) {
1641 err = nfserrno(host_err);
1642 goto out;
1643 }
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 /* cannot use fh_lock as we need deadlock protective ordering
1646 * so do it by hand */
1647 trap = lock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001648 ffhp->fh_locked = tfhp->fh_locked = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 fill_pre_wcc(ffhp);
1650 fill_pre_wcc(tfhp);
1651
1652 odentry = lookup_one_len(fname, fdentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001653 host_err = PTR_ERR(odentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (IS_ERR(odentry))
1655 goto out_nfserr;
1656
Al Viro6264d692006-10-19 23:28:58 -07001657 host_err = -ENOENT;
David Howells2b0143b2015-03-17 22:25:59 +00001658 if (d_really_is_negative(odentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001660 host_err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (odentry == trap)
1662 goto out_dput_old;
1663
1664 ndentry = lookup_one_len(tname, tdentry, tlen);
Al Viro6264d692006-10-19 23:28:58 -07001665 host_err = PTR_ERR(ndentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 if (IS_ERR(ndentry))
1667 goto out_dput_old;
Al Viro6264d692006-10-19 23:28:58 -07001668 host_err = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (ndentry == trap)
1670 goto out_dput_new;
1671
Dave Hansen9079b1e2008-02-15 14:37:49 -08001672 host_err = -EXDEV;
1673 if (ffhp->fh_export->ex_path.mnt != tfhp->fh_export->ex_path.mnt)
1674 goto out_dput_new;
J. Bruce Fieldsaa387d6c2013-04-15 16:03:46 -04001675 if (ffhp->fh_export->ex_path.dentry != tfhp->fh_export->ex_path.dentry)
1676 goto out_dput_new;
Dave Hansen9079b1e2008-02-15 14:37:49 -08001677
Miklos Szeredi520c8b12014-04-01 17:08:42 +02001678 host_err = vfs_rename(fdir, odentry, tdir, ndentry, NULL, 0);
Ben Myersf5019122010-02-17 14:05:11 -06001679 if (!host_err) {
1680 host_err = commit_metadata(tfhp);
Al Viro6264d692006-10-19 23:28:58 -07001681 if (!host_err)
Ben Myersf5019122010-02-17 14:05:11 -06001682 host_err = commit_metadata(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 out_dput_new:
1685 dput(ndentry);
1686 out_dput_old:
1687 dput(odentry);
1688 out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001689 err = nfserrno(host_err);
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001690 /*
1691 * We cannot rely on fh_unlock on the two filehandles,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 * as that would do the wrong thing if the two directories
J. Bruce Fieldsfbb74a32014-03-28 16:43:17 -04001693 * were the same, so again we do it by hand.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
1695 fill_post_wcc(ffhp);
1696 fill_post_wcc(tfhp);
1697 unlock_rename(tdentry, fdentry);
Jeff Laytonaaf91ec2015-09-17 08:28:39 -04001698 ffhp->fh_locked = tfhp->fh_locked = false;
Jan Kara4a55c102012-06-12 16:20:33 +02001699 fh_drop_write(ffhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701out:
1702 return err;
1703}
1704
1705/*
1706 * Unlink a file or directory
1707 * N.B. After this call fhp needs an fh_put
1708 */
Al Viro6264d692006-10-19 23:28:58 -07001709__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710nfsd_unlink(struct svc_rqst *rqstp, struct svc_fh *fhp, int type,
1711 char *fname, int flen)
1712{
1713 struct dentry *dentry, *rdentry;
1714 struct inode *dirp;
Al Viro6264d692006-10-19 23:28:58 -07001715 __be32 err;
1716 int host_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 err = nfserr_acces;
1719 if (!flen || isdotent(fname, flen))
1720 goto out;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001721 err = fh_verify(rqstp, fhp, S_IFDIR, NFSD_MAY_REMOVE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (err)
1723 goto out;
1724
Jan Kara4a55c102012-06-12 16:20:33 +02001725 host_err = fh_want_write(fhp);
1726 if (host_err)
1727 goto out_nfserr;
1728
Peter Zijlstra12fd3522006-10-02 02:18:03 -07001729 fh_lock_nested(fhp, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 dentry = fhp->fh_dentry;
David Howells2b0143b2015-03-17 22:25:59 +00001731 dirp = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 rdentry = lookup_one_len(fname, dentry, flen);
Al Viro6264d692006-10-19 23:28:58 -07001734 host_err = PTR_ERR(rdentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (IS_ERR(rdentry))
1736 goto out_nfserr;
1737
David Howells2b0143b2015-03-17 22:25:59 +00001738 if (d_really_is_negative(rdentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 dput(rdentry);
1740 err = nfserr_noent;
1741 goto out;
1742 }
1743
1744 if (!type)
David Howells2b0143b2015-03-17 22:25:59 +00001745 type = d_inode(rdentry)->i_mode & S_IFMT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001747 if (type != S_IFDIR)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04001748 host_err = vfs_unlink(dirp, rdentry, NULL);
J. Bruce Fields9ce137e2011-01-11 14:07:12 -05001749 else
Al Viro6264d692006-10-19 23:28:58 -07001750 host_err = vfs_rmdir(dirp, rdentry);
J. Bruce Fields541ce982011-01-14 20:00:02 -05001751 if (!host_err)
1752 host_err = commit_metadata(fhp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 dput(rdentry);
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755out_nfserr:
Al Viro6264d692006-10-19 23:28:58 -07001756 err = nfserrno(host_err);
YAMAMOTO Takashif193fba2006-01-18 17:43:13 -08001757out:
1758 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
1761/*
David Woodhouse14f7dd62008-07-31 20:29:12 +01001762 * We do this buffering because we must not call back into the file
1763 * system's ->lookup() method from the filldir callback. That may well
1764 * deadlock a number of file systems.
1765 *
1766 * This is based heavily on the implementation of same in XFS.
1767 */
1768struct buffered_dirent {
1769 u64 ino;
1770 loff_t offset;
1771 int namlen;
1772 unsigned int d_type;
1773 char name[];
1774};
1775
1776struct readdir_data {
Al Viro5c0ba4e2013-05-15 13:52:59 -04001777 struct dir_context ctx;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001778 char *dirent;
1779 size_t used;
Al Viro53c9c5c2008-08-24 07:29:52 -04001780 int full;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001781};
1782
Miklos Szerediac7576f2014-10-30 17:37:34 +01001783static int nfsd_buffered_filldir(struct dir_context *ctx, const char *name,
1784 int namlen, loff_t offset, u64 ino,
1785 unsigned int d_type)
David Woodhouse2628b762008-07-31 17:16:51 +01001786{
Miklos Szerediac7576f2014-10-30 17:37:34 +01001787 struct readdir_data *buf =
1788 container_of(ctx, struct readdir_data, ctx);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001789 struct buffered_dirent *de = (void *)(buf->dirent + buf->used);
1790 unsigned int reclen;
1791
1792 reclen = ALIGN(sizeof(struct buffered_dirent) + namlen, sizeof(u64));
Al Viro53c9c5c2008-08-24 07:29:52 -04001793 if (buf->used + reclen > PAGE_SIZE) {
1794 buf->full = 1;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001795 return -EINVAL;
Al Viro53c9c5c2008-08-24 07:29:52 -04001796 }
David Woodhouse14f7dd62008-07-31 20:29:12 +01001797
1798 de->namlen = namlen;
1799 de->offset = offset;
1800 de->ino = ino;
1801 de->d_type = d_type;
1802 memcpy(de->name, name, namlen);
1803 buf->used += reclen;
1804
1805 return 0;
1806}
1807
Miklos Szerediac7576f2014-10-30 17:37:34 +01001808static __be32 nfsd_buffered_readdir(struct file *file, nfsd_filldir_t func,
David Woodhouse2f9092e2009-04-20 23:18:37 +01001809 struct readdir_cd *cdp, loff_t *offsetp)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001810{
David Woodhouse14f7dd62008-07-31 20:29:12 +01001811 struct buffered_dirent *de;
David Woodhouse2628b762008-07-31 17:16:51 +01001812 int host_err;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001813 int size;
1814 loff_t offset;
Al Viroac6614b2013-05-22 22:22:04 -04001815 struct readdir_data buf = {
1816 .ctx.actor = nfsd_buffered_filldir,
1817 .dirent = (void *)__get_free_page(GFP_KERNEL)
1818 };
David Woodhouse2628b762008-07-31 17:16:51 +01001819
David Woodhouse14f7dd62008-07-31 20:29:12 +01001820 if (!buf.dirent)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001821 return nfserrno(-ENOMEM);
David Woodhouse2628b762008-07-31 17:16:51 +01001822
David Woodhouse14f7dd62008-07-31 20:29:12 +01001823 offset = *offsetp;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001824
1825 while (1) {
1826 unsigned int reclen;
1827
Doug Nazarb726e922008-11-05 06:16:28 -05001828 cdp->err = nfserr_eof; /* will be cleared on successful read */
David Woodhouse14f7dd62008-07-31 20:29:12 +01001829 buf.used = 0;
Al Viro53c9c5c2008-08-24 07:29:52 -04001830 buf.full = 0;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001831
Al Viro5c0ba4e2013-05-15 13:52:59 -04001832 host_err = iterate_dir(file, &buf.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -04001833 if (buf.full)
1834 host_err = 0;
1835
1836 if (host_err < 0)
David Woodhouse14f7dd62008-07-31 20:29:12 +01001837 break;
1838
1839 size = buf.used;
1840
1841 if (!size)
1842 break;
1843
David Woodhouse14f7dd62008-07-31 20:29:12 +01001844 de = (struct buffered_dirent *)buf.dirent;
1845 while (size > 0) {
1846 offset = de->offset;
1847
1848 if (func(cdp, de->name, de->namlen, de->offset,
1849 de->ino, de->d_type))
David Woodhouse2f9092e2009-04-20 23:18:37 +01001850 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001851
1852 if (cdp->err != nfs_ok)
David Woodhouse2f9092e2009-04-20 23:18:37 +01001853 break;
David Woodhouse14f7dd62008-07-31 20:29:12 +01001854
1855 reclen = ALIGN(sizeof(*de) + de->namlen,
1856 sizeof(u64));
1857 size -= reclen;
1858 de = (struct buffered_dirent *)((char *)de + reclen);
1859 }
David Woodhouse2f9092e2009-04-20 23:18:37 +01001860 if (size > 0) /* We bailed out early */
1861 break;
1862
David Woodhousec002a6c2008-08-17 17:21:18 +01001863 offset = vfs_llseek(file, 0, SEEK_CUR);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001864 }
1865
David Woodhouse14f7dd62008-07-31 20:29:12 +01001866 free_page((unsigned long)(buf.dirent));
David Woodhouse2628b762008-07-31 17:16:51 +01001867
1868 if (host_err)
1869 return nfserrno(host_err);
David Woodhouse14f7dd62008-07-31 20:29:12 +01001870
1871 *offsetp = offset;
1872 return cdp->err;
David Woodhouse2628b762008-07-31 17:16:51 +01001873}
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875/*
1876 * Read entries from a directory.
1877 * The NFSv3/4 verifier we ignore for now.
1878 */
Al Viro6264d692006-10-19 23:28:58 -07001879__be32
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880nfsd_readdir(struct svc_rqst *rqstp, struct svc_fh *fhp, loff_t *offsetp,
Miklos Szerediac7576f2014-10-30 17:37:34 +01001881 struct readdir_cd *cdp, nfsd_filldir_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
Al Viro6264d692006-10-19 23:28:58 -07001883 __be32 err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 struct file *file;
1885 loff_t offset = *offsetp;
Bernd Schubert06effdb2012-03-18 22:44:50 -04001886 int may_flags = NFSD_MAY_READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Bernd Schubert06effdb2012-03-18 22:44:50 -04001888 /* NFSv2 only supports 32 bit cookies */
1889 if (rqstp->rq_vers > 2)
1890 may_flags |= NFSD_MAY_64BIT_COOKIE;
1891
1892 err = nfsd_open(rqstp, fhp, S_IFDIR, may_flags, &file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (err)
1894 goto out;
1895
Jeff Laytonb108fe62012-04-25 15:30:00 -04001896 offset = vfs_llseek(file, offset, SEEK_SET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (offset < 0) {
1898 err = nfserrno((int)offset);
1899 goto out_close;
1900 }
1901
David Woodhouse14f7dd62008-07-31 20:29:12 +01001902 err = nfsd_buffered_readdir(file, func, cdp, offsetp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904 if (err == nfserr_eof || err == nfserr_toosmall)
1905 err = nfs_ok; /* can still be found in ->err */
1906out_close:
Christoph Hellwigfd891452015-04-28 15:41:16 +02001907 fput(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908out:
1909 return err;
1910}
1911
1912/*
1913 * Get file system stats
1914 * N.B. After this call fhp needs an fh_put
1915 */
Al Viro6264d692006-10-19 23:28:58 -07001916__be32
J. Bruce Fields04716e62008-08-07 13:00:20 -04001917nfsd_statfs(struct svc_rqst *rqstp, struct svc_fh *fhp, struct kstatfs *stat, int access)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Christoph Hellwigebabe9a2010-07-07 18:53:11 +02001919 __be32 err;
1920
1921 err = fh_verify(rqstp, fhp, 0, NFSD_MAY_NOP | access);
Takashi Iwaif6360ef2010-08-13 15:53:49 +02001922 if (!err) {
1923 struct path path = {
1924 .mnt = fhp->fh_export->ex_path.mnt,
1925 .dentry = fhp->fh_dentry,
1926 };
1927 if (vfs_statfs(&path, stat))
1928 err = nfserr_io;
1929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return err;
1931}
1932
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001933static int exp_rdonly(struct svc_rqst *rqstp, struct svc_export *exp)
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001934{
J. Bruce Fieldsc7d51402007-07-19 01:49:20 -07001935 return nfsexp_flags(rqstp, exp) & NFSEXP_READONLY;
J. Bruce Fieldse22841c2007-07-19 01:49:20 -07001936}
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938/*
1939 * Check for a user's access permissions to this inode.
1940 */
Al Viro6264d692006-10-19 23:28:58 -07001941__be32
J. Bruce Fields0ec757d2007-07-17 04:04:48 -07001942nfsd_permission(struct svc_rqst *rqstp, struct svc_export *exp,
1943 struct dentry *dentry, int acc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
David Howells2b0143b2015-03-17 22:25:59 +00001945 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 int err;
1947
J. Bruce Fieldsaea93392011-04-10 10:35:12 -04001948 if ((acc & NFSD_MAY_MASK) == NFSD_MAY_NOP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return 0;
1950#if 0
1951 dprintk("nfsd: permission 0x%x%s%s%s%s%s%s%s mode 0%o%s%s%s\n",
1952 acc,
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001953 (acc & NFSD_MAY_READ)? " read" : "",
1954 (acc & NFSD_MAY_WRITE)? " write" : "",
1955 (acc & NFSD_MAY_EXEC)? " exec" : "",
1956 (acc & NFSD_MAY_SATTR)? " sattr" : "",
1957 (acc & NFSD_MAY_TRUNC)? " trunc" : "",
1958 (acc & NFSD_MAY_LOCK)? " lock" : "",
1959 (acc & NFSD_MAY_OWNER_OVERRIDE)? " owneroverride" : "",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 inode->i_mode,
1961 IS_IMMUTABLE(inode)? " immut" : "",
1962 IS_APPEND(inode)? " append" : "",
Dave Hansen2c463e92008-02-15 14:37:56 -08001963 __mnt_is_readonly(exp->ex_path.mnt)? " ro" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 dprintk(" owner %d/%d user %d/%d\n",
David Howells5cc0a842008-11-14 10:38:58 +11001965 inode->i_uid, inode->i_gid, current_fsuid(), current_fsgid());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966#endif
1967
1968 /* Normally we reject any write/sattr etc access on a read-only file
1969 * system. But if it is IRIX doing check on write-access for a
1970 * device special file, we ignore rofs.
1971 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001972 if (!(acc & NFSD_MAY_LOCAL_ACCESS))
1973 if (acc & (NFSD_MAY_WRITE | NFSD_MAY_SATTR | NFSD_MAY_TRUNC)) {
Dave Hansen2c463e92008-02-15 14:37:56 -08001974 if (exp_rdonly(rqstp, exp) ||
1975 __mnt_is_readonly(exp->ex_path.mnt))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 return nfserr_rofs;
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001977 if (/* (acc & NFSD_MAY_WRITE) && */ IS_IMMUTABLE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return nfserr_perm;
1979 }
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001980 if ((acc & NFSD_MAY_TRUNC) && IS_APPEND(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return nfserr_perm;
1982
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001983 if (acc & NFSD_MAY_LOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 /* If we cannot rely on authentication in NLM requests,
1985 * just allow locks, otherwise require read permission, or
1986 * ownership
1987 */
1988 if (exp->ex_flags & NFSEXP_NOAUTHNLM)
1989 return 0;
1990 else
Miklos Szeredi8837abc2008-06-16 13:20:29 +02001991 acc = NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993 /*
1994 * The file owner always gets access permission for accesses that
1995 * would normally be checked at open time. This is to make
1996 * file access work even when the client has done a fchmod(fd, 0).
1997 *
1998 * However, `cp foo bar' should fail nevertheless when bar is
1999 * readonly. A sensible way to do this might be to reject all
2000 * attempts to truncate a read-only file, because a creat() call
2001 * always implies file truncation.
2002 * ... but this isn't really fair. A process may reasonably call
2003 * ftruncate on an open file descriptor on a file with perm 000.
2004 * We must trust the client to do permission checking - using "ACCESS"
2005 * with NFSv3.
2006 */
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002007 if ((acc & NFSD_MAY_OWNER_OVERRIDE) &&
Eric W. Biederman6fab8772013-02-02 06:53:11 -08002008 uid_eq(inode->i_uid, current_fsuid()))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return 0;
2010
Miklos Szeredi8837abc2008-06-16 13:20:29 +02002011 /* This assumes NFSD_MAY_{READ,WRITE,EXEC} == MAY_{READ,WRITE,EXEC} */
Al Virof419a2e2008-07-22 00:07:17 -04002012 err = inode_permission(inode, acc & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
2014 /* Allow read access to binaries even when mode 111 */
2015 if (err == -EACCES && S_ISREG(inode->i_mode) &&
J. Bruce Fieldsa0432262011-08-25 10:48:39 -04002016 (acc == (NFSD_MAY_READ | NFSD_MAY_OWNER_OVERRIDE) ||
2017 acc == (NFSD_MAY_READ | NFSD_MAY_READ_IF_EXEC)))
Al Virof419a2e2008-07-22 00:07:17 -04002018 err = inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 return err? nfserrno(err) : 0;
2021}
2022
2023void
2024nfsd_racache_shutdown(void)
2025{
Jeff Layton54a66e52008-08-13 22:03:27 -04002026 struct raparms *raparm, *last_raparm;
2027 unsigned int i;
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 dprintk("nfsd: freeing readahead buffers.\n");
Jeff Layton54a66e52008-08-13 22:03:27 -04002030
2031 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
2032 raparm = raparm_hash[i].pb_head;
2033 while(raparm) {
2034 last_raparm = raparm;
2035 raparm = raparm->p_next;
2036 kfree(last_raparm);
2037 }
2038 raparm_hash[i].pb_head = NULL;
2039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040}
2041/*
2042 * Initialize readahead param cache
2043 */
2044int
2045nfsd_racache_init(int cache_size)
2046{
2047 int i;
Greg Banksfce14562006-10-04 02:15:49 -07002048 int j = 0;
2049 int nperbucket;
Jeff Layton54a66e52008-08-13 22:03:27 -04002050 struct raparms **raparm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Greg Banksfce14562006-10-04 02:15:49 -07002052
Jeff Layton54a66e52008-08-13 22:03:27 -04002053 if (raparm_hash[0].pb_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002055 nperbucket = DIV_ROUND_UP(cache_size, RAPARM_HASH_SIZE);
Kinglong Mee3c7aa152014-06-10 18:08:19 +08002056 nperbucket = max(2, nperbucket);
Jeff Layton54a66e52008-08-13 22:03:27 -04002057 cache_size = nperbucket * RAPARM_HASH_SIZE;
Yan Burman4b3bb062006-12-08 02:39:41 -08002058
2059 dprintk("nfsd: allocating %d readahead buffers.\n", cache_size);
Jeff Layton54a66e52008-08-13 22:03:27 -04002060
2061 for (i = 0; i < RAPARM_HASH_SIZE; i++) {
Yan Burman4b3bb062006-12-08 02:39:41 -08002062 spin_lock_init(&raparm_hash[i].pb_lock);
Jeff Layton54a66e52008-08-13 22:03:27 -04002063
2064 raparm = &raparm_hash[i].pb_head;
2065 for (j = 0; j < nperbucket; j++) {
2066 *raparm = kzalloc(sizeof(struct raparms), GFP_KERNEL);
2067 if (!*raparm)
2068 goto out_nomem;
2069 raparm = &(*raparm)->p_next;
2070 }
2071 *raparm = NULL;
Yan Burman4b3bb062006-12-08 02:39:41 -08002072 }
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 nfsdstats.ra_size = cache_size;
2075 return 0;
Jeff Layton54a66e52008-08-13 22:03:27 -04002076
2077out_nomem:
2078 dprintk("nfsd: kmalloc failed, freeing readahead buffers\n");
2079 nfsd_racache_shutdown();
2080 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}